├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── __init__.py ├── models.py ├── public │ ├── __init__.py │ ├── routes.py │ └── templates │ │ ├── about.html │ │ ├── ecai2024.html │ │ ├── editor.html │ │ ├── examples.html │ │ ├── fois2024.html │ │ ├── index.html │ │ ├── notation.html │ │ └── versionHistory.html ├── source │ └── chowlk │ │ ├── __init__.py │ │ ├── model │ │ ├── diagram_model.py │ │ └── writer_model.py │ │ ├── resources │ │ ├── anonymousClass.py │ │ ├── anonymousIndividual.py │ │ ├── find_prefixes.py │ │ ├── generate_xml_errors.py │ │ ├── geometry.py │ │ ├── properties.py │ │ └── utils.py │ │ └── services │ │ ├── class_associations.py │ │ ├── individual_associations.py │ │ ├── interaction_between_elements.py │ │ ├── property_associations.py │ │ └── transformations.py ├── static │ ├── css │ │ ├── ecai2024.css │ │ ├── editor.css │ │ ├── floatingButton.css │ │ └── new_style.css │ ├── examples │ │ ├── building.xml │ │ ├── renovation_measures.xml │ │ └── saref4building.xml │ ├── images │ │ ├── aggregation_arrow.svg │ │ ├── all_different.svg │ │ ├── annotation_property_class_individual.svg │ │ ├── annotation_property_class_literal.svg │ │ ├── annotation_property_class_uri_reference.svg │ │ ├── annotation_property_datatype_property_individual.svg │ │ ├── annotation_property_datatype_property_literal.svg │ │ ├── annotation_property_datatype_property_uri_reference.svg │ │ ├── annotation_property_declaration.svg │ │ ├── annotation_property_individual_individual.svg │ │ ├── annotation_property_individual_literal.svg │ │ ├── annotation_property_individual_uri_reference.svg │ │ ├── annotation_property_object_property_individual.svg │ │ ├── annotation_property_object_property_literal.svg │ │ ├── annotation_property_object_property_uri_reference.svg │ │ ├── asymmetric_op_1.svg │ │ ├── asymmetric_op_2.svg │ │ ├── bimerr_building.svg │ │ ├── cardinality_1.svg │ │ ├── cardinality_2.svg │ │ ├── cardinality_class_axiom_1.svg │ │ ├── cardinality_class_axiom_2.svg │ │ ├── cardinality_restriction_dp.svg │ │ ├── cardinality_restriction_dp1.svg │ │ ├── cardinality_restriction_dp2.svg │ │ ├── cardinality_restriction_dp3.svg │ │ ├── cardinality_restriction_op.svg │ │ ├── cardinality_restriction_op1.svg │ │ ├── cardinality_restriction_op2.svg │ │ ├── cardinality_restriction_op3.svg │ │ ├── circle.svg │ │ ├── class-iri-example.svg │ │ ├── class.svg │ │ ├── class_base_directive.svg │ │ ├── class_empty_prefix.svg │ │ ├── complement_complement.svg │ │ ├── complement_disjoint1.svg │ │ ├── complement_disjoint2.svg │ │ ├── complement_domain_datatype_property.svg │ │ ├── complement_domain_object_property_1.svg │ │ ├── complement_domain_object_property_2.svg │ │ ├── complement_enumeration.svg │ │ ├── complement_equivalent1.svg │ │ ├── complement_equivalent2.svg │ │ ├── complement_intersection.svg │ │ ├── complement_of_1.svg │ │ ├── complement_of_2.svg │ │ ├── complement_range_object_property_1.svg │ │ ├── complement_range_object_property_2.svg │ │ ├── complement_restriction.svg │ │ ├── complement_subclass.svg │ │ ├── complement_subclass_2.svg │ │ ├── complement_union.svg │ │ ├── datatype-property-multiple-domain.svg │ │ ├── datatype-property-multiple-range.svg │ │ ├── datatype_property_all_disjoint_1.svg │ │ ├── datatype_property_diamond.svg │ │ ├── datatype_property_disjoint_1.svg │ │ ├── datatype_rectangle.svg │ │ ├── datatype_with_namespace.svg │ │ ├── datatype_with_namespace_2.svg │ │ ├── deprecated-class.svg │ │ ├── deprecated-datatype-property-1.svg │ │ ├── deprecated-datatype-property-2.svg │ │ ├── deprecated-object-property-1.svg │ │ ├── deprecated-object-property-2.svg │ │ ├── deprecated-type-arrow-1.svg │ │ ├── deprecated-type-arrow-10.svg │ │ ├── deprecated-type-arrow-11.svg │ │ ├── deprecated-type-arrow-12.svg │ │ ├── deprecated-type-arrow-2.svg │ │ ├── deprecated-type-arrow-3.svg │ │ ├── deprecated-type-arrow-4.svg │ │ ├── deprecated-type-arrow-5.svg │ │ ├── deprecated-type-arrow-6.svg │ │ ├── deprecated-type-arrow-7.svg │ │ ├── deprecated-type-arrow-8.svg │ │ ├── deprecated-type-arrow-9.svg │ │ ├── diamond.svg │ │ ├── different_from.svg │ │ ├── disjoint_1.svg │ │ ├── disjoint_2.svg │ │ ├── disjoint_3.svg │ │ ├── down-arrow.svg │ │ ├── ecai2024 │ │ │ ├── mpoveda.jfif │ │ │ ├── rgarcia.jfif │ │ │ └── scarulli.png │ │ ├── enumerated_datatype.svg │ │ ├── enumerated_datatype_2.svg │ │ ├── enumerated_datatype_3.svg │ │ ├── enumerated_datatype_4.svg │ │ ├── enumeration_1.svg │ │ ├── enumeration_disjoint1.svg │ │ ├── enumeration_disjoint2.svg │ │ ├── enumeration_domain_datatype_property.svg │ │ ├── enumeration_domain_object_property_1.svg │ │ ├── enumeration_domain_object_property_2.svg │ │ ├── enumeration_equivalent1.svg │ │ ├── enumeration_equivalent2.svg │ │ ├── enumeration_range_object_property_1.svg │ │ ├── enumeration_range_object_property_2.svg │ │ ├── enumeration_subclass.svg │ │ ├── enumeration_subclass_2.svg │ │ ├── equivalent_1.svg │ │ ├── equivalent_2.svg │ │ ├── equivalent_datatype_property.svg │ │ ├── equivalent_property_1.svg │ │ ├── equivalent_property_2.svg │ │ ├── example-anonymous-individual.svg │ │ ├── example-datatype-iri.svg │ │ ├── example-datatype-property.svg │ │ ├── example-object-property.svg │ │ ├── examples │ │ │ ├── disjoint_example_1.svg │ │ │ ├── disjoint_example_2.svg │ │ │ ├── equivalent_example_1.svg │ │ │ ├── equivalent_example_2.svg │ │ │ ├── intersection_example_1.svg │ │ │ ├── intersection_example_2.svg │ │ │ ├── subclass_example_1.svg │ │ │ ├── subclass_example_2.svg │ │ │ ├── union_example_1.svg │ │ │ └── union_example_2.svg │ │ ├── existencial_restriction_1.svg │ │ ├── existencial_restriction_2.svg │ │ ├── existencial_restriction_3.svg │ │ ├── existencial_restriction_4.svg │ │ ├── existencial_restriction_5.svg │ │ ├── existencial_restriction_6.svg │ │ ├── existencial_restriction_7.svg │ │ ├── existential_restriction_dp_1.svg │ │ ├── existential_restriction_dp_2.svg │ │ ├── existential_restriction_op_1.svg │ │ ├── existential_restriction_op_2.svg │ │ ├── existential_restriction_op_3.svg │ │ ├── favicon_io │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ └── site.webmanifest │ │ ├── functional_dp_1.svg │ │ ├── functional_dp_2.svg │ │ ├── functional_op_1.svg │ │ ├── functional_op_2.svg │ │ ├── has_restriction_1.svg │ │ ├── has_restriction_2.svg │ │ ├── has_restriction_3.svg │ │ ├── has_restriction_4.svg │ │ ├── has_restriction_5.svg │ │ ├── has_restriction_6.svg │ │ ├── has_restriction_7.svg │ │ ├── has_value_datatype_property1.svg │ │ ├── has_value_datatype_property2.svg │ │ ├── has_value_object_property1.svg │ │ ├── has_value_object_property2.svg │ │ ├── has_value_object_property3.svg │ │ ├── individual-iri-example.svg │ │ ├── individual.svg │ │ ├── individual_class_1.svg │ │ ├── individual_class_2.svg │ │ ├── individual_class_3.svg │ │ ├── individual_class_4.svg │ │ ├── individual_class_5.svg │ │ ├── individual_class_6.svg │ │ ├── individual_class_7.svg │ │ ├── intersection_1.svg │ │ ├── intersection_2.svg │ │ ├── intersection_complement.svg │ │ ├── intersection_disjoint1.svg │ │ ├── intersection_disjoint2.svg │ │ ├── intersection_domain_datatype_property.svg │ │ ├── intersection_domain_object_property_1.svg │ │ ├── intersection_domain_object_property_2.svg │ │ ├── intersection_enumeration.svg │ │ ├── intersection_equivalent1.svg │ │ ├── intersection_equivalent2.svg │ │ ├── intersection_intersection.svg │ │ ├── intersection_range_object_property_1.svg │ │ ├── intersection_range_object_property_2.svg │ │ ├── intersection_restriction.svg │ │ ├── intersection_restriction_dp.svg │ │ ├── intersection_subclass.svg │ │ ├── intersection_subclass_2.svg │ │ ├── intersection_union.svg │ │ ├── inverse_functional_op_1.svg │ │ ├── inverse_functional_op_2.svg │ │ ├── inverse_property_1.svg │ │ ├── inverse_property_2.svg │ │ ├── irreflexive_op_1.svg │ │ ├── irreflexive_op_2.svg │ │ ├── legend_element.svg │ │ ├── logos │ │ │ ├── auroral_logo.png │ │ │ ├── fi-logo.png │ │ │ ├── ia4tes_logo.png │ │ │ ├── logo.png │ │ │ ├── oeg-logo.gif │ │ │ └── upm-logo.png │ │ ├── max_cardinality_1.svg │ │ ├── max_cardinality_2.svg │ │ ├── max_qualified_cardinality_1.svg │ │ ├── max_qualified_cardinality_2.svg │ │ ├── metadata.svg │ │ ├── min_cardinality_1.svg │ │ ├── min_cardinality_2.svg │ │ ├── min_qualified_cardinality_1.svg │ │ ├── min_qualified_cardinality_2.svg │ │ ├── multiple_clas_restriction_1.svg │ │ ├── multiple_clas_restriction_2.svg │ │ ├── named_class.svg │ │ ├── namespaces.svg │ │ ├── no_base_no_empty_prefix.svg │ │ ├── no_base_yes_empty_prefix.svg │ │ ├── no_domain_no_range_dp.svg │ │ ├── no_domain_no_range_dp_2.svg │ │ ├── no_domain_no_range_op_1.svg │ │ ├── no_domain_no_range_op_2.svg │ │ ├── no_domain_no_range_op_3.svg │ │ ├── no_domain_yes_range_dp.svg │ │ ├── no_domain_yes_range_dp_2.svg │ │ ├── no_domain_yes_range_op_1.svg │ │ ├── no_domain_yes_range_op_2.svg │ │ ├── object-property-multiple-domain.svg │ │ ├── object-property-multiple-range.svg │ │ ├── object_property_all_disjoint_1.svg │ │ ├── object_property_arrow.svg │ │ ├── object_property_diamond.svg │ │ ├── object_property_disjoint_1.svg │ │ ├── one_of.svg │ │ ├── ontology_metadata.svg │ │ ├── ontology_metadata_2.svg │ │ ├── ontology_metadata_recommended.svg │ │ ├── ontology_uri.svg │ │ ├── property_chain.svg │ │ ├── qualified_cardinality_1.svg │ │ ├── qualified_cardinality_2.svg │ │ ├── qualified_cardinality_class_axiom_1.svg │ │ ├── qualified_cardinality_class_axiom_2.svg │ │ ├── rdf_1.svg │ │ ├── rdf_2.svg │ │ ├── rdf_3.svg │ │ ├── rectangle.svg │ │ ├── reflexive_op_1.svg │ │ ├── reflexive_op_2.svg │ │ ├── restriction_complement.svg │ │ ├── restriction_disjoint1.svg │ │ ├── restriction_disjoint2.svg │ │ ├── restriction_disjoint3.svg │ │ ├── restriction_disjoint3_new_notation.svg │ │ ├── restriction_disjoint4.svg │ │ ├── restriction_disjoint4_new_notation.svg │ │ ├── restriction_domain_datatype_property.svg │ │ ├── restriction_domain_datatype_property_2.svg │ │ ├── restriction_domain_object_property_1.svg │ │ ├── restriction_domain_object_property_2.svg │ │ ├── restriction_domain_object_property_3.svg │ │ ├── restriction_domain_object_property_4.svg │ │ ├── restriction_enumeration.svg │ │ ├── restriction_enumeration_2.svg │ │ ├── restriction_equivalent1.svg │ │ ├── restriction_equivalent2.svg │ │ ├── restriction_equivalent3.svg │ │ ├── restriction_equivalent3_new_notation.svg │ │ ├── restriction_equivalent4.svg │ │ ├── restriction_equivalent4_new_notation.svg │ │ ├── restriction_intersection.svg │ │ ├── restriction_range_object_property_1.svg │ │ ├── restriction_range_object_property_2.svg │ │ ├── restriction_range_object_property_3.svg │ │ ├── restriction_range_object_property_4.svg │ │ ├── restriction_restriction.svg │ │ ├── restriction_restriction_dp.svg │ │ ├── restriction_subclass1.svg │ │ ├── restriction_subclass2.svg │ │ ├── restriction_subclass2_new_notation.svg │ │ ├── restriction_subclass3.svg │ │ ├── restriction_subclass4.svg │ │ ├── restriction_subclass5.svg │ │ ├── restriction_subclass6.svg │ │ ├── restriction_subclass6_new_notation.svg │ │ ├── restriction_union.svg │ │ ├── right-arrow.svg │ │ ├── same_as.svg │ │ ├── saref4building.svg │ │ ├── sub_datatype_property.svg │ │ ├── subclass_1.svg │ │ ├── subclass_2.svg │ │ ├── subclass_arrow.svg │ │ ├── subproperty_1.svg │ │ ├── subproperty_2.svg │ │ ├── symmetric_op_1.svg │ │ ├── symmetric_op_2.svg │ │ ├── transitive_op_1.svg │ │ ├── transitive_op_2.svg │ │ ├── type_arrow.svg │ │ ├── union_1.svg │ │ ├── union_2.svg │ │ ├── union_complement.svg │ │ ├── union_disjoint1.svg │ │ ├── union_disjoint2.svg │ │ ├── union_domain_datatype_property.svg │ │ ├── union_domain_object_property_1.svg │ │ ├── union_domain_object_property_2.svg │ │ ├── union_enumeration.svg │ │ ├── union_equivalent1.svg │ │ ├── union_equivalent2.svg │ │ ├── union_intersection.svg │ │ ├── union_range_object_property_1.svg │ │ ├── union_range_object_property_2.svg │ │ ├── union_restriction.svg │ │ ├── union_restriction_dp.svg │ │ ├── union_subclass.svg │ │ ├── union_subclass_2.svg │ │ ├── union_union.svg │ │ ├── universal_restriction_1.svg │ │ ├── universal_restriction_2.svg │ │ ├── universal_restriction_3.svg │ │ ├── universal_restriction_4.svg │ │ ├── universal_restriction_5.svg │ │ ├── universal_restriction_6.svg │ │ ├── universal_restriction_7.svg │ │ ├── universal_restriction_dp_1.svg │ │ ├── universal_restriction_dp_2.svg │ │ ├── universal_restriction_op_1.svg │ │ ├── universal_restriction_op_2.svg │ │ ├── universal_restriction_op_3.svg │ │ ├── unnamed_class_1.svg │ │ ├── unnamed_class_2.svg │ │ ├── yes_base_no_empty_prefix.svg │ │ ├── yes_base_yes_empty_prefix.svg │ │ ├── yes_domain_no_range_dp.svg │ │ ├── yes_domain_no_range_dp_2.svg │ │ ├── yes_domain_no_range_op_1.svg │ │ ├── yes_domain_no_range_op_2.svg │ │ ├── yes_domain_yes_range_dp.svg │ │ ├── yes_domain_yes_range_dp_2.svg │ │ ├── yes_domain_yes_range_op_1.svg │ │ ├── yes_domain_yes_range_op_2.svg │ │ └── yes_domain_yes_range_op_3.svg │ ├── js │ │ ├── editor.js │ │ ├── new_converter.js │ │ └── notation.js │ └── resources │ │ ├── building.jpg │ │ ├── building.ttl │ │ ├── chowlk-library-complete.xml │ │ ├── chowlk-library-lightweight.xml │ │ ├── example.drawio │ │ ├── getting-started.mp4 │ │ ├── saref4building.jpg │ │ └── saref4building.ttl └── unit-tests │ ├── desired_outputs │ ├── test_annotation_1.ttl │ ├── test_annotation_10.ttl │ ├── test_annotation_10_log.txt │ ├── test_annotation_11.ttl │ ├── test_annotation_11_log.txt │ ├── test_annotation_12.ttl │ ├── test_annotation_12_log.txt │ ├── test_annotation_13.ttl │ ├── test_annotation_13_log.txt │ ├── test_annotation_14.ttl │ ├── test_annotation_14_log.txt │ ├── test_annotation_15.ttl │ ├── test_annotation_15_log.txt │ ├── test_annotation_16.ttl │ ├── test_annotation_16_log.txt │ ├── test_annotation_17.ttl │ ├── test_annotation_17_log.txt │ ├── test_annotation_18.ttl │ ├── test_annotation_18_log.txt │ ├── test_annotation_19.ttl │ ├── test_annotation_19_log.txt │ ├── test_annotation_1_log.txt │ ├── test_annotation_2.ttl │ ├── test_annotation_20.ttl │ ├── test_annotation_20_log.txt │ ├── test_annotation_21.ttl │ ├── test_annotation_21_log.txt │ ├── test_annotation_22.ttl │ ├── test_annotation_22_log.txt │ ├── test_annotation_23.ttl │ ├── test_annotation_23_log.txt │ ├── test_annotation_24.ttl │ ├── test_annotation_24_log.txt │ ├── test_annotation_25.ttl │ ├── test_annotation_25_log.txt │ ├── test_annotation_26.ttl │ ├── test_annotation_26_log.txt │ ├── test_annotation_27.ttl │ ├── test_annotation_27_log.txt │ ├── test_annotation_28.ttl │ ├── test_annotation_28_log.txt │ ├── test_annotation_29.ttl │ ├── test_annotation_29_log.txt │ ├── test_annotation_2_log.txt │ ├── test_annotation_3.ttl │ ├── test_annotation_30.ttl │ ├── test_annotation_30_log.txt │ ├── test_annotation_31.ttl │ ├── test_annotation_31_log.txt │ ├── test_annotation_32.ttl │ ├── test_annotation_32_log.txt │ ├── test_annotation_33.ttl │ ├── test_annotation_33_log.txt │ ├── test_annotation_34.ttl │ ├── test_annotation_34_log.txt │ ├── test_annotation_35.ttl │ ├── test_annotation_35_log.txt │ ├── test_annotation_36.ttl │ ├── test_annotation_36_log.txt │ ├── test_annotation_37.ttl │ ├── test_annotation_37_log.txt │ ├── test_annotation_38.ttl │ ├── test_annotation_38_log.txt │ ├── test_annotation_39.ttl │ ├── test_annotation_39_log.txt │ ├── test_annotation_3_log.txt │ ├── test_annotation_4.ttl │ ├── test_annotation_40.ttl │ ├── test_annotation_40_log.txt │ ├── test_annotation_41.ttl │ ├── test_annotation_41_log.txt │ ├── test_annotation_42.ttl │ ├── test_annotation_42_log.txt │ ├── test_annotation_43.ttl │ ├── test_annotation_43_log.txt │ ├── test_annotation_44.ttl │ ├── test_annotation_44_log.txt │ ├── test_annotation_45.ttl │ ├── test_annotation_45_log.txt │ ├── test_annotation_46.ttl │ ├── test_annotation_46_log.txt │ ├── test_annotation_47.ttl │ ├── test_annotation_47_log.txt │ ├── test_annotation_48.ttl │ ├── test_annotation_48_log.txt │ ├── test_annotation_49.ttl │ ├── test_annotation_49_log.txt │ ├── test_annotation_4_log.txt │ ├── test_annotation_5.ttl │ ├── test_annotation_50.ttl │ ├── test_annotation_50_log.txt │ ├── test_annotation_51.ttl │ ├── test_annotation_51_log.txt │ ├── test_annotation_52.ttl │ ├── test_annotation_52_log.txt │ ├── test_annotation_53.ttl │ ├── test_annotation_53_log.txt │ ├── test_annotation_54.ttl │ ├── test_annotation_54_log.txt │ ├── test_annotation_55.ttl │ ├── test_annotation_55_log.txt │ ├── test_annotation_56.ttl │ ├── test_annotation_56_log.txt │ ├── test_annotation_5_log.txt │ ├── test_annotation_6.ttl │ ├── test_annotation_6_log.txt │ ├── test_annotation_7.ttl │ ├── test_annotation_7_log.txt │ ├── test_annotation_8.ttl │ ├── test_annotation_8_log.txt │ ├── test_annotation_9.ttl │ ├── test_annotation_9_log.txt │ ├── test_attributes_1.ttl │ ├── test_attributes_10.ttl │ ├── test_attributes_100.ttl │ ├── test_attributes_100_log.txt │ ├── test_attributes_101.ttl │ ├── test_attributes_101_log.txt │ ├── test_attributes_102.ttl │ ├── test_attributes_102_log.txt │ ├── test_attributes_103.ttl │ ├── test_attributes_103_log.txt │ ├── test_attributes_104.ttl │ ├── test_attributes_104_log.txt │ ├── test_attributes_105.ttl │ ├── test_attributes_105_log.txt │ ├── test_attributes_106.ttl │ ├── test_attributes_106_log.txt │ ├── test_attributes_107.ttl │ ├── test_attributes_107_log.txt │ ├── test_attributes_108.ttl │ ├── test_attributes_108_log.txt │ ├── test_attributes_109.ttl │ ├── test_attributes_109_log.txt │ ├── test_attributes_10_log.txt │ ├── test_attributes_11.ttl │ ├── test_attributes_110.ttl │ ├── test_attributes_110_log.txt │ ├── test_attributes_111.ttl │ ├── test_attributes_111_log.txt │ ├── test_attributes_112.ttl │ ├── test_attributes_112_log.txt │ ├── test_attributes_113.ttl │ ├── test_attributes_113_log.txt │ ├── test_attributes_114.ttl │ ├── test_attributes_114_log.txt │ ├── test_attributes_115.ttl │ ├── test_attributes_115_log.txt │ ├── test_attributes_116.ttl │ ├── test_attributes_116_log.txt │ ├── test_attributes_117.ttl │ ├── test_attributes_117_log.txt │ ├── test_attributes_118.ttl │ ├── test_attributes_118_log.txt │ ├── test_attributes_119.ttl │ ├── test_attributes_119_log.txt │ ├── test_attributes_11_log.txt │ ├── test_attributes_12.ttl │ ├── test_attributes_120.ttl │ ├── test_attributes_120_log.txt │ ├── test_attributes_121.ttl │ ├── test_attributes_121_log.txt │ ├── test_attributes_122.ttl │ ├── test_attributes_122_log.txt │ ├── test_attributes_123.ttl │ ├── test_attributes_123_log.txt │ ├── test_attributes_124.ttl │ ├── test_attributes_124_log.txt │ ├── test_attributes_125.ttl │ ├── test_attributes_125_log.txt │ ├── test_attributes_126.ttl │ ├── test_attributes_126_log.txt │ ├── test_attributes_127.ttl │ ├── test_attributes_127_log.txt │ ├── test_attributes_128.ttl │ ├── test_attributes_128_log.txt │ ├── test_attributes_129.ttl │ ├── test_attributes_129_log.txt │ ├── test_attributes_12_log.txt │ ├── test_attributes_13.ttl │ ├── test_attributes_130.ttl │ ├── test_attributes_130_log.txt │ ├── test_attributes_131.ttl │ ├── test_attributes_131_log.txt │ ├── test_attributes_132.ttl │ ├── test_attributes_132_log.txt │ ├── test_attributes_133.ttl │ ├── test_attributes_133_log.txt │ ├── test_attributes_134.ttl │ ├── test_attributes_134_log.txt │ ├── test_attributes_135.ttl │ ├── test_attributes_135_log.txt │ ├── test_attributes_136.ttl │ ├── test_attributes_136_log.txt │ ├── test_attributes_137.ttl │ ├── test_attributes_137_log.txt │ ├── test_attributes_138.ttl │ ├── test_attributes_138_log.txt │ ├── test_attributes_139.ttl │ ├── test_attributes_139_log.txt │ ├── test_attributes_13_log.txt │ ├── test_attributes_14.ttl │ ├── test_attributes_140.ttl │ ├── test_attributes_140_log.txt │ ├── test_attributes_141.ttl │ ├── test_attributes_141_log.txt │ ├── test_attributes_142.ttl │ ├── test_attributes_142_log.txt │ ├── test_attributes_143.ttl │ ├── test_attributes_143_log.txt │ ├── test_attributes_144.ttl │ ├── test_attributes_144_log.txt │ ├── test_attributes_145.ttl │ ├── test_attributes_145_log.txt │ ├── test_attributes_146.ttl │ ├── test_attributes_146_log.txt │ ├── test_attributes_147.ttl │ ├── test_attributes_147_log.txt │ ├── test_attributes_148.ttl │ ├── test_attributes_148_log.txt │ ├── test_attributes_149.ttl │ ├── test_attributes_149_log.txt │ ├── test_attributes_14_log.txt │ ├── test_attributes_15.ttl │ ├── test_attributes_150.ttl │ ├── test_attributes_150_log.txt │ ├── test_attributes_151.ttl │ ├── test_attributes_151_log.txt │ ├── test_attributes_152.ttl │ ├── test_attributes_152_log.txt │ ├── test_attributes_153.ttl │ ├── test_attributes_153_log.txt │ ├── test_attributes_154.ttl │ ├── test_attributes_154_log.txt │ ├── test_attributes_155.ttl │ ├── test_attributes_155_log.txt │ ├── test_attributes_156.ttl │ ├── test_attributes_156_log.txt │ ├── test_attributes_157.ttl │ ├── test_attributes_157_log.txt │ ├── test_attributes_158.ttl │ ├── test_attributes_158_log.txt │ ├── test_attributes_159.ttl │ ├── test_attributes_159_log.txt │ ├── test_attributes_15_log.txt │ ├── test_attributes_16.ttl │ ├── test_attributes_160.ttl │ ├── test_attributes_160_log.txt │ ├── test_attributes_161.ttl │ ├── test_attributes_161_log.txt │ ├── test_attributes_162.ttl │ ├── test_attributes_162_log.txt │ ├── test_attributes_163.ttl │ ├── test_attributes_163_log.txt │ ├── test_attributes_164.ttl │ ├── test_attributes_164_log.txt │ ├── test_attributes_165.ttl │ ├── test_attributes_165_log.txt │ ├── test_attributes_166.ttl │ ├── test_attributes_166_log.txt │ ├── test_attributes_167.ttl │ ├── test_attributes_167_log.txt │ ├── test_attributes_168.ttl │ ├── test_attributes_168_log.txt │ ├── test_attributes_169.ttl │ ├── test_attributes_169_log.txt │ ├── test_attributes_16_log.txt │ ├── test_attributes_17.ttl │ ├── test_attributes_170.ttl │ ├── test_attributes_170_log.txt │ ├── test_attributes_171.ttl │ ├── test_attributes_171_log.txt │ ├── test_attributes_172.ttl │ ├── test_attributes_172_log.txt │ ├── test_attributes_173.ttl │ ├── test_attributes_173_log.txt │ ├── test_attributes_174.ttl │ ├── test_attributes_174_log.txt │ ├── test_attributes_175.ttl │ ├── test_attributes_175_log.txt │ ├── test_attributes_176.ttl │ ├── test_attributes_176_log.txt │ ├── test_attributes_177.ttl │ ├── test_attributes_177_log.txt │ ├── test_attributes_178.ttl │ ├── test_attributes_178_log.txt │ ├── test_attributes_179.ttl │ ├── test_attributes_179_log.txt │ ├── test_attributes_17_log.txt │ ├── test_attributes_18.ttl │ ├── test_attributes_180.ttl │ ├── test_attributes_180_log.txt │ ├── test_attributes_181.ttl │ ├── test_attributes_181_log.txt │ ├── test_attributes_182.ttl │ ├── test_attributes_182_log.txt │ ├── test_attributes_183.ttl │ ├── test_attributes_183_log.txt │ ├── test_attributes_184.ttl │ ├── test_attributes_184_log.txt │ ├── test_attributes_185.ttl │ ├── test_attributes_185_log.txt │ ├── test_attributes_186.ttl │ ├── test_attributes_186_log.txt │ ├── test_attributes_187.ttl │ ├── test_attributes_187_log.txt │ ├── test_attributes_188.ttl │ ├── test_attributes_188_log.txt │ ├── test_attributes_189.ttl │ ├── test_attributes_189_log.txt │ ├── test_attributes_18_log.txt │ ├── test_attributes_19.ttl │ ├── test_attributes_190.ttl │ ├── test_attributes_190_log.txt │ ├── test_attributes_191.ttl │ ├── test_attributes_191_log.txt │ ├── test_attributes_192.ttl │ ├── test_attributes_192_log.txt │ ├── test_attributes_193.ttl │ ├── test_attributes_193_log.txt │ ├── test_attributes_194.ttl │ ├── test_attributes_194_log.txt │ ├── test_attributes_195.ttl │ ├── test_attributes_195_log.txt │ ├── test_attributes_19_log.txt │ ├── test_attributes_1_log.txt │ ├── test_attributes_2.ttl │ ├── test_attributes_20.ttl │ ├── test_attributes_20_log.txt │ ├── test_attributes_21.ttl │ ├── test_attributes_21_log.txt │ ├── test_attributes_22.ttl │ ├── test_attributes_22_log.txt │ ├── test_attributes_23.ttl │ ├── test_attributes_23_log.txt │ ├── test_attributes_24.ttl │ ├── test_attributes_24_log.txt │ ├── test_attributes_25.ttl │ ├── test_attributes_25_log.txt │ ├── test_attributes_26.ttl │ ├── test_attributes_26_log.txt │ ├── test_attributes_27.ttl │ ├── test_attributes_27_log.txt │ ├── test_attributes_28.ttl │ ├── test_attributes_28_log.txt │ ├── test_attributes_29.ttl │ ├── test_attributes_29_log.txt │ ├── test_attributes_2_log.txt │ ├── test_attributes_3.ttl │ ├── test_attributes_30.ttl │ ├── test_attributes_30_log.txt │ ├── test_attributes_31.ttl │ ├── test_attributes_31_log.txt │ ├── test_attributes_32.ttl │ ├── test_attributes_32_log.txt │ ├── test_attributes_33.ttl │ ├── test_attributes_33_log.txt │ ├── test_attributes_34.ttl │ ├── test_attributes_34_log.txt │ ├── test_attributes_35.ttl │ ├── test_attributes_35_log.txt │ ├── test_attributes_36.ttl │ ├── test_attributes_36_log.txt │ ├── test_attributes_37.ttl │ ├── test_attributes_37_log.txt │ ├── test_attributes_38.ttl │ ├── test_attributes_38_log.txt │ ├── test_attributes_39.ttl │ ├── test_attributes_39_log.txt │ ├── test_attributes_3_log.txt │ ├── test_attributes_4.ttl │ ├── test_attributes_40.ttl │ ├── test_attributes_40_log.txt │ ├── test_attributes_41.ttl │ ├── test_attributes_41_log.txt │ ├── test_attributes_42.ttl │ ├── test_attributes_42_log.txt │ ├── test_attributes_43.ttl │ ├── test_attributes_43_log.txt │ ├── test_attributes_44.ttl │ ├── test_attributes_44_log.txt │ ├── test_attributes_45.ttl │ ├── test_attributes_45_log.txt │ ├── test_attributes_46.ttl │ ├── test_attributes_46_log.txt │ ├── test_attributes_47.ttl │ ├── test_attributes_47_log.txt │ ├── test_attributes_48.ttl │ ├── test_attributes_48_log.txt │ ├── test_attributes_49.ttl │ ├── test_attributes_49_log.txt │ ├── test_attributes_4_log.txt │ ├── test_attributes_5.ttl │ ├── test_attributes_50.ttl │ ├── test_attributes_50_log.txt │ ├── test_attributes_51.ttl │ ├── test_attributes_51_log.txt │ ├── test_attributes_52.ttl │ ├── test_attributes_52_log.txt │ ├── test_attributes_53.ttl │ ├── test_attributes_53_log.txt │ ├── test_attributes_54.ttl │ ├── test_attributes_54_log.txt │ ├── test_attributes_55.ttl │ ├── test_attributes_55_log.txt │ ├── test_attributes_56.ttl │ ├── test_attributes_56_log.txt │ ├── test_attributes_57.ttl │ ├── test_attributes_57_log.txt │ ├── test_attributes_58.ttl │ ├── test_attributes_58_log.txt │ ├── test_attributes_59.ttl │ ├── test_attributes_59_log.txt │ ├── test_attributes_5_log.txt │ ├── test_attributes_6.ttl │ ├── test_attributes_60.ttl │ ├── test_attributes_60_log.txt │ ├── test_attributes_61.ttl │ ├── test_attributes_61_log.txt │ ├── test_attributes_62.ttl │ ├── test_attributes_62_log.txt │ ├── test_attributes_63.ttl │ ├── test_attributes_63_log.txt │ ├── test_attributes_64.ttl │ ├── test_attributes_64_log.txt │ ├── test_attributes_65.ttl │ ├── test_attributes_65_log.txt │ ├── test_attributes_66.ttl │ ├── test_attributes_66_log.txt │ ├── test_attributes_67.ttl │ ├── test_attributes_67_log.txt │ ├── test_attributes_68.ttl │ ├── test_attributes_68_log.txt │ ├── test_attributes_69.ttl │ ├── test_attributes_69_log.txt │ ├── test_attributes_6_log.txt │ ├── test_attributes_7.ttl │ ├── test_attributes_70.ttl │ ├── test_attributes_70_log.txt │ ├── test_attributes_71.ttl │ ├── test_attributes_71_log.txt │ ├── test_attributes_72.ttl │ ├── test_attributes_72_log.txt │ ├── test_attributes_73.ttl │ ├── test_attributes_73_log.txt │ ├── test_attributes_74.ttl │ ├── test_attributes_74_log.txt │ ├── test_attributes_75.ttl │ ├── test_attributes_75_log.txt │ ├── test_attributes_76.ttl │ ├── test_attributes_76_log.txt │ ├── test_attributes_77.ttl │ ├── test_attributes_77_log.txt │ ├── test_attributes_78.ttl │ ├── test_attributes_78_log.txt │ ├── test_attributes_79.ttl │ ├── test_attributes_79_log.txt │ ├── test_attributes_7_log.txt │ ├── test_attributes_8.ttl │ ├── test_attributes_80.ttl │ ├── test_attributes_80_log.txt │ ├── test_attributes_81.ttl │ ├── test_attributes_81_log.txt │ ├── test_attributes_82.ttl │ ├── test_attributes_82_log.txt │ ├── test_attributes_83.ttl │ ├── test_attributes_83_log.txt │ ├── test_attributes_84.ttl │ ├── test_attributes_84_log.txt │ ├── test_attributes_85.ttl │ ├── test_attributes_85_log.txt │ ├── test_attributes_86.ttl │ ├── test_attributes_86_log.txt │ ├── test_attributes_87.ttl │ ├── test_attributes_87_log.txt │ ├── test_attributes_88.ttl │ ├── test_attributes_88_log.txt │ ├── test_attributes_89.ttl │ ├── test_attributes_89_log.txt │ ├── test_attributes_8_log.txt │ ├── test_attributes_9.ttl │ ├── test_attributes_90.ttl │ ├── test_attributes_90_log.txt │ ├── test_attributes_91.ttl │ ├── test_attributes_91_log.txt │ ├── test_attributes_92.ttl │ ├── test_attributes_92_log.txt │ ├── test_attributes_93.ttl │ ├── test_attributes_93_log.txt │ ├── test_attributes_94.ttl │ ├── test_attributes_94_log.txt │ ├── test_attributes_95.ttl │ ├── test_attributes_95_log.txt │ ├── test_attributes_96.ttl │ ├── test_attributes_96_log.txt │ ├── test_attributes_97.ttl │ ├── test_attributes_97_log.txt │ ├── test_attributes_98.ttl │ ├── test_attributes_98_log.txt │ ├── test_attributes_99.ttl │ ├── test_attributes_99_log.txt │ ├── test_attributes_9_log.txt │ ├── test_axiom_1.ttl │ ├── test_axiom_10.ttl │ ├── test_axiom_10_log.txt │ ├── test_axiom_11.ttl │ ├── test_axiom_11_log.txt │ ├── test_axiom_12.ttl │ ├── test_axiom_12_log.txt │ ├── test_axiom_13.ttl │ ├── test_axiom_13_log.txt │ ├── test_axiom_14.ttl │ ├── test_axiom_14_log.txt │ ├── test_axiom_15.ttl │ ├── test_axiom_15_log.txt │ ├── test_axiom_16.ttl │ ├── test_axiom_16_log.txt │ ├── test_axiom_17.ttl │ ├── test_axiom_17_log.txt │ ├── test_axiom_18.ttl │ ├── test_axiom_18_log.txt │ ├── test_axiom_19.ttl │ ├── test_axiom_19_log.txt │ ├── test_axiom_1_log.txt │ ├── test_axiom_2.ttl │ ├── test_axiom_20.ttl │ ├── test_axiom_20_log.txt │ ├── test_axiom_21.ttl │ ├── test_axiom_21_log.txt │ ├── test_axiom_22.ttl │ ├── test_axiom_22_log.txt │ ├── test_axiom_23.ttl │ ├── test_axiom_23_log.txt │ ├── test_axiom_24.ttl │ ├── test_axiom_24_log.txt │ ├── test_axiom_25.ttl │ ├── test_axiom_25_log.txt │ ├── test_axiom_26.ttl │ ├── test_axiom_26_log.txt │ ├── test_axiom_27.ttl │ ├── test_axiom_27_log.txt │ ├── test_axiom_28.ttl │ ├── test_axiom_28_log.txt │ ├── test_axiom_29.ttl │ ├── test_axiom_29_log.txt │ ├── test_axiom_2_log.txt │ ├── test_axiom_3.ttl │ ├── test_axiom_30.ttl │ ├── test_axiom_30_log.txt │ ├── test_axiom_31.ttl │ ├── test_axiom_31_log.txt │ ├── test_axiom_32.ttl │ ├── test_axiom_32_log.txt │ ├── test_axiom_33.ttl │ ├── test_axiom_33_log.txt │ ├── test_axiom_34.ttl │ ├── test_axiom_34_log.txt │ ├── test_axiom_35.ttl │ ├── test_axiom_35_log.txt │ ├── test_axiom_36.ttl │ ├── test_axiom_36_log.txt │ ├── test_axiom_37.ttl │ ├── test_axiom_37_log.txt │ ├── test_axiom_38.ttl │ ├── test_axiom_38_log.txt │ ├── test_axiom_39.ttl │ ├── test_axiom_39_log.txt │ ├── test_axiom_3_log.txt │ ├── test_axiom_4.ttl │ ├── test_axiom_40.ttl │ ├── test_axiom_40_log.txt │ ├── test_axiom_41.ttl │ ├── test_axiom_41_log.txt │ ├── test_axiom_42.ttl │ ├── test_axiom_42_log.txt │ ├── test_axiom_43.ttl │ ├── test_axiom_43_log.txt │ ├── test_axiom_44.ttl │ ├── test_axiom_44_log.txt │ ├── test_axiom_45.ttl │ ├── test_axiom_45_log.txt │ ├── test_axiom_46.ttl │ ├── test_axiom_46_log.txt │ ├── test_axiom_47.ttl │ ├── test_axiom_47_log.txt │ ├── test_axiom_48.ttl │ ├── test_axiom_48_log.txt │ ├── test_axiom_49.ttl │ ├── test_axiom_49_log.txt │ ├── test_axiom_4_log.txt │ ├── test_axiom_5.ttl │ ├── test_axiom_50.ttl │ ├── test_axiom_50_log.txt │ ├── test_axiom_51.ttl │ ├── test_axiom_51_log.txt │ ├── test_axiom_52.ttl │ ├── test_axiom_52_log.txt │ ├── test_axiom_53.ttl │ ├── test_axiom_53_log.txt │ ├── test_axiom_54.ttl │ ├── test_axiom_54_log.txt │ ├── test_axiom_55.ttl │ ├── test_axiom_55_log.txt │ ├── test_axiom_56.ttl │ ├── test_axiom_56_log.txt │ ├── test_axiom_57.ttl │ ├── test_axiom_57_log.txt │ ├── test_axiom_58.ttl │ ├── test_axiom_58_log.txt │ ├── test_axiom_59.ttl │ ├── test_axiom_59_log.txt │ ├── test_axiom_5_log.txt │ ├── test_axiom_6.ttl │ ├── test_axiom_60.ttl │ ├── test_axiom_60_log.txt │ ├── test_axiom_61.ttl │ ├── test_axiom_61_log.txt │ ├── test_axiom_62.ttl │ ├── test_axiom_62_log.txt │ ├── test_axiom_63.ttl │ ├── test_axiom_63_log.txt │ ├── test_axiom_64.ttl │ ├── test_axiom_64_log.txt │ ├── test_axiom_65.ttl │ ├── test_axiom_65_log.txt │ ├── test_axiom_66.ttl │ ├── test_axiom_66_log.txt │ ├── test_axiom_67.ttl │ ├── test_axiom_67_log.txt │ ├── test_axiom_68.ttl │ ├── test_axiom_68_log.txt │ ├── test_axiom_6_log.txt │ ├── test_axiom_7.ttl │ ├── test_axiom_7_log.txt │ ├── test_axiom_8.ttl │ ├── test_axiom_8_log.txt │ ├── test_axiom_9.ttl │ ├── test_axiom_9_log.txt │ ├── test_complement_1.ttl │ ├── test_complement_10.ttl │ ├── test_complement_10_log.txt │ ├── test_complement_11.ttl │ ├── test_complement_11_log.txt │ ├── test_complement_12.ttl │ ├── test_complement_12_log.txt │ ├── test_complement_13.ttl │ ├── test_complement_13_log.txt │ ├── test_complement_14.ttl │ ├── test_complement_14_log.txt │ ├── test_complement_15.ttl │ ├── test_complement_15_log.txt │ ├── test_complement_16.ttl │ ├── test_complement_16_log.txt │ ├── test_complement_17.ttl │ ├── test_complement_17_log.txt │ ├── test_complement_18.ttl │ ├── test_complement_18_log.txt │ ├── test_complement_19.ttl │ ├── test_complement_19_log.txt │ ├── test_complement_1_log.txt │ ├── test_complement_2.ttl │ ├── test_complement_20.ttl │ ├── test_complement_20_log.txt │ ├── test_complement_21.ttl │ ├── test_complement_21_log.txt │ ├── test_complement_22.ttl │ ├── test_complement_22_log.txt │ ├── test_complement_23.ttl │ ├── test_complement_23_log.txt │ ├── test_complement_24.ttl │ ├── test_complement_24_log.txt │ ├── test_complement_25.ttl │ ├── test_complement_25_log.txt │ ├── test_complement_26.ttl │ ├── test_complement_26_log.txt │ ├── test_complement_27.ttl │ ├── test_complement_27_log.txt │ ├── test_complement_2_log.txt │ ├── test_complement_3.ttl │ ├── test_complement_3_log.txt │ ├── test_complement_4.ttl │ ├── test_complement_4_log.txt │ ├── test_complement_5.ttl │ ├── test_complement_5_log.txt │ ├── test_complement_6.ttl │ ├── test_complement_6_log.txt │ ├── test_complement_7.ttl │ ├── test_complement_7_log.txt │ ├── test_complement_8.ttl │ ├── test_complement_8_log.txt │ ├── test_complement_9.ttl │ ├── test_complement_9_log.txt │ ├── test_container_1.ttl │ ├── test_container_1_log.txt │ ├── test_container_2.ttl │ ├── test_container_2_log.txt │ ├── test_container_3.ttl │ ├── test_container_3_log.txt │ ├── test_container_4.ttl │ ├── test_container_4_log.txt │ ├── test_deprecated_1.ttl │ ├── test_deprecated_10.ttl │ ├── test_deprecated_10_log.txt │ ├── test_deprecated_11.ttl │ ├── test_deprecated_11_log.txt │ ├── test_deprecated_12.ttl │ ├── test_deprecated_12_log.txt │ ├── test_deprecated_13.ttl │ ├── test_deprecated_13_log.txt │ ├── test_deprecated_14.ttl │ ├── test_deprecated_14_log.txt │ ├── test_deprecated_15.ttl │ ├── test_deprecated_15_log.txt │ ├── test_deprecated_16.ttl │ ├── test_deprecated_16_log.txt │ ├── test_deprecated_17.ttl │ ├── test_deprecated_17_log.txt │ ├── test_deprecated_18.ttl │ ├── test_deprecated_18_log.txt │ ├── test_deprecated_19.ttl │ ├── test_deprecated_19_log.txt │ ├── test_deprecated_1_log.txt │ ├── test_deprecated_2.ttl │ ├── test_deprecated_20.ttl │ ├── test_deprecated_20_log.txt │ ├── test_deprecated_21.ttl │ ├── test_deprecated_21_log.txt │ ├── test_deprecated_22.ttl │ ├── test_deprecated_22_log.txt │ ├── test_deprecated_23.ttl │ ├── test_deprecated_23_log.txt │ ├── test_deprecated_24.ttl │ ├── test_deprecated_24_log.txt │ ├── test_deprecated_25.ttl │ ├── test_deprecated_25_log.txt │ ├── test_deprecated_26.ttl │ ├── test_deprecated_26_log.txt │ ├── test_deprecated_27.ttl │ ├── test_deprecated_27_log.txt │ ├── test_deprecated_28.ttl │ ├── test_deprecated_28_log.txt │ ├── test_deprecated_29.ttl │ ├── test_deprecated_29_log.txt │ ├── test_deprecated_2_log.txt │ ├── test_deprecated_3.ttl │ ├── test_deprecated_30.ttl │ ├── test_deprecated_30_log.txt │ ├── test_deprecated_31.ttl │ ├── test_deprecated_31_log.txt │ ├── test_deprecated_32.ttl │ ├── test_deprecated_32_log.txt │ ├── test_deprecated_33.ttl │ ├── test_deprecated_33_log.txt │ ├── test_deprecated_34.ttl │ ├── test_deprecated_34_log.txt │ ├── test_deprecated_35.ttl │ ├── test_deprecated_35_log.txt │ ├── test_deprecated_36.ttl │ ├── test_deprecated_36_log.txt │ ├── test_deprecated_37.ttl │ ├── test_deprecated_37_log.txt │ ├── test_deprecated_38.ttl │ ├── test_deprecated_38_log.txt │ ├── test_deprecated_39.ttl │ ├── test_deprecated_39_log.txt │ ├── test_deprecated_3_log.txt │ ├── test_deprecated_4.ttl │ ├── test_deprecated_40.ttl │ ├── test_deprecated_40_log.txt │ ├── test_deprecated_41.ttl │ ├── test_deprecated_41_log.txt │ ├── test_deprecated_42.ttl │ ├── test_deprecated_42_log.txt │ ├── test_deprecated_43.ttl │ ├── test_deprecated_43_log.txt │ ├── test_deprecated_44.ttl │ ├── test_deprecated_44_log.txt │ ├── test_deprecated_45.ttl │ ├── test_deprecated_45_log.txt │ ├── test_deprecated_46.ttl │ ├── test_deprecated_46_log.txt │ ├── test_deprecated_47.ttl │ ├── test_deprecated_47_log.txt │ ├── test_deprecated_48.ttl │ ├── test_deprecated_48_log.txt │ ├── test_deprecated_49.ttl │ ├── test_deprecated_49_log.txt │ ├── test_deprecated_4_log.txt │ ├── test_deprecated_5.ttl │ ├── test_deprecated_50.ttl │ ├── test_deprecated_50_log.txt │ ├── test_deprecated_51.ttl │ ├── test_deprecated_51_log.txt │ ├── test_deprecated_52.ttl │ ├── test_deprecated_52_log.txt │ ├── test_deprecated_53.ttl │ ├── test_deprecated_53_log.txt │ ├── test_deprecated_54.ttl │ ├── test_deprecated_54_log.txt │ ├── test_deprecated_55.ttl │ ├── test_deprecated_55_log.txt │ ├── test_deprecated_56.ttl │ ├── test_deprecated_56_log.txt │ ├── test_deprecated_57.ttl │ ├── test_deprecated_57_log.txt │ ├── test_deprecated_58.ttl │ ├── test_deprecated_58_log.txt │ ├── test_deprecated_59.ttl │ ├── test_deprecated_59_log.txt │ ├── test_deprecated_5_log.txt │ ├── test_deprecated_6.ttl │ ├── test_deprecated_60.ttl │ ├── test_deprecated_60_log.txt │ ├── test_deprecated_61.ttl │ ├── test_deprecated_61_log.txt │ ├── test_deprecated_62.ttl │ ├── test_deprecated_62_log.txt │ ├── test_deprecated_63.ttl │ ├── test_deprecated_63_log.txt │ ├── test_deprecated_64.ttl │ ├── test_deprecated_64_log.txt │ ├── test_deprecated_65.ttl │ ├── test_deprecated_65_log.txt │ ├── test_deprecated_66.ttl │ ├── test_deprecated_66_log.txt │ ├── test_deprecated_67.ttl │ ├── test_deprecated_67_log.txt │ ├── test_deprecated_68.ttl │ ├── test_deprecated_68_log.txt │ ├── test_deprecated_69.ttl │ ├── test_deprecated_69_log.txt │ ├── test_deprecated_6_log.txt │ ├── test_deprecated_7.ttl │ ├── test_deprecated_70.ttl │ ├── test_deprecated_70_log.txt │ ├── test_deprecated_71.ttl │ ├── test_deprecated_71_log.txt │ ├── test_deprecated_72.ttl │ ├── test_deprecated_72_log.txt │ ├── test_deprecated_73.ttl │ ├── test_deprecated_73_log.txt │ ├── test_deprecated_74.ttl │ ├── test_deprecated_74_log.txt │ ├── test_deprecated_75.ttl │ ├── test_deprecated_75_log.txt │ ├── test_deprecated_76.ttl │ ├── test_deprecated_76_log.txt │ ├── test_deprecated_77.ttl │ ├── test_deprecated_77_log.txt │ ├── test_deprecated_78.ttl │ ├── test_deprecated_78_log.txt │ ├── test_deprecated_79.ttl │ ├── test_deprecated_79_log.txt │ ├── test_deprecated_7_log.txt │ ├── test_deprecated_8.ttl │ ├── test_deprecated_80.ttl │ ├── test_deprecated_80_log.txt │ ├── test_deprecated_81.ttl │ ├── test_deprecated_81_log.txt │ ├── test_deprecated_82.ttl │ ├── test_deprecated_82_log.txt │ ├── test_deprecated_8_log.txt │ ├── test_deprecated_9.ttl │ ├── test_deprecated_9_log.txt │ ├── test_disjoint_1.ttl │ ├── test_disjoint_10.ttl │ ├── test_disjoint_10_log.txt │ ├── test_disjoint_11.ttl │ ├── test_disjoint_11_log.txt │ ├── test_disjoint_12.ttl │ ├── test_disjoint_12_log.txt │ ├── test_disjoint_13.ttl │ ├── test_disjoint_13_log.txt │ ├── test_disjoint_14.ttl │ ├── test_disjoint_14_log.txt │ ├── test_disjoint_15.ttl │ ├── test_disjoint_15_log.txt │ ├── test_disjoint_16.ttl │ ├── test_disjoint_16_log.txt │ ├── test_disjoint_17.ttl │ ├── test_disjoint_17_log.txt │ ├── test_disjoint_18.ttl │ ├── test_disjoint_18_log.txt │ ├── test_disjoint_19.ttl │ ├── test_disjoint_19_log.txt │ ├── test_disjoint_1_log.txt │ ├── test_disjoint_2.ttl │ ├── test_disjoint_20.ttl │ ├── test_disjoint_20_log.txt │ ├── test_disjoint_21.ttl │ ├── test_disjoint_21_log.txt │ ├── test_disjoint_22.ttl │ ├── test_disjoint_22_log.txt │ ├── test_disjoint_23.ttl │ ├── test_disjoint_23_log.txt │ ├── test_disjoint_24.ttl │ ├── test_disjoint_24_log.txt │ ├── test_disjoint_25.ttl │ ├── test_disjoint_25_log.txt │ ├── test_disjoint_26.ttl │ ├── test_disjoint_26_log.txt │ ├── test_disjoint_27.ttl │ ├── test_disjoint_27_log.txt │ ├── test_disjoint_28.ttl │ ├── test_disjoint_28_log.txt │ ├── test_disjoint_29.ttl │ ├── test_disjoint_29_log.txt │ ├── test_disjoint_2_log.txt │ ├── test_disjoint_3.ttl │ ├── test_disjoint_30.ttl │ ├── test_disjoint_30_log.txt │ ├── test_disjoint_31.ttl │ ├── test_disjoint_31_log.txt │ ├── test_disjoint_32.ttl │ ├── test_disjoint_32_log.txt │ ├── test_disjoint_33.ttl │ ├── test_disjoint_33_log.txt │ ├── test_disjoint_34.ttl │ ├── test_disjoint_34_log.txt │ ├── test_disjoint_35.ttl │ ├── test_disjoint_35_log.txt │ ├── test_disjoint_36.ttl │ ├── test_disjoint_36_log.txt │ ├── test_disjoint_37.ttl │ ├── test_disjoint_37_log.txt │ ├── test_disjoint_38.ttl │ ├── test_disjoint_38_log.txt │ ├── test_disjoint_39.ttl │ ├── test_disjoint_39_log.txt │ ├── test_disjoint_3_log.txt │ ├── test_disjoint_4.ttl │ ├── test_disjoint_40.ttl │ ├── test_disjoint_40_log.txt │ ├── test_disjoint_41.ttl │ ├── test_disjoint_41_log.txt │ ├── test_disjoint_42.ttl │ ├── test_disjoint_42_log.txt │ ├── test_disjoint_43.ttl │ ├── test_disjoint_43_log.txt │ ├── test_disjoint_44.ttl │ ├── test_disjoint_44_log.txt │ ├── test_disjoint_45.ttl │ ├── test_disjoint_45_log.txt │ ├── test_disjoint_46.ttl │ ├── test_disjoint_46_log.txt │ ├── test_disjoint_47.ttl │ ├── test_disjoint_47_log.txt │ ├── test_disjoint_48.ttl │ ├── test_disjoint_48_log.txt │ ├── test_disjoint_49.ttl │ ├── test_disjoint_49_log.txt │ ├── test_disjoint_4_log.txt │ ├── test_disjoint_5.ttl │ ├── test_disjoint_50.ttl │ ├── test_disjoint_50_log.txt │ ├── test_disjoint_51.ttl │ ├── test_disjoint_51_log.txt │ ├── test_disjoint_52.ttl │ ├── test_disjoint_52_log.txt │ ├── test_disjoint_53.ttl │ ├── test_disjoint_53_log.txt │ ├── test_disjoint_54.ttl │ ├── test_disjoint_54_log.txt │ ├── test_disjoint_55.ttl │ ├── test_disjoint_55_log.txt │ ├── test_disjoint_56.ttl │ ├── test_disjoint_56_log.txt │ ├── test_disjoint_57.ttl │ ├── test_disjoint_57_log.txt │ ├── test_disjoint_5_log.txt │ ├── test_disjoint_6.ttl │ ├── test_disjoint_6_log.txt │ ├── test_disjoint_7.ttl │ ├── test_disjoint_7_log.txt │ ├── test_disjoint_8.ttl │ ├── test_disjoint_8_log.txt │ ├── test_disjoint_9.ttl │ ├── test_disjoint_9_log.txt │ ├── test_enumeration_1.ttl │ ├── test_enumeration_10.ttl │ ├── test_enumeration_10_log.txt │ ├── test_enumeration_11.ttl │ ├── test_enumeration_11_log.txt │ ├── test_enumeration_12.ttl │ ├── test_enumeration_12_log.txt │ ├── test_enumeration_13.ttl │ ├── test_enumeration_13_log.txt │ ├── test_enumeration_14.ttl │ ├── test_enumeration_14_log.txt │ ├── test_enumeration_15.ttl │ ├── test_enumeration_15_log.txt │ ├── test_enumeration_16.ttl │ ├── test_enumeration_16_log.txt │ ├── test_enumeration_17.ttl │ ├── test_enumeration_17_log.txt │ ├── test_enumeration_18.ttl │ ├── test_enumeration_18_log.txt │ ├── test_enumeration_19.ttl │ ├── test_enumeration_19_log.txt │ ├── test_enumeration_1_log.txt │ ├── test_enumeration_2.ttl │ ├── test_enumeration_20.ttl │ ├── test_enumeration_20_log.txt │ ├── test_enumeration_21.ttl │ ├── test_enumeration_21_log.txt │ ├── test_enumeration_22.ttl │ ├── test_enumeration_22_log.txt │ ├── test_enumeration_23.ttl │ ├── test_enumeration_23_log.txt │ ├── test_enumeration_24.ttl │ ├── test_enumeration_24_log.txt │ ├── test_enumeration_25.ttl │ ├── test_enumeration_25_log.txt │ ├── test_enumeration_26.ttl │ ├── test_enumeration_26_log.txt │ ├── test_enumeration_27.ttl │ ├── test_enumeration_27_log.txt │ ├── test_enumeration_28.ttl │ ├── test_enumeration_28_log.txt │ ├── test_enumeration_29.ttl │ ├── test_enumeration_29_log.txt │ ├── test_enumeration_2_log.txt │ ├── test_enumeration_3.ttl │ ├── test_enumeration_30.ttl │ ├── test_enumeration_30_log.txt │ ├── test_enumeration_31.ttl │ ├── test_enumeration_31_log.txt │ ├── test_enumeration_32.ttl │ ├── test_enumeration_32_log.txt │ ├── test_enumeration_33.ttl │ ├── test_enumeration_33_log.txt │ ├── test_enumeration_34.ttl │ ├── test_enumeration_34_log.txt │ ├── test_enumeration_35.ttl │ ├── test_enumeration_35_log.txt │ ├── test_enumeration_36.ttl │ ├── test_enumeration_36_log.txt │ ├── test_enumeration_37.ttl │ ├── test_enumeration_37_log.txt │ ├── test_enumeration_38.ttl │ ├── test_enumeration_38_log.txt │ ├── test_enumeration_39.ttl │ ├── test_enumeration_39_log.txt │ ├── test_enumeration_3_log.txt │ ├── test_enumeration_4.ttl │ ├── test_enumeration_40.ttl │ ├── test_enumeration_40_log.txt │ ├── test_enumeration_41.ttl │ ├── test_enumeration_41_log.txt │ ├── test_enumeration_42.ttl │ ├── test_enumeration_42_log.txt │ ├── test_enumeration_43.ttl │ ├── test_enumeration_43_log.txt │ ├── test_enumeration_44.ttl │ ├── test_enumeration_44_log.txt │ ├── test_enumeration_45.ttl │ ├── test_enumeration_45_log.txt │ ├── test_enumeration_46.ttl │ ├── test_enumeration_46_log.txt │ ├── test_enumeration_47.ttl │ ├── test_enumeration_47_log.txt │ ├── test_enumeration_48.ttl │ ├── test_enumeration_48_log.txt │ ├── test_enumeration_4_log.txt │ ├── test_enumeration_5.ttl │ ├── test_enumeration_5_log.txt │ ├── test_enumeration_6.ttl │ ├── test_enumeration_6_log.txt │ ├── test_enumeration_7.ttl │ ├── test_enumeration_7_log.txt │ ├── test_enumeration_8.ttl │ ├── test_enumeration_8_log.txt │ ├── test_enumeration_9.ttl │ ├── test_enumeration_9_log.txt │ ├── test_equivalence_1.ttl │ ├── test_equivalence_10.ttl │ ├── test_equivalence_10_log.txt │ ├── test_equivalence_11.ttl │ ├── test_equivalence_11_log.txt │ ├── test_equivalence_12.ttl │ ├── test_equivalence_12_log.txt │ ├── test_equivalence_13.ttl │ ├── test_equivalence_13_log.txt │ ├── test_equivalence_14.ttl │ ├── test_equivalence_14_log.txt │ ├── test_equivalence_15.ttl │ ├── test_equivalence_15_log.txt │ ├── test_equivalence_16.ttl │ ├── test_equivalence_16_log.txt │ ├── test_equivalence_17.ttl │ ├── test_equivalence_17_log.txt │ ├── test_equivalence_18.ttl │ ├── test_equivalence_18_log.txt │ ├── test_equivalence_19.ttl │ ├── test_equivalence_19_log.txt │ ├── test_equivalence_1_log.txt │ ├── test_equivalence_2.ttl │ ├── test_equivalence_20.ttl │ ├── test_equivalence_20_log.txt │ ├── test_equivalence_21.ttl │ ├── test_equivalence_21_log.txt │ ├── test_equivalence_22.ttl │ ├── test_equivalence_22_log.txt │ ├── test_equivalence_23.ttl │ ├── test_equivalence_23_log.txt │ ├── test_equivalence_24.ttl │ ├── test_equivalence_24_log.txt │ ├── test_equivalence_25.ttl │ ├── test_equivalence_25_log.txt │ ├── test_equivalence_26.ttl │ ├── test_equivalence_26_log.txt │ ├── test_equivalence_27.ttl │ ├── test_equivalence_27_log.txt │ ├── test_equivalence_28.ttl │ ├── test_equivalence_28_log.txt │ ├── test_equivalence_29.ttl │ ├── test_equivalence_29_log.txt │ ├── test_equivalence_2_log.txt │ ├── test_equivalence_3.ttl │ ├── test_equivalence_30.ttl │ ├── test_equivalence_30_log.txt │ ├── test_equivalence_31.ttl │ ├── test_equivalence_31_log.txt │ ├── test_equivalence_32.ttl │ ├── test_equivalence_32_log.txt │ ├── test_equivalence_33.ttl │ ├── test_equivalence_33_log.txt │ ├── test_equivalence_34.ttl │ ├── test_equivalence_34_log.txt │ ├── test_equivalence_35.ttl │ ├── test_equivalence_35_log.txt │ ├── test_equivalence_36.ttl │ ├── test_equivalence_36_log.txt │ ├── test_equivalence_37.ttl │ ├── test_equivalence_37_log.txt │ ├── test_equivalence_38.ttl │ ├── test_equivalence_38_log.txt │ ├── test_equivalence_39.ttl │ ├── test_equivalence_39_log.txt │ ├── test_equivalence_3_log.txt │ ├── test_equivalence_4.ttl │ ├── test_equivalence_40.ttl │ ├── test_equivalence_40_log.txt │ ├── test_equivalence_41.ttl │ ├── test_equivalence_41_log.txt │ ├── test_equivalence_42.ttl │ ├── test_equivalence_42_log.txt │ ├── test_equivalence_43.ttl │ ├── test_equivalence_43_log.txt │ ├── test_equivalence_44.ttl │ ├── test_equivalence_44_log.txt │ ├── test_equivalence_45.ttl │ ├── test_equivalence_45_log.txt │ ├── test_equivalence_46.ttl │ ├── test_equivalence_46_log.txt │ ├── test_equivalence_47.ttl │ ├── test_equivalence_47_log.txt │ ├── test_equivalence_48.ttl │ ├── test_equivalence_48_log.txt │ ├── test_equivalence_49.ttl │ ├── test_equivalence_49_log.txt │ ├── test_equivalence_4_log.txt │ ├── test_equivalence_5.ttl │ ├── test_equivalence_50.ttl │ ├── test_equivalence_50_log.txt │ ├── test_equivalence_5_log.txt │ ├── test_equivalence_6.ttl │ ├── test_equivalence_6_log.txt │ ├── test_equivalence_7.ttl │ ├── test_equivalence_7_log.txt │ ├── test_equivalence_8.ttl │ ├── test_equivalence_8_log.txt │ ├── test_equivalence_9.ttl │ ├── test_equivalence_9_log.txt │ ├── test_individuals_1.ttl │ ├── test_individuals_10.ttl │ ├── test_individuals_100.ttl │ ├── test_individuals_100_log.txt │ ├── test_individuals_101.ttl │ ├── test_individuals_101_log.txt │ ├── test_individuals_102.ttl │ ├── test_individuals_102_log.txt │ ├── test_individuals_103.ttl │ ├── test_individuals_103_log.txt │ ├── test_individuals_104.ttl │ ├── test_individuals_104_log.txt │ ├── test_individuals_105.ttl │ ├── test_individuals_105_log.txt │ ├── test_individuals_106.ttl │ ├── test_individuals_106_log.txt │ ├── test_individuals_107.ttl │ ├── test_individuals_107_log.txt │ ├── test_individuals_108.ttl │ ├── test_individuals_108_log.txt │ ├── test_individuals_109.ttl │ ├── test_individuals_109_log.txt │ ├── test_individuals_10_log.txt │ ├── test_individuals_11.ttl │ ├── test_individuals_110.ttl │ ├── test_individuals_110_log.txt │ ├── test_individuals_111.ttl │ ├── test_individuals_111_log.txt │ ├── test_individuals_112.ttl │ ├── test_individuals_112_log.txt │ ├── test_individuals_113.ttl │ ├── test_individuals_113_log.txt │ ├── test_individuals_114.ttl │ ├── test_individuals_114_log.txt │ ├── test_individuals_115.ttl │ ├── test_individuals_115_log.txt │ ├── test_individuals_116.ttl │ ├── test_individuals_116_log.txt │ ├── test_individuals_117.ttl │ ├── test_individuals_117_log.txt │ ├── test_individuals_118.ttl │ ├── test_individuals_118_log.txt │ ├── test_individuals_119.ttl │ ├── test_individuals_119_log.txt │ ├── test_individuals_11_log.txt │ ├── test_individuals_12.ttl │ ├── test_individuals_120.ttl │ ├── test_individuals_120_log.txt │ ├── test_individuals_121.ttl │ ├── test_individuals_121_log.txt │ ├── test_individuals_123.ttl │ ├── test_individuals_123_log.txt │ ├── test_individuals_124.ttl │ ├── test_individuals_124_log.txt │ ├── test_individuals_125.ttl │ ├── test_individuals_125_log.txt │ ├── test_individuals_126.ttl │ ├── test_individuals_126_log.txt │ ├── test_individuals_127.ttl │ ├── test_individuals_127_log.txt │ ├── test_individuals_129.ttl │ ├── test_individuals_129_log.txt │ ├── test_individuals_12_log.txt │ ├── test_individuals_13.ttl │ ├── test_individuals_130.ttl │ ├── test_individuals_130_log.txt │ ├── test_individuals_131.ttl │ ├── test_individuals_131_log.txt │ ├── test_individuals_132.ttl │ ├── test_individuals_132_log.txt │ ├── test_individuals_133.ttl │ ├── test_individuals_133_log.txt │ ├── test_individuals_134.ttl │ ├── test_individuals_134_log.txt │ ├── test_individuals_135.ttl │ ├── test_individuals_135_log.txt │ ├── test_individuals_136.ttl │ ├── test_individuals_136_log.txt │ ├── test_individuals_137.ttl │ ├── test_individuals_137_log.txt │ ├── test_individuals_138.ttl │ ├── test_individuals_138_log.txt │ ├── test_individuals_139.ttl │ ├── test_individuals_139_log.txt │ ├── test_individuals_13_log.txt │ ├── test_individuals_14.ttl │ ├── test_individuals_140.ttl │ ├── test_individuals_140_log.txt │ ├── test_individuals_141.ttl │ ├── test_individuals_141_log.txt │ ├── test_individuals_142.ttl │ ├── test_individuals_142_log.txt │ ├── test_individuals_14_log.txt │ ├── test_individuals_15.ttl │ ├── test_individuals_15_log.txt │ ├── test_individuals_16.ttl │ ├── test_individuals_16_log.txt │ ├── test_individuals_17.ttl │ ├── test_individuals_17_log.txt │ ├── test_individuals_18.ttl │ ├── test_individuals_18_log.txt │ ├── test_individuals_19.ttl │ ├── test_individuals_19_log.txt │ ├── test_individuals_1_log.txt │ ├── test_individuals_2.ttl │ ├── test_individuals_20.ttl │ ├── test_individuals_20_log.txt │ ├── test_individuals_21.ttl │ ├── test_individuals_21_log.txt │ ├── test_individuals_22.ttl │ ├── test_individuals_22_log.txt │ ├── test_individuals_23.ttl │ ├── test_individuals_23_log.txt │ ├── test_individuals_24.ttl │ ├── test_individuals_24_log.txt │ ├── test_individuals_25.ttl │ ├── test_individuals_25_log.txt │ ├── test_individuals_26.ttl │ ├── test_individuals_26_log.txt │ ├── test_individuals_27.ttl │ ├── test_individuals_27_log.txt │ ├── test_individuals_28.ttl │ ├── test_individuals_28_log.txt │ ├── test_individuals_29.ttl │ ├── test_individuals_29_log.txt │ ├── test_individuals_2_log.txt │ ├── test_individuals_3.ttl │ ├── test_individuals_31.ttl │ ├── test_individuals_31_log.txt │ ├── test_individuals_32.ttl │ ├── test_individuals_32_log.txt │ ├── test_individuals_33.ttl │ ├── test_individuals_33_log.txt │ ├── test_individuals_34.ttl │ ├── test_individuals_34_log.txt │ ├── test_individuals_35.ttl │ ├── test_individuals_35_log.txt │ ├── test_individuals_36.ttl │ ├── test_individuals_36_log.txt │ ├── test_individuals_37.ttl │ ├── test_individuals_37_log.txt │ ├── test_individuals_38.ttl │ ├── test_individuals_38_log.txt │ ├── test_individuals_39.ttl │ ├── test_individuals_39_log.txt │ ├── test_individuals_3_log.txt │ ├── test_individuals_4.ttl │ ├── test_individuals_40.ttl │ ├── test_individuals_40_log.txt │ ├── test_individuals_41.ttl │ ├── test_individuals_41_log.txt │ ├── test_individuals_42.ttl │ ├── test_individuals_42_log.txt │ ├── test_individuals_43.ttl │ ├── test_individuals_43_log.txt │ ├── test_individuals_44.ttl │ ├── test_individuals_44_log.txt │ ├── test_individuals_45.ttl │ ├── test_individuals_45_log.txt │ ├── test_individuals_46.ttl │ ├── test_individuals_46_log.txt │ ├── test_individuals_47.ttl │ ├── test_individuals_47_log.txt │ ├── test_individuals_48.ttl │ ├── test_individuals_48_log.txt │ ├── test_individuals_49.ttl │ ├── test_individuals_49_log.txt │ ├── test_individuals_4_log.txt │ ├── test_individuals_5.ttl │ ├── test_individuals_50.ttl │ ├── test_individuals_50_log.txt │ ├── test_individuals_51.ttl │ ├── test_individuals_51_log.txt │ ├── test_individuals_52.ttl │ ├── test_individuals_52_log.txt │ ├── test_individuals_53.ttl │ ├── test_individuals_53_log.txt │ ├── test_individuals_54.ttl │ ├── test_individuals_54_log.txt │ ├── test_individuals_55.ttl │ ├── test_individuals_55_log.txt │ ├── test_individuals_56.ttl │ ├── test_individuals_56_log.txt │ ├── test_individuals_57.ttl │ ├── test_individuals_57_log.txt │ ├── test_individuals_58.ttl │ ├── test_individuals_58_log.txt │ ├── test_individuals_59.ttl │ ├── test_individuals_59_log.txt │ ├── test_individuals_5_log.txt │ ├── test_individuals_6.ttl │ ├── test_individuals_60.ttl │ ├── test_individuals_60_log.txt │ ├── test_individuals_62.ttl │ ├── test_individuals_62_log.txt │ ├── test_individuals_63.ttl │ ├── test_individuals_63_log.txt │ ├── test_individuals_64.ttl │ ├── test_individuals_64_log.txt │ ├── test_individuals_65.ttl │ ├── test_individuals_65_log.txt │ ├── test_individuals_66.ttl │ ├── test_individuals_66_log.txt │ ├── test_individuals_67.ttl │ ├── test_individuals_67_log.txt │ ├── test_individuals_68.ttl │ ├── test_individuals_68_log.txt │ ├── test_individuals_69.ttl │ ├── test_individuals_69_log.txt │ ├── test_individuals_6_log.txt │ ├── test_individuals_7.ttl │ ├── test_individuals_70.ttl │ ├── test_individuals_70_log.txt │ ├── test_individuals_71.ttl │ ├── test_individuals_71_log.txt │ ├── test_individuals_72.ttl │ ├── test_individuals_72_log.txt │ ├── test_individuals_73.ttl │ ├── test_individuals_73_log.txt │ ├── test_individuals_74.ttl │ ├── test_individuals_74_log.txt │ ├── test_individuals_75.ttl │ ├── test_individuals_75_log.txt │ ├── test_individuals_76.ttl │ ├── test_individuals_76_log.txt │ ├── test_individuals_77.ttl │ ├── test_individuals_77_log.txt │ ├── test_individuals_78.ttl │ ├── test_individuals_78_log.txt │ ├── test_individuals_79.ttl │ ├── test_individuals_79_log.txt │ ├── test_individuals_7_log.txt │ ├── test_individuals_8.ttl │ ├── test_individuals_80.ttl │ ├── test_individuals_80_log.txt │ ├── test_individuals_81.ttl │ ├── test_individuals_81_log.txt │ ├── test_individuals_82.ttl │ ├── test_individuals_82_log.txt │ ├── test_individuals_83.ttl │ ├── test_individuals_83_log.txt │ ├── test_individuals_84.ttl │ ├── test_individuals_84_log.txt │ ├── test_individuals_85.ttl │ ├── test_individuals_85_log.txt │ ├── test_individuals_86.ttl │ ├── test_individuals_86_log.txt │ ├── test_individuals_87.ttl │ ├── test_individuals_87_log.txt │ ├── test_individuals_88.ttl │ ├── test_individuals_88_log.txt │ ├── test_individuals_89.ttl │ ├── test_individuals_89_log.txt │ ├── test_individuals_8_log.txt │ ├── test_individuals_9.ttl │ ├── test_individuals_90.ttl │ ├── test_individuals_90_log.txt │ ├── test_individuals_91.ttl │ ├── test_individuals_91_log.txt │ ├── test_individuals_92.ttl │ ├── test_individuals_92_log.txt │ ├── test_individuals_93.ttl │ ├── test_individuals_93_log.txt │ ├── test_individuals_94.ttl │ ├── test_individuals_94_log.txt │ ├── test_individuals_95.ttl │ ├── test_individuals_95_log.txt │ ├── test_individuals_97.ttl │ ├── test_individuals_97_log.txt │ ├── test_individuals_98.ttl │ ├── test_individuals_98_log.txt │ ├── test_individuals_99.ttl │ ├── test_individuals_99_log.txt │ ├── test_individuals_9_log.txt │ ├── test_intersection_1.ttl │ ├── test_intersection_10.ttl │ ├── test_intersection_10_log.txt │ ├── test_intersection_11.ttl │ ├── test_intersection_11_log.txt │ ├── test_intersection_12.ttl │ ├── test_intersection_12_log.txt │ ├── test_intersection_13.ttl │ ├── test_intersection_13_log.txt │ ├── test_intersection_14.ttl │ ├── test_intersection_14_log.txt │ ├── test_intersection_15.ttl │ ├── test_intersection_15_log.txt │ ├── test_intersection_16.ttl │ ├── test_intersection_16_log.txt │ ├── test_intersection_17.ttl │ ├── test_intersection_17_log.txt │ ├── test_intersection_18.ttl │ ├── test_intersection_18_log.txt │ ├── test_intersection_19.ttl │ ├── test_intersection_19_log.txt │ ├── test_intersection_1_log.txt │ ├── test_intersection_2.ttl │ ├── test_intersection_20.ttl │ ├── test_intersection_20_log.txt │ ├── test_intersection_21.ttl │ ├── test_intersection_21_log.txt │ ├── test_intersection_22.ttl │ ├── test_intersection_22_log.txt │ ├── test_intersection_23.ttl │ ├── test_intersection_23_log.txt │ ├── test_intersection_24.ttl │ ├── test_intersection_24_log.txt │ ├── test_intersection_25.ttl │ ├── test_intersection_25_log.txt │ ├── test_intersection_26.ttl │ ├── test_intersection_26_log.txt │ ├── test_intersection_27.ttl │ ├── test_intersection_27_log.txt │ ├── test_intersection_28.ttl │ ├── test_intersection_28_log.txt │ ├── test_intersection_29.ttl │ ├── test_intersection_29_log.txt │ ├── test_intersection_2_log.txt │ ├── test_intersection_3.ttl │ ├── test_intersection_30.ttl │ ├── test_intersection_30_log.txt │ ├── test_intersection_31.ttl │ ├── test_intersection_31_log.txt │ ├── test_intersection_32.ttl │ ├── test_intersection_32_log.txt │ ├── test_intersection_33.ttl │ ├── test_intersection_33_log.txt │ ├── test_intersection_34.ttl │ ├── test_intersection_34_log.txt │ ├── test_intersection_35.ttl │ ├── test_intersection_35_log.txt │ ├── test_intersection_36.ttl │ ├── test_intersection_36_log.txt │ ├── test_intersection_37.ttl │ ├── test_intersection_37_log.txt │ ├── test_intersection_38.ttl │ ├── test_intersection_38_log.txt │ ├── test_intersection_39.ttl │ ├── test_intersection_39_log.txt │ ├── test_intersection_3_log.txt │ ├── test_intersection_4.ttl │ ├── test_intersection_40.ttl │ ├── test_intersection_40_log.txt │ ├── test_intersection_41.ttl │ ├── test_intersection_41_log.txt │ ├── test_intersection_42.ttl │ ├── test_intersection_42_log.txt │ ├── test_intersection_43.ttl │ ├── test_intersection_43_log.txt │ ├── test_intersection_44.ttl │ ├── test_intersection_44_log.txt │ ├── test_intersection_45.ttl │ ├── test_intersection_45_log.txt │ ├── test_intersection_46.ttl │ ├── test_intersection_46_log.txt │ ├── test_intersection_47.ttl │ ├── test_intersection_47_log.txt │ ├── test_intersection_48.ttl │ ├── test_intersection_48_log.txt │ ├── test_intersection_49.ttl │ ├── test_intersection_49_log.txt │ ├── test_intersection_4_log.txt │ ├── test_intersection_5.ttl │ ├── test_intersection_50.ttl │ ├── test_intersection_50_log.txt │ ├── test_intersection_51.ttl │ ├── test_intersection_51_log.txt │ ├── test_intersection_52.ttl │ ├── test_intersection_52_log.txt │ ├── test_intersection_53.ttl │ ├── test_intersection_53_log.txt │ ├── test_intersection_54.ttl │ ├── test_intersection_54_log.txt │ ├── test_intersection_55.ttl │ ├── test_intersection_55_log.txt │ ├── test_intersection_56.ttl │ ├── test_intersection_56_log.txt │ ├── test_intersection_5_log.txt │ ├── test_intersection_6.ttl │ ├── test_intersection_6_log.txt │ ├── test_intersection_7.ttl │ ├── test_intersection_7_log.txt │ ├── test_intersection_8.ttl │ ├── test_intersection_8_log.txt │ ├── test_intersection_9.ttl │ ├── test_intersection_9_log.txt │ ├── test_iris_1.ttl │ ├── test_iris_10.ttl │ ├── test_iris_10_log.txt │ ├── test_iris_11.ttl │ ├── test_iris_11_log.txt │ ├── test_iris_12.ttl │ ├── test_iris_12_log.txt │ ├── test_iris_13.ttl │ ├── test_iris_13_log.txt │ ├── test_iris_14.ttl │ ├── test_iris_14_log.txt │ ├── test_iris_15.ttl │ ├── test_iris_15_log.txt │ ├── test_iris_16.ttl │ ├── test_iris_16_log.txt │ ├── test_iris_17.ttl │ ├── test_iris_17_log.txt │ ├── test_iris_18.ttl │ ├── test_iris_18_log.txt │ ├── test_iris_19.ttl │ ├── test_iris_19_log.txt │ ├── test_iris_1_log.txt │ ├── test_iris_2.ttl │ ├── test_iris_20.ttl │ ├── test_iris_20_log.txt │ ├── test_iris_21.ttl │ ├── test_iris_21_log.txt │ ├── test_iris_22.ttl │ ├── test_iris_22_log.txt │ ├── test_iris_23.ttl │ ├── test_iris_23_log.txt │ ├── test_iris_24.ttl │ ├── test_iris_24_log.txt │ ├── test_iris_25.ttl │ ├── test_iris_25_log.txt │ ├── test_iris_26.ttl │ ├── test_iris_26_log.txt │ ├── test_iris_27.ttl │ ├── test_iris_27_log.txt │ ├── test_iris_28.ttl │ ├── test_iris_28_log.txt │ ├── test_iris_29.ttl │ ├── test_iris_29_log.txt │ ├── test_iris_2_log.txt │ ├── test_iris_3.ttl │ ├── test_iris_30.ttl │ ├── test_iris_30_log.txt │ ├── test_iris_31.ttl │ ├── test_iris_31_log.txt │ ├── test_iris_32.ttl │ ├── test_iris_32_log.txt │ ├── test_iris_33.ttl │ ├── test_iris_33_log.txt │ ├── test_iris_34.ttl │ ├── test_iris_34_log.txt │ ├── test_iris_35.ttl │ ├── test_iris_35_log.txt │ ├── test_iris_36.ttl │ ├── test_iris_36_log.txt │ ├── test_iris_37.ttl │ ├── test_iris_37_log.txt │ ├── test_iris_38.ttl │ ├── test_iris_38_log.txt │ ├── test_iris_39.ttl │ ├── test_iris_39_log.txt │ ├── test_iris_3_log.txt │ ├── test_iris_4.ttl │ ├── test_iris_40.ttl │ ├── test_iris_40_log.txt │ ├── test_iris_41.ttl │ ├── test_iris_41_log.txt │ ├── test_iris_42.ttl │ ├── test_iris_42_log.txt │ ├── test_iris_43.ttl │ ├── test_iris_43_log.txt │ ├── test_iris_44.ttl │ ├── test_iris_44_log.txt │ ├── test_iris_45.ttl │ ├── test_iris_45_log.txt │ ├── test_iris_46.ttl │ ├── test_iris_46_log.txt │ ├── test_iris_47.ttl │ ├── test_iris_47_log.txt │ ├── test_iris_48.ttl │ ├── test_iris_48_log.txt │ ├── test_iris_4_log.txt │ ├── test_iris_5.ttl │ ├── test_iris_5_log.txt │ ├── test_iris_6.ttl │ ├── test_iris_6_log.txt │ ├── test_iris_7.ttl │ ├── test_iris_7_log.txt │ ├── test_iris_8.ttl │ ├── test_iris_8_log.txt │ ├── test_iris_9.ttl │ ├── test_iris_9_log.txt │ ├── test_metadata_1.ttl │ ├── test_metadata_10.ttl │ ├── test_metadata_10_log.txt │ ├── test_metadata_11.ttl │ ├── test_metadata_11_log.txt │ ├── test_metadata_12.ttl │ ├── test_metadata_12_log.txt │ ├── test_metadata_13.ttl │ ├── test_metadata_13_log.txt │ ├── test_metadata_14.ttl │ ├── test_metadata_14_log.txt │ ├── test_metadata_15.ttl │ ├── test_metadata_15_log.txt │ ├── test_metadata_16.ttl │ ├── test_metadata_16_log.txt │ ├── test_metadata_17.ttl │ ├── test_metadata_17_log.txt │ ├── test_metadata_18.ttl │ ├── test_metadata_18_log.txt │ ├── test_metadata_19.ttl │ ├── test_metadata_19_log.txt │ ├── test_metadata_1_log.txt │ ├── test_metadata_2.ttl │ ├── test_metadata_20.ttl │ ├── test_metadata_20_log.txt │ ├── test_metadata_21.ttl │ ├── test_metadata_21_log.txt │ ├── test_metadata_22.ttl │ ├── test_metadata_22_log.txt │ ├── test_metadata_2_log.txt │ ├── test_metadata_3.ttl │ ├── test_metadata_3_log.txt │ ├── test_metadata_4.ttl │ ├── test_metadata_4_log.txt │ ├── test_metadata_5.ttl │ ├── test_metadata_5_log.txt │ ├── test_metadata_6.ttl │ ├── test_metadata_6_log.txt │ ├── test_metadata_7.ttl │ ├── test_metadata_7_log.txt │ ├── test_metadata_8.ttl │ ├── test_metadata_8_log.txt │ ├── test_metadata_9.ttl │ ├── test_metadata_9_log.txt │ ├── test_namespaces_1.ttl │ ├── test_namespaces_10.ttl │ ├── test_namespaces_10_log.txt │ ├── test_namespaces_11.ttl │ ├── test_namespaces_11_log.txt │ ├── test_namespaces_12.ttl │ ├── test_namespaces_12_log.txt │ ├── test_namespaces_13.ttl │ ├── test_namespaces_13_log.txt │ ├── test_namespaces_14.ttl │ ├── test_namespaces_14_log.txt │ ├── test_namespaces_15.ttl │ ├── test_namespaces_15_log.txt │ ├── test_namespaces_16.ttl │ ├── test_namespaces_16_log.txt │ ├── test_namespaces_17.ttl │ ├── test_namespaces_17_log.txt │ ├── test_namespaces_18.ttl │ ├── test_namespaces_18_log.txt │ ├── test_namespaces_19.ttl │ ├── test_namespaces_19_log.txt │ ├── test_namespaces_1_log.txt │ ├── test_namespaces_2.ttl │ ├── test_namespaces_20.ttl │ ├── test_namespaces_20_log.txt │ ├── test_namespaces_21.ttl │ ├── test_namespaces_21_log.txt │ ├── test_namespaces_22.ttl │ ├── test_namespaces_22_log.txt │ ├── test_namespaces_23.ttl │ ├── test_namespaces_23_log.txt │ ├── test_namespaces_24.ttl │ ├── test_namespaces_24_log.txt │ ├── test_namespaces_25.ttl │ ├── test_namespaces_25_log.txt │ ├── test_namespaces_26.ttl │ ├── test_namespaces_26_log.txt │ ├── test_namespaces_27.ttl │ ├── test_namespaces_27_log.txt │ ├── test_namespaces_28.ttl │ ├── test_namespaces_28_log.txt │ ├── test_namespaces_29.ttl │ ├── test_namespaces_29_log.txt │ ├── test_namespaces_2_log.txt │ ├── test_namespaces_3.ttl │ ├── test_namespaces_30.ttl │ ├── test_namespaces_30_log.txt │ ├── test_namespaces_3_log.txt │ ├── test_namespaces_4.ttl │ ├── test_namespaces_4_log.txt │ ├── test_namespaces_5.ttl │ ├── test_namespaces_5_log.txt │ ├── test_namespaces_6.ttl │ ├── test_namespaces_6_log.txt │ ├── test_namespaces_7.ttl │ ├── test_namespaces_7_log.txt │ ├── test_namespaces_8.ttl │ ├── test_namespaces_8_log.txt │ ├── test_namespaces_9.ttl │ ├── test_namespaces_9_log.txt │ ├── test_property_chain_1.ttl │ ├── test_property_chain_10.ttl │ ├── test_property_chain_10_log.txt │ ├── test_property_chain_11.ttl │ ├── test_property_chain_11_log.txt │ ├── test_property_chain_12.ttl │ ├── test_property_chain_12_log.txt │ ├── test_property_chain_13.ttl │ ├── test_property_chain_13_log.txt │ ├── test_property_chain_14.ttl │ ├── test_property_chain_14_log.txt │ ├── test_property_chain_15.ttl │ ├── test_property_chain_15_log.txt │ ├── test_property_chain_16.ttl │ ├── test_property_chain_16_log.txt │ ├── test_property_chain_17.ttl │ ├── test_property_chain_17_log.txt │ ├── test_property_chain_18.ttl │ ├── test_property_chain_18_log.txt │ ├── test_property_chain_19.ttl │ ├── test_property_chain_19_log.txt │ ├── test_property_chain_1_log.txt │ ├── test_property_chain_2.ttl │ ├── test_property_chain_20.ttl │ ├── test_property_chain_20_log.txt │ ├── test_property_chain_21.ttl │ ├── test_property_chain_21_log.txt │ ├── test_property_chain_22.ttl │ ├── test_property_chain_22_log.txt │ ├── test_property_chain_2_log.txt │ ├── test_property_chain_3.ttl │ ├── test_property_chain_3_log.txt │ ├── test_property_chain_4.ttl │ ├── test_property_chain_4_log.txt │ ├── test_property_chain_5.ttl │ ├── test_property_chain_5_log.txt │ ├── test_property_chain_6.ttl │ ├── test_property_chain_6_log.txt │ ├── test_property_chain_7.ttl │ ├── test_property_chain_7_log.txt │ ├── test_property_chain_8.ttl │ ├── test_property_chain_8_log.txt │ ├── test_property_chain_9.ttl │ ├── test_property_chain_9_log.txt │ ├── test_relations_1.ttl │ ├── test_relations_10.ttl │ ├── test_relations_100.ttl │ ├── test_relations_100_log.txt │ ├── test_relations_101.ttl │ ├── test_relations_101_log.txt │ ├── test_relations_102.ttl │ ├── test_relations_102_log.txt │ ├── test_relations_103.ttl │ ├── test_relations_103_log.txt │ ├── test_relations_104.ttl │ ├── test_relations_104_log.txt │ ├── test_relations_105.ttl │ ├── test_relations_105_log.txt │ ├── test_relations_106.ttl │ ├── test_relations_106_log.txt │ ├── test_relations_107.ttl │ ├── test_relations_107_log.txt │ ├── test_relations_108.ttl │ ├── test_relations_108_log.txt │ ├── test_relations_109.ttl │ ├── test_relations_109_log.txt │ ├── test_relations_10_log.txt │ ├── test_relations_11.ttl │ ├── test_relations_110.ttl │ ├── test_relations_110_log.txt │ ├── test_relations_111.ttl │ ├── test_relations_111_log.txt │ ├── test_relations_112.ttl │ ├── test_relations_112_log.txt │ ├── test_relations_113.ttl │ ├── test_relations_113_log.txt │ ├── test_relations_114.ttl │ ├── test_relations_114_log.txt │ ├── test_relations_115.ttl │ ├── test_relations_115_log.txt │ ├── test_relations_116.ttl │ ├── test_relations_116_log.txt │ ├── test_relations_117.ttl │ ├── test_relations_117_log.txt │ ├── test_relations_118.ttl │ ├── test_relations_118_log.txt │ ├── test_relations_119.ttl │ ├── test_relations_119_log.txt │ ├── test_relations_11_log.txt │ ├── test_relations_12.ttl │ ├── test_relations_120.ttl │ ├── test_relations_120_log.txt │ ├── test_relations_121.ttl │ ├── test_relations_121_log.txt │ ├── test_relations_122.ttl │ ├── test_relations_122_log.txt │ ├── test_relations_123.ttl │ ├── test_relations_123_log.txt │ ├── test_relations_124.ttl │ ├── test_relations_124_log.txt │ ├── test_relations_125.ttl │ ├── test_relations_125_log.txt │ ├── test_relations_126.ttl │ ├── test_relations_126_log.txt │ ├── test_relations_127.ttl │ ├── test_relations_127_log.txt │ ├── test_relations_128.ttl │ ├── test_relations_128_log.txt │ ├── test_relations_129.ttl │ ├── test_relations_129_log.txt │ ├── test_relations_12_log.txt │ ├── test_relations_13.ttl │ ├── test_relations_130.ttl │ ├── test_relations_130_log.txt │ ├── test_relations_131.ttl │ ├── test_relations_131_log.txt │ ├── test_relations_132.ttl │ ├── test_relations_132_log.txt │ ├── test_relations_133.ttl │ ├── test_relations_133_log.txt │ ├── test_relations_134.ttl │ ├── test_relations_134_log.txt │ ├── test_relations_135.ttl │ ├── test_relations_135_log.txt │ ├── test_relations_136.ttl │ ├── test_relations_136_log.txt │ ├── test_relations_137.ttl │ ├── test_relations_137_log.txt │ ├── test_relations_138.ttl │ ├── test_relations_138_log.txt │ ├── test_relations_139.ttl │ ├── test_relations_139_log.txt │ ├── test_relations_13_log.txt │ ├── test_relations_14.ttl │ ├── test_relations_140.ttl │ ├── test_relations_140_log.txt │ ├── test_relations_141.ttl │ ├── test_relations_141_log.txt │ ├── test_relations_142.ttl │ ├── test_relations_142_log.txt │ ├── test_relations_143.ttl │ ├── test_relations_143_log.txt │ ├── test_relations_144.ttl │ ├── test_relations_144_log.txt │ ├── test_relations_145.ttl │ ├── test_relations_145_log.txt │ ├── test_relations_146.ttl │ ├── test_relations_146_log.txt │ ├── test_relations_147.ttl │ ├── test_relations_147_log.txt │ ├── test_relations_148.ttl │ ├── test_relations_148_log.txt │ ├── test_relations_149.ttl │ ├── test_relations_149_log.txt │ ├── test_relations_14_log.txt │ ├── test_relations_15.ttl │ ├── test_relations_150.ttl │ ├── test_relations_150_log.txt │ ├── test_relations_151.ttl │ ├── test_relations_151_log.txt │ ├── test_relations_152.ttl │ ├── test_relations_152_log.txt │ ├── test_relations_153.ttl │ ├── test_relations_153_log.txt │ ├── test_relations_154.ttl │ ├── test_relations_154_log.txt │ ├── test_relations_155.ttl │ ├── test_relations_155_log.txt │ ├── test_relations_156.ttl │ ├── test_relations_156_log.txt │ ├── test_relations_157.ttl │ ├── test_relations_157_log.txt │ ├── test_relations_158.ttl │ ├── test_relations_158_log.txt │ ├── test_relations_159.ttl │ ├── test_relations_159_log.txt │ ├── test_relations_15_log.txt │ ├── test_relations_16.ttl │ ├── test_relations_160.ttl │ ├── test_relations_160_log.txt │ ├── test_relations_161.ttl │ ├── test_relations_161_log.txt │ ├── test_relations_162.ttl │ ├── test_relations_162_log.txt │ ├── test_relations_163.ttl │ ├── test_relations_163_log.txt │ ├── test_relations_164.ttl │ ├── test_relations_164_log.txt │ ├── test_relations_165.ttl │ ├── test_relations_165_log.txt │ ├── test_relations_166.ttl │ ├── test_relations_166_log.txt │ ├── test_relations_167.ttl │ ├── test_relations_167_log.txt │ ├── test_relations_168.ttl │ ├── test_relations_168_log.txt │ ├── test_relations_169.ttl │ ├── test_relations_169_log.txt │ ├── test_relations_16_log.txt │ ├── test_relations_17.ttl │ ├── test_relations_170.ttl │ ├── test_relations_170_log.txt │ ├── test_relations_171.ttl │ ├── test_relations_171_log.txt │ ├── test_relations_172.ttl │ ├── test_relations_172_log.txt │ ├── test_relations_173.ttl │ ├── test_relations_173_log.txt │ ├── test_relations_174.ttl │ ├── test_relations_174_log.txt │ ├── test_relations_175.ttl │ ├── test_relations_175_log.txt │ ├── test_relations_176.ttl │ ├── test_relations_176_log.txt │ ├── test_relations_177.ttl │ ├── test_relations_177_log.txt │ ├── test_relations_178.ttl │ ├── test_relations_178_log.txt │ ├── test_relations_179.ttl │ ├── test_relations_179_log.txt │ ├── test_relations_17_log.txt │ ├── test_relations_18.ttl │ ├── test_relations_180.ttl │ ├── test_relations_180_log.txt │ ├── test_relations_181.ttl │ ├── test_relations_181_log.txt │ ├── test_relations_182.ttl │ ├── test_relations_182_log.txt │ ├── test_relations_183.ttl │ ├── test_relations_183_log.txt │ ├── test_relations_184.ttl │ ├── test_relations_184_log.txt │ ├── test_relations_185.ttl │ ├── test_relations_185_log.txt │ ├── test_relations_186.ttl │ ├── test_relations_186_log.txt │ ├── test_relations_187.ttl │ ├── test_relations_187_log.txt │ ├── test_relations_188.ttl │ ├── test_relations_188_log.txt │ ├── test_relations_189.ttl │ ├── test_relations_189_log.txt │ ├── test_relations_18_log.txt │ ├── test_relations_19.ttl │ ├── test_relations_190.ttl │ ├── test_relations_190_log.txt │ ├── test_relations_191.ttl │ ├── test_relations_191_log.txt │ ├── test_relations_192.ttl │ ├── test_relations_192_log.txt │ ├── test_relations_193.ttl │ ├── test_relations_193_log.txt │ ├── test_relations_194.ttl │ ├── test_relations_194_log.txt │ ├── test_relations_195.ttl │ ├── test_relations_195_log.txt │ ├── test_relations_196.ttl │ ├── test_relations_196_log.txt │ ├── test_relations_197.ttl │ ├── test_relations_197_log.txt │ ├── test_relations_199.ttl │ ├── test_relations_199_log.txt │ ├── test_relations_19_log.txt │ ├── test_relations_1_log.txt │ ├── test_relations_2.ttl │ ├── test_relations_20.ttl │ ├── test_relations_200.ttl │ ├── test_relations_200_log.txt │ ├── test_relations_201.ttl │ ├── test_relations_201_log.txt │ ├── test_relations_202.ttl │ ├── test_relations_202_log.txt │ ├── test_relations_203.ttl │ ├── test_relations_203_log.txt │ ├── test_relations_204.ttl │ ├── test_relations_204_log.txt │ ├── test_relations_205.ttl │ ├── test_relations_205_log.txt │ ├── test_relations_206.ttl │ ├── test_relations_206_log.txt │ ├── test_relations_207.ttl │ ├── test_relations_207_log.txt │ ├── test_relations_208.ttl │ ├── test_relations_208_log.txt │ ├── test_relations_209.ttl │ ├── test_relations_209_log.txt │ ├── test_relations_20_log.txt │ ├── test_relations_21.ttl │ ├── test_relations_210.ttl │ ├── test_relations_210_log.txt │ ├── test_relations_211.ttl │ ├── test_relations_211_log.txt │ ├── test_relations_212.ttl │ ├── test_relations_212_log.txt │ ├── test_relations_213.ttl │ ├── test_relations_213_log.txt │ ├── test_relations_214.ttl │ ├── test_relations_214_log.txt │ ├── test_relations_215.ttl │ ├── test_relations_215_log.txt │ ├── test_relations_216.ttl │ ├── test_relations_216_log.txt │ ├── test_relations_217.ttl │ ├── test_relations_217_log.txt │ ├── test_relations_219.ttl │ ├── test_relations_219_log.txt │ ├── test_relations_21_log.txt │ ├── test_relations_22.ttl │ ├── test_relations_220.ttl │ ├── test_relations_220_log.txt │ ├── test_relations_221.ttl │ ├── test_relations_221_log.txt │ ├── test_relations_222.ttl │ ├── test_relations_222_log.txt │ ├── test_relations_223.ttl │ ├── test_relations_223_log.txt │ ├── test_relations_224.ttl │ ├── test_relations_224_log.txt │ ├── test_relations_225.ttl │ ├── test_relations_225_log.txt │ ├── test_relations_226.ttl │ ├── test_relations_226_log.txt │ ├── test_relations_227.ttl │ ├── test_relations_227_log.txt │ ├── test_relations_228.ttl │ ├── test_relations_228_log.txt │ ├── test_relations_229.ttl │ ├── test_relations_229_log.txt │ ├── test_relations_22_log.txt │ ├── test_relations_23.ttl │ ├── test_relations_230.ttl │ ├── test_relations_230_log.txt │ ├── test_relations_231.ttl │ ├── test_relations_231_log.txt │ ├── test_relations_23_log.txt │ ├── test_relations_24.ttl │ ├── test_relations_24_log.txt │ ├── test_relations_25.ttl │ ├── test_relations_25_log.txt │ ├── test_relations_26.ttl │ ├── test_relations_26_log.txt │ ├── test_relations_27.ttl │ ├── test_relations_27_log.txt │ ├── test_relations_28.ttl │ ├── test_relations_28_log.txt │ ├── test_relations_29.ttl │ ├── test_relations_29_log.txt │ ├── test_relations_2_log.txt │ ├── test_relations_3.ttl │ ├── test_relations_30.ttl │ ├── test_relations_30_log.txt │ ├── test_relations_31.ttl │ ├── test_relations_31_log.txt │ ├── test_relations_32.ttl │ ├── test_relations_32_log.txt │ ├── test_relations_33.ttl │ ├── test_relations_33_log.txt │ ├── test_relations_34.ttl │ ├── test_relations_34_log.txt │ ├── test_relations_35.ttl │ ├── test_relations_35_log.txt │ ├── test_relations_36.ttl │ ├── test_relations_36_log.txt │ ├── test_relations_37.ttl │ ├── test_relations_37_log.txt │ ├── test_relations_38.ttl │ ├── test_relations_38_log.txt │ ├── test_relations_39.ttl │ ├── test_relations_39_log.txt │ ├── test_relations_3_log.txt │ ├── test_relations_4.ttl │ ├── test_relations_40.ttl │ ├── test_relations_40_log.txt │ ├── test_relations_41.ttl │ ├── test_relations_41_log.txt │ ├── test_relations_42.ttl │ ├── test_relations_42_log.txt │ ├── test_relations_43.ttl │ ├── test_relations_43_log.txt │ ├── test_relations_44.ttl │ ├── test_relations_44_log.txt │ ├── test_relations_45.ttl │ ├── test_relations_45_log.txt │ ├── test_relations_46.ttl │ ├── test_relations_46_log.txt │ ├── test_relations_47.ttl │ ├── test_relations_47_log.txt │ ├── test_relations_48.ttl │ ├── test_relations_48_log.txt │ ├── test_relations_49.ttl │ ├── test_relations_49_log.txt │ ├── test_relations_4_log.txt │ ├── test_relations_5.ttl │ ├── test_relations_50.ttl │ ├── test_relations_50_log.txt │ ├── test_relations_51.ttl │ ├── test_relations_51_log.txt │ ├── test_relations_52.ttl │ ├── test_relations_52_log.txt │ ├── test_relations_53.ttl │ ├── test_relations_53_log.txt │ ├── test_relations_54.ttl │ ├── test_relations_54_log.txt │ ├── test_relations_55.ttl │ ├── test_relations_55_log.txt │ ├── test_relations_56.ttl │ ├── test_relations_56_log.txt │ ├── test_relations_57.ttl │ ├── test_relations_57_log.txt │ ├── test_relations_58.ttl │ ├── test_relations_58_log.txt │ ├── test_relations_59.ttl │ ├── test_relations_59_log.txt │ ├── test_relations_5_log.txt │ ├── test_relations_6.ttl │ ├── test_relations_60.ttl │ ├── test_relations_60_log.txt │ ├── test_relations_61.ttl │ ├── test_relations_61_log.txt │ ├── test_relations_62.ttl │ ├── test_relations_62_log.txt │ ├── test_relations_63.ttl │ ├── test_relations_63_log.txt │ ├── test_relations_64.ttl │ ├── test_relations_64_log.txt │ ├── test_relations_65.ttl │ ├── test_relations_65_log.txt │ ├── test_relations_66.ttl │ ├── test_relations_66_log.txt │ ├── test_relations_67.ttl │ ├── test_relations_67_log.txt │ ├── test_relations_68.ttl │ ├── test_relations_68_log.txt │ ├── test_relations_69.ttl │ ├── test_relations_69_log.txt │ ├── test_relations_6_log.txt │ ├── test_relations_7.ttl │ ├── test_relations_70.ttl │ ├── test_relations_70_log.txt │ ├── test_relations_71.ttl │ ├── test_relations_71_log.txt │ ├── test_relations_72.ttl │ ├── test_relations_72_log.txt │ ├── test_relations_73.ttl │ ├── test_relations_73_log.txt │ ├── test_relations_74.ttl │ ├── test_relations_74_log.txt │ ├── test_relations_75.ttl │ ├── test_relations_75_log.txt │ ├── test_relations_76.ttl │ ├── test_relations_76_log.txt │ ├── test_relations_77.ttl │ ├── test_relations_77_log.txt │ ├── test_relations_78.ttl │ ├── test_relations_78_log.txt │ ├── test_relations_79.ttl │ ├── test_relations_79_log.txt │ ├── test_relations_7_log.txt │ ├── test_relations_8.ttl │ ├── test_relations_80.ttl │ ├── test_relations_80_log.txt │ ├── test_relations_81.ttl │ ├── test_relations_81_log.txt │ ├── test_relations_82.ttl │ ├── test_relations_82_log.txt │ ├── test_relations_83.ttl │ ├── test_relations_83_log.txt │ ├── test_relations_84.ttl │ ├── test_relations_84_log.txt │ ├── test_relations_85.ttl │ ├── test_relations_85_log.txt │ ├── test_relations_86.ttl │ ├── test_relations_86_log.txt │ ├── test_relations_87.ttl │ ├── test_relations_87_log.txt │ ├── test_relations_88.ttl │ ├── test_relations_88_log.txt │ ├── test_relations_89.ttl │ ├── test_relations_89_log.txt │ ├── test_relations_8_log.txt │ ├── test_relations_9.ttl │ ├── test_relations_90.ttl │ ├── test_relations_90_log.txt │ ├── test_relations_91.ttl │ ├── test_relations_91_log.txt │ ├── test_relations_92.ttl │ ├── test_relations_92_log.txt │ ├── test_relations_93.ttl │ ├── test_relations_93_log.txt │ ├── test_relations_94.ttl │ ├── test_relations_94_log.txt │ ├── test_relations_95.ttl │ ├── test_relations_95_log.txt │ ├── test_relations_96.ttl │ ├── test_relations_96_log.txt │ ├── test_relations_97.ttl │ ├── test_relations_97_log.txt │ ├── test_relations_98.ttl │ ├── test_relations_98_log.txt │ ├── test_relations_99.ttl │ ├── test_relations_99_log.txt │ ├── test_relations_9_log.txt │ ├── test_restriction_1.ttl │ ├── test_restriction_10.ttl │ ├── test_restriction_100.ttl │ ├── test_restriction_100_log.txt │ ├── test_restriction_101.ttl │ ├── test_restriction_101_log.txt │ ├── test_restriction_102.ttl │ ├── test_restriction_102_log.txt │ ├── test_restriction_103.ttl │ ├── test_restriction_103_log.txt │ ├── test_restriction_104.ttl │ ├── test_restriction_104_log.txt │ ├── test_restriction_105.ttl │ ├── test_restriction_105_log.txt │ ├── test_restriction_106.ttl │ ├── test_restriction_106_log.txt │ ├── test_restriction_107.ttl │ ├── test_restriction_107_log.txt │ ├── test_restriction_108.ttl │ ├── test_restriction_108_log.txt │ ├── test_restriction_109.ttl │ ├── test_restriction_109_log.txt │ ├── test_restriction_10_log.txt │ ├── test_restriction_11.ttl │ ├── test_restriction_110.ttl │ ├── test_restriction_110_log.txt │ ├── test_restriction_111.ttl │ ├── test_restriction_111_log.txt │ ├── test_restriction_112.ttl │ ├── test_restriction_112_log.txt │ ├── test_restriction_113.ttl │ ├── test_restriction_113_log.txt │ ├── test_restriction_114.ttl │ ├── test_restriction_114_log.txt │ ├── test_restriction_115.ttl │ ├── test_restriction_115_log.txt │ ├── test_restriction_116.ttl │ ├── test_restriction_116_log.txt │ ├── test_restriction_117.ttl │ ├── test_restriction_117_log.txt │ ├── test_restriction_118.ttl │ ├── test_restriction_118_log.txt │ ├── test_restriction_119.ttl │ ├── test_restriction_119_log.txt │ ├── test_restriction_11_log.txt │ ├── test_restriction_12.ttl │ ├── test_restriction_120.ttl │ ├── test_restriction_120_log.txt │ ├── test_restriction_121.ttl │ ├── test_restriction_121_log.txt │ ├── test_restriction_122.ttl │ ├── test_restriction_122_log.txt │ ├── test_restriction_123.ttl │ ├── test_restriction_123_log.txt │ ├── test_restriction_124.ttl │ ├── test_restriction_124_log.txt │ ├── test_restriction_125.ttl │ ├── test_restriction_125_log.txt │ ├── test_restriction_126.ttl │ ├── test_restriction_126_log.txt │ ├── test_restriction_127.ttl │ ├── test_restriction_127_log.txt │ ├── test_restriction_128.ttl │ ├── test_restriction_128_log.txt │ ├── test_restriction_129.ttl │ ├── test_restriction_129_log.txt │ ├── test_restriction_12_log.txt │ ├── test_restriction_13.ttl │ ├── test_restriction_130.ttl │ ├── test_restriction_130_log.txt │ ├── test_restriction_131.ttl │ ├── test_restriction_131_log.txt │ ├── test_restriction_132.ttl │ ├── test_restriction_132_log.txt │ ├── test_restriction_133.ttl │ ├── test_restriction_133_log.txt │ ├── test_restriction_134.ttl │ ├── test_restriction_134_log.txt │ ├── test_restriction_135.ttl │ ├── test_restriction_135_log.txt │ ├── test_restriction_136.ttl │ ├── test_restriction_136_log.txt │ ├── test_restriction_137.ttl │ ├── test_restriction_137_log.txt │ ├── test_restriction_138.ttl │ ├── test_restriction_138_log.txt │ ├── test_restriction_139.ttl │ ├── test_restriction_139_log.txt │ ├── test_restriction_13_log.txt │ ├── test_restriction_14.ttl │ ├── test_restriction_140.ttl │ ├── test_restriction_140_log.txt │ ├── test_restriction_141.ttl │ ├── test_restriction_141_log.txt │ ├── test_restriction_142.ttl │ ├── test_restriction_142_log.txt │ ├── test_restriction_143.ttl │ ├── test_restriction_143_log.txt │ ├── test_restriction_144.ttl │ ├── test_restriction_144_log.txt │ ├── test_restriction_145.ttl │ ├── test_restriction_145_log.txt │ ├── test_restriction_146.ttl │ ├── test_restriction_146_log.txt │ ├── test_restriction_147.ttl │ ├── test_restriction_147_log.txt │ ├── test_restriction_148.ttl │ ├── test_restriction_148_log.txt │ ├── test_restriction_149.ttl │ ├── test_restriction_149_log.txt │ ├── test_restriction_14_log.txt │ ├── test_restriction_15.ttl │ ├── test_restriction_150.ttl │ ├── test_restriction_150_log.txt │ ├── test_restriction_151.ttl │ ├── test_restriction_151_log.txt │ ├── test_restriction_152.ttl │ ├── test_restriction_152_log.txt │ ├── test_restriction_153.ttl │ ├── test_restriction_153_log.txt │ ├── test_restriction_154.ttl │ ├── test_restriction_154_log.txt │ ├── test_restriction_155.ttl │ ├── test_restriction_155_log.txt │ ├── test_restriction_156.ttl │ ├── test_restriction_156_log.txt │ ├── test_restriction_157.ttl │ ├── test_restriction_157_log.txt │ ├── test_restriction_158.ttl │ ├── test_restriction_158_log.txt │ ├── test_restriction_159.ttl │ ├── test_restriction_159_log.txt │ ├── test_restriction_15_log.txt │ ├── test_restriction_16.ttl │ ├── test_restriction_160.ttl │ ├── test_restriction_160_log.txt │ ├── test_restriction_161.ttl │ ├── test_restriction_161_log.txt │ ├── test_restriction_162.ttl │ ├── test_restriction_162_log.txt │ ├── test_restriction_163.ttl │ ├── test_restriction_163_log.txt │ ├── test_restriction_164.ttl │ ├── test_restriction_164_log.txt │ ├── test_restriction_165.ttl │ ├── test_restriction_165_log.txt │ ├── test_restriction_166.ttl │ ├── test_restriction_166_log.txt │ ├── test_restriction_167.ttl │ ├── test_restriction_167_log.txt │ ├── test_restriction_168.ttl │ ├── test_restriction_168_log.txt │ ├── test_restriction_169.ttl │ ├── test_restriction_169_log.txt │ ├── test_restriction_16_log.txt │ ├── test_restriction_17.ttl │ ├── test_restriction_170.ttl │ ├── test_restriction_170_log.txt │ ├── test_restriction_171.ttl │ ├── test_restriction_171_log.txt │ ├── test_restriction_172.ttl │ ├── test_restriction_172_log.txt │ ├── test_restriction_173.ttl │ ├── test_restriction_173_log.txt │ ├── test_restriction_174.ttl │ ├── test_restriction_174_log.txt │ ├── test_restriction_175.ttl │ ├── test_restriction_175_log.txt │ ├── test_restriction_176.ttl │ ├── test_restriction_176_log.txt │ ├── test_restriction_177.ttl │ ├── test_restriction_177_log.txt │ ├── test_restriction_178.ttl │ ├── test_restriction_178_log.txt │ ├── test_restriction_179.ttl │ ├── test_restriction_179_log.txt │ ├── test_restriction_17_log.txt │ ├── test_restriction_18.ttl │ ├── test_restriction_180.ttl │ ├── test_restriction_180_log.txt │ ├── test_restriction_181.ttl │ ├── test_restriction_181_log.txt │ ├── test_restriction_182.ttl │ ├── test_restriction_182_log.txt │ ├── test_restriction_183.ttl │ ├── test_restriction_183_log.txt │ ├── test_restriction_184.ttl │ ├── test_restriction_184_log.txt │ ├── test_restriction_185.ttl │ ├── test_restriction_185_log.txt │ ├── test_restriction_186.ttl │ ├── test_restriction_186_log.txt │ ├── test_restriction_187.ttl │ ├── test_restriction_187_log.txt │ ├── test_restriction_188.ttl │ ├── test_restriction_188_log.txt │ ├── test_restriction_189.ttl │ ├── test_restriction_189_log.txt │ ├── test_restriction_18_log.txt │ ├── test_restriction_19.ttl │ ├── test_restriction_190.ttl │ ├── test_restriction_190_log.txt │ ├── test_restriction_191.ttl │ ├── test_restriction_191_log.txt │ ├── test_restriction_192.ttl │ ├── test_restriction_192_log.txt │ ├── test_restriction_193.ttl │ ├── test_restriction_193_log.txt │ ├── test_restriction_194.ttl │ ├── test_restriction_194_log.txt │ ├── test_restriction_195.ttl │ ├── test_restriction_195_log.txt │ ├── test_restriction_196.ttl │ ├── test_restriction_196_log.txt │ ├── test_restriction_197.ttl │ ├── test_restriction_197_log.txt │ ├── test_restriction_198.ttl │ ├── test_restriction_198_log.txt │ ├── test_restriction_199.ttl │ ├── test_restriction_199_log.txt │ ├── test_restriction_19_log.txt │ ├── test_restriction_1_log.txt │ ├── test_restriction_2.ttl │ ├── test_restriction_20.ttl │ ├── test_restriction_200.ttl │ ├── test_restriction_200_log.txt │ ├── test_restriction_201.ttl │ ├── test_restriction_201_log.txt │ ├── test_restriction_202.ttl │ ├── test_restriction_202_log.txt │ ├── test_restriction_203.ttl │ ├── test_restriction_203_log.txt │ ├── test_restriction_204.ttl │ ├── test_restriction_204_log.txt │ ├── test_restriction_205.ttl │ ├── test_restriction_205_log.txt │ ├── test_restriction_206.ttl │ ├── test_restriction_206_log.txt │ ├── test_restriction_207.ttl │ ├── test_restriction_207_log.txt │ ├── test_restriction_208.ttl │ ├── test_restriction_208_log.txt │ ├── test_restriction_209.ttl │ ├── test_restriction_209_log.txt │ ├── test_restriction_20_log.txt │ ├── test_restriction_21.ttl │ ├── test_restriction_210.ttl │ ├── test_restriction_210_log.txt │ ├── test_restriction_211.ttl │ ├── test_restriction_211_log.txt │ ├── test_restriction_212.ttl │ ├── test_restriction_212_log.txt │ ├── test_restriction_213.ttl │ ├── test_restriction_213_log.txt │ ├── test_restriction_214.ttl │ ├── test_restriction_214_log.txt │ ├── test_restriction_215.ttl │ ├── test_restriction_215_log.txt │ ├── test_restriction_216.ttl │ ├── test_restriction_216_log.txt │ ├── test_restriction_217.ttl │ ├── test_restriction_217_log.txt │ ├── test_restriction_218.ttl │ ├── test_restriction_218_log.txt │ ├── test_restriction_219.ttl │ ├── test_restriction_219_log.txt │ ├── test_restriction_21_log.txt │ ├── test_restriction_22.ttl │ ├── test_restriction_220.ttl │ ├── test_restriction_220_log.txt │ ├── test_restriction_221.ttl │ ├── test_restriction_221_log.txt │ ├── test_restriction_222.ttl │ ├── test_restriction_222_log.txt │ ├── test_restriction_223.ttl │ ├── test_restriction_223_log.txt │ ├── test_restriction_224.ttl │ ├── test_restriction_224_log.txt │ ├── test_restriction_225.ttl │ ├── test_restriction_225_log.txt │ ├── test_restriction_226.ttl │ ├── test_restriction_226_log.txt │ ├── test_restriction_227.ttl │ ├── test_restriction_227_log.txt │ ├── test_restriction_228.ttl │ ├── test_restriction_228_log.txt │ ├── test_restriction_229.ttl │ ├── test_restriction_229_log.txt │ ├── test_restriction_22_log.txt │ ├── test_restriction_23.ttl │ ├── test_restriction_230.ttl │ ├── test_restriction_230_log.txt │ ├── test_restriction_231.ttl │ ├── test_restriction_231_log.txt │ ├── test_restriction_232.ttl │ ├── test_restriction_232_log.txt │ ├── test_restriction_233.ttl │ ├── test_restriction_233_log.txt │ ├── test_restriction_234.ttl │ ├── test_restriction_234_log.txt │ ├── test_restriction_235.ttl │ ├── test_restriction_235_log.txt │ ├── test_restriction_236.ttl │ ├── test_restriction_236_log.txt │ ├── test_restriction_237.ttl │ ├── test_restriction_237_log.txt │ ├── test_restriction_238.ttl │ ├── test_restriction_238_log.txt │ ├── test_restriction_239.ttl │ ├── test_restriction_239_log.txt │ ├── test_restriction_23_log.txt │ ├── test_restriction_24.ttl │ ├── test_restriction_240.ttl │ ├── test_restriction_240_log.txt │ ├── test_restriction_241.ttl │ ├── test_restriction_241_log.txt │ ├── test_restriction_242.ttl │ ├── test_restriction_242_log.txt │ ├── test_restriction_243.ttl │ ├── test_restriction_243_log.txt │ ├── test_restriction_244.ttl │ ├── test_restriction_244_log.txt │ ├── test_restriction_245.ttl │ ├── test_restriction_245_log.txt │ ├── test_restriction_246.ttl │ ├── test_restriction_246_log.txt │ ├── test_restriction_247.ttl │ ├── test_restriction_247_log.txt │ ├── test_restriction_248.ttl │ ├── test_restriction_248_log.txt │ ├── test_restriction_249.ttl │ ├── test_restriction_249_log.txt │ ├── test_restriction_24_log.txt │ ├── test_restriction_25.ttl │ ├── test_restriction_250.ttl │ ├── test_restriction_250_log.txt │ ├── test_restriction_251.ttl │ ├── test_restriction_251_log.txt │ ├── test_restriction_252.ttl │ ├── test_restriction_252_log.txt │ ├── test_restriction_253.ttl │ ├── test_restriction_253_log.txt │ ├── test_restriction_254.ttl │ ├── test_restriction_254_log.txt │ ├── test_restriction_255.ttl │ ├── test_restriction_255_log.txt │ ├── test_restriction_256.ttl │ ├── test_restriction_256_log.txt │ ├── test_restriction_257.ttl │ ├── test_restriction_257_log.txt │ ├── test_restriction_258.ttl │ ├── test_restriction_258_log.txt │ ├── test_restriction_259.ttl │ ├── test_restriction_259_log.txt │ ├── test_restriction_25_log.txt │ ├── test_restriction_26.ttl │ ├── test_restriction_260.ttl │ ├── test_restriction_260_log.txt │ ├── test_restriction_261.ttl │ ├── test_restriction_261_log.txt │ ├── test_restriction_262.ttl │ ├── test_restriction_262_log.txt │ ├── test_restriction_263.ttl │ ├── test_restriction_263_log.txt │ ├── test_restriction_264.ttl │ ├── test_restriction_264_log.txt │ ├── test_restriction_265.ttl │ ├── test_restriction_265_log.txt │ ├── test_restriction_266.ttl │ ├── test_restriction_266_log.txt │ ├── test_restriction_267.ttl │ ├── test_restriction_267_log.txt │ ├── test_restriction_268.ttl │ ├── test_restriction_268_log.txt │ ├── test_restriction_269.ttl │ ├── test_restriction_269_log.txt │ ├── test_restriction_26_log.txt │ ├── test_restriction_27.ttl │ ├── test_restriction_270.ttl │ ├── test_restriction_270_log.txt │ ├── test_restriction_271.ttl │ ├── test_restriction_271_log.txt │ ├── test_restriction_272.ttl │ ├── test_restriction_272_log.txt │ ├── test_restriction_273.ttl │ ├── test_restriction_273_log.txt │ ├── test_restriction_274.ttl │ ├── test_restriction_274_log.txt │ ├── test_restriction_275.ttl │ ├── test_restriction_275_log.txt │ ├── test_restriction_276.ttl │ ├── test_restriction_276_log.txt │ ├── test_restriction_277.ttl │ ├── test_restriction_277_log.txt │ ├── test_restriction_278.ttl │ ├── test_restriction_278_log.txt │ ├── test_restriction_279.ttl │ ├── test_restriction_279_log.txt │ ├── test_restriction_27_log.txt │ ├── test_restriction_28.ttl │ ├── test_restriction_280.ttl │ ├── test_restriction_280_log.txt │ ├── test_restriction_281.ttl │ ├── test_restriction_281_log.txt │ ├── test_restriction_282.ttl │ ├── test_restriction_282_log.txt │ ├── test_restriction_283.ttl │ ├── test_restriction_283_log.txt │ ├── test_restriction_284.ttl │ ├── test_restriction_284_log.txt │ ├── test_restriction_285.ttl │ ├── test_restriction_285_log.txt │ ├── test_restriction_286.ttl │ ├── test_restriction_286_log.txt │ ├── test_restriction_287.ttl │ ├── test_restriction_287_log.txt │ ├── test_restriction_288.ttl │ ├── test_restriction_288_log.txt │ ├── test_restriction_289.ttl │ ├── test_restriction_289_log.txt │ ├── test_restriction_28_log.txt │ ├── test_restriction_29.ttl │ ├── test_restriction_290.ttl │ ├── test_restriction_290_log.txt │ ├── test_restriction_291.ttl │ ├── test_restriction_291_log.txt │ ├── test_restriction_292.ttl │ ├── test_restriction_292_log.txt │ ├── test_restriction_293.ttl │ ├── test_restriction_293_log.txt │ ├── test_restriction_294.ttl │ ├── test_restriction_294_log.txt │ ├── test_restriction_295.ttl │ ├── test_restriction_295_log.txt │ ├── test_restriction_296.ttl │ ├── test_restriction_296_log.txt │ ├── test_restriction_297.ttl │ ├── test_restriction_297_log.txt │ ├── test_restriction_298.ttl │ ├── test_restriction_298_log.txt │ ├── test_restriction_299.ttl │ ├── test_restriction_299_log.txt │ ├── test_restriction_29_log.txt │ ├── test_restriction_2_log.txt │ ├── test_restriction_3.ttl │ ├── test_restriction_30.ttl │ ├── test_restriction_300.ttl │ ├── test_restriction_300_log.txt │ ├── test_restriction_301.ttl │ ├── test_restriction_301_log.txt │ ├── test_restriction_302.ttl │ ├── test_restriction_302_log.txt │ ├── test_restriction_303.ttl │ ├── test_restriction_303_log.txt │ ├── test_restriction_304.ttl │ ├── test_restriction_304_log.txt │ ├── test_restriction_305.ttl │ ├── test_restriction_305_log.txt │ ├── test_restriction_306.ttl │ ├── test_restriction_306_log.txt │ ├── test_restriction_307.ttl │ ├── test_restriction_307_log.txt │ ├── test_restriction_308.ttl │ ├── test_restriction_308_log.txt │ ├── test_restriction_309.ttl │ ├── test_restriction_309_log.txt │ ├── test_restriction_30_log.txt │ ├── test_restriction_31.ttl │ ├── test_restriction_310.ttl │ ├── test_restriction_310_log.txt │ ├── test_restriction_311.ttl │ ├── test_restriction_311_log.txt │ ├── test_restriction_312.ttl │ ├── test_restriction_312_log.txt │ ├── test_restriction_313.ttl │ ├── test_restriction_313_log.txt │ ├── test_restriction_314.ttl │ ├── test_restriction_314_log.txt │ ├── test_restriction_315.ttl │ ├── test_restriction_315_log.txt │ ├── test_restriction_316.ttl │ ├── test_restriction_316_log.txt │ ├── test_restriction_317.ttl │ ├── test_restriction_317_log.txt │ ├── test_restriction_318.ttl │ ├── test_restriction_318_log.txt │ ├── test_restriction_319.ttl │ ├── test_restriction_319_log.txt │ ├── test_restriction_31_log.txt │ ├── test_restriction_32.ttl │ ├── test_restriction_320.ttl │ ├── test_restriction_320_log.txt │ ├── test_restriction_321.ttl │ ├── test_restriction_321_log.txt │ ├── test_restriction_322.ttl │ ├── test_restriction_322_log.txt │ ├── test_restriction_323.ttl │ ├── test_restriction_323_log.txt │ ├── test_restriction_324.ttl │ ├── test_restriction_324_log.txt │ ├── test_restriction_325.ttl │ ├── test_restriction_325_log.txt │ ├── test_restriction_326.ttl │ ├── test_restriction_326_log.txt │ ├── test_restriction_327.ttl │ ├── test_restriction_327_log.txt │ ├── test_restriction_328.ttl │ ├── test_restriction_328_log.txt │ ├── test_restriction_329.ttl │ ├── test_restriction_329_log.txt │ ├── test_restriction_32_log.txt │ ├── test_restriction_33.ttl │ ├── test_restriction_330.ttl │ ├── test_restriction_330_log.txt │ ├── test_restriction_331.ttl │ ├── test_restriction_331_log.txt │ ├── test_restriction_332.ttl │ ├── test_restriction_332_log.txt │ ├── test_restriction_333.ttl │ ├── test_restriction_333_log.txt │ ├── test_restriction_334.ttl │ ├── test_restriction_334_log.txt │ ├── test_restriction_335.ttl │ ├── test_restriction_335_log.txt │ ├── test_restriction_336.ttl │ ├── test_restriction_336_log.txt │ ├── test_restriction_337.ttl │ ├── test_restriction_337_log.txt │ ├── test_restriction_338.ttl │ ├── test_restriction_338_log.txt │ ├── test_restriction_339.ttl │ ├── test_restriction_339_log.txt │ ├── test_restriction_33_log.txt │ ├── test_restriction_34.ttl │ ├── test_restriction_340.ttl │ ├── test_restriction_340_log.txt │ ├── test_restriction_341.ttl │ ├── test_restriction_341_log.txt │ ├── test_restriction_342.ttl │ ├── test_restriction_342_log.txt │ ├── test_restriction_343.ttl │ ├── test_restriction_343_log.txt │ ├── test_restriction_344.ttl │ ├── test_restriction_344_log.txt │ ├── test_restriction_345.ttl │ ├── test_restriction_345_log.txt │ ├── test_restriction_346.ttl │ ├── test_restriction_346_log.txt │ ├── test_restriction_347.ttl │ ├── test_restriction_347_log.txt │ ├── test_restriction_348.ttl │ ├── test_restriction_348_log.txt │ ├── test_restriction_349.ttl │ ├── test_restriction_349_log.txt │ ├── test_restriction_34_log.txt │ ├── test_restriction_35.ttl │ ├── test_restriction_350.ttl │ ├── test_restriction_350_log.txt │ ├── test_restriction_351.ttl │ ├── test_restriction_351_log.txt │ ├── test_restriction_352.ttl │ ├── test_restriction_352_log.txt │ ├── test_restriction_353.ttl │ ├── test_restriction_353_log.txt │ ├── test_restriction_354.ttl │ ├── test_restriction_354_log.txt │ ├── test_restriction_355.ttl │ ├── test_restriction_355_log.txt │ ├── test_restriction_356.ttl │ ├── test_restriction_356_log.txt │ ├── test_restriction_357.ttl │ ├── test_restriction_357_log.txt │ ├── test_restriction_358.ttl │ ├── test_restriction_358_log.txt │ ├── test_restriction_359.ttl │ ├── test_restriction_359_log.txt │ ├── test_restriction_35_log.txt │ ├── test_restriction_36.ttl │ ├── test_restriction_360.ttl │ ├── test_restriction_360_log.txt │ ├── test_restriction_361.ttl │ ├── test_restriction_361_log.txt │ ├── test_restriction_362.ttl │ ├── test_restriction_362_log.txt │ ├── test_restriction_363.ttl │ ├── test_restriction_363_log.txt │ ├── test_restriction_364.ttl │ ├── test_restriction_364_log.txt │ ├── test_restriction_365.ttl │ ├── test_restriction_365_log.txt │ ├── test_restriction_366.ttl │ ├── test_restriction_366_log.txt │ ├── test_restriction_367.ttl │ ├── test_restriction_367_log.txt │ ├── test_restriction_368.ttl │ ├── test_restriction_368_log.txt │ ├── test_restriction_369.ttl │ ├── test_restriction_369_log.txt │ ├── test_restriction_36_log.txt │ ├── test_restriction_37.ttl │ ├── test_restriction_370.ttl │ ├── test_restriction_370_log.txt │ ├── test_restriction_371.ttl │ ├── test_restriction_371_log.txt │ ├── test_restriction_372.ttl │ ├── test_restriction_372_log.txt │ ├── test_restriction_373.ttl │ ├── test_restriction_373_log.txt │ ├── test_restriction_374.ttl │ ├── test_restriction_374_log.txt │ ├── test_restriction_375.ttl │ ├── test_restriction_375_log.txt │ ├── test_restriction_376.ttl │ ├── test_restriction_376_log.txt │ ├── test_restriction_377.ttl │ ├── test_restriction_377_log.txt │ ├── test_restriction_378.ttl │ ├── test_restriction_378_log.txt │ ├── test_restriction_379.ttl │ ├── test_restriction_379_log.txt │ ├── test_restriction_37_log.txt │ ├── test_restriction_38.ttl │ ├── test_restriction_380.ttl │ ├── test_restriction_380_log.txt │ ├── test_restriction_381.ttl │ ├── test_restriction_381_log.txt │ ├── test_restriction_382.ttl │ ├── test_restriction_382_log.txt │ ├── test_restriction_383.ttl │ ├── test_restriction_383_log.txt │ ├── test_restriction_384.ttl │ ├── test_restriction_384_log.txt │ ├── test_restriction_385.ttl │ ├── test_restriction_385_log.txt │ ├── test_restriction_386.ttl │ ├── test_restriction_386_log.txt │ ├── test_restriction_387.ttl │ ├── test_restriction_387_log.txt │ ├── test_restriction_388.ttl │ ├── test_restriction_388_log.txt │ ├── test_restriction_389.ttl │ ├── test_restriction_389_log.txt │ ├── test_restriction_38_log.txt │ ├── test_restriction_39.ttl │ ├── test_restriction_390.ttl │ ├── test_restriction_390_log.txt │ ├── test_restriction_391.ttl │ ├── test_restriction_391_log.txt │ ├── test_restriction_392.ttl │ ├── test_restriction_392_log.txt │ ├── test_restriction_393.ttl │ ├── test_restriction_393_log.txt │ ├── test_restriction_394.ttl │ ├── test_restriction_394_log.txt │ ├── test_restriction_395.ttl │ ├── test_restriction_395_log.txt │ ├── test_restriction_396.ttl │ ├── test_restriction_396_log.txt │ ├── test_restriction_397.ttl │ ├── test_restriction_397_log.txt │ ├── test_restriction_398.ttl │ ├── test_restriction_398_log.txt │ ├── test_restriction_399.ttl │ ├── test_restriction_399_log.txt │ ├── test_restriction_39_log.txt │ ├── test_restriction_3_log.txt │ ├── test_restriction_4.ttl │ ├── test_restriction_40.ttl │ ├── test_restriction_400.ttl │ ├── test_restriction_400_log.txt │ ├── test_restriction_401.ttl │ ├── test_restriction_401_log.txt │ ├── test_restriction_402.ttl │ ├── test_restriction_402_log.txt │ ├── test_restriction_403.ttl │ ├── test_restriction_403_log.txt │ ├── test_restriction_404.ttl │ ├── test_restriction_404_log.txt │ ├── test_restriction_405.ttl │ ├── test_restriction_405_log.txt │ ├── test_restriction_406.ttl │ ├── test_restriction_406_log.txt │ ├── test_restriction_407.ttl │ ├── test_restriction_407_log.txt │ ├── test_restriction_408.ttl │ ├── test_restriction_408_log.txt │ ├── test_restriction_409.ttl │ ├── test_restriction_409_log.txt │ ├── test_restriction_40_log.txt │ ├── test_restriction_41.ttl │ ├── test_restriction_410.ttl │ ├── test_restriction_410_log.txt │ ├── test_restriction_411.ttl │ ├── test_restriction_411_log.txt │ ├── test_restriction_412.ttl │ ├── test_restriction_412_log.txt │ ├── test_restriction_413.ttl │ ├── test_restriction_413_log.txt │ ├── test_restriction_414.ttl │ ├── test_restriction_414_log.txt │ ├── test_restriction_415.ttl │ ├── test_restriction_415_log.txt │ ├── test_restriction_416.ttl │ ├── test_restriction_416_log.txt │ ├── test_restriction_417.ttl │ ├── test_restriction_417_log.txt │ ├── test_restriction_418.ttl │ ├── test_restriction_418_log.txt │ ├── test_restriction_419.ttl │ ├── test_restriction_419_log.txt │ ├── test_restriction_41_log.txt │ ├── test_restriction_42.ttl │ ├── test_restriction_420.ttl │ ├── test_restriction_420_log.txt │ ├── test_restriction_421.ttl │ ├── test_restriction_421_log.txt │ ├── test_restriction_422.ttl │ ├── test_restriction_422_log.txt │ ├── test_restriction_423.ttl │ ├── test_restriction_423_log.txt │ ├── test_restriction_424.ttl │ ├── test_restriction_424_log.txt │ ├── test_restriction_425.ttl │ ├── test_restriction_425_log.txt │ ├── test_restriction_426.ttl │ ├── test_restriction_426_log.txt │ ├── test_restriction_427.ttl │ ├── test_restriction_427_log.txt │ ├── test_restriction_428.ttl │ ├── test_restriction_428_log.txt │ ├── test_restriction_429.ttl │ ├── test_restriction_429_log.txt │ ├── test_restriction_42_log.txt │ ├── test_restriction_43.ttl │ ├── test_restriction_430.ttl │ ├── test_restriction_430_log.txt │ ├── test_restriction_431.ttl │ ├── test_restriction_431_log.txt │ ├── test_restriction_432.ttl │ ├── test_restriction_432_log.txt │ ├── test_restriction_433.ttl │ ├── test_restriction_433_log.txt │ ├── test_restriction_434.ttl │ ├── test_restriction_434_log.txt │ ├── test_restriction_435.ttl │ ├── test_restriction_435_log.txt │ ├── test_restriction_436.ttl │ ├── test_restriction_436_log.txt │ ├── test_restriction_437.ttl │ ├── test_restriction_437_log.txt │ ├── test_restriction_438.ttl │ ├── test_restriction_438_log.txt │ ├── test_restriction_439.ttl │ ├── test_restriction_439_log.txt │ ├── test_restriction_43_log.txt │ ├── test_restriction_44.ttl │ ├── test_restriction_440.ttl │ ├── test_restriction_440_log.txt │ ├── test_restriction_441.ttl │ ├── test_restriction_441_log.txt │ ├── test_restriction_442.ttl │ ├── test_restriction_442_log.txt │ ├── test_restriction_443.ttl │ ├── test_restriction_443_log.txt │ ├── test_restriction_444.ttl │ ├── test_restriction_444_log.txt │ ├── test_restriction_446.ttl │ ├── test_restriction_446_log.txt │ ├── test_restriction_447.ttl │ ├── test_restriction_447_log.txt │ ├── test_restriction_448.ttl │ ├── test_restriction_448_log.txt │ ├── test_restriction_449.ttl │ ├── test_restriction_449_log.txt │ ├── test_restriction_44_log.txt │ ├── test_restriction_45.ttl │ ├── test_restriction_450.ttl │ ├── test_restriction_450_log.txt │ ├── test_restriction_451.ttl │ ├── test_restriction_451_log.txt │ ├── test_restriction_452.ttl │ ├── test_restriction_452_log.txt │ ├── test_restriction_453.ttl │ ├── test_restriction_453_log.txt │ ├── test_restriction_454.ttl │ ├── test_restriction_454_log.txt │ ├── test_restriction_455.ttl │ ├── test_restriction_455_log.txt │ ├── test_restriction_456.ttl │ ├── test_restriction_456_log.txt │ ├── test_restriction_457.ttl │ ├── test_restriction_457_log.txt │ ├── test_restriction_458.ttl │ ├── test_restriction_458_log.txt │ ├── test_restriction_459.ttl │ ├── test_restriction_459_log.txt │ ├── test_restriction_45_log.txt │ ├── test_restriction_46.ttl │ ├── test_restriction_460.ttl │ ├── test_restriction_460_log.txt │ ├── test_restriction_461.ttl │ ├── test_restriction_461_log.txt │ ├── test_restriction_462.ttl │ ├── test_restriction_462_log.txt │ ├── test_restriction_463.ttl │ ├── test_restriction_463_log.txt │ ├── test_restriction_464.ttl │ ├── test_restriction_464_log.txt │ ├── test_restriction_465.ttl │ ├── test_restriction_465_log.txt │ ├── test_restriction_466.ttl │ ├── test_restriction_466_log.txt │ ├── test_restriction_467.ttl │ ├── test_restriction_467_log.txt │ ├── test_restriction_468.ttl │ ├── test_restriction_468_log.txt │ ├── test_restriction_469.ttl │ ├── test_restriction_469_log.txt │ ├── test_restriction_46_log.txt │ ├── test_restriction_47.ttl │ ├── test_restriction_470.ttl │ ├── test_restriction_470_log.txt │ ├── test_restriction_471.ttl │ ├── test_restriction_471_log.txt │ ├── test_restriction_472.ttl │ ├── test_restriction_472_log.txt │ ├── test_restriction_473.ttl │ ├── test_restriction_473_log.txt │ ├── test_restriction_474.ttl │ ├── test_restriction_474_log.txt │ ├── test_restriction_475.ttl │ ├── test_restriction_475_log.txt │ ├── test_restriction_476.ttl │ ├── test_restriction_476_log.txt │ ├── test_restriction_477.ttl │ ├── test_restriction_477_log.txt │ ├── test_restriction_478.ttl │ ├── test_restriction_478_log.txt │ ├── test_restriction_479.ttl │ ├── test_restriction_479_log.txt │ ├── test_restriction_47_log.txt │ ├── test_restriction_48.ttl │ ├── test_restriction_480.ttl │ ├── test_restriction_480_log.txt │ ├── test_restriction_483.ttl │ ├── test_restriction_483_log.txt │ ├── test_restriction_484.ttl │ ├── test_restriction_484_log.txt │ ├── test_restriction_485.ttl │ ├── test_restriction_485_log.txt │ ├── test_restriction_486.ttl │ ├── test_restriction_486_log.txt │ ├── test_restriction_487.ttl │ ├── test_restriction_487_log.txt │ ├── test_restriction_488.ttl │ ├── test_restriction_488_log.txt │ ├── test_restriction_489.ttl │ ├── test_restriction_489_log.txt │ ├── test_restriction_48_log.txt │ ├── test_restriction_49.ttl │ ├── test_restriction_490.ttl │ ├── test_restriction_490_log.txt │ ├── test_restriction_491.ttl │ ├── test_restriction_491_log.txt │ ├── test_restriction_492.ttl │ ├── test_restriction_492_log.txt │ ├── test_restriction_493.ttl │ ├── test_restriction_493_log.txt │ ├── test_restriction_494.ttl │ ├── test_restriction_494_log.txt │ ├── test_restriction_495.ttl │ ├── test_restriction_495_log.txt │ ├── test_restriction_496.ttl │ ├── test_restriction_496_log.txt │ ├── test_restriction_497.ttl │ ├── test_restriction_497_log.txt │ ├── test_restriction_498.ttl │ ├── test_restriction_498_log.txt │ ├── test_restriction_499.ttl │ ├── test_restriction_499_log.txt │ ├── test_restriction_49_log.txt │ ├── test_restriction_4_log.txt │ ├── test_restriction_5.ttl │ ├── test_restriction_50.ttl │ ├── test_restriction_500.ttl │ ├── test_restriction_500_log.txt │ ├── test_restriction_501.ttl │ ├── test_restriction_501_log.txt │ ├── test_restriction_502.ttl │ ├── test_restriction_502_log.txt │ ├── test_restriction_503.ttl │ ├── test_restriction_503_log.txt │ ├── test_restriction_504.ttl │ ├── test_restriction_504_log.txt │ ├── test_restriction_505.ttl │ ├── test_restriction_505_log.txt │ ├── test_restriction_506.ttl │ ├── test_restriction_506_log.txt │ ├── test_restriction_507.ttl │ ├── test_restriction_507_log.txt │ ├── test_restriction_508.ttl │ ├── test_restriction_508_log.txt │ ├── test_restriction_50_log.txt │ ├── test_restriction_51.ttl │ ├── test_restriction_513.ttl │ ├── test_restriction_513_log.txt │ ├── test_restriction_514.ttl │ ├── test_restriction_514_log.txt │ ├── test_restriction_515.ttl │ ├── test_restriction_515_log.txt │ ├── test_restriction_51_log.txt │ ├── test_restriction_52.ttl │ ├── test_restriction_52_log.txt │ ├── test_restriction_53.ttl │ ├── test_restriction_53_log.txt │ ├── test_restriction_54.ttl │ ├── test_restriction_54_log.txt │ ├── test_restriction_55.ttl │ ├── test_restriction_55_log.txt │ ├── test_restriction_56.ttl │ ├── test_restriction_56_log.txt │ ├── test_restriction_57.ttl │ ├── test_restriction_57_log.txt │ ├── test_restriction_58.ttl │ ├── test_restriction_58_log.txt │ ├── test_restriction_59.ttl │ ├── test_restriction_59_log.txt │ ├── test_restriction_5_log.txt │ ├── test_restriction_6.ttl │ ├── test_restriction_60.ttl │ ├── test_restriction_60_log.txt │ ├── test_restriction_61.ttl │ ├── test_restriction_61_log.txt │ ├── test_restriction_62.ttl │ ├── test_restriction_62_log.txt │ ├── test_restriction_63.ttl │ ├── test_restriction_63_log.txt │ ├── test_restriction_64.ttl │ ├── test_restriction_64_log.txt │ ├── test_restriction_65.ttl │ ├── test_restriction_65_log.txt │ ├── test_restriction_66.ttl │ ├── test_restriction_66_log.txt │ ├── test_restriction_67.ttl │ ├── test_restriction_67_log.txt │ ├── test_restriction_68.ttl │ ├── test_restriction_68_log.txt │ ├── test_restriction_69.ttl │ ├── test_restriction_69_log.txt │ ├── test_restriction_6_log.txt │ ├── test_restriction_7.ttl │ ├── test_restriction_70.ttl │ ├── test_restriction_70_log.txt │ ├── test_restriction_71.ttl │ ├── test_restriction_71_log.txt │ ├── test_restriction_72.ttl │ ├── test_restriction_72_log.txt │ ├── test_restriction_73.ttl │ ├── test_restriction_73_log.txt │ ├── test_restriction_74.ttl │ ├── test_restriction_74_log.txt │ ├── test_restriction_75.ttl │ ├── test_restriction_75_log.txt │ ├── test_restriction_76.ttl │ ├── test_restriction_76_log.txt │ ├── test_restriction_77.ttl │ ├── test_restriction_77_log.txt │ ├── test_restriction_78.ttl │ ├── test_restriction_78_log.txt │ ├── test_restriction_79.ttl │ ├── test_restriction_79_log.txt │ ├── test_restriction_7_log.txt │ ├── test_restriction_8.ttl │ ├── test_restriction_80.ttl │ ├── test_restriction_80_log.txt │ ├── test_restriction_81.ttl │ ├── test_restriction_81_log.txt │ ├── test_restriction_82.ttl │ ├── test_restriction_82_log.txt │ ├── test_restriction_83.ttl │ ├── test_restriction_83_log.txt │ ├── test_restriction_84.ttl │ ├── test_restriction_84_log.txt │ ├── test_restriction_85.ttl │ ├── test_restriction_85_log.txt │ ├── test_restriction_86.ttl │ ├── test_restriction_86_log.txt │ ├── test_restriction_87.ttl │ ├── test_restriction_87_log.txt │ ├── test_restriction_88.ttl │ ├── test_restriction_88_log.txt │ ├── test_restriction_89.ttl │ ├── test_restriction_89_log.txt │ ├── test_restriction_8_log.txt │ ├── test_restriction_9.ttl │ ├── test_restriction_91.ttl │ ├── test_restriction_91_log.txt │ ├── test_restriction_92.ttl │ ├── test_restriction_92_log.txt │ ├── test_restriction_93.ttl │ ├── test_restriction_93_log.txt │ ├── test_restriction_94.ttl │ ├── test_restriction_94_log.txt │ ├── test_restriction_95.ttl │ ├── test_restriction_95_log.txt │ ├── test_restriction_96.ttl │ ├── test_restriction_96_log.txt │ ├── test_restriction_97.ttl │ ├── test_restriction_97_log.txt │ ├── test_restriction_98.ttl │ ├── test_restriction_98_log.txt │ ├── test_restriction_99.ttl │ ├── test_restriction_99_log.txt │ ├── test_restriction_9_log.txt │ ├── test_subclass_1.ttl │ ├── test_subclass_10.ttl │ ├── test_subclass_10_log.txt │ ├── test_subclass_11.ttl │ ├── test_subclass_11_log.txt │ ├── test_subclass_12.ttl │ ├── test_subclass_12_log.txt │ ├── test_subclass_13.ttl │ ├── test_subclass_13_log.txt │ ├── test_subclass_14.ttl │ ├── test_subclass_14_log.txt │ ├── test_subclass_15.ttl │ ├── test_subclass_15_log.txt │ ├── test_subclass_16.ttl │ ├── test_subclass_16_log.txt │ ├── test_subclass_17.ttl │ ├── test_subclass_17_log.txt │ ├── test_subclass_18.ttl │ ├── test_subclass_18_log.txt │ ├── test_subclass_19.ttl │ ├── test_subclass_19_log.txt │ ├── test_subclass_1_log.txt │ ├── test_subclass_2.ttl │ ├── test_subclass_20.ttl │ ├── test_subclass_20_log.txt │ ├── test_subclass_21.ttl │ ├── test_subclass_21_log.txt │ ├── test_subclass_22.ttl │ ├── test_subclass_22_log.txt │ ├── test_subclass_23.ttl │ ├── test_subclass_23_log.txt │ ├── test_subclass_24.ttl │ ├── test_subclass_24_log.txt │ ├── test_subclass_25.ttl │ ├── test_subclass_25_log.txt │ ├── test_subclass_26.ttl │ ├── test_subclass_26_log.txt │ ├── test_subclass_27.ttl │ ├── test_subclass_27_log.txt │ ├── test_subclass_28.ttl │ ├── test_subclass_28_log.txt │ ├── test_subclass_29.ttl │ ├── test_subclass_29_log.txt │ ├── test_subclass_2_log.txt │ ├── test_subclass_3.ttl │ ├── test_subclass_30.ttl │ ├── test_subclass_30_log.txt │ ├── test_subclass_31.ttl │ ├── test_subclass_31_log.txt │ ├── test_subclass_32.ttl │ ├── test_subclass_32_log.txt │ ├── test_subclass_33.ttl │ ├── test_subclass_33_log.txt │ ├── test_subclass_34.ttl │ ├── test_subclass_34_log.txt │ ├── test_subclass_35.ttl │ ├── test_subclass_35_log.txt │ ├── test_subclass_36.ttl │ ├── test_subclass_36_log.txt │ ├── test_subclass_37.ttl │ ├── test_subclass_37_log.txt │ ├── test_subclass_38.ttl │ ├── test_subclass_38_log.txt │ ├── test_subclass_39.ttl │ ├── test_subclass_39_log.txt │ ├── test_subclass_3_log.txt │ ├── test_subclass_4.ttl │ ├── test_subclass_4_log.txt │ ├── test_subclass_5.ttl │ ├── test_subclass_5_log.txt │ ├── test_subclass_6.ttl │ ├── test_subclass_6_log.txt │ ├── test_subclass_7.ttl │ ├── test_subclass_7_log.txt │ ├── test_subclass_8.ttl │ ├── test_subclass_8_log.txt │ ├── test_subclass_9.ttl │ ├── test_subclass_9_log.txt │ ├── test_union_1.ttl │ ├── test_union_10.ttl │ ├── test_union_10_log.txt │ ├── test_union_11.ttl │ ├── test_union_11_log.txt │ ├── test_union_12.ttl │ ├── test_union_12_log.txt │ ├── test_union_13.ttl │ ├── test_union_13_log.txt │ ├── test_union_14.ttl │ ├── test_union_14_log.txt │ ├── test_union_15.ttl │ ├── test_union_15_log.txt │ ├── test_union_16.ttl │ ├── test_union_16_log.txt │ ├── test_union_17.ttl │ ├── test_union_17_log.txt │ ├── test_union_18.ttl │ ├── test_union_18_log.txt │ ├── test_union_19.ttl │ ├── test_union_19_log.txt │ ├── test_union_1_log.txt │ ├── test_union_2.ttl │ ├── test_union_20.ttl │ ├── test_union_20_log.txt │ ├── test_union_21.ttl │ ├── test_union_21_log.txt │ ├── test_union_22.ttl │ ├── test_union_22_log.txt │ ├── test_union_23.ttl │ ├── test_union_23_log.txt │ ├── test_union_24.ttl │ ├── test_union_24_log.txt │ ├── test_union_25.ttl │ ├── test_union_25_log.txt │ ├── test_union_26.ttl │ ├── test_union_26_log.txt │ ├── test_union_27.ttl │ ├── test_union_27_log.txt │ ├── test_union_28.ttl │ ├── test_union_28_log.txt │ ├── test_union_29.ttl │ ├── test_union_29_log.txt │ ├── test_union_2_log.txt │ ├── test_union_3.ttl │ ├── test_union_30.ttl │ ├── test_union_30_log.txt │ ├── test_union_31.ttl │ ├── test_union_31_log.txt │ ├── test_union_32.ttl │ ├── test_union_32_log.txt │ ├── test_union_33.ttl │ ├── test_union_33_log.txt │ ├── test_union_34.ttl │ ├── test_union_34_log.txt │ ├── test_union_35.ttl │ ├── test_union_35_log.txt │ ├── test_union_36.ttl │ ├── test_union_36_log.txt │ ├── test_union_37.ttl │ ├── test_union_37_log.txt │ ├── test_union_38.ttl │ ├── test_union_38_log.txt │ ├── test_union_39.ttl │ ├── test_union_39_log.txt │ ├── test_union_3_log.txt │ ├── test_union_4.ttl │ ├── test_union_40.ttl │ ├── test_union_40_log.txt │ ├── test_union_41.ttl │ ├── test_union_41_log.txt │ ├── test_union_42.ttl │ ├── test_union_42_log.txt │ ├── test_union_43.ttl │ ├── test_union_43_log.txt │ ├── test_union_44.ttl │ ├── test_union_44_log.txt │ ├── test_union_45.ttl │ ├── test_union_45_log.txt │ ├── test_union_46.ttl │ ├── test_union_46_log.txt │ ├── test_union_47.ttl │ ├── test_union_47_log.txt │ ├── test_union_48.ttl │ ├── test_union_48_log.txt │ ├── test_union_49.ttl │ ├── test_union_49_log.txt │ ├── test_union_4_log.txt │ ├── test_union_5.ttl │ ├── test_union_50.ttl │ ├── test_union_50_log.txt │ ├── test_union_51.ttl │ ├── test_union_51_log.txt │ ├── test_union_52.ttl │ ├── test_union_52_log.txt │ ├── test_union_53.ttl │ ├── test_union_53_log.txt │ ├── test_union_54.ttl │ ├── test_union_54_log.txt │ ├── test_union_55.ttl │ ├── test_union_55_log.txt │ ├── test_union_56.ttl │ ├── test_union_56_log.txt │ ├── test_union_5_log.txt │ ├── test_union_6.ttl │ ├── test_union_6_log.txt │ ├── test_union_7.ttl │ ├── test_union_7_log.txt │ ├── test_union_8.ttl │ ├── test_union_8_log.txt │ ├── test_union_9.ttl │ └── test_union_9_log.txt │ ├── inputs │ ├── test_annotation_1.xml │ ├── test_annotation_10.xml │ ├── test_annotation_11.xml │ ├── test_annotation_12.xml │ ├── test_annotation_13.xml │ ├── test_annotation_14.xml │ ├── test_annotation_15.xml │ ├── test_annotation_16.xml │ ├── test_annotation_17.xml │ ├── test_annotation_18.xml │ ├── test_annotation_19.xml │ ├── test_annotation_2.xml │ ├── test_annotation_20.xml │ ├── test_annotation_21.xml │ ├── test_annotation_22.xml │ ├── test_annotation_23.xml │ ├── test_annotation_24.xml │ ├── test_annotation_25.xml │ ├── test_annotation_26.xml │ ├── test_annotation_27.xml │ ├── test_annotation_28.xml │ ├── test_annotation_29.xml │ ├── test_annotation_3.xml │ ├── test_annotation_30.xml │ ├── test_annotation_31.xml │ ├── test_annotation_32.xml │ ├── test_annotation_33.xml │ ├── test_annotation_34.xml │ ├── test_annotation_35.xml │ ├── test_annotation_36.xml │ ├── test_annotation_37.xml │ ├── test_annotation_38.xml │ ├── test_annotation_39.xml │ ├── test_annotation_4.xml │ ├── test_annotation_40.xml │ ├── test_annotation_41.xml │ ├── test_annotation_42.xml │ ├── test_annotation_43.xml │ ├── test_annotation_44.xml │ ├── test_annotation_45.xml │ ├── test_annotation_46.xml │ ├── test_annotation_47.xml │ ├── test_annotation_48.xml │ ├── test_annotation_49.xml │ ├── test_annotation_5.xml │ ├── test_annotation_50.xml │ ├── test_annotation_51.xml │ ├── test_annotation_52.xml │ ├── test_annotation_53.xml │ ├── test_annotation_54.xml │ ├── test_annotation_55.xml │ ├── test_annotation_56.xml │ ├── test_annotation_6.xml │ ├── test_annotation_7.xml │ ├── test_annotation_8.xml │ ├── test_annotation_9.xml │ ├── test_attributes_1.xml │ ├── test_attributes_10.xml │ ├── test_attributes_100.xml │ ├── test_attributes_101.xml │ ├── test_attributes_102.xml │ ├── test_attributes_103.xml │ ├── test_attributes_104.xml │ ├── test_attributes_105.xml │ ├── test_attributes_106.xml │ ├── test_attributes_107.xml │ ├── test_attributes_108.xml │ ├── test_attributes_109.xml │ ├── test_attributes_11.xml │ ├── test_attributes_110.xml │ ├── test_attributes_111.xml │ ├── test_attributes_112.xml │ ├── test_attributes_113.xml │ ├── test_attributes_114.xml │ ├── test_attributes_115.xml │ ├── test_attributes_116.xml │ ├── test_attributes_117.xml │ ├── test_attributes_118.xml │ ├── test_attributes_119.xml │ ├── test_attributes_12.xml │ ├── test_attributes_120.xml │ ├── test_attributes_121.xml │ ├── test_attributes_122.xml │ ├── test_attributes_123.xml │ ├── test_attributes_124.xml │ ├── test_attributes_125.xml │ ├── test_attributes_126.xml │ ├── test_attributes_127.xml │ ├── test_attributes_128.xml │ ├── test_attributes_129.xml │ ├── test_attributes_13.xml │ ├── test_attributes_130.xml │ ├── test_attributes_131.xml │ ├── test_attributes_132.xml │ ├── test_attributes_133.xml │ ├── test_attributes_134.xml │ ├── test_attributes_135.xml │ ├── test_attributes_136.xml │ ├── test_attributes_137.xml │ ├── test_attributes_138.xml │ ├── test_attributes_139.xml │ ├── test_attributes_14.xml │ ├── test_attributes_140.xml │ ├── test_attributes_141.xml │ ├── test_attributes_142.xml │ ├── test_attributes_143.xml │ ├── test_attributes_144.xml │ ├── test_attributes_145.xml │ ├── test_attributes_146.xml │ ├── test_attributes_147.xml │ ├── test_attributes_148.xml │ ├── test_attributes_149.xml │ ├── test_attributes_15.xml │ ├── test_attributes_150.xml │ ├── test_attributes_151.xml │ ├── test_attributes_152.xml │ ├── test_attributes_153.xml │ ├── test_attributes_154.xml │ ├── test_attributes_155.xml │ ├── test_attributes_156.xml │ ├── test_attributes_157.xml │ ├── test_attributes_158.xml │ ├── test_attributes_159.xml │ ├── test_attributes_16.xml │ ├── test_attributes_160.xml │ ├── test_attributes_161.xml │ ├── test_attributes_162.xml │ ├── test_attributes_163.xml │ ├── test_attributes_164.xml │ ├── test_attributes_165.xml │ ├── test_attributes_166.xml │ ├── test_attributes_167.xml │ ├── test_attributes_168.xml │ ├── test_attributes_169.xml │ ├── test_attributes_17.xml │ ├── test_attributes_170.xml │ ├── test_attributes_171.xml │ ├── test_attributes_172.xml │ ├── test_attributes_173.xml │ ├── test_attributes_174.xml │ ├── test_attributes_175.xml │ ├── test_attributes_176.xml │ ├── test_attributes_177.xml │ ├── test_attributes_178.xml │ ├── test_attributes_179.xml │ ├── test_attributes_18.xml │ ├── test_attributes_180.xml │ ├── test_attributes_181.xml │ ├── test_attributes_182.xml │ ├── test_attributes_183.xml │ ├── test_attributes_184.xml │ ├── test_attributes_185.xml │ ├── test_attributes_186.xml │ ├── test_attributes_187.xml │ ├── test_attributes_188.xml │ ├── test_attributes_189.xml │ ├── test_attributes_19.xml │ ├── test_attributes_190.xml │ ├── test_attributes_191.xml │ ├── test_attributes_192.xml │ ├── test_attributes_193.xml │ ├── test_attributes_194.xml │ ├── test_attributes_195.xml │ ├── test_attributes_2.xml │ ├── test_attributes_20.xml │ ├── test_attributes_21.xml │ ├── test_attributes_22.xml │ ├── test_attributes_23.xml │ ├── test_attributes_24.xml │ ├── test_attributes_25.xml │ ├── test_attributes_26.xml │ ├── test_attributes_27.xml │ ├── test_attributes_28.xml │ ├── test_attributes_29.xml │ ├── test_attributes_3.xml │ ├── test_attributes_30.xml │ ├── test_attributes_31.xml │ ├── test_attributes_32.xml │ ├── test_attributes_33.xml │ ├── test_attributes_34.xml │ ├── test_attributes_35.xml │ ├── test_attributes_36.xml │ ├── test_attributes_37.xml │ ├── test_attributes_38.xml │ ├── test_attributes_39.xml │ ├── test_attributes_4.xml │ ├── test_attributes_40.xml │ ├── test_attributes_41.xml │ ├── test_attributes_42.xml │ ├── test_attributes_43.xml │ ├── test_attributes_44.xml │ ├── test_attributes_45.xml │ ├── test_attributes_46.xml │ ├── test_attributes_47.xml │ ├── test_attributes_48.xml │ ├── test_attributes_49.xml │ ├── test_attributes_5.xml │ ├── test_attributes_50.xml │ ├── test_attributes_51.xml │ ├── test_attributes_52.xml │ ├── test_attributes_53.xml │ ├── test_attributes_54.xml │ ├── test_attributes_55.xml │ ├── test_attributes_56.xml │ ├── test_attributes_57.xml │ ├── test_attributes_58.xml │ ├── test_attributes_59.xml │ ├── test_attributes_6.xml │ ├── test_attributes_60.xml │ ├── test_attributes_61.xml │ ├── test_attributes_62.xml │ ├── test_attributes_63.xml │ ├── test_attributes_64.xml │ ├── test_attributes_65.xml │ ├── test_attributes_66.xml │ ├── test_attributes_67.xml │ ├── test_attributes_68.xml │ ├── test_attributes_69.xml │ ├── test_attributes_7.xml │ ├── test_attributes_70.xml │ ├── test_attributes_71.xml │ ├── test_attributes_72.xml │ ├── test_attributes_73.xml │ ├── test_attributes_74.xml │ ├── test_attributes_75.xml │ ├── test_attributes_76.xml │ ├── test_attributes_77.xml │ ├── test_attributes_78.xml │ ├── test_attributes_79.xml │ ├── test_attributes_8.xml │ ├── test_attributes_80.xml │ ├── test_attributes_81.xml │ ├── test_attributes_82.xml │ ├── test_attributes_83.xml │ ├── test_attributes_84.xml │ ├── test_attributes_85.xml │ ├── test_attributes_86.xml │ ├── test_attributes_87.xml │ ├── test_attributes_88.xml │ ├── test_attributes_89.xml │ ├── test_attributes_9.xml │ ├── test_attributes_90.xml │ ├── test_attributes_91.xml │ ├── test_attributes_92.xml │ ├── test_attributes_93.xml │ ├── test_attributes_94.xml │ ├── test_attributes_95.xml │ ├── test_attributes_96.xml │ ├── test_attributes_97.xml │ ├── test_attributes_98.xml │ ├── test_attributes_99.xml │ ├── test_axiom_1.xml │ ├── test_axiom_10.xml │ ├── test_axiom_11.xml │ ├── test_axiom_12.xml │ ├── test_axiom_13.xml │ ├── test_axiom_14.xml │ ├── test_axiom_15.xml │ ├── test_axiom_16.xml │ ├── test_axiom_17.xml │ ├── test_axiom_18.xml │ ├── test_axiom_19.xml │ ├── test_axiom_2.xml │ ├── test_axiom_20.xml │ ├── test_axiom_21.xml │ ├── test_axiom_22.xml │ ├── test_axiom_23.xml │ ├── test_axiom_24.xml │ ├── test_axiom_25.xml │ ├── test_axiom_26.xml │ ├── test_axiom_27.xml │ ├── test_axiom_28.xml │ ├── test_axiom_29.xml │ ├── test_axiom_3.xml │ ├── test_axiom_30.xml │ ├── test_axiom_31.xml │ ├── test_axiom_32.xml │ ├── test_axiom_33.xml │ ├── test_axiom_34.xml │ ├── test_axiom_35.xml │ ├── test_axiom_36.xml │ ├── test_axiom_37.xml │ ├── test_axiom_38.xml │ ├── test_axiom_39.xml │ ├── test_axiom_4.xml │ ├── test_axiom_40.xml │ ├── test_axiom_41.xml │ ├── test_axiom_42.xml │ ├── test_axiom_43.xml │ ├── test_axiom_44.xml │ ├── test_axiom_45.xml │ ├── test_axiom_46.xml │ ├── test_axiom_47.xml │ ├── test_axiom_48.xml │ ├── test_axiom_49.xml │ ├── test_axiom_5.xml │ ├── test_axiom_50.xml │ ├── test_axiom_51.xml │ ├── test_axiom_52.xml │ ├── test_axiom_53.xml │ ├── test_axiom_54.xml │ ├── test_axiom_55.xml │ ├── test_axiom_56.xml │ ├── test_axiom_57.xml │ ├── test_axiom_58.xml │ ├── test_axiom_59.xml │ ├── test_axiom_6.xml │ ├── test_axiom_60.xml │ ├── test_axiom_61.xml │ ├── test_axiom_62.xml │ ├── test_axiom_63.xml │ ├── test_axiom_64.xml │ ├── test_axiom_65.xml │ ├── test_axiom_66.xml │ ├── test_axiom_67.xml │ ├── test_axiom_68.xml │ ├── test_axiom_7.xml │ ├── test_axiom_8.xml │ ├── test_axiom_9.xml │ ├── test_complement_1.xml │ ├── test_complement_10.xml │ ├── test_complement_11.xml │ ├── test_complement_12.xml │ ├── test_complement_13.xml │ ├── test_complement_14.xml │ ├── test_complement_15.xml │ ├── test_complement_16.xml │ ├── test_complement_17.xml │ ├── test_complement_18.xml │ ├── test_complement_19.xml │ ├── test_complement_2.xml │ ├── test_complement_20.xml │ ├── test_complement_21.xml │ ├── test_complement_22.xml │ ├── test_complement_23.xml │ ├── test_complement_24.xml │ ├── test_complement_25.xml │ ├── test_complement_26.xml │ ├── test_complement_27.xml │ ├── test_complement_3.xml │ ├── test_complement_4.xml │ ├── test_complement_5.xml │ ├── test_complement_6.xml │ ├── test_complement_7.xml │ ├── test_complement_8.xml │ ├── test_complement_9.xml │ ├── test_container_1.xml │ ├── test_container_2.xml │ ├── test_container_3.xml │ ├── test_container_4.xml │ ├── test_deprecated_1.xml │ ├── test_deprecated_10.xml │ ├── test_deprecated_11.xml │ ├── test_deprecated_12.xml │ ├── test_deprecated_13.xml │ ├── test_deprecated_14.xml │ ├── test_deprecated_15.xml │ ├── test_deprecated_16.xml │ ├── test_deprecated_17.xml │ ├── test_deprecated_18.xml │ ├── test_deprecated_19.xml │ ├── test_deprecated_2.xml │ ├── test_deprecated_20.xml │ ├── test_deprecated_21.xml │ ├── test_deprecated_22.xml │ ├── test_deprecated_23.xml │ ├── test_deprecated_24.xml │ ├── test_deprecated_25.xml │ ├── test_deprecated_26.xml │ ├── test_deprecated_27.xml │ ├── test_deprecated_28.xml │ ├── test_deprecated_29.xml │ ├── test_deprecated_3.xml │ ├── test_deprecated_30.xml │ ├── test_deprecated_31.xml │ ├── test_deprecated_32.xml │ ├── test_deprecated_33.xml │ ├── test_deprecated_34.xml │ ├── test_deprecated_35.xml │ ├── test_deprecated_36.xml │ ├── test_deprecated_37.xml │ ├── test_deprecated_38.xml │ ├── test_deprecated_39.xml │ ├── test_deprecated_4.xml │ ├── test_deprecated_40.xml │ ├── test_deprecated_41.xml │ ├── test_deprecated_42.xml │ ├── test_deprecated_43.xml │ ├── test_deprecated_44.xml │ ├── test_deprecated_45.xml │ ├── test_deprecated_46.xml │ ├── test_deprecated_47.xml │ ├── test_deprecated_48.xml │ ├── test_deprecated_49.xml │ ├── test_deprecated_5.xml │ ├── test_deprecated_50.xml │ ├── test_deprecated_51.xml │ ├── test_deprecated_52.xml │ ├── test_deprecated_53.xml │ ├── test_deprecated_54.xml │ ├── test_deprecated_55.xml │ ├── test_deprecated_56.xml │ ├── test_deprecated_57.xml │ ├── test_deprecated_58.xml │ ├── test_deprecated_59.xml │ ├── test_deprecated_6.xml │ ├── test_deprecated_60.xml │ ├── test_deprecated_61.xml │ ├── test_deprecated_62.xml │ ├── test_deprecated_63.xml │ ├── test_deprecated_64.xml │ ├── test_deprecated_65.xml │ ├── test_deprecated_66.xml │ ├── test_deprecated_67.xml │ ├── test_deprecated_68.xml │ ├── test_deprecated_69.xml │ ├── test_deprecated_7.xml │ ├── test_deprecated_70.xml │ ├── test_deprecated_71.xml │ ├── test_deprecated_72.xml │ ├── test_deprecated_73.xml │ ├── test_deprecated_74.xml │ ├── test_deprecated_75.xml │ ├── test_deprecated_76.xml │ ├── test_deprecated_77.xml │ ├── test_deprecated_78.xml │ ├── test_deprecated_79.xml │ ├── test_deprecated_8.xml │ ├── test_deprecated_80.xml │ ├── test_deprecated_81.xml │ ├── test_deprecated_82.xml │ ├── test_deprecated_9.xml │ ├── test_disjoint_1.xml │ ├── test_disjoint_10.xml │ ├── test_disjoint_11.xml │ ├── test_disjoint_12.xml │ ├── test_disjoint_13.xml │ ├── test_disjoint_14.xml │ ├── test_disjoint_15.xml │ ├── test_disjoint_16.xml │ ├── test_disjoint_17.xml │ ├── test_disjoint_18.xml │ ├── test_disjoint_19.xml │ ├── test_disjoint_2.xml │ ├── test_disjoint_20.xml │ ├── test_disjoint_21.xml │ ├── test_disjoint_22.xml │ ├── test_disjoint_23.xml │ ├── test_disjoint_24.xml │ ├── test_disjoint_25.xml │ ├── test_disjoint_26.xml │ ├── test_disjoint_27.xml │ ├── test_disjoint_28.xml │ ├── test_disjoint_29.xml │ ├── test_disjoint_3.xml │ ├── test_disjoint_30.xml │ ├── test_disjoint_31.xml │ ├── test_disjoint_32.xml │ ├── test_disjoint_33.xml │ ├── test_disjoint_34.xml │ ├── test_disjoint_35.xml │ ├── test_disjoint_36.xml │ ├── test_disjoint_37.xml │ ├── test_disjoint_38.xml │ ├── test_disjoint_39.xml │ ├── test_disjoint_4.xml │ ├── test_disjoint_40.xml │ ├── test_disjoint_41.xml │ ├── test_disjoint_42.xml │ ├── test_disjoint_43.xml │ ├── test_disjoint_44.xml │ ├── test_disjoint_45.xml │ ├── test_disjoint_46.xml │ ├── test_disjoint_47.xml │ ├── test_disjoint_48.xml │ ├── test_disjoint_49.xml │ ├── test_disjoint_5.xml │ ├── test_disjoint_50.xml │ ├── test_disjoint_51.xml │ ├── test_disjoint_52.xml │ ├── test_disjoint_53.xml │ ├── test_disjoint_54.xml │ ├── test_disjoint_55.xml │ ├── test_disjoint_56.xml │ ├── test_disjoint_57.xml │ ├── test_disjoint_6.xml │ ├── test_disjoint_7.xml │ ├── test_disjoint_8.xml │ ├── test_disjoint_9.xml │ ├── test_enumeration_1.xml │ ├── test_enumeration_10.xml │ ├── test_enumeration_11.xml │ ├── test_enumeration_12.xml │ ├── test_enumeration_13.xml │ ├── test_enumeration_14.xml │ ├── test_enumeration_15.xml │ ├── test_enumeration_16.xml │ ├── test_enumeration_17.xml │ ├── test_enumeration_18.xml │ ├── test_enumeration_19.xml │ ├── test_enumeration_2.xml │ ├── test_enumeration_20.xml │ ├── test_enumeration_21.xml │ ├── test_enumeration_22.xml │ ├── test_enumeration_23.xml │ ├── test_enumeration_24.xml │ ├── test_enumeration_25.xml │ ├── test_enumeration_26.xml │ ├── test_enumeration_27.xml │ ├── test_enumeration_28.xml │ ├── test_enumeration_29.xml │ ├── test_enumeration_3.xml │ ├── test_enumeration_30.xml │ ├── test_enumeration_31.xml │ ├── test_enumeration_32.xml │ ├── test_enumeration_33.xml │ ├── test_enumeration_34.xml │ ├── test_enumeration_35.xml │ ├── test_enumeration_36.xml │ ├── test_enumeration_37.xml │ ├── test_enumeration_38.xml │ ├── test_enumeration_39.xml │ ├── test_enumeration_4.xml │ ├── test_enumeration_40.xml │ ├── test_enumeration_41.xml │ ├── test_enumeration_42.xml │ ├── test_enumeration_43.xml │ ├── test_enumeration_44.xml │ ├── test_enumeration_45.xml │ ├── test_enumeration_46.xml │ ├── test_enumeration_47.xml │ ├── test_enumeration_48.xml │ ├── test_enumeration_5.xml │ ├── test_enumeration_6.xml │ ├── test_enumeration_7.xml │ ├── test_enumeration_8.xml │ ├── test_enumeration_9.xml │ ├── test_equivalence_1.xml │ ├── test_equivalence_10.xml │ ├── test_equivalence_11.xml │ ├── test_equivalence_12.xml │ ├── test_equivalence_13.xml │ ├── test_equivalence_14.xml │ ├── test_equivalence_15.xml │ ├── test_equivalence_16.xml │ ├── test_equivalence_17.xml │ ├── test_equivalence_18.xml │ ├── test_equivalence_19.xml │ ├── test_equivalence_2.xml │ ├── test_equivalence_20.xml │ ├── test_equivalence_21.xml │ ├── test_equivalence_22.xml │ ├── test_equivalence_23.xml │ ├── test_equivalence_24.xml │ ├── test_equivalence_25.xml │ ├── test_equivalence_26.xml │ ├── test_equivalence_27.xml │ ├── test_equivalence_28.xml │ ├── test_equivalence_29.xml │ ├── test_equivalence_3.xml │ ├── test_equivalence_30.xml │ ├── test_equivalence_31.xml │ ├── test_equivalence_32.xml │ ├── test_equivalence_33.xml │ ├── test_equivalence_34.xml │ ├── test_equivalence_35.xml │ ├── test_equivalence_36.xml │ ├── test_equivalence_37.xml │ ├── test_equivalence_38.xml │ ├── test_equivalence_39.xml │ ├── test_equivalence_4.xml │ ├── test_equivalence_40.xml │ ├── test_equivalence_41.xml │ ├── test_equivalence_42.xml │ ├── test_equivalence_43.xml │ ├── test_equivalence_44.xml │ ├── test_equivalence_45.xml │ ├── test_equivalence_46.xml │ ├── test_equivalence_47.xml │ ├── test_equivalence_48.xml │ ├── test_equivalence_49.xml │ ├── test_equivalence_5.xml │ ├── test_equivalence_50.xml │ ├── test_equivalence_57.xml │ ├── test_equivalence_6.xml │ ├── test_equivalence_7.xml │ ├── test_equivalence_8.xml │ ├── test_equivalence_9.xml │ ├── test_individuals_1.xml │ ├── test_individuals_10.xml │ ├── test_individuals_100.xml │ ├── test_individuals_101.xml │ ├── test_individuals_102.xml │ ├── test_individuals_103.xml │ ├── test_individuals_104.xml │ ├── test_individuals_105.xml │ ├── test_individuals_106.xml │ ├── test_individuals_107.xml │ ├── test_individuals_108.xml │ ├── test_individuals_109.xml │ ├── test_individuals_11.xml │ ├── test_individuals_110.xml │ ├── test_individuals_111.xml │ ├── test_individuals_112.xml │ ├── test_individuals_113.xml │ ├── test_individuals_114.xml │ ├── test_individuals_115.xml │ ├── test_individuals_116.xml │ ├── test_individuals_117.xml │ ├── test_individuals_118.xml │ ├── test_individuals_119.xml │ ├── test_individuals_12.xml │ ├── test_individuals_120.xml │ ├── test_individuals_121.xml │ ├── test_individuals_123.xml │ ├── test_individuals_124.xml │ ├── test_individuals_125.xml │ ├── test_individuals_126.xml │ ├── test_individuals_127.xml │ ├── test_individuals_128.xml │ ├── test_individuals_129.xml │ ├── test_individuals_13.xml │ ├── test_individuals_130.xml │ ├── test_individuals_131.xml │ ├── test_individuals_132.xml │ ├── test_individuals_133.xml │ ├── test_individuals_134.xml │ ├── test_individuals_135.xml │ ├── test_individuals_136.xml │ ├── test_individuals_137.xml │ ├── test_individuals_138.xml │ ├── test_individuals_139.xml │ ├── test_individuals_14.xml │ ├── test_individuals_140.xml │ ├── test_individuals_141.xml │ ├── test_individuals_142.xml │ ├── test_individuals_15.xml │ ├── test_individuals_16.xml │ ├── test_individuals_17.xml │ ├── test_individuals_18.xml │ ├── test_individuals_19.xml │ ├── test_individuals_2.xml │ ├── test_individuals_20.xml │ ├── test_individuals_21.xml │ ├── test_individuals_22.xml │ ├── test_individuals_23.xml │ ├── test_individuals_24.xml │ ├── test_individuals_25.xml │ ├── test_individuals_26.xml │ ├── test_individuals_27.xml │ ├── test_individuals_28.xml │ ├── test_individuals_29.xml │ ├── test_individuals_3.xml │ ├── test_individuals_30.xml │ ├── test_individuals_31.xml │ ├── test_individuals_32.xml │ ├── test_individuals_33.xml │ ├── test_individuals_34.xml │ ├── test_individuals_35.xml │ ├── test_individuals_36.xml │ ├── test_individuals_37.xml │ ├── test_individuals_38.xml │ ├── test_individuals_39.xml │ ├── test_individuals_4.xml │ ├── test_individuals_40.xml │ ├── test_individuals_41.xml │ ├── test_individuals_42.xml │ ├── test_individuals_43.xml │ ├── test_individuals_44.xml │ ├── test_individuals_45.xml │ ├── test_individuals_46.xml │ ├── test_individuals_47.xml │ ├── test_individuals_48.xml │ ├── test_individuals_49.xml │ ├── test_individuals_5.xml │ ├── test_individuals_50.xml │ ├── test_individuals_51.xml │ ├── test_individuals_52.xml │ ├── test_individuals_53.xml │ ├── test_individuals_54.xml │ ├── test_individuals_55.xml │ ├── test_individuals_56.xml │ ├── test_individuals_57.xml │ ├── test_individuals_58.xml │ ├── test_individuals_59.xml │ ├── test_individuals_6.xml │ ├── test_individuals_60.xml │ ├── test_individuals_61.xml │ ├── test_individuals_62.xml │ ├── test_individuals_63.xml │ ├── test_individuals_64.xml │ ├── test_individuals_65.xml │ ├── test_individuals_66.xml │ ├── test_individuals_67.xml │ ├── test_individuals_68.xml │ ├── test_individuals_69.xml │ ├── test_individuals_7.xml │ ├── test_individuals_70.xml │ ├── test_individuals_71.xml │ ├── test_individuals_72.xml │ ├── test_individuals_73.xml │ ├── test_individuals_74.xml │ ├── test_individuals_75.xml │ ├── test_individuals_76.xml │ ├── test_individuals_77.xml │ ├── test_individuals_78.xml │ ├── test_individuals_79.xml │ ├── test_individuals_8.xml │ ├── test_individuals_80.xml │ ├── test_individuals_81.xml │ ├── test_individuals_82.xml │ ├── test_individuals_83.xml │ ├── test_individuals_84.xml │ ├── test_individuals_85.xml │ ├── test_individuals_86.xml │ ├── test_individuals_87.xml │ ├── test_individuals_88.xml │ ├── test_individuals_89.xml │ ├── test_individuals_9.xml │ ├── test_individuals_90.xml │ ├── test_individuals_91.xml │ ├── test_individuals_92.xml │ ├── test_individuals_93.xml │ ├── test_individuals_94.xml │ ├── test_individuals_95.xml │ ├── test_individuals_96.xml │ ├── test_individuals_97.xml │ ├── test_individuals_98.xml │ ├── test_individuals_99.xml │ ├── test_intersection_1.xml │ ├── test_intersection_10.xml │ ├── test_intersection_11.xml │ ├── test_intersection_12.xml │ ├── test_intersection_13.xml │ ├── test_intersection_14.xml │ ├── test_intersection_15.xml │ ├── test_intersection_16.xml │ ├── test_intersection_17.xml │ ├── test_intersection_18.xml │ ├── test_intersection_19.xml │ ├── test_intersection_2.xml │ ├── test_intersection_20.xml │ ├── test_intersection_21.xml │ ├── test_intersection_22.xml │ ├── test_intersection_23.xml │ ├── test_intersection_24.xml │ ├── test_intersection_25.xml │ ├── test_intersection_26.xml │ ├── test_intersection_27.xml │ ├── test_intersection_28.xml │ ├── test_intersection_29.xml │ ├── test_intersection_3.xml │ ├── test_intersection_30.xml │ ├── test_intersection_31.xml │ ├── test_intersection_32.xml │ ├── test_intersection_33.xml │ ├── test_intersection_34.xml │ ├── test_intersection_35.xml │ ├── test_intersection_36.xml │ ├── test_intersection_37.xml │ ├── test_intersection_38.xml │ ├── test_intersection_39.xml │ ├── test_intersection_4.xml │ ├── test_intersection_40.xml │ ├── test_intersection_41.xml │ ├── test_intersection_42.xml │ ├── test_intersection_43.xml │ ├── test_intersection_44.xml │ ├── test_intersection_45.xml │ ├── test_intersection_46.xml │ ├── test_intersection_47.xml │ ├── test_intersection_48.xml │ ├── test_intersection_49.xml │ ├── test_intersection_5.xml │ ├── test_intersection_50.xml │ ├── test_intersection_51.xml │ ├── test_intersection_52.xml │ ├── test_intersection_53.xml │ ├── test_intersection_54.xml │ ├── test_intersection_55.xml │ ├── test_intersection_56.xml │ ├── test_intersection_6.xml │ ├── test_intersection_7.xml │ ├── test_intersection_8.xml │ ├── test_intersection_9.xml │ ├── test_iris_1.xml │ ├── test_iris_10.xml │ ├── test_iris_11.xml │ ├── test_iris_12.xml │ ├── test_iris_13.xml │ ├── test_iris_14.xml │ ├── test_iris_15.xml │ ├── test_iris_16.xml │ ├── test_iris_17.xml │ ├── test_iris_18.xml │ ├── test_iris_19.xml │ ├── test_iris_2.xml │ ├── test_iris_20.xml │ ├── test_iris_21.xml │ ├── test_iris_22.xml │ ├── test_iris_23.xml │ ├── test_iris_24.xml │ ├── test_iris_25.xml │ ├── test_iris_26.xml │ ├── test_iris_27.xml │ ├── test_iris_28.xml │ ├── test_iris_29.xml │ ├── test_iris_3.xml │ ├── test_iris_30.xml │ ├── test_iris_31.xml │ ├── test_iris_32.xml │ ├── test_iris_33.xml │ ├── test_iris_34.xml │ ├── test_iris_35.xml │ ├── test_iris_36.xml │ ├── test_iris_37.xml │ ├── test_iris_38.xml │ ├── test_iris_39.xml │ ├── test_iris_4.xml │ ├── test_iris_40.xml │ ├── test_iris_41.xml │ ├── test_iris_42.xml │ ├── test_iris_43.xml │ ├── test_iris_44.xml │ ├── test_iris_45.xml │ ├── test_iris_46.xml │ ├── test_iris_47.xml │ ├── test_iris_48.xml │ ├── test_iris_5.xml │ ├── test_iris_6.xml │ ├── test_iris_7.xml │ ├── test_iris_8.xml │ ├── test_iris_9.xml │ ├── test_metadata_1.xml │ ├── test_metadata_10.xml │ ├── test_metadata_11.xml │ ├── test_metadata_12.xml │ ├── test_metadata_13.xml │ ├── test_metadata_14.xml │ ├── test_metadata_15.xml │ ├── test_metadata_16.xml │ ├── test_metadata_17.xml │ ├── test_metadata_18.xml │ ├── test_metadata_19.xml │ ├── test_metadata_2.xml │ ├── test_metadata_20.xml │ ├── test_metadata_21.xml │ ├── test_metadata_22.xml │ ├── test_metadata_3.xml │ ├── test_metadata_4.xml │ ├── test_metadata_5.xml │ ├── test_metadata_6.xml │ ├── test_metadata_7.xml │ ├── test_metadata_8.xml │ ├── test_metadata_9.xml │ ├── test_namespaces_1.xml │ ├── test_namespaces_10.xml │ ├── test_namespaces_11.xml │ ├── test_namespaces_12.xml │ ├── test_namespaces_13.xml │ ├── test_namespaces_14.xml │ ├── test_namespaces_15.xml │ ├── test_namespaces_16.xml │ ├── test_namespaces_17.xml │ ├── test_namespaces_18.xml │ ├── test_namespaces_19.xml │ ├── test_namespaces_2.xml │ ├── test_namespaces_20.xml │ ├── test_namespaces_21.xml │ ├── test_namespaces_22.xml │ ├── test_namespaces_23.xml │ ├── test_namespaces_24.xml │ ├── test_namespaces_25.xml │ ├── test_namespaces_26.xml │ ├── test_namespaces_27.xml │ ├── test_namespaces_28.xml │ ├── test_namespaces_29.xml │ ├── test_namespaces_3.xml │ ├── test_namespaces_30.xml │ ├── test_namespaces_4.xml │ ├── test_namespaces_5.xml │ ├── test_namespaces_6.xml │ ├── test_namespaces_7.xml │ ├── test_namespaces_8.xml │ ├── test_namespaces_9.xml │ ├── test_property_chain_1.xml │ ├── test_property_chain_10.xml │ ├── test_property_chain_11.xml │ ├── test_property_chain_12.xml │ ├── test_property_chain_13.xml │ ├── test_property_chain_14.xml │ ├── test_property_chain_15.xml │ ├── test_property_chain_16.xml │ ├── test_property_chain_17.xml │ ├── test_property_chain_18.xml │ ├── test_property_chain_19.xml │ ├── test_property_chain_2.xml │ ├── test_property_chain_20.xml │ ├── test_property_chain_21.xml │ ├── test_property_chain_22.xml │ ├── test_property_chain_3.xml │ ├── test_property_chain_4.xml │ ├── test_property_chain_5.xml │ ├── test_property_chain_6.xml │ ├── test_property_chain_7.xml │ ├── test_property_chain_8.xml │ ├── test_property_chain_9.xml │ ├── test_relations_1.xml │ ├── test_relations_10.xml │ ├── test_relations_100.xml │ ├── test_relations_101.xml │ ├── test_relations_102.xml │ ├── test_relations_103.xml │ ├── test_relations_104.xml │ ├── test_relations_105.xml │ ├── test_relations_106.xml │ ├── test_relations_107.xml │ ├── test_relations_108.xml │ ├── test_relations_109.xml │ ├── test_relations_11.xml │ ├── test_relations_110.xml │ ├── test_relations_111.xml │ ├── test_relations_112.xml │ ├── test_relations_113.xml │ ├── test_relations_114.xml │ ├── test_relations_115.xml │ ├── test_relations_116.xml │ ├── test_relations_117.xml │ ├── test_relations_118.xml │ ├── test_relations_119.xml │ ├── test_relations_12.xml │ ├── test_relations_120.xml │ ├── test_relations_121.xml │ ├── test_relations_122.xml │ ├── test_relations_123.xml │ ├── test_relations_124.xml │ ├── test_relations_125.xml │ ├── test_relations_126.xml │ ├── test_relations_127.xml │ ├── test_relations_128.xml │ ├── test_relations_129.xml │ ├── test_relations_13.xml │ ├── test_relations_130.xml │ ├── test_relations_131.xml │ ├── test_relations_132.xml │ ├── test_relations_133.xml │ ├── test_relations_134.xml │ ├── test_relations_135.xml │ ├── test_relations_136.xml │ ├── test_relations_137.xml │ ├── test_relations_138.xml │ ├── test_relations_139.xml │ ├── test_relations_14.xml │ ├── test_relations_140.xml │ ├── test_relations_141.xml │ ├── test_relations_142.xml │ ├── test_relations_143.xml │ ├── test_relations_144.xml │ ├── test_relations_145.xml │ ├── test_relations_146.xml │ ├── test_relations_147.xml │ ├── test_relations_148.xml │ ├── test_relations_149.xml │ ├── test_relations_15.xml │ ├── test_relations_150.xml │ ├── test_relations_151.xml │ ├── test_relations_152.xml │ ├── test_relations_153.xml │ ├── test_relations_154.xml │ ├── test_relations_155.xml │ ├── test_relations_156.xml │ ├── test_relations_157.xml │ ├── test_relations_158.xml │ ├── test_relations_159.xml │ ├── test_relations_16.xml │ ├── test_relations_160.xml │ ├── test_relations_161.xml │ ├── test_relations_162.xml │ ├── test_relations_163.xml │ ├── test_relations_164.xml │ ├── test_relations_165.xml │ ├── test_relations_166.xml │ ├── test_relations_167.xml │ ├── test_relations_168.xml │ ├── test_relations_169.xml │ ├── test_relations_17.xml │ ├── test_relations_170.xml │ ├── test_relations_171.xml │ ├── test_relations_172.xml │ ├── test_relations_173.xml │ ├── test_relations_174.xml │ ├── test_relations_175.xml │ ├── test_relations_176.xml │ ├── test_relations_177.xml │ ├── test_relations_178.xml │ ├── test_relations_179.xml │ ├── test_relations_18.xml │ ├── test_relations_180.xml │ ├── test_relations_181.xml │ ├── test_relations_182.xml │ ├── test_relations_183.xml │ ├── test_relations_184.xml │ ├── test_relations_185.xml │ ├── test_relations_186.xml │ ├── test_relations_187.xml │ ├── test_relations_188.xml │ ├── test_relations_189.xml │ ├── test_relations_19.xml │ ├── test_relations_190.xml │ ├── test_relations_191.xml │ ├── test_relations_192.xml │ ├── test_relations_193.xml │ ├── test_relations_194.xml │ ├── test_relations_195.xml │ ├── test_relations_196.xml │ ├── test_relations_197.xml │ ├── test_relations_198.xml │ ├── test_relations_199.xml │ ├── test_relations_2.xml │ ├── test_relations_20.xml │ ├── test_relations_200.xml │ ├── test_relations_201.xml │ ├── test_relations_202.xml │ ├── test_relations_203.xml │ ├── test_relations_204.xml │ ├── test_relations_205.xml │ ├── test_relations_206.xml │ ├── test_relations_207.xml │ ├── test_relations_208.xml │ ├── test_relations_209.xml │ ├── test_relations_21.xml │ ├── test_relations_210.xml │ ├── test_relations_211.xml │ ├── test_relations_212.xml │ ├── test_relations_213.xml │ ├── test_relations_214.xml │ ├── test_relations_215.xml │ ├── test_relations_216.xml │ ├── test_relations_217.xml │ ├── test_relations_218.xml │ ├── test_relations_219.xml │ ├── test_relations_22.xml │ ├── test_relations_220.xml │ ├── test_relations_221.xml │ ├── test_relations_222.xml │ ├── test_relations_223.xml │ ├── test_relations_224.xml │ ├── test_relations_225.xml │ ├── test_relations_226.xml │ ├── test_relations_227.xml │ ├── test_relations_228.xml │ ├── test_relations_229.xml │ ├── test_relations_23.xml │ ├── test_relations_230.xml │ ├── test_relations_231.xml │ ├── test_relations_24.xml │ ├── test_relations_25.xml │ ├── test_relations_26.xml │ ├── test_relations_27.xml │ ├── test_relations_28.xml │ ├── test_relations_29.xml │ ├── test_relations_3.xml │ ├── test_relations_30.xml │ ├── test_relations_31.xml │ ├── test_relations_32.xml │ ├── test_relations_33.xml │ ├── test_relations_34.xml │ ├── test_relations_35.xml │ ├── test_relations_36.xml │ ├── test_relations_37.xml │ ├── test_relations_38.xml │ ├── test_relations_39.xml │ ├── test_relations_4.xml │ ├── test_relations_40.xml │ ├── test_relations_41.xml │ ├── test_relations_42.xml │ ├── test_relations_43.xml │ ├── test_relations_44.xml │ ├── test_relations_45.xml │ ├── test_relations_46.xml │ ├── test_relations_47.xml │ ├── test_relations_48.xml │ ├── test_relations_49.xml │ ├── test_relations_5.xml │ ├── test_relations_50.xml │ ├── test_relations_51.xml │ ├── test_relations_52.xml │ ├── test_relations_53.xml │ ├── test_relations_54.xml │ ├── test_relations_55.xml │ ├── test_relations_56.xml │ ├── test_relations_57.xml │ ├── test_relations_58.xml │ ├── test_relations_59.xml │ ├── test_relations_6.xml │ ├── test_relations_60.xml │ ├── test_relations_61.xml │ ├── test_relations_62.xml │ ├── test_relations_63.xml │ ├── test_relations_64.xml │ ├── test_relations_65.xml │ ├── test_relations_66.xml │ ├── test_relations_67.xml │ ├── test_relations_68.xml │ ├── test_relations_69.xml │ ├── test_relations_7.xml │ ├── test_relations_70.xml │ ├── test_relations_71.xml │ ├── test_relations_72.xml │ ├── test_relations_73.xml │ ├── test_relations_74.xml │ ├── test_relations_75.xml │ ├── test_relations_76.xml │ ├── test_relations_77.xml │ ├── test_relations_78.xml │ ├── test_relations_79.xml │ ├── test_relations_8.xml │ ├── test_relations_80.xml │ ├── test_relations_81.xml │ ├── test_relations_82.xml │ ├── test_relations_83.xml │ ├── test_relations_84.xml │ ├── test_relations_85.xml │ ├── test_relations_86.xml │ ├── test_relations_87.xml │ ├── test_relations_88.xml │ ├── test_relations_89.xml │ ├── test_relations_9.xml │ ├── test_relations_90.xml │ ├── test_relations_91.xml │ ├── test_relations_92.xml │ ├── test_relations_93.xml │ ├── test_relations_94.xml │ ├── test_relations_95.xml │ ├── test_relations_96.xml │ ├── test_relations_97.xml │ ├── test_relations_98.xml │ ├── test_relations_99.xml │ ├── test_restriction_1.xml │ ├── test_restriction_10.xml │ ├── test_restriction_100.xml │ ├── test_restriction_101.xml │ ├── test_restriction_102.xml │ ├── test_restriction_103.xml │ ├── test_restriction_104.xml │ ├── test_restriction_105.xml │ ├── test_restriction_106.xml │ ├── test_restriction_107.xml │ ├── test_restriction_108.xml │ ├── test_restriction_109.xml │ ├── test_restriction_11.xml │ ├── test_restriction_110.xml │ ├── test_restriction_111.xml │ ├── test_restriction_112.xml │ ├── test_restriction_113.xml │ ├── test_restriction_114.xml │ ├── test_restriction_115.xml │ ├── test_restriction_116.xml │ ├── test_restriction_117.xml │ ├── test_restriction_118.xml │ ├── test_restriction_119.xml │ ├── test_restriction_12.xml │ ├── test_restriction_120.xml │ ├── test_restriction_121.xml │ ├── test_restriction_122.xml │ ├── test_restriction_123.xml │ ├── test_restriction_124.xml │ ├── test_restriction_125.xml │ ├── test_restriction_126.xml │ ├── test_restriction_127.xml │ ├── test_restriction_128.xml │ ├── test_restriction_129.xml │ ├── test_restriction_13.xml │ ├── test_restriction_130.xml │ ├── test_restriction_131.xml │ ├── test_restriction_132.xml │ ├── test_restriction_133.xml │ ├── test_restriction_134.xml │ ├── test_restriction_135.xml │ ├── test_restriction_136.xml │ ├── test_restriction_137.xml │ ├── test_restriction_138.xml │ ├── test_restriction_139.xml │ ├── test_restriction_14.xml │ ├── test_restriction_140.xml │ ├── test_restriction_141.xml │ ├── test_restriction_142.xml │ ├── test_restriction_143.xml │ ├── test_restriction_144.xml │ ├── test_restriction_145.xml │ ├── test_restriction_146.xml │ ├── test_restriction_147.xml │ ├── test_restriction_148.xml │ ├── test_restriction_149.xml │ ├── test_restriction_15.xml │ ├── test_restriction_150.xml │ ├── test_restriction_151.xml │ ├── test_restriction_152.xml │ ├── test_restriction_153.xml │ ├── test_restriction_154.xml │ ├── test_restriction_155.xml │ ├── test_restriction_156.xml │ ├── test_restriction_157.xml │ ├── test_restriction_158.xml │ ├── test_restriction_159.xml │ ├── test_restriction_16.xml │ ├── test_restriction_160.xml │ ├── test_restriction_161.xml │ ├── test_restriction_162.xml │ ├── test_restriction_163.xml │ ├── test_restriction_164.xml │ ├── test_restriction_165.xml │ ├── test_restriction_166.xml │ ├── test_restriction_167.xml │ ├── test_restriction_168.xml │ ├── test_restriction_169.xml │ ├── test_restriction_17.xml │ ├── test_restriction_170.xml │ ├── test_restriction_171.xml │ ├── test_restriction_172.xml │ ├── test_restriction_173.xml │ ├── test_restriction_174.xml │ ├── test_restriction_175.xml │ ├── test_restriction_176.xml │ ├── test_restriction_177.xml │ ├── test_restriction_178.xml │ ├── test_restriction_179.xml │ ├── test_restriction_18.xml │ ├── test_restriction_180.xml │ ├── test_restriction_181.xml │ ├── test_restriction_182.xml │ ├── test_restriction_183.xml │ ├── test_restriction_184.xml │ ├── test_restriction_185.xml │ ├── test_restriction_186.xml │ ├── test_restriction_187.xml │ ├── test_restriction_188.xml │ ├── test_restriction_189.xml │ ├── test_restriction_19.xml │ ├── test_restriction_190.xml │ ├── test_restriction_191.xml │ ├── test_restriction_192.xml │ ├── test_restriction_193.xml │ ├── test_restriction_194.xml │ ├── test_restriction_195.xml │ ├── test_restriction_196.xml │ ├── test_restriction_197.xml │ ├── test_restriction_198.xml │ ├── test_restriction_199.xml │ ├── test_restriction_2.xml │ ├── test_restriction_20.xml │ ├── test_restriction_200.xml │ ├── test_restriction_201.xml │ ├── test_restriction_202.xml │ ├── test_restriction_203.xml │ ├── test_restriction_204.xml │ ├── test_restriction_205.xml │ ├── test_restriction_206.xml │ ├── test_restriction_207.xml │ ├── test_restriction_208.xml │ ├── test_restriction_209.xml │ ├── test_restriction_21.xml │ ├── test_restriction_210.xml │ ├── test_restriction_211.xml │ ├── test_restriction_212.xml │ ├── test_restriction_213.xml │ ├── test_restriction_214.xml │ ├── test_restriction_215.xml │ ├── test_restriction_216.xml │ ├── test_restriction_217.xml │ ├── test_restriction_218.xml │ ├── test_restriction_219.xml │ ├── test_restriction_22.xml │ ├── test_restriction_220.xml │ ├── test_restriction_221.xml │ ├── test_restriction_222.xml │ ├── test_restriction_223.xml │ ├── test_restriction_224.xml │ ├── test_restriction_225.xml │ ├── test_restriction_226.xml │ ├── test_restriction_227.xml │ ├── test_restriction_228.xml │ ├── test_restriction_229.xml │ ├── test_restriction_23.xml │ ├── test_restriction_230.xml │ ├── test_restriction_231.xml │ ├── test_restriction_232.xml │ ├── test_restriction_233.xml │ ├── test_restriction_234.xml │ ├── test_restriction_235.xml │ ├── test_restriction_236.xml │ ├── test_restriction_237.xml │ ├── test_restriction_238.xml │ ├── test_restriction_239.xml │ ├── test_restriction_24.xml │ ├── test_restriction_240.xml │ ├── test_restriction_241.xml │ ├── test_restriction_242.xml │ ├── test_restriction_243.xml │ ├── test_restriction_244.xml │ ├── test_restriction_245.xml │ ├── test_restriction_246.xml │ ├── test_restriction_247.xml │ ├── test_restriction_248.xml │ ├── test_restriction_249.xml │ ├── test_restriction_25.xml │ ├── test_restriction_250.xml │ ├── test_restriction_251.xml │ ├── test_restriction_252.xml │ ├── test_restriction_253.xml │ ├── test_restriction_254.xml │ ├── test_restriction_255.xml │ ├── test_restriction_256.xml │ ├── test_restriction_257.xml │ ├── test_restriction_258.xml │ ├── test_restriction_259.xml │ ├── test_restriction_26.xml │ ├── test_restriction_260.xml │ ├── test_restriction_261.xml │ ├── test_restriction_262.xml │ ├── test_restriction_263.xml │ ├── test_restriction_264.xml │ ├── test_restriction_265.xml │ ├── test_restriction_266.xml │ ├── test_restriction_267.xml │ ├── test_restriction_268.xml │ ├── test_restriction_269.xml │ ├── test_restriction_27.xml │ ├── test_restriction_270.xml │ ├── test_restriction_271.xml │ ├── test_restriction_272.xml │ ├── test_restriction_273.xml │ ├── test_restriction_274.xml │ ├── test_restriction_275.xml │ ├── test_restriction_276.xml │ ├── test_restriction_277.xml │ ├── test_restriction_278.xml │ ├── test_restriction_279.xml │ ├── test_restriction_28.xml │ ├── test_restriction_280.xml │ ├── test_restriction_281.xml │ ├── test_restriction_282.xml │ ├── test_restriction_283.xml │ ├── test_restriction_284.xml │ ├── test_restriction_285.xml │ ├── test_restriction_286.xml │ ├── test_restriction_287.xml │ ├── test_restriction_288.xml │ ├── test_restriction_289.xml │ ├── test_restriction_29.xml │ ├── test_restriction_290.xml │ ├── test_restriction_291.xml │ ├── test_restriction_292.xml │ ├── test_restriction_293.xml │ ├── test_restriction_294.xml │ ├── test_restriction_295.xml │ ├── test_restriction_296.xml │ ├── test_restriction_297.xml │ ├── test_restriction_298.xml │ ├── test_restriction_299.xml │ ├── test_restriction_3.xml │ ├── test_restriction_30.xml │ ├── test_restriction_300.xml │ ├── test_restriction_301.xml │ ├── test_restriction_302.xml │ ├── test_restriction_303.xml │ ├── test_restriction_304.xml │ ├── test_restriction_305.xml │ ├── test_restriction_306.xml │ ├── test_restriction_307.xml │ ├── test_restriction_308.xml │ ├── test_restriction_309.xml │ ├── test_restriction_31.xml │ ├── test_restriction_310.xml │ ├── test_restriction_311.xml │ ├── test_restriction_312.xml │ ├── test_restriction_313.xml │ ├── test_restriction_314.xml │ ├── test_restriction_315.xml │ ├── test_restriction_316.xml │ ├── test_restriction_317.xml │ ├── test_restriction_318.xml │ ├── test_restriction_319.xml │ ├── test_restriction_32.xml │ ├── test_restriction_320.xml │ ├── test_restriction_321.xml │ ├── test_restriction_322.xml │ ├── test_restriction_323.xml │ ├── test_restriction_324.xml │ ├── test_restriction_325.xml │ ├── test_restriction_326.xml │ ├── test_restriction_327.xml │ ├── test_restriction_328.xml │ ├── test_restriction_329.xml │ ├── test_restriction_33.xml │ ├── test_restriction_330.xml │ ├── test_restriction_331.xml │ ├── test_restriction_332.xml │ ├── test_restriction_333.xml │ ├── test_restriction_334.xml │ ├── test_restriction_335.xml │ ├── test_restriction_336.xml │ ├── test_restriction_337.xml │ ├── test_restriction_338.xml │ ├── test_restriction_339.xml │ ├── test_restriction_34.xml │ ├── test_restriction_340.xml │ ├── test_restriction_341.xml │ ├── test_restriction_342.xml │ ├── test_restriction_343.xml │ ├── test_restriction_344.xml │ ├── test_restriction_345.xml │ ├── test_restriction_346.xml │ ├── test_restriction_347.xml │ ├── test_restriction_348.xml │ ├── test_restriction_349.xml │ ├── test_restriction_35.xml │ ├── test_restriction_350.xml │ ├── test_restriction_351.xml │ ├── test_restriction_352.xml │ ├── test_restriction_353.xml │ ├── test_restriction_354.xml │ ├── test_restriction_355.xml │ ├── test_restriction_356.xml │ ├── test_restriction_357.xml │ ├── test_restriction_358.xml │ ├── test_restriction_359.xml │ ├── test_restriction_36.xml │ ├── test_restriction_360.xml │ ├── test_restriction_361.xml │ ├── test_restriction_362.xml │ ├── test_restriction_363.xml │ ├── test_restriction_364.xml │ ├── test_restriction_365.xml │ ├── test_restriction_366.xml │ ├── test_restriction_367.xml │ ├── test_restriction_368.xml │ ├── test_restriction_369.xml │ ├── test_restriction_37.xml │ ├── test_restriction_370.xml │ ├── test_restriction_371.xml │ ├── test_restriction_372.xml │ ├── test_restriction_373.xml │ ├── test_restriction_374.xml │ ├── test_restriction_375.xml │ ├── test_restriction_376.xml │ ├── test_restriction_377.xml │ ├── test_restriction_378.xml │ ├── test_restriction_379.xml │ ├── test_restriction_38.xml │ ├── test_restriction_380.xml │ ├── test_restriction_381.xml │ ├── test_restriction_382.xml │ ├── test_restriction_383.xml │ ├── test_restriction_384.xml │ ├── test_restriction_385.xml │ ├── test_restriction_386.xml │ ├── test_restriction_387.xml │ ├── test_restriction_388.xml │ ├── test_restriction_389.xml │ ├── test_restriction_39.xml │ ├── test_restriction_390.xml │ ├── test_restriction_391.xml │ ├── test_restriction_392.xml │ ├── test_restriction_393.xml │ ├── test_restriction_394.xml │ ├── test_restriction_395.xml │ ├── test_restriction_396.xml │ ├── test_restriction_397.xml │ ├── test_restriction_398.xml │ ├── test_restriction_399.xml │ ├── test_restriction_4.xml │ ├── test_restriction_40.xml │ ├── test_restriction_400.xml │ ├── test_restriction_401.xml │ ├── test_restriction_402.xml │ ├── test_restriction_403.xml │ ├── test_restriction_404.xml │ ├── test_restriction_405.xml │ ├── test_restriction_406.xml │ ├── test_restriction_407.xml │ ├── test_restriction_408.xml │ ├── test_restriction_409.xml │ ├── test_restriction_41.xml │ ├── test_restriction_410.xml │ ├── test_restriction_411.xml │ ├── test_restriction_412.xml │ ├── test_restriction_413.xml │ ├── test_restriction_414.xml │ ├── test_restriction_415.xml │ ├── test_restriction_416.xml │ ├── test_restriction_417.xml │ ├── test_restriction_418.xml │ ├── test_restriction_419.xml │ ├── test_restriction_42.xml │ ├── test_restriction_420.xml │ ├── test_restriction_421.xml │ ├── test_restriction_422.xml │ ├── test_restriction_423.xml │ ├── test_restriction_424.xml │ ├── test_restriction_425.xml │ ├── test_restriction_426.xml │ ├── test_restriction_427.xml │ ├── test_restriction_428.xml │ ├── test_restriction_429.xml │ ├── test_restriction_43.xml │ ├── test_restriction_430.xml │ ├── test_restriction_431.xml │ ├── test_restriction_432.xml │ ├── test_restriction_433.xml │ ├── test_restriction_434.xml │ ├── test_restriction_435.xml │ ├── test_restriction_436.xml │ ├── test_restriction_437.xml │ ├── test_restriction_438.xml │ ├── test_restriction_439.xml │ ├── test_restriction_44.xml │ ├── test_restriction_440.xml │ ├── test_restriction_441.xml │ ├── test_restriction_442.xml │ ├── test_restriction_443.xml │ ├── test_restriction_444.xml │ ├── test_restriction_445.xml │ ├── test_restriction_446.xml │ ├── test_restriction_447.xml │ ├── test_restriction_448.xml │ ├── test_restriction_449.xml │ ├── test_restriction_45.xml │ ├── test_restriction_450.xml │ ├── test_restriction_451.xml │ ├── test_restriction_452.xml │ ├── test_restriction_453.xml │ ├── test_restriction_454.xml │ ├── test_restriction_455.xml │ ├── test_restriction_456.xml │ ├── test_restriction_457.xml │ ├── test_restriction_458.xml │ ├── test_restriction_459.xml │ ├── test_restriction_46.xml │ ├── test_restriction_460.xml │ ├── test_restriction_461.xml │ ├── test_restriction_462.xml │ ├── test_restriction_463.xml │ ├── test_restriction_464.xml │ ├── test_restriction_465.xml │ ├── test_restriction_466.xml │ ├── test_restriction_467.xml │ ├── test_restriction_468.xml │ ├── test_restriction_469.xml │ ├── test_restriction_47.xml │ ├── test_restriction_470.xml │ ├── test_restriction_471.xml │ ├── test_restriction_472.xml │ ├── test_restriction_473.xml │ ├── test_restriction_474.xml │ ├── test_restriction_475.xml │ ├── test_restriction_476.xml │ ├── test_restriction_477.xml │ ├── test_restriction_478.xml │ ├── test_restriction_479.xml │ ├── test_restriction_48.xml │ ├── test_restriction_480.xml │ ├── test_restriction_481.xml │ ├── test_restriction_482.xml │ ├── test_restriction_483.xml │ ├── test_restriction_484.xml │ ├── test_restriction_485.xml │ ├── test_restriction_486.xml │ ├── test_restriction_487.xml │ ├── test_restriction_488.xml │ ├── test_restriction_489.xml │ ├── test_restriction_49.xml │ ├── test_restriction_490.xml │ ├── test_restriction_491.xml │ ├── test_restriction_492.xml │ ├── test_restriction_493.xml │ ├── test_restriction_494.xml │ ├── test_restriction_495.xml │ ├── test_restriction_496.xml │ ├── test_restriction_497.xml │ ├── test_restriction_498.xml │ ├── test_restriction_499.xml │ ├── test_restriction_5.xml │ ├── test_restriction_50.xml │ ├── test_restriction_500.xml │ ├── test_restriction_501.xml │ ├── test_restriction_502.xml │ ├── test_restriction_503.xml │ ├── test_restriction_504.xml │ ├── test_restriction_505.xml │ ├── test_restriction_506.xml │ ├── test_restriction_507.xml │ ├── test_restriction_508.xml │ ├── test_restriction_509.xml │ ├── test_restriction_51.xml │ ├── test_restriction_510.xml │ ├── test_restriction_511.xml │ ├── test_restriction_512.xml │ ├── test_restriction_513.xml │ ├── test_restriction_514.xml │ ├── test_restriction_515.xml │ ├── test_restriction_516.xml │ ├── test_restriction_52.xml │ ├── test_restriction_53.xml │ ├── test_restriction_54.xml │ ├── test_restriction_55.xml │ ├── test_restriction_56.xml │ ├── test_restriction_57.xml │ ├── test_restriction_58.xml │ ├── test_restriction_59.xml │ ├── test_restriction_6.xml │ ├── test_restriction_60.xml │ ├── test_restriction_61.xml │ ├── test_restriction_62.xml │ ├── test_restriction_63.xml │ ├── test_restriction_64.xml │ ├── test_restriction_65.xml │ ├── test_restriction_66.xml │ ├── test_restriction_67.xml │ ├── test_restriction_68.xml │ ├── test_restriction_69.xml │ ├── test_restriction_7.xml │ ├── test_restriction_70.xml │ ├── test_restriction_71.xml │ ├── test_restriction_72.xml │ ├── test_restriction_73.xml │ ├── test_restriction_74.xml │ ├── test_restriction_75.xml │ ├── test_restriction_76.xml │ ├── test_restriction_77.xml │ ├── test_restriction_78.xml │ ├── test_restriction_79.xml │ ├── test_restriction_8.xml │ ├── test_restriction_80.xml │ ├── test_restriction_81.xml │ ├── test_restriction_82.xml │ ├── test_restriction_83.xml │ ├── test_restriction_84.xml │ ├── test_restriction_85.xml │ ├── test_restriction_86.xml │ ├── test_restriction_87.xml │ ├── test_restriction_88.xml │ ├── test_restriction_89.xml │ ├── test_restriction_9.xml │ ├── test_restriction_90.xml │ ├── test_restriction_91.xml │ ├── test_restriction_92.xml │ ├── test_restriction_93.xml │ ├── test_restriction_94.xml │ ├── test_restriction_95.xml │ ├── test_restriction_96.xml │ ├── test_restriction_97.xml │ ├── test_restriction_98.xml │ ├── test_restriction_99.xml │ ├── test_subclass_1.xml │ ├── test_subclass_10.xml │ ├── test_subclass_11.xml │ ├── test_subclass_12.xml │ ├── test_subclass_13.xml │ ├── test_subclass_14.xml │ ├── test_subclass_15.xml │ ├── test_subclass_16.xml │ ├── test_subclass_17.xml │ ├── test_subclass_18.xml │ ├── test_subclass_19.xml │ ├── test_subclass_2.xml │ ├── test_subclass_20.xml │ ├── test_subclass_21.xml │ ├── test_subclass_22.xml │ ├── test_subclass_23.xml │ ├── test_subclass_24.xml │ ├── test_subclass_25.xml │ ├── test_subclass_26.xml │ ├── test_subclass_27.xml │ ├── test_subclass_28.xml │ ├── test_subclass_29.xml │ ├── test_subclass_3.xml │ ├── test_subclass_30.xml │ ├── test_subclass_31.xml │ ├── test_subclass_32.xml │ ├── test_subclass_33.xml │ ├── test_subclass_34.xml │ ├── test_subclass_35.xml │ ├── test_subclass_36.xml │ ├── test_subclass_37.xml │ ├── test_subclass_38.xml │ ├── test_subclass_39.xml │ ├── test_subclass_4.xml │ ├── test_subclass_5.xml │ ├── test_subclass_6.xml │ ├── test_subclass_7.xml │ ├── test_subclass_8.xml │ ├── test_subclass_9.xml │ ├── test_union_1.xml │ ├── test_union_10.xml │ ├── test_union_11.xml │ ├── test_union_12.xml │ ├── test_union_13.xml │ ├── test_union_14.xml │ ├── test_union_15.xml │ ├── test_union_16.xml │ ├── test_union_17.xml │ ├── test_union_18.xml │ ├── test_union_19.xml │ ├── test_union_2.xml │ ├── test_union_20.xml │ ├── test_union_21.xml │ ├── test_union_22.xml │ ├── test_union_23.xml │ ├── test_union_24.xml │ ├── test_union_25.xml │ ├── test_union_26.xml │ ├── test_union_27.xml │ ├── test_union_28.xml │ ├── test_union_29.xml │ ├── test_union_3.xml │ ├── test_union_30.xml │ ├── test_union_31.xml │ ├── test_union_32.xml │ ├── test_union_33.xml │ ├── test_union_34.xml │ ├── test_union_35.xml │ ├── test_union_36.xml │ ├── test_union_37.xml │ ├── test_union_38.xml │ ├── test_union_39.xml │ ├── test_union_4.xml │ ├── test_union_40.xml │ ├── test_union_41.xml │ ├── test_union_42.xml │ ├── test_union_43.xml │ ├── test_union_44.xml │ ├── test_union_45.xml │ ├── test_union_46.xml │ ├── test_union_47.xml │ ├── test_union_48.xml │ ├── test_union_49.xml │ ├── test_union_5.xml │ ├── test_union_50.xml │ ├── test_union_51.xml │ ├── test_union_52.xml │ ├── test_union_53.xml │ ├── test_union_54.xml │ ├── test_union_55.xml │ ├── test_union_56.xml │ ├── test_union_6.xml │ ├── test_union_7.xml │ ├── test_union_8.xml │ └── test_union_9.xml │ ├── test_finding copy.py │ └── test_finding.py ├── citation.cff ├── config.py ├── config ├── __init__.py ├── default.py ├── dev.py └── prod.py ├── converter.py ├── docker-compose.yml ├── entrypoint.py ├── pyproject.toml ├── python ├── requirements.txt └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | venv 3 | .vscode 4 | .test 5 | *.pyc 6 | *.py[cod] 7 | .idea 8 | .vs 9 | .vscode 10 | *__pycache__/ 11 | *.log 12 | source/*egg-info 13 | dist 14 | data 15 | comandos.txt 16 | app/unit-tests/outputs/* 17 | -------------------------------------------------------------------------------- /app/public/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint 2 | 3 | public_bp = Blueprint('public', __name__, template_folder = 'templates') 4 | 5 | from . import routes -------------------------------------------------------------------------------- /app/source/chowlk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/source/chowlk/__init__.py -------------------------------------------------------------------------------- /app/static/css/editor.css: -------------------------------------------------------------------------------- 1 | iframe { 2 | border:0; 3 | position:fixed; 4 | top:0; 5 | left:0; 6 | right:0; 7 | bottom:0; 8 | width:100%; 9 | height:100% 10 | } -------------------------------------------------------------------------------- /app/static/images/ecai2024/mpoveda.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/ecai2024/mpoveda.jfif -------------------------------------------------------------------------------- /app/static/images/ecai2024/rgarcia.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/ecai2024/rgarcia.jfif -------------------------------------------------------------------------------- /app/static/images/ecai2024/scarulli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/ecai2024/scarulli.png -------------------------------------------------------------------------------- /app/static/images/favicon_io/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/favicon_io/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/static/images/favicon_io/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/favicon_io/android-chrome-512x512.png -------------------------------------------------------------------------------- /app/static/images/favicon_io/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/favicon_io/apple-touch-icon.png -------------------------------------------------------------------------------- /app/static/images/favicon_io/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/favicon_io/favicon-16x16.png -------------------------------------------------------------------------------- /app/static/images/favicon_io/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/favicon_io/favicon-32x32.png -------------------------------------------------------------------------------- /app/static/images/favicon_io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/favicon_io/favicon.ico -------------------------------------------------------------------------------- /app/static/images/logos/auroral_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/logos/auroral_logo.png -------------------------------------------------------------------------------- /app/static/images/logos/fi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/logos/fi-logo.png -------------------------------------------------------------------------------- /app/static/images/logos/ia4tes_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/logos/ia4tes_logo.png -------------------------------------------------------------------------------- /app/static/images/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/logos/logo.png -------------------------------------------------------------------------------- /app/static/images/logos/oeg-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/logos/oeg-logo.gif -------------------------------------------------------------------------------- /app/static/images/logos/upm-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/images/logos/upm-logo.png -------------------------------------------------------------------------------- /app/static/resources/building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/resources/building.jpg -------------------------------------------------------------------------------- /app/static/resources/getting-started.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/resources/getting-started.mp4 -------------------------------------------------------------------------------- /app/static/resources/saref4building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/static/resources/saref4building.jpg -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_10_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_17_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_18_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_19_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_22_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_26_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_27_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_28_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_29_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_30_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_31_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_32_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_33_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_34_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_35_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_39_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_40_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_41_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_42_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_44_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_46_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_47_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_48_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_49_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_50_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_51_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_52_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_53_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_54_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_55_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_6_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_7_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_8_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_annotation_9_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_100_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_101_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_102_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_103_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_104_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_105_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_106_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_107_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_108_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_109_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_10_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_110_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_111_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_112_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_113_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_114_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_115_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_116_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_117_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_11_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_121_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_122_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_123_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_126_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_127_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_132_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_133_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_134_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_135_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_136_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_137_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_138_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_139_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_140_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_141_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_142_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_143_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_144_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_145_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_146_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_147_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_149_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_150_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_151_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_152_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_153_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_154_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_163_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_164_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_167_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_168_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_169_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_170_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_171_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_172_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_173_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_174_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_175_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_176_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_17_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_180_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_181_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_182_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_183_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_184_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_185_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_186_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_187_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_188_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_189_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_18_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_190_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_193_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_194_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_195_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_19_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_25_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_26_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_27_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_28_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_29_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_30_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_31_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_32_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_35_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_41_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_42_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_44_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_46_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_47_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_4_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_58_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_59_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_63_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_66_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_67_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_68_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_69_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_6_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_70_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_71_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_72_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_73_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_74_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_75_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_76_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_7_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_80_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_84_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_85_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_86_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_87_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_88_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_89_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_8_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_90_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_91_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_92_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_93_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_94_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_95_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_96_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_97_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_98_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_99_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_attributes_9_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_41_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_42_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_47_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_50_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_51_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_52_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_53_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_56_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_57_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_axiom_65_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_13_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_17_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_23_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_24_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_25_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_26_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_27_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_6_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_complement_8_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_container_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_container_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_container_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_container_4_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_13_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_17_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_18_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_19_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_22_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_23_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_24_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_25_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_26_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_27_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_28_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_29_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_30_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_31_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_32_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_4_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_56_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_59_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_5_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_62_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_63_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_66_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_68_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_70_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_72_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_78_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_79_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_7_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_80_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_81_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_deprecated_82_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_22_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_24_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_32_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_35_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_39_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_40_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_41_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_42_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_44_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_48_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_50_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_51_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_52_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_53_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_54_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_55_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_56_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_57_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_disjoint_5_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_18_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_19_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_22_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_30_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_32_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_34_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_35_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_39_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_enumeration_48_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_23_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_25_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_29_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_30_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_33_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_34_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_35_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_39_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_41_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_42_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_44_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_46_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_47_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_48_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_49_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_50_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_equivalence_5_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_13_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_17_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_18_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_22_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_23_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_24_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_25_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_26_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_31_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_32_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_35_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_39_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_40_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_41_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_44_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_46_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_47_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_48_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_49_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_4_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_50_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_51_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_5_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_60_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_62_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_63_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_64_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_65_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_66_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_68_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_6_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_70_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_7_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_84_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_85_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_88_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_89_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_8_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_90_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_91_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_92_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_93_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_94_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_95_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_97_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_98_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_99_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_individuals_9_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_17_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_19_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_25_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_26_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_27_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_31_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_32_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_33_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_39_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_44_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_7_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_8_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_iris_9_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_10_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_11_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_13_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_18_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_19_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_22_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_4_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_5_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_6_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_7_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_8_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_metadata_9_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_11_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_13_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_1_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_22_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/unit-tests/desired_outputs/test_namespaces_22_log.txt -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_23_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/app/unit-tests/desired_outputs/test_namespaces_23_log.txt -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_24_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_25_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_26_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_27_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_28_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_29_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_2_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_30_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_3_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_4_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_5_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_6_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_7_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_8_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_namespaces_9_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_103_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_104_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_109_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_10_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_110_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_114_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_11_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_120_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_121_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_122_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_123_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_124_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_125_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_126_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_127_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_128_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_129_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_12_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_130_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_131_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_132_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_133_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_134_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_136_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_137_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_138_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_139_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_13_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_140_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_141_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_142_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_143_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_147_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_14_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_151_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_152_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_153_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_154_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_155_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_156_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_157_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_158_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_159_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_15_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_167_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_168_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_169_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_16_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_170_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_171_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_172_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_173_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_174_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_175_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_176_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_177_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_178_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_179_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_17_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_180_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_181_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_182_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_183_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_184_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_185_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_186_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_187_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_188_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_189_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_190_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_191_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_192_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_193_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_194_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_195_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_196_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_197_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 3 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_199_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_19_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_200_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_201_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_202_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_203_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_204_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_205_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_206_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_207_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_208_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_209_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_20_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_210_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_211_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_217_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_21_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_220_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_221_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_222_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_223_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_224_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_229_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_22_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_relations_230_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_33_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_34_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_35_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_36_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_37_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_38_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_39_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_40_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_41_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_42_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_43_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_44_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_45_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_46_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_47_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_50_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_51_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_52_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /app/unit-tests/desired_outputs/test_union_53_log.txt: -------------------------------------------------------------------------------- 1 | 2 | Warning Base: A base has not been declared. The first namespace has been taken as base 3 | 4 | Warning Ontology: An ontology uri has not been declared. The base uri has been taken as the ontology uri 5 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/config/__init__.py -------------------------------------------------------------------------------- /config/dev.py: -------------------------------------------------------------------------------- 1 | from .default import * 2 | 3 | 4 | APP_ENV = APP_ENV_DEVELOPMENT 5 | 6 | DEBUG = True 7 | 8 | SQLALCHEMY_DATABASE_URI = 'postgresql://postgres:admin1234@localhost:5432/chowlk_database' -------------------------------------------------------------------------------- /config/prod.py: -------------------------------------------------------------------------------- 1 | from .default import * 2 | 3 | 4 | SECRET_KEY = 'b8b612e2e670f5b5de7df8b510f204e22f1dd4816a5490edae7bae0415837cad8cbc6f8d47fe7492bebd6f278c45d437575c' 5 | 6 | APP_ENV = APP_ENV_PRODUCTION 7 | 8 | SQLALCHEMY_DATABASE_URI = 'postgresql:///chowlk' -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: "3.9" 2 | services: 3 | chowlk: 4 | build: . 5 | ports: 6 | - "5000:5000" -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = [ 3 | "setuptools>=42", 4 | "wheel" 5 | ] 6 | 7 | build-backend = "setuptools.build_meta" -------------------------------------------------------------------------------- /python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oeg-upm/Chowlk/9d0ccaebb5774be812734296a1d40ca97d3e3f52/python --------------------------------------------------------------------------------