diff --git a/tenet/febTransduction/prefix_handle.py b/tenet/febTransduction/prefix_handle.py
new file mode 100644
index 0000000000000000000000000000000000000000..c3e7bbf6360da2254f90eb40d696804d6f8d510d
--- /dev/null
+++ b/tenet/febTransduction/prefix_handle.py
@@ -0,0 +1,75 @@
+#!/usr/bin/python3.10
+# -*-coding:Utf-8 -*
+
+#==============================================================================
+# TENET: Naming Computer
+#------------------------------------------------------------------------------
+# Class grouping methods to compute URI for semantic nets (and their 
+# attributes)
+#==============================================================================
+
+from rdflib import Graph
+from rdflib import Namespace
+from rdflib.namespace import NamespaceManager
+
+
+#==============================================================================
+# Prefix Definition
+#==============================================================================
+
+COMMON_PREFIX_DICT = {
+    'xsd': 'http://www.w3.org/2001/XMLSchema#',
+    'owl': 'http://www.w3.org/2002/07/owl#',
+    'rdf': 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
+    'rdfs': 'http://www.w3.org/2000/01/rdf-schema#',
+    }
+
+
+TENET_PREFIX_DICT = {
+    'net': 'https://tenet.tetras-libre.fr/semantic-net#',
+    'cprm': 'https://tenet.tetras-libre.fr/config/parameters#',
+    'fprm': 'https://tenet.tetras-libre.fr/frame/parameters#',
+    'base-out': 'https://tenet.tetras-libre.fr/base-ontology#',
+    'ext-out': 'https://tenet.tetras-libre.fr/extract-result#'
+    }
+
+
+AMR_STRUCTURE_PREFIX_DICT = {
+    'ns1': 'http://amr.isi.edu/frames/ld/v1.2.2/',
+    'ns2': 'http://amr.isi.edu/rdf/amr-terms#',
+    'ns3': 'http://amr.isi.edu/rdf/core-amr#',
+    'ns4': 'http://amr.isi.edu/entity-types#',
+    'amr': 'https://amr.tetras-libre.fr/rdf/schema#'
+    }
+
+
+#==============================================================================
+# Getter Method(s)
+#==============================================================================
+
+def get_prefix_dict():    
+    prefix_dict = {}
+    prefix_dict.update(COMMON_PREFIX_DICT)
+    prefix_dict.update(TENET_PREFIX_DICT)
+    prefix_dict.update(AMR_STRUCTURE_PREFIX_DICT)
+    return prefix_dict
+   
+    
+def get_prefix_list():    
+    prefix_list = []
+    prefix_list += COMMON_PREFIX_DICT.items()
+    prefix_list += TENET_PREFIX_DICT.items()
+    prefix_list += AMR_STRUCTURE_PREFIX_DICT.items()
+    return prefix_list
+
+
+
+#==============================================================================
+# Namespace Update Method(s)
+#==============================================================================
+
+def update_graph_namespacemanager(graph):
+    prefix_list = get_prefix_list()
+    for prefix, uri in prefix_list:
+        graph.bind(prefix, Namespace(uri))
+    return graph
\ No newline at end of file
diff --git a/tenet/tenet.log b/tenet/tenet.log
index b203d08ef18b1e6d1b72af6246fa9b2ecae87914..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644
--- a/tenet/tenet.log
+++ b/tenet/tenet.log
@@ -1 +0,0 @@
-- WARNING - <net:atomClass_sun_s2> does not look like a valid URI, trying to serialize this will break.
diff --git a/tests/input/testGraph1.ttl b/tests/input/testGraph1.ttl
index 5df94c1d2c248118da7ad3105af64ec24802aa85..0d36d3a62603b3c441cd68ed434e2fae2cdeff36 100644
--- a/tests/input/testGraph1.ttl
+++ b/tests/input/testGraph1.ttl
@@ -1,1894 +1,2916 @@
-# baseURI: http://SolarSystemDev1/transduction
-
 @prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
-@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix amr: <https://amr.tetras-libre.fr/rdf/schema#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
-@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
-@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
 @prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
-@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
 @prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@base <https://amr.tetras-libre.fr/rdf/schema> .
+
+<https://amr.tetras-libre.fr/rdf/schema> rdf:type owl:Ontology ;
+                                          owl:versionIRI <https://amr.tetras-libre.fr/rdf/schema#0.1> .
+
+#################################################################
+#    Annotation properties
+#################################################################
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0
+ns3:bind-01.ARG0 rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1
+ns3:bind-01.ARG1 rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0
+ns3:orbit-01.ARG0 rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1
+ns3:orbit-01.ARG1 rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#domain
+ns11:domain rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#manner
+ns11:manner rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#op1
+ns11:op1 rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#op2
+ns11:op2 rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#part
+ns11:part rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#polarity
+ns11:polarity rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/core-amr#has-id
+ns21:has-id rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/core-amr#has-sentence
+ns21:has-sentence rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/core-amr#hasID
+ns21:hasID rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/core-amr#hasSentence
+ns21:hasSentence rdf:type owl:AnnotationProperty .
+
+
+###  http://amr.isi.edu/rdf/core-amr#root
+ns21:root rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_AnnotationProperty
+amr:AMR_AnnotationProperty rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_a_op1_s2
+amr:edge_a_op1_s2 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_a_op2_o
+amr:edge_a_op2_o rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_b_ARG0_g
+amr:edge_b_ARG0_g rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_b_ARG1_s
+amr:edge_b_ARG1_s rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_d2_polarity_negative
+amr:edge_d2_polarity_negative rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_m9_ARG0_o2
+amr:edge_m9_ARG0_o2 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_m9_ARG1_o3
+amr:edge_m9_ARG1_o3 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o2_ARG0_o
+amr:edge_o2_ARG0_o rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o2_ARG1_s2
+amr:edge_o2_ARG1_s2 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o3_op1_d
+amr:edge_o3_op1_d rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o3_op2_d2
+amr:edge_o3_op2_d2 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_p9_ARG0_s
+amr:edge_p9_ARG0_s rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_p9_ARG1_a
+amr:edge_p9_ARG1_a rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_p_name_SolarSystem
+amr:edge_p_name_SolarSystem rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_s_domain_p
+amr:edge_s_domain_p rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#fromAmrLk
+amr:fromAmrLk rdf:type owl:AnnotationProperty ;
+              rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#fromAmrLkFramerole
+amr:fromAmrLkFramerole rdf:type owl:AnnotationProperty ;
+                       rdfs:subPropertyOf amr:fromAmrLk .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#fromAmrLkRole
+amr:fromAmrLkRole rdf:type owl:AnnotationProperty ;
+                  rdfs:subPropertyOf amr:fromAmrLk .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#fromAmrLkRoot
+amr:fromAmrLkRoot rdf:type owl:AnnotationProperty ;
+                  rdfs:subPropertyOf amr:fromAmrLk .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#getDirectPropertyName
+amr:getDirectPropertyName rdf:type owl:AnnotationProperty ;
+                          rdfs:subPropertyOf amr:getProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#getInversePropertyName
+amr:getInversePropertyName rdf:type owl:AnnotationProperty ;
+                           rdfs:subPropertyOf amr:getProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#getProperty
+amr:getProperty rdf:type owl:AnnotationProperty ;
+                rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#getPropertyType
+amr:getPropertyType rdf:type owl:AnnotationProperty ;
+                    rdfs:subPropertyOf amr:getProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasAmrRole
+amr:hasAmrRole rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasConceptLink
+amr:hasConceptLink rdf:type owl:AnnotationProperty ;
+                   rdfs:subPropertyOf amr:hasLink .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasEdgeLink
+amr:hasEdgeLink rdf:type owl:AnnotationProperty ;
+                rdfs:subPropertyOf amr:hasLink .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasLink
+amr:hasLink rdf:type owl:AnnotationProperty ;
+            rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasPhenomenaLink
+amr:hasPhenomenaLink rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasReification
+amr:hasReification rdf:type owl:AnnotationProperty ;
+                   rdfs:subPropertyOf amr:AMR_AnnotationProperty ;
+                   rdfs:range xsd:boolean .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasReificationConcept
+amr:hasReificationConcept rdf:type owl:AnnotationProperty ;
+                          rdfs:subPropertyOf amr:hasReificationDefinition .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasReificationDefinition
+amr:hasReificationDefinition rdf:type owl:AnnotationProperty ;
+                             rdfs:subPropertyOf amr:AMR_AnnotationProperty ;
+                             rdfs:range rdfs:Literal .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasReificationDomain
+amr:hasReificationDomain rdf:type owl:AnnotationProperty ;
+                         rdfs:subPropertyOf amr:hasReificationDefinition .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasReificationRange
+amr:hasReificationRange rdf:type owl:AnnotationProperty ;
+                        rdfs:subPropertyOf amr:hasReificationDefinition .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasRelationName
+amr:hasRelationName rdf:type owl:AnnotationProperty ;
+                    rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasSentenceID
+amr:hasSentenceID rdf:type owl:AnnotationProperty ;
+                  rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasSentenceStatement
+amr:hasSentenceStatement rdf:type owl:AnnotationProperty ;
+                         rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#isReifiedConcept
+amr:isReifiedConcept rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#isReifiedLeaf
+amr:isReifiedLeaf rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#isReifiedVariable
+amr:isReifiedVariable rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#label
+amr:label rdf:type owl:AnnotationProperty ;
+          rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#name
+amr:name rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG0
+amr:role_ARG0 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG1
+amr:role_ARG1 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_domain
+amr:role_domain rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_name
+amr:role_name rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op1
+amr:role_op1 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op2
+amr:role_op2 rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_polarity
+amr:role_polarity rdf:type owl:AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#toReify
+amr:toReify rdf:type owl:AnnotationProperty ;
+            rdfs:subPropertyOf amr:AMR_AnnotationProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#toReifyAsConcept
+amr:toReifyAsConcept rdf:type owl:AnnotationProperty ;
+                     rdfs:subPropertyOf amr:toReify .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#toReifyWithBaseEdge
+amr:toReifyWithBaseEdge rdf:type owl:AnnotationProperty ;
+                        rdfs:subPropertyOf amr:toReify .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#toReifyWithHeadEdge
+amr:toReifyWithHeadEdge rdf:type owl:AnnotationProperty ;
+                        rdfs:subPropertyOf amr:toReify .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Out_AnnotationProperty
+sys:Out_AnnotationProperty rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#fromStructure
+sys:fromStructure rdf:type owl:AnnotationProperty ;
+                  rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#baseURI
+cprm:baseURI rdf:type owl:AnnotationProperty ;
+             rdfs:subPropertyOf cprm:configParamProperty ;
+             rdfs:domain cprm:Frame .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#configParamProperty
+cprm:configParamProperty rdf:type owl:AnnotationProperty ;
+                         rdfs:label "Config Parameter Property" .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#netURI
+cprm:netURI rdf:type owl:AnnotationProperty ;
+            rdfs:subPropertyOf cprm:configParamProperty ;
+            rdfs:domain cprm:Frame .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#newClassRef
+cprm:newClassRef rdfs:label "Reference for a new class" ;
+                 rdf:type owl:AnnotationProperty ;
+                 rdfs:subPropertyOf cprm:configParamProperty .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#newPropertyRef
+cprm:newPropertyRef rdfs:label "Reference for a new property" ;
+                    rdf:type owl:AnnotationProperty ;
+                    rdfs:subPropertyOf cprm:configParamProperty .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#objectRef
+cprm:objectRef rdfs:label "Object Reference" ;
+               rdf:type owl:AnnotationProperty ;
+               rdfs:subPropertyOf cprm:configParamProperty .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#targetOntologyURI
+cprm:targetOntologyURI rdf:type owl:AnnotationProperty ;
+                       rdfs:subPropertyOf cprm:configParamProperty ;
+                       rdfs:domain cprm:Frame .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#abstractionClass
+net:abstractionClass rdf:type owl:AnnotationProperty ;
+                     rdfs:label "abstraction class" ;
+                     rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomOf
+net:atomOf rdf:type owl:AnnotationProperty ;
+           rdfs:label "atom of" ;
+           rdfs:subPropertyOf net:typeProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomType
+net:atomType rdf:type owl:AnnotationProperty ;
+             rdfs:label "atom type" ;
+             rdfs:subPropertyOf net:objectType .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#bindPropertyNet
+net:bindPropertyNet rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#bindRestriction
+net:bindRestriction rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#containsNet
+net:containsNet rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#containsNet1
+net:containsNet1 rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#containsNet2
+net:containsNet2 rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#coverBaseNode
+net:coverBaseNode rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#coverNode
+net:coverNode rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#coverNodeCount
+net:coverNodeCount rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#coverTargetNode
+net:coverTargetNode rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#entityClass
+net:entityClass rdf:type owl:AnnotationProperty ;
+                rdfs:label "entity class" ;
+                rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#featureClass
+net:featureClass rdf:type owl:AnnotationProperty ;
+                 rdfs:label "feature class" ;
+                 rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasClassName
+net:hasClassName rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasClassType
+net:hasClassType rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasIndividualLabel
+net:hasIndividualLabel rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasLogicalConstraint
+net:hasLogicalConstraint rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasMotherClassName
+net:hasMotherClassName rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasMotherClassNet
+net:hasMotherClassNet rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasNaming
+net:hasNaming rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasPhenomenaRef
+net:hasPhenomenaRef rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasPhenomenaType
+net:hasPhenomenaType rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasPropertyName
+net:hasPropertyName rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasPropertyName01
+net:hasPropertyName01 rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasPropertyName10
+net:hasPropertyName10 rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasPropertyName12
+net:hasPropertyName12 rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasPropertyType
+net:hasPropertyType rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasRestriction01
+net:hasRestriction01 rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasRestrictionNetValue
+net:hasRestrictionNetValue rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasRestrictionOnProperty
+net:hasRestrictionOnProperty rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasStructure
+net:hasStructure rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#hasValueLabel
+net:hasValueLabel rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_atom
+net:has_atom rdf:type owl:AnnotationProperty ;
+             rdfs:label "has atom" ;
+             rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_class
+net:has_class rdf:type owl:AnnotationProperty ;
+              rdfs:label "is class" ;
+              rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_class_name
+net:has_class_name rdf:type owl:AnnotationProperty ;
+                   rdfs:subPropertyOf net:has_value .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_class_uri
+net:has_class_uri rdf:type owl:AnnotationProperty ;
+                  rdfs:label "class uri" ;
+                  rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_concept
+net:has_concept rdf:type owl:AnnotationProperty ;
+                rdfs:label "concept "@fr ;
+                rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_entity
+net:has_entity rdf:type owl:AnnotationProperty ;
+               rdfs:label "has entity" ;
+               rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_feature
+net:has_feature rdf:type owl:AnnotationProperty ;
+                rdfs:label "has feature" ;
+                rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_instance
+net:has_instance rdf:type owl:AnnotationProperty ;
+                 rdfs:label "entity instance" ;
+                 rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_instance_uri
+net:has_instance_uri rdf:type owl:AnnotationProperty ;
+                     rdfs:label "instance uri" ;
+                     rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_item
+net:has_item rdf:type owl:AnnotationProperty ;
+             rdfs:label "has item" ;
+             rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_mother_class
+net:has_mother_class rdf:type owl:AnnotationProperty ;
+                     rdfs:label "has mother class" ;
+                     rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_mother_class_uri
+net:has_mother_class_uri rdf:type owl:AnnotationProperty ;
+                         rdfs:label "parent class uri" ;
+                         rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_node
+net:has_node rdf:type owl:AnnotationProperty ;
+             rdfs:label "UNL Node" ;
+             rdfs:subPropertyOf net:netProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_object
+net:has_object rdf:type owl:AnnotationProperty ;
+               rdfs:label "relation" ;
+               rdfs:subPropertyOf net:netProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_parent
+net:has_parent rdf:type owl:AnnotationProperty ;
+               rdfs:label "has parent" ;
+               rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_parent_class
+net:has_parent_class rdf:type owl:AnnotationProperty ;
+                     rdfs:label "parent class" ;
+                     rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_parent_class_uri
+net:has_parent_class_uri rdf:type owl:AnnotationProperty ;
+                         rdfs:label "parent class uri" ;
+                         rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_possible_domain
+net:has_possible_domain rdf:type owl:AnnotationProperty ;
+                        rdfs:label "has possible domain" ;
+                        rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_possible_range
+net:has_possible_range rdf:type owl:AnnotationProperty ;
+                       rdfs:label "has possible range" ;
+                       rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_relation
+net:has_relation rdf:type owl:AnnotationProperty ;
+                 rdfs:label "has relation" ;
+                 rdfs:subPropertyOf net:has_relation_value .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_relation_value
+net:has_relation_value rdf:type owl:AnnotationProperty ;
+                       rdfs:label "has relation value" ;
+                       rdfs:subPropertyOf net:has_object .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_source
+net:has_source rdf:type owl:AnnotationProperty ;
+               rdfs:label "has source" ;
+               rdfs:subPropertyOf net:has_relation_value .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_structure
+net:has_structure rdf:type owl:AnnotationProperty ;
+                  rdfs:label "Linguistic Structure (in UNL Document)" ;
+                  rdfs:subPropertyOf net:netProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_target
+net:has_target rdf:type owl:AnnotationProperty ;
+               rdfs:label "has target" ;
+               rdfs:subPropertyOf net:has_relation_value .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#has_value
+net:has_value rdf:type owl:AnnotationProperty ;
+              rdfs:subPropertyOf net:netProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#isCoreRoleLinked
+net:isCoreRoleLinked rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#listBy
+net:listBy rdf:type owl:AnnotationProperty ;
+           rdfs:label "list by" ;
+           rdfs:subPropertyOf net:typeProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#listGuiding
+net:listGuiding rdf:type owl:AnnotationProperty ;
+                rdfs:label "Guiding connector of a list (or, and)" ;
+                rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#listOf
+net:listOf rdf:type owl:AnnotationProperty ;
+           rdfs:label "list of" ;
+           rdfs:subPropertyOf net:typeProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#modCat1
+net:modCat1 rdf:type owl:AnnotationProperty ;
+            rdfs:label "Modality Category (level 1)" ;
+            rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#modCat2
+net:modCat2 rdf:type owl:AnnotationProperty ;
+            rdfs:label "Modality Category (level 2)" ;
+            rdfs:subPropertyOf net:objectValue .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#netProperty
+net:netProperty rdf:type owl:AnnotationProperty ;
+                rdfs:label "netProperty" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#objectProperty
+net:objectProperty rdf:type owl:AnnotationProperty ;
+                   rdfs:label "object attribute" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#objectType
+net:objectType rdf:type owl:AnnotationProperty ;
+               rdfs:label "object type" ;
+               rdfs:subPropertyOf net:objectProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#objectValue
+net:objectValue rdf:type owl:AnnotationProperty ;
+                rdfs:label "valuations"@fr ;
+                rdfs:subPropertyOf net:objectProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#relationOf
+net:relationOf rdf:type owl:AnnotationProperty ;
+               rdfs:label "relation of" ;
+               rdfs:subPropertyOf net:typeProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#targetArgumentNode
+net:targetArgumentNode rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#trackMainNetComposante
+net:trackMainNetComposante rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#trackNetComposante
+net:trackNetComposante rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#trackProgress
+net:trackProgress rdf:type owl:AnnotationProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#type
+net:type rdf:type owl:AnnotationProperty ;
+         rdfs:label "type "@fr ;
+         rdfs:subPropertyOf net:netProperty .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#typeProperty
+net:typeProperty rdf:type owl:AnnotationProperty ;
+                 rdfs:label "type property" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#verbClass
+net:verbClass rdf:type owl:AnnotationProperty ;
+              rdfs:label "verb class" ;
+              rdfs:subPropertyOf net:objectValue .
+
+
+#################################################################
+#    Object Properties
+#################################################################
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_ObjectProperty
+amr:AMR_ObjectProperty rdf:type owl:ObjectProperty ;
+                       rdfs:subPropertyOf owl:topObjectProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasConcept
+amr:hasConcept rdf:type owl:ObjectProperty ;
+               rdfs:subPropertyOf amr:AMR_ObjectProperty ;
+               rdfs:domain amr:AMR_Leaf .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasRoleID
+amr:hasRoleID rdf:type owl:ObjectProperty ;
+              rdfs:subPropertyOf amr:AMR_ObjectProperty ;
+              rdfs:domain amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasRoleTag
+amr:hasRoleTag rdf:type owl:ObjectProperty ;
+               rdfs:subPropertyOf amr:AMR_ObjectProperty ;
+               rdfs:domain amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasRolesetID
+amr:hasRolesetID rdf:type owl:ObjectProperty ;
+                 rdfs:subPropertyOf amr:AMR_ObjectProperty ;
+                 rdfs:domain amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasRootLeaf
+amr:hasRootLeaf rdf:type owl:ObjectProperty ;
+                rdfs:subPropertyOf amr:AMR_ObjectProperty .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#hasVariable
+amr:hasVariable rdf:type owl:ObjectProperty ;
+                rdfs:subPropertyOf amr:AMR_ObjectProperty ;
+                rdfs:domain amr:AMR_Leaf .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Out_ObjectProperty
+sys:Out_ObjectProperty rdf:type owl:ObjectProperty .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#hasDegree
+sys:hasDegree rdf:type owl:ObjectProperty ;
+              rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#hasFeature
+sys:hasFeature rdf:type owl:ObjectProperty ;
+               rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+
+#################################################################
+#    Data properties
+#################################################################
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_DataProperty
+amr:AMR_DataProperty rdf:type owl:DatatypeProperty .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#baseURI
+cprm:baseURI rdf:type owl:DatatypeProperty ;
+             rdfs:range xsd:string .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#netURI
+cprm:netURI rdf:type owl:DatatypeProperty ;
+            rdfs:range xsd:string .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#targetOntologyURI
+cprm:targetOntologyURI rdf:type owl:DatatypeProperty ;
+                       rdfs:range xsd:string .
+
+
+#################################################################
+#    Classes
+#################################################################
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#a
+<http://amr.isi.edu/amr_data/SSC-01-01#a> rdf:type owl:Class ;
+                                          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#b
+<http://amr.isi.edu/amr_data/SSC-01-01#b> rdf:type owl:Class ;
+                                          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#d
+<http://amr.isi.edu/amr_data/SSC-01-01#d> rdf:type owl:Class ;
+                                          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#d2
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> rdf:type owl:Class ;
+                                           rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#g
+<http://amr.isi.edu/amr_data/SSC-01-01#g> rdf:type owl:Class ;
+                                          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#o
+<http://amr.isi.edu/amr_data/SSC-01-01#o> rdf:type owl:Class ;
+                                          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#o2
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> rdf:type owl:Class ;
+                                           rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#o3
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> rdf:type owl:Class ;
+                                           rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#p
+<http://amr.isi.edu/amr_data/SSC-01-01#p> rdf:type owl:Class ;
+                                          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#s
+<http://amr.isi.edu/amr_data/SSC-01-01#s> rdf:type owl:Class ;
+                                          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#s2
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> rdf:type owl:Class ;
+                                           rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/entity-types#planet
+<http://amr.isi.edu/entity-types#planet> rdf:type owl:Class ;
+                                         rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/entity-types#system
+<http://amr.isi.edu/entity-types#system> rdf:type owl:Class ;
+                                         rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/FrameRole
+ns3:FrameRole rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/bind-01
+ns3:bind-01 rdf:type owl:Class ;
+            rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/direct-02
+ns3:direct-02 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/orbit-01
+ns3:orbit-01 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#gravitation
+ns11:gravitation rdf:type owl:Class ;
+                 rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#manner
+ns11:manner rdf:type owl:Class ;
+            rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#object
+ns11:object rdf:type owl:Class ;
+            rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#part
+ns11:part rdf:type owl:Class ;
+          rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#sun
+ns11:sun rdf:type owl:Class ;
+         rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#system
+ns11:system rdf:type owl:Class ;
+            rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/core-amr#AMR
+ns21:AMR rdf:type owl:Class ;
+         rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/core-amr#Concept
+ns21:Concept rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Linked_Data ;
+             rdfs:label "AMR-Concept" .
+
+
+###  http://amr.isi.edu/rdf/core-amr#Frame
+ns21:Frame rdf:type owl:Class ;
+           rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/core-amr#NamedEntity
+ns21:NamedEntity rdf:type owl:Class ;
+                 rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/core-amr#Role
+ns21:Role rdf:type owl:Class ;
+          rdfs:subClassOf amr:AMR_Linked_Data ;
+          rdfs:label "AMR-Role" .
+
+
+###  http://amr.isi.edu/rdf/core-amr#and
+ns21:and rdf:type owl:Class ;
+         rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://amr.isi.edu/rdf/core-amr#or
+ns21:or rdf:type owl:Class ;
+        rdfs:subClassOf amr:AMR_Linked_Data .
+
+
+###  http://www.w3.org/1999/02/22-rdf-syntax-ns#Property
+rdf:Property rdf:type owl:Class .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Concept
+amr:AMR_Concept rdf:type owl:Class ;
+                rdfs:subClassOf amr:AMR_Element .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Core_Role
+amr:AMR_Core_Role rdf:type owl:Class ;
+                  rdfs:subClassOf amr:AMR_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Edge
+amr:AMR_Edge rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Structure .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Element
+amr:AMR_Element rdf:type owl:Class ;
+                rdfs:subClassOf amr:AMR_Structure .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Leaf
+amr:AMR_Leaf rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Structure .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Linked_Data
+amr:AMR_Linked_Data rdf:type owl:Class .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_NonCore_Role
+amr:AMR_NonCore_Role rdf:type owl:Class ;
+                     rdfs:subClassOf amr:AMR_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Op_Role
+amr:AMR_Op_Role rdf:type owl:Class ;
+                rdfs:subClassOf amr:AMR_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Phenomena
+amr:AMR_Phenomena rdf:type owl:Class ;
+                  rdfs:subClassOf amr:AMR_Structure .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Predicat_Concept
+amr:AMR_Predicat_Concept rdf:type owl:Class ;
+                         rdfs:subClassOf amr:AMR_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Prep_Role
+amr:AMR_Prep_Role rdf:type owl:Class ;
+                  rdfs:subClassOf amr:AMR_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Relation
+amr:AMR_Relation rdf:type owl:Class ;
+                 rdfs:subClassOf amr:AMR_Structure .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Relation_Concept
+amr:AMR_Relation_Concept rdf:type owl:Class ;
+                         rdfs:subClassOf amr:AMR_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Role
+amr:AMR_Role rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Element .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Root
+amr:AMR_Root rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Structure .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Specific_Role
+amr:AMR_Specific_Role rdf:type owl:Class ;
+                      rdfs:subClassOf amr:AMR_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Structure
+amr:AMR_Structure rdf:type owl:Class .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Term_Concept
+amr:AMR_Term_Concept rdf:type owl:Class ;
+                     rdfs:subClassOf amr:AMR_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Value
+amr:AMR_Value rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Element .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#AMR_Variable
+amr:AMR_Variable rdf:type owl:Class ;
+                 rdfs:subClassOf amr:AMR_Element .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_and
+amr:concept_and rdf:type owl:Class ;
+                rdfs:subClassOf amr:AMR_Relation_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_bind-01
+amr:concept_bind-01 rdf:type owl:Class ;
+                    rdfs:subClassOf amr:AMR_Predicat_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_direct-02
+amr:concept_direct-02 rdf:type owl:Class ;
+                      rdfs:subClassOf amr:AMR_Predicat_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_gravitation
+amr:concept_gravitation rdf:type owl:Class ;
+                        rdfs:subClassOf amr:AMR_Term_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_manner
+amr:concept_manner rdf:type owl:Class ;
+                   rdfs:subClassOf amr:AMR_Predicat_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_object
+amr:concept_object rdf:type owl:Class ;
+                   rdfs:subClassOf amr:AMR_Term_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_or
+amr:concept_or rdf:type owl:Class ;
+               rdfs:subClassOf amr:AMR_Relation_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_orbit-01
+amr:concept_orbit-01 rdf:type owl:Class ;
+                     rdfs:subClassOf amr:AMR_Predicat_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_part
+amr:concept_part rdf:type owl:Class ;
+                 rdfs:subClassOf amr:AMR_Predicat_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_sun
+amr:concept_sun rdf:type owl:Class ;
+                rdfs:subClassOf amr:AMR_Term_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_system
+amr:concept_system rdf:type owl:Class ;
+                   rdfs:subClassOf amr:AMR_Term_Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#phenomena_conjunction
+amr:phenomena_conjunction rdf:type owl:Class ;
+                          rdfs:subClassOf amr:AMR_Phenomena ;
+                          amr:hasConceptLink "contrast-01" ,
+                                             "either" ,
+                                             "neither" ;
+                          amr:label "conjunction" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#phenomena_conjunction_and
+amr:phenomena_conjunction_and rdf:type owl:Class ;
+                              rdfs:subClassOf amr:phenomena_conjunction ;
+                              amr:hasConceptLink "and" ;
+                              amr:label "conjunction-AND" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#phenomena_conjunction_or
+amr:phenomena_conjunction_or rdf:type owl:Class ;
+                             rdfs:subClassOf amr:phenomena_conjunction ;
+                             amr:hasConceptLink "or" ;
+                             amr:label "conjunction-OR" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#phenomena_degree
+amr:phenomena_degree rdf:type owl:Class ;
+                     rdfs:subClassOf amr:AMR_Phenomena ;
+                     amr:hasConceptLink "have-degree-91" ;
+                     amr:label "degree" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#relation_domain
+amr:relation_domain rdf:type owl:Class ;
+                    rdfs:subClassOf amr:AMR_Relation ;
+                    amr:hasReification "false"^^xsd:boolean ;
+                    amr:hasRelationName "domain" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#relation_manner
+amr:relation_manner rdf:type owl:Class ;
+                    rdfs:subClassOf amr:AMR_Relation ;
+                    amr:hasReification "true"^^xsd:boolean ;
+                    amr:hasReificationConcept "hasManner" ;
+                    amr:hasReificationDomain "ARG1" ;
+                    amr:hasReificationRange "ARG2" ;
+                    amr:hasRelationName "manner" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#relation_mod
+amr:relation_mod rdf:type owl:Class ;
+                 rdfs:subClassOf amr:AMR_Relation ;
+                 amr:hasReification "false"^^xsd:boolean ;
+                 amr:hasRelationName "mod" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#relation_name
+amr:relation_name rdf:type owl:Class ;
+                  rdfs:subClassOf amr:AMR_Relation ;
+                  amr:hasReification "false"^^xsd:boolean ;
+                  amr:hasRelationName "name" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#relation_part
+amr:relation_part rdf:type owl:Class ;
+                  rdfs:subClassOf amr:AMR_Relation ;
+                  amr:hasReification "true"^^xsd:boolean ;
+                  amr:hasReificationConcept "hasPart" ;
+                  amr:hasReificationDomain "ARG1" ;
+                  amr:hasReificationRange "ARG2" ;
+                  amr:hasRelationName "part" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#relation_polarity
+amr:relation_polarity rdf:type owl:Class ;
+                      rdfs:subClassOf amr:AMR_Relation ;
+                      amr:hasReification "false"^^xsd:boolean ;
+                      amr:hasRelationName "polarity" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#relation_quant
+amr:relation_quant rdf:type owl:Class ;
+                   rdfs:subClassOf amr:AMR_Relation ;
+                   amr:hasReification "false"^^xsd:boolean ;
+                   amr:hasRelationName "quant" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG0
+amr:role_ARG0 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG1
+amr:role_ARG1 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG2
+amr:role_ARG2 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG2" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG3
+amr:role_ARG3 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG3" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG4
+amr:role_ARG4 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG4" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG5
+amr:role_ARG5 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG5" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG6
+amr:role_ARG6 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG6" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG7
+amr:role_ARG7 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG7" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG8
+amr:role_ARG8 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG8" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG9
+amr:role_ARG9 rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_Core_Role ;
+              amr:label "ARG9" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_domain
+amr:role_domain rdf:type owl:Class ;
+                rdfs:subClassOf amr:AMR_NonCore_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_have-degree-91
+amr:role_have-degree-91 rdf:type owl:Class ;
+                        rdfs:subClassOf amr:AMR_Specific_Role ;
+                        amr:getPropertyType <net:specificProperty> .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_manner
+amr:role_manner rdf:type owl:Class ;
+                rdfs:subClassOf amr:AMR_NonCore_Role ;
+                amr:getDirectPropertyName "manner" ;
+                amr:getPropertyType owl:DataProperty ;
+                amr:label "manner" ;
+                amr:toReifyAsConcept "manner" ;
+                amr:toReifyWithBaseEdge "ARG0" ;
+                amr:toReifyWithHeadEdge "ARG1" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_mod
+amr:role_mod rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_NonCore_Role ;
+             amr:getDirectPropertyName "hasFeature" ;
+             amr:getPropertyType rdfs:subClassOf ,
+                                 owl:ObjectProperty ;
+             amr:label "mod" ;
+             amr:toReifyAsConcept "mod" ;
+             amr:toReifyWithBaseEdge "ARG0" ;
+             amr:toReifyWithHeadEdge "ARG1" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_name
+amr:role_name rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_NonCore_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op1
+amr:role_op1 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op2
+amr:role_op2 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op3
+amr:role_op3 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role ;
+             amr:label "op3" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op4
+amr:role_op4 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role ;
+             amr:label "op4" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op5
+amr:role_op5 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role ;
+             amr:label "op5" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op6
+amr:role_op6 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role ;
+             amr:label "op6" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op7
+amr:role_op7 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role ;
+             amr:label "op7" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op8
+amr:role_op8 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role ;
+             amr:label "op8" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op9
+amr:role_op9 rdf:type owl:Class ;
+             rdfs:subClassOf amr:AMR_Op_Role ;
+             amr:label "op9" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_part
+amr:role_part rdf:type owl:Class ;
+              rdfs:subClassOf amr:AMR_NonCore_Role ;
+              amr:getDirectPropertyName "hasPart" ;
+              amr:getInversePropertyName "partOf" ;
+              amr:getPropertyType owl:ObjectProperty ;
+              amr:toReifyAsConcept "part" ;
+              amr:toReifyWithBaseEdge "ARG0" ;
+              amr:toReifyWithHeadEdge "ARG1" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_polarity
+amr:role_polarity rdf:type owl:Class ;
+                  rdfs:subClassOf amr:AMR_Specific_Role .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_quant
+amr:role_quant rdf:type owl:Class ;
+               rdfs:subClassOf amr:AMR_Specific_Role ;
+               amr:label "quant" .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Degree
+sys:Degree rdf:type owl:Class ;
+           rdfs:subClassOf sys:Out_Structure .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Entity
+sys:Entity rdf:type owl:Class ;
+           rdfs:subClassOf sys:Out_Structure .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Event
+sys:Event rdf:type owl:Class ;
+          rdfs:subClassOf sys:Out_Structure .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Feature
+sys:Feature rdf:type owl:Class ;
+            rdfs:subClassOf sys:Out_Structure .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Out_Structure
+sys:Out_Structure rdf:type owl:Class ;
+                  rdfs:label "Output Ontology Structure" .
+
+
+###  https://tenet.tetras-libre.fr/base-ontology#Undetermined_Thing
+sys:Undetermined_Thing rdf:type owl:Class ;
+                       rdfs:subClassOf sys:Out_Structure .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#Config_Parameters
+cprm:Config_Parameters rdf:type owl:Class .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Atom_Class_Net
+net:Atom_Class_Net rdf:type owl:Class ;
+                   rdfs:subClassOf net:Class_Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Atom_Property_Net
+net:Atom_Property_Net rdf:type owl:Class ;
+                      rdfs:subClassOf net:Property_Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Class_Net
+net:Class_Net rdf:type owl:Class ;
+              rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Composite_Class_Net
+net:Composite_Class_Net rdf:type owl:Class ;
+                        rdfs:subClassOf net:Class_Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Composite_Property_Net
+net:Composite_Property_Net rdf:type owl:Class ;
+                           rdfs:subClassOf net:Property_Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Deprecated_Net
+net:Deprecated_Net rdf:type owl:Class ;
+                   rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Feature
+net:Feature rdf:type owl:Class ;
+            rdfs:subClassOf net:Net_Structure .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Individual_Net
+net:Individual_Net rdf:type owl:Class ;
+                   rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Instance
+net:Instance rdf:type owl:Class ;
+             rdfs:subClassOf net:Net_Structure ;
+             rdfs:label "Semantic Net Instance" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Logical_Set_Net
+net:Logical_Set_Net rdf:type owl:Class ;
+                    rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Net
+net:Net rdf:type owl:Class ;
+        rdfs:subClassOf net:Net_Structure .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Net_Structure
+net:Net_Structure rdf:type owl:Class ;
+                  rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." ;
+                  rdfs:label "Semantic Net Structure" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Object
+net:Object rdf:type owl:Class ;
+           rdfs:subClassOf net:Net_Structure ;
+           rdfs:label "Object using in semantic net instance" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Phenomena_Net
+net:Phenomena_Net rdf:type owl:Class ;
+                  rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Property_Direction
+net:Property_Direction rdf:type owl:Class ;
+                       rdfs:subClassOf net:Feature .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Property_Net
+net:Property_Net rdf:type owl:Class ;
+                 rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Relation
+net:Relation rdf:type owl:Class ;
+             rdfs:subClassOf net:Net_Structure .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Restriction_Net
+net:Restriction_Net rdf:type owl:Class ;
+                    rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Type
+net:Type rdf:type owl:Class ;
+         rdfs:subClassOf net:Net_Structure ;
+         rdfs:label "Semantic Net Type" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#Value_Net
+net:Value_Net rdf:type owl:Class ;
+              rdfs:subClassOf net:Net .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atom
+net:atom rdf:type owl:Class ;
+         rdfs:subClassOf net:Type ;
+         rdfs:label "atom" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#class
+net:class rdf:type owl:Class ;
+          rdfs:subClassOf net:Type ;
+          rdfs:label "class" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#class_list
+net:class_list rdf:type owl:Class ;
+               rdfs:subClassOf net:Type ;
+               rdfs:label "classList" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#composite
+net:composite rdf:type owl:Class ;
+              rdfs:subClassOf net:Type ;
+              rdfs:label "composite" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#conjunctive_list
+net:conjunctive_list rdf:type owl:Class ;
+                     rdfs:subClassOf net:list ;
+                     rdfs:label "conjunctive-list" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#disjunctive_list
+net:disjunctive_list rdf:type owl:Class ;
+                     rdfs:subClassOf net:list ;
+                     rdfs:label "disjunctive-list" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#entity_class_list
+net:entity_class_list rdf:type owl:Class ;
+                      rdfs:subClassOf net:class_list ;
+                      rdfs:label "entityClassList" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#event
+net:event rdf:type owl:Class ;
+          rdfs:subClassOf net:Type ;
+          rdfs:label "event" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#list
+net:list rdf:type owl:Class ;
+         rdfs:subClassOf net:Type ;
+         rdfs:label "list" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#relation
+net:relation rdf:type owl:Class ;
+             rdfs:subClassOf net:Type ;
+             rdfs:label "relation" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#state_property
+net:state_property rdf:type owl:Class ;
+                   rdfs:subClassOf net:Type ;
+                   rdfs:label "stateProperty" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#unary_list
+net:unary_list rdf:type owl:Class ;
+               rdfs:subClassOf net:list ;
+               rdfs:label "unary-list" .
+
+
+#################################################################
+#    Individuals
+#################################################################
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#a
+<http://amr.isi.edu/amr_data/SSC-01-01#a> rdf:type owl:NamedIndividual ,
+                                                   ns21:and .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#b
+<http://amr.isi.edu/amr_data/SSC-01-01#b> rdf:type owl:NamedIndividual ,
+                                                   ns3:bind-01 .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#d
+<http://amr.isi.edu/amr_data/SSC-01-01#d> rdf:type owl:NamedIndividual ,
+                                                   ns3:direct-02 .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#d2
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> rdf:type owl:NamedIndividual ,
+                                                    ns3:direct-02 .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#g
+<http://amr.isi.edu/amr_data/SSC-01-01#g> rdf:type owl:NamedIndividual ,
+                                                   ns11:gravitation .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#o
+<http://amr.isi.edu/amr_data/SSC-01-01#o> rdf:type owl:NamedIndividual ,
+                                                   ns11:object .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#o2
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> rdf:type owl:NamedIndividual ,
+                                                    ns3:orbit-01 .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#o3
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> rdf:type owl:NamedIndividual ,
+                                                    ns21:or .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#p
+<http://amr.isi.edu/amr_data/SSC-01-01#p> rdf:type owl:NamedIndividual ,
+                                                   <http://amr.isi.edu/entity-types#planet> ,
+                                                   <http://amr.isi.edu/entity-types#system> .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#root01
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> rdf:type owl:NamedIndividual ,
+                                                        ns21:AMR ;
+                                               ns21:has-id "SSC-01-01" ;
+                                               ns21:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+                                               ns21:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#s
+<http://amr.isi.edu/amr_data/SSC-01-01#s> rdf:type owl:NamedIndividual ,
+                                                   ns11:system .
+
+
+###  http://amr.isi.edu/amr_data/SSC-01-01#s2
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> rdf:type owl:NamedIndividual ,
+                                                    ns11:sun .
+
+
+###  http://amr.isi.edu/entity-types#planet
+<http://amr.isi.edu/entity-types#planet> rdf:type owl:NamedIndividual ,
+                                                  ns21:NamedEntity .
+
+
+###  http://amr.isi.edu/entity-types#system
+<http://amr.isi.edu/entity-types#system> rdf:type owl:NamedIndividual ,
+                                                  ns21:NamedEntity .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/FrameRole
+ns3:FrameRole rdf:type owl:NamedIndividual ,
+                       ns21:Role .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/bind-01
+ns3:bind-01 rdf:type owl:NamedIndividual ,
+                     ns21:Frame .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0
+ns3:bind-01.ARG0 rdf:type owl:NamedIndividual ,
+                          ns3:FrameRole .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1
+ns3:bind-01.ARG1 rdf:type owl:NamedIndividual ,
+                          ns3:FrameRole .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/direct-02
+ns3:direct-02 rdf:type owl:NamedIndividual ,
+                       ns21:Frame .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/orbit-01
+ns3:orbit-01 rdf:type owl:NamedIndividual ,
+                      ns21:Frame .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0
+ns3:orbit-01.ARG0 rdf:type owl:NamedIndividual ,
+                           ns3:FrameRole .
+
+
+###  http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1
+ns3:orbit-01.ARG1 rdf:type owl:NamedIndividual ,
+                           ns3:FrameRole .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#domain
+ns11:domain rdf:type owl:NamedIndividual ,
+                     ns21:Role .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#gravitation
+ns11:gravitation rdf:type owl:NamedIndividual ,
+                          ns21:Concept .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#manner
+ns11:manner rdf:type owl:NamedIndividual ,
+                     ns21:Role .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#object
+ns11:object rdf:type owl:NamedIndividual ,
+                     ns21:Concept .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#op1
+ns11:op1 rdf:type owl:NamedIndividual ,
+                  ns21:Role .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#op2
+ns11:op2 rdf:type owl:NamedIndividual ,
+                  ns21:Role .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#part
+ns11:part rdf:type owl:NamedIndividual ,
+                   ns21:Role .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#sun
+ns11:sun rdf:type owl:NamedIndividual ,
+                  ns21:Concept .
+
+
+###  http://amr.isi.edu/rdf/amr-terms#system
+ns11:system rdf:type owl:NamedIndividual ,
+                     ns21:Concept .
+
+
+###  http://amr.isi.edu/rdf/core-amr#Frame
+ns21:Frame rdf:type owl:NamedIndividual ,
+                    ns21:Concept .
+
+
+###  http://amr.isi.edu/rdf/core-amr#NamedEntity
+ns21:NamedEntity rdf:type owl:NamedIndividual ,
+                          ns21:Concept .
+
+
+###  http://amr.isi.edu/rdf/core-amr#and
+ns21:and rdf:type owl:NamedIndividual ,
+                  ns21:Concept .
+
+
+###  http://amr.isi.edu/rdf/core-amr#or
+ns21:or rdf:type owl:NamedIndividual ,
+                 ns21:Concept .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_and
+amr:concept_and rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_bind-01
+amr:concept_bind-01 rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_direct-02
+amr:concept_direct-02 rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_gravitation
+amr:concept_gravitation rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_manner
+amr:concept_manner rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_object
+amr:concept_object rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_or
+amr:concept_or rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_orbit-01
+amr:concept_orbit-01 rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_part
+amr:concept_part rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_sun
+amr:concept_sun rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#concept_system
+amr:concept_system rdf:type owl:NamedIndividual .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_a_op1_s2
+amr:edge_a_op1_s2 rdf:type owl:NamedIndividual ,
+                           amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_a_op2_o
+amr:edge_a_op2_o rdf:type owl:NamedIndividual ,
+                          amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_b_ARG0_g
+amr:edge_b_ARG0_g rdf:type owl:NamedIndividual ,
+                           amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_b_ARG1_s
+amr:edge_b_ARG1_s rdf:type owl:NamedIndividual ,
+                           amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_d2_polarity_negative
+amr:edge_d2_polarity_negative rdf:type owl:NamedIndividual ,
+                                       amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_m9_ARG0_o2
+amr:edge_m9_ARG0_o2 rdf:type owl:NamedIndividual ,
+                             amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_m9_ARG1_o3
+amr:edge_m9_ARG1_o3 rdf:type owl:NamedIndividual ,
+                             amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o2_ARG0_o
+amr:edge_o2_ARG0_o rdf:type owl:NamedIndividual ,
+                            amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o2_ARG1_s2
+amr:edge_o2_ARG1_s2 rdf:type owl:NamedIndividual ,
+                             amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o3_op1_d
+amr:edge_o3_op1_d rdf:type owl:NamedIndividual ,
+                           amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_o3_op2_d2
+amr:edge_o3_op2_d2 rdf:type owl:NamedIndividual ,
+                            amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_p9_ARG0_s
+amr:edge_p9_ARG0_s rdf:type owl:NamedIndividual ,
+                            amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_p9_ARG1_a
+amr:edge_p9_ARG1_a rdf:type owl:NamedIndividual ,
+                            amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_p_name_SolarSystem
+amr:edge_p_name_SolarSystem rdf:type owl:NamedIndividual ,
+                                     amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#edge_s_domain_p
+amr:edge_s_domain_p rdf:type owl:NamedIndividual ,
+                             amr:AMR_Edge .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_and_a
+amr:leaf_and_a rdf:type owl:NamedIndividual ,
+                        amr:AMR_Leaf ;
+               amr:hasConcept amr:concept_and ;
+               amr:hasVariable amr:variable_a ;
+               amr:edge_a_op1_s2 amr:leaf_sun_s2 ;
+               amr:edge_a_op2_o amr:leaf_object_o .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_bind-01_b
+amr:leaf_bind-01_b rdf:type owl:NamedIndividual ,
+                            amr:AMR_Leaf ;
+                   amr:hasConcept amr:concept_bind-01 ;
+                   amr:hasVariable amr:variable_b ;
+                   amr:edge_b_ARG0_g amr:leaf_gravitation_g ;
+                   amr:edge_b_ARG1_s amr:leaf_system_s .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_direct-02_d
+amr:leaf_direct-02_d rdf:type owl:NamedIndividual ,
+                              amr:AMR_Leaf ;
+                     amr:hasConcept amr:concept_direct-02 ;
+                     amr:hasVariable amr:variable_d .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_direct-02_d2
+amr:leaf_direct-02_d2 rdf:type owl:NamedIndividual ,
+                               amr:AMR_Leaf ;
+                      amr:hasConcept amr:concept_direct-02 ;
+                      amr:hasVariable amr:variable_d2 ;
+                      amr:edge_d2_polarity_negative amr:value_negative .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_gravitation_g
+amr:leaf_gravitation_g rdf:type owl:NamedIndividual ,
+                                amr:AMR_Leaf ;
+                       amr:hasConcept amr:concept_gravitation ;
+                       amr:hasVariable amr:variable_g .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_hasManner_m9
+amr:leaf_hasManner_m9 rdf:type owl:NamedIndividual ,
+                               amr:AMR_Leaf ;
+                      amr:hasConcept amr:concept_manner ;
+                      amr:hasVariable amr:variable_m9 ;
+                      amr:edge_m9_ARG0_o2 amr:leaf_orbit-01_o2 ;
+                      amr:edge_m9_ARG1_o3 amr:leaf_or_o3 ;
+                      amr:isReifiedLeaf "true"^^xsd:boolean .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_hasPart_p9
+amr:leaf_hasPart_p9 rdf:type owl:NamedIndividual ,
+                             amr:AMR_Leaf ;
+                    amr:hasConcept amr:concept_part ;
+                    amr:hasVariable amr:variable_p9 ;
+                    amr:edge_p9_ARG0_s amr:leaf_system_s ;
+                    amr:edge_p9_ARG1_a amr:leaf_and_a ;
+                    amr:isReifiedLeaf "true"^^xsd:boolean .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_object_o
+amr:leaf_object_o rdf:type owl:NamedIndividual ,
+                           amr:AMR_Leaf ;
+                  amr:hasConcept amr:concept_object ;
+                  amr:hasVariable amr:variable_o .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_or_o3
+amr:leaf_or_o3 rdf:type owl:NamedIndividual ,
+                        amr:AMR_Leaf ;
+               amr:hasConcept amr:concept_or ;
+               amr:hasVariable amr:variable_o3 ;
+               amr:edge_o3_op1_d amr:leaf_direct-02_d ;
+               amr:edge_o3_op2_d2 amr:leaf_direct-02_d2 .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_orbit-01_o2
+amr:leaf_orbit-01_o2 rdf:type owl:NamedIndividual ,
+                              amr:AMR_Leaf ;
+                     amr:hasConcept amr:concept_orbit-01 ;
+                     amr:hasVariable amr:variable_o2 ;
+                     amr:edge_o2_ARG0_o amr:leaf_object_o ;
+                     amr:edge_o2_ARG1_s2 amr:leaf_sun_s2 .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_sun_s2
+amr:leaf_sun_s2 rdf:type owl:NamedIndividual ,
+                         amr:AMR_Leaf ;
+                amr:hasConcept amr:concept_sun ;
+                amr:hasVariable amr:variable_s2 .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_system_p
+amr:leaf_system_p rdf:type owl:NamedIndividual ,
+                           amr:AMR_Leaf ;
+                  amr:hasConcept amr:concept_system ;
+                  amr:hasVariable amr:variable_p ;
+                  amr:edge_p_name_SolarSystem amr:value_SolarSystem .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#leaf_system_s
+amr:leaf_system_s rdf:type owl:NamedIndividual ,
+                           amr:AMR_Leaf ;
+                  amr:hasConcept amr:concept_system ;
+                  amr:hasVariable amr:variable_s ;
+                  amr:edge_s_domain_p amr:leaf_system_p .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG0
+amr:role_ARG0 rdf:type owl:NamedIndividual ,
+                       net:Relation .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_ARG1
+amr:role_ARG1 rdf:type owl:NamedIndividual ,
+                       net:Relation .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_domain
+amr:role_domain rdf:type owl:NamedIndividual ,
+                         net:Relation .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_name
+amr:role_name rdf:type owl:NamedIndividual ,
+                       net:Relation .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op1
+amr:role_op1 rdf:type owl:NamedIndividual ,
+                      net:Relation .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_op2
+amr:role_op2 rdf:type owl:NamedIndividual ,
+                      net:Relation .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#role_polarity
+amr:role_polarity rdf:type owl:NamedIndividual ,
+                           net:Relation .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#root_SSC-01-01
+amr:root_SSC-01-01 rdf:type owl:NamedIndividual ,
+                            amr:AMR_Root ;
+                   amr:hasRootLeaf amr:leaf_system_s ;
+                   amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
+                   amr:hasSentenceID "SSC-01-01" ;
+                   amr:hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#value_SolarSystem
+amr:value_SolarSystem rdf:type owl:NamedIndividual ,
+                               amr:AMR_Value ;
+                      rdfs:label "Solar System" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#value_negative
+amr:value_negative rdf:type owl:NamedIndividual ,
+                            amr:AMR_Value ;
+                   rdfs:label "negative" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_a
+amr:variable_a rdf:type owl:NamedIndividual ,
+                        amr:AMR_Variable ;
+               amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+               amr:label "a" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_b
+amr:variable_b rdf:type owl:NamedIndividual ,
+                        amr:AMR_Variable ;
+               amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
+               amr:label "b" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_d
+amr:variable_d rdf:type owl:NamedIndividual ,
+                        amr:AMR_Variable ;
+               amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+               amr:label "d" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_d2
+amr:variable_d2 rdf:type owl:NamedIndividual ,
+                         amr:AMR_Variable ;
+                amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+                amr:label "d2" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_g
+amr:variable_g rdf:type owl:NamedIndividual ,
+                        amr:AMR_Variable ;
+               amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+               amr:label "g" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_m9
+amr:variable_m9 rdf:type owl:NamedIndividual ,
+                         ns11:manner ,
+                         amr:AMR_Variable ;
+                amr:isReifiedVariable "true"^^xsd:boolean ;
+                amr:label "m9" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_o
+amr:variable_o rdf:type owl:NamedIndividual ,
+                        amr:AMR_Variable ;
+               amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+               amr:label "o" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_o2
+amr:variable_o2 rdf:type owl:NamedIndividual ,
+                         amr:AMR_Variable ;
+                amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
+                amr:label "o2" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_o3
+amr:variable_o3 rdf:type owl:NamedIndividual ,
+                         amr:AMR_Variable ;
+                amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+                amr:label "o3" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_p
+amr:variable_p rdf:type owl:NamedIndividual ,
+                        amr:AMR_Variable ;
+               amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+               amr:label "p" ;
+               amr:name "Solar System" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_p9
+amr:variable_p9 rdf:type owl:NamedIndividual ,
+                         ns11:part ,
+                         amr:AMR_Variable ;
+                amr:isReifiedVariable "true"^^xsd:boolean ;
+                amr:label "p9" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_s
+amr:variable_s rdf:type owl:NamedIndividual ,
+                        amr:AMR_Variable ;
+               amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+               amr:label "s" .
+
+
+###  https://amr.tetras-libre.fr/rdf/schema#variable_s2
+amr:variable_s2 rdf:type owl:NamedIndividual ,
+                         amr:AMR_Variable ;
+                amr:fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+                amr:label "s2" .
+
+
+###  https://tenet.tetras-libre.fr/config/parameters#Config_Parameters
+cprm:Config_Parameters rdf:type owl:NamedIndividual ;
+                       cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+                       cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+                       cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomClass_gravitation_g
+net:atomClass_gravitation_g rdf:type owl:NamedIndividual ,
+                                     net:Atom_Class_Net ;
+                            net:coverBaseNode amr:leaf_gravitation_g ;
+                            net:coverNode amr:leaf_gravitation_g ;
+                            net:coverNodeCount 1 ;
+                            net:hasClassName "gravitation" ;
+                            net:hasClassType sys:Entity ;
+                            net:hasNaming "gravitation" ;
+                            net:hasStructure "SSC-01-01" ;
+                            net:trackProgress net:initialized ,
+                                              net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomClass_object_o
+net:atomClass_object_o rdf:type owl:NamedIndividual ,
+                                net:Atom_Class_Net ;
+                       net:coverBaseNode amr:leaf_object_o ;
+                       net:coverNode amr:leaf_object_o ;
+                       net:coverNodeCount 1 ;
+                       net:hasClassName "object" ;
+                       net:hasClassType sys:Entity ;
+                       net:hasNaming "object" ;
+                       net:hasStructure "SSC-01-01" ;
+                       net:trackProgress net:initialized ,
+                                         net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomClass_sun_s2
+net:atomClass_sun_s2 rdf:type owl:NamedIndividual ,
+                              net:Atom_Class_Net ;
+                     net:coverBaseNode amr:leaf_sun_s2 ;
+                     net:coverNode amr:leaf_sun_s2 ;
+                     net:coverNodeCount 1 ;
+                     net:hasClassName "sun" ;
+                     net:hasClassType sys:Entity ;
+                     net:hasNaming "sun" ;
+                     net:hasStructure "SSC-01-01" ;
+                     net:trackProgress net:initialized ,
+                                       net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomClass_system_p
+net:atomClass_system_p rdf:type owl:NamedIndividual ,
+                                net:Atom_Class_Net ;
+                       amr:role_name net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                     net:value_SolarSystem_blankNode ;
+                       net:coverBaseNode amr:leaf_system_p ;
+                       net:coverNode amr:leaf_system_p ;
+                       net:coverNodeCount 1 ;
+                       net:hasClassName "system" ;
+                       net:hasNaming "system" ;
+                       net:hasStructure "SSC-01-01" ;
+                       net:trackProgress net:initialized ,
+                                         net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomClass_system_s
+net:atomClass_system_s rdf:type owl:NamedIndividual ,
+                                net:Atom_Class_Net ,
+                                net:Deprecated_Net ;
+                       amr:role_domain net:atomClass_system_p ,
+                                       net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                       net:individual_system_SolarSystem ;
+                       net:coverBaseNode amr:leaf_system_s ;
+                       net:coverNode amr:leaf_system_s ;
+                       net:coverNodeCount 1 ;
+                       net:hasClassName "system" ;
+                       net:hasClassType sys:Entity ;
+                       net:hasMotherClassNet net:atomClass_system_p ,
+                                             net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                       net:hasNaming "system" ;
+                       net:hasStructure "SSC-01-01" ;
+                       net:trackProgress net:initialized ,
+                                         net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomProperty_bind_b
+net:atomProperty_bind_b rdf:type owl:NamedIndividual ,
+                                 net:Atom_Property_Net ;
+                        amr:role_ARG0 net:atomClass_gravitation_g ,
+                                      net:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g ,
+                                      net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                        amr:role_ARG1 net:atomClass_system_s ,
+                                      net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                      net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s ,
+                                      net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s ,
+                                      net:compositeClass_system-hasPart-sun-and-object_s ;
+                        net:coverBaseNode amr:leaf_bind-01_b ;
+                        net:coverNode amr:leaf_bind-01_b ;
+                        net:hasNaming "bind" ;
+                        net:hasPropertyName "bind" ;
+                        net:hasPropertyName01 "binding" ;
+                        net:hasPropertyName10 "bind-by" ;
+                        net:hasPropertyName12 "bind-of" ;
+                        net:hasPropertyType owl:ObjectProperty ;
+                        net:hasStructure "SSC-01-01" ;
+                        net:isCoreRoleLinked "true"^^xsd:boolean ;
+                        net:targetArgumentNode amr:leaf_gravitation_g ,
+                                               amr:leaf_system_s ;
+                        net:trackProgress net:initialized ,
+                                          net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomProperty_direct_d
+net:atomProperty_direct_d rdf:type owl:NamedIndividual ,
+                                   net:Atom_Property_Net ;
+                          net:coverBaseNode amr:leaf_direct-02_d ;
+                          net:coverNode amr:leaf_direct-02_d ;
+                          net:hasNaming "direct" ;
+                          net:hasPropertyName "direct" ;
+                          net:hasPropertyName01 "directing" ;
+                          net:hasPropertyName10 "direct-by" ;
+                          net:hasPropertyName12 "direct-of" ;
+                          net:hasPropertyType owl:ObjectProperty ;
+                          net:hasStructure "SSC-01-01" ;
+                          net:isCoreRoleLinked "true"^^xsd:boolean ;
+                          net:trackProgress net:initialized ,
+                                            net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomProperty_direct_d2
+net:atomProperty_direct_d2 rdf:type owl:NamedIndividual ,
+                                    net:Atom_Property_Net ;
+                           amr:role_polarity net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                             net:value_negative_blankNode ;
+                           net:coverBaseNode amr:leaf_direct-02_d2 ;
+                           net:coverNode amr:leaf_direct-02_d2 ;
+                           net:hasNaming "direct" ;
+                           net:hasPropertyName "direct" ;
+                           net:hasPropertyName01 "directing" ;
+                           net:hasPropertyName10 "direct-by" ;
+                           net:hasPropertyName12 "direct-of" ;
+                           net:hasPropertyType owl:ObjectProperty ;
+                           net:hasStructure "SSC-01-01" ;
+                           net:isCoreRoleLinked "true"^^xsd:boolean ;
+                           net:targetArgumentNode amr:value_negative ;
+                           net:trackProgress net:initialized ,
+                                             net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomProperty_hasManner_m9
+net:atomProperty_hasManner_m9 rdf:type owl:NamedIndividual ,
+                                       net:Atom_Property_Net ;
+                              amr:role_ARG0 net:atomProperty_orbit_o2 ,
+                                            net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                              amr:role_ARG1 net:atomProperty_direct_d ,
+                                            net:atomProperty_direct_d2 ,
+                                            net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                            net:compositeProperty_not-direct_d2 ,
+                                            net:phenomena_conjunction-OR_o3 ;
+                              net:coverBaseNode amr:leaf_hasManner_m9 ;
+                              net:coverNode amr:leaf_hasManner_m9 ;
+                              net:hasNaming "hasManner" ;
+                              net:hasPropertyName "hasManner" ;
+                              net:hasPropertyName01 "hasManner" ;
+                              net:hasPropertyName10 "hasManner" ;
+                              net:hasPropertyName12 "hasManner" ;
+                              net:hasPropertyType owl:ObjectProperty ;
+                              net:hasStructure "SSC-01-01" ;
+                              net:isCoreRoleLinked "true"^^xsd:boolean ;
+                              net:targetArgumentNode amr:leaf_or_o3 ,
+                                                     amr:leaf_orbit-01_o2 ;
+                              net:trackProgress net:initialized ,
+                                                net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomProperty_hasPart_p9
+net:atomProperty_hasPart_p9 rdf:type owl:NamedIndividual ,
+                                     net:Atom_Property_Net ;
+                            amr:role_ARG0 net:atomClass_system_s ,
+                                          net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                          net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s ,
+                                          net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s ,
+                                          net:compositeClass_system-hasPart-sun-and-object_s ;
+                            amr:role_ARG1 net:atomClass_object_o ,
+                                          net:atomClass_sun_s2 ,
+                                          net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                          net:logicalSet_and_a ,
+                                          net:phenomena_conjunction-AND_a ;
+                            net:coverBaseNode amr:leaf_hasPart_p9 ;
+                            net:coverNode amr:leaf_hasPart_p9 ;
+                            net:hasNaming "hasPart" ;
+                            net:hasPropertyName "hasPart" ;
+                            net:hasPropertyName01 "hasPart" ;
+                            net:hasPropertyName10 "hasPart" ;
+                            net:hasPropertyName12 "hasPart" ;
+                            net:hasPropertyType owl:ObjectProperty ;
+                            net:hasStructure "SSC-01-01" ;
+                            net:isCoreRoleLinked "true"^^xsd:boolean ;
+                            net:targetArgumentNode amr:leaf_and_a ,
+                                                   amr:leaf_system_s ;
+                            net:trackProgress net:initialized ,
+                                              net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#atomProperty_orbit_o2
+net:atomProperty_orbit_o2 rdf:type owl:NamedIndividual ,
+                                   net:Atom_Property_Net ,
+                                   net:Deprecated_Net ;
+                          amr:role_ARG0 net:atomClass_object_o ,
+                                        net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                          amr:role_ARG1 net:atomClass_sun_s2 ,
+                                        net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                          net:coverBaseNode amr:leaf_orbit-01_o2 ;
+                          net:coverNode amr:leaf_orbit-01_o2 ;
+                          net:hasNaming "orbit" ;
+                          net:hasPropertyName "orbit" ;
+                          net:hasPropertyName01 "orbiting" ;
+                          net:hasPropertyName10 "orbit-by" ;
+                          net:hasPropertyName12 "orbit-of" ;
+                          net:hasPropertyType owl:ObjectProperty ;
+                          net:hasStructure "SSC-01-01" ;
+                          net:isCoreRoleLinked "true"^^xsd:boolean ;
+                          net:targetArgumentNode amr:leaf_object_o ,
+                                                 amr:leaf_sun_s2 ;
+                          net:trackProgress net:initialized ,
+                                            net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#compositeClass_gravitation-binding-system-hasPart-sun-and-object_g
+net:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g rdf:type owl:NamedIndividual ,
+                                                                                net:Composite_Class_Net ;
+                                                                       net:coverBaseNode amr:leaf_gravitation_g ;
+                                                                       net:coverNode amr:leaf_and_a ,
+                                                                                     amr:leaf_bind-01_b ,
+                                                                                     amr:leaf_gravitation_g ,
+                                                                                     amr:leaf_hasPart_p9 ,
+                                                                                     amr:leaf_system_s ;
+                                                                       net:coverNodeCount 5 ;
+                                                                       net:hasClassName "gravitation-binding-system-hasPart-sun-and-object" ;
+                                                                       net:hasClassType sys:Entity ;
+                                                                       net:hasMotherClassNet net:atomClass_gravitation_g ;
+                                                                       net:hasRestriction01 net:restriction_binding_system-hasPart-sun-and-object ;
+                                                                       net:hasStructure "SSC-01-01" ;
+                                                                       net:trackProgress net:initialized ,
+                                                                                         net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#compositeClass_orbit-hasManner-conjunction-OR_o2
+net:compositeClass_orbit-hasManner-conjunction-OR_o2 rdf:type owl:NamedIndividual ,
+                                                              net:Composite_Class_Net ;
+                                                     amr:role_ARG0 net:atomClass_object_o ;
+                                                     amr:role_ARG1 net:atomClass_sun_s2 ;
+                                                     amr:role_domain net:atomClass_system_p ,
+                                                                     net:individual_system_SolarSystem ;
+                                                     amr:role_op1 net:atomClass_sun_s2 ,
+                                                                  net:atomProperty_direct_d ;
+                                                     amr:role_op2 net:atomClass_object_o ,
+                                                                  net:atomProperty_direct_d2 ,
+                                                                  net:compositeProperty_not-direct_d2 ;
+                                                     net:coverNode amr:leaf_hasManner_m9 ,
+                                                                   amr:leaf_or_o3 ,
+                                                                   amr:leaf_orbit-01_o2 ;
+                                                     net:coverNodeCount 3 ;
+                                                     net:hasClassType sys:Entity ;
+                                                     net:hasMotherClassNet net:atomClass_system_p ;
+                                                     net:hasStructure "SSC-01-01" ;
+                                                     net:trackMainNetComposante net:atomProperty_orbit_o2 ;
+                                                     net:trackNetComposante net:atomProperty_direct_d ,
+                                                                            net:atomProperty_direct_d2 ,
+                                                                            net:atomProperty_hasManner_m9 ,
+                                                                            net:atomProperty_orbit_o2 ,
+                                                                            net:compositeProperty_not-direct_d2 ,
+                                                                            net:phenomena_conjunction-OR_o3 ;
+                                                     net:trackProgress net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#compositeClass_system-hasPart-sun-and-object-hasPart-object_s
+net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s rdf:type owl:NamedIndividual ,
+                                                                           net:Composite_Class_Net ;
+                                                                  amr:role_domain net:atomClass_system_p ,
+                                                                                  net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                                                                  net:individual_system_SolarSystem ;
+                                                                  net:coverBaseNode amr:leaf_system_s ;
+                                                                  net:coverNode amr:leaf_and_a ,
+                                                                                amr:leaf_hasPart_p9 ,
+                                                                                amr:leaf_object_o ,
+                                                                                amr:leaf_system_s ;
+                                                                  net:coverNodeCount 4 ;
+                                                                  net:hasClassName "system-hasPart-sun-and-object-hasPart-object" ;
+                                                                  net:hasClassType sys:Entity ;
+                                                                  net:hasMotherClassNet net:atomClass_system_p ,
+                                                                                        net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                                                                        net:compositeClass_system-hasPart-sun-and-object_s ;
+                                                                  net:hasRestriction01 net:restriction_hasPart_object ;
+                                                                  net:hasStructure "SSC-01-01" ;
+                                                                  net:trackProgress net:initialized ,
+                                                                                    net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#compositeClass_system-hasPart-sun-and-object-hasPart-sun_s
+net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s rdf:type owl:NamedIndividual ,
+                                                                        net:Composite_Class_Net ;
+                                                               amr:role_domain net:atomClass_system_p ,
+                                                                               net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                                                               net:individual_system_SolarSystem ;
+                                                               net:coverBaseNode amr:leaf_system_s ;
+                                                               net:coverNode amr:leaf_and_a ,
+                                                                             amr:leaf_hasPart_p9 ,
+                                                                             amr:leaf_sun_s2 ,
+                                                                             amr:leaf_system_s ;
+                                                               net:coverNodeCount 4 ;
+                                                               net:hasClassName "system-hasPart-sun-and-object-hasPart-sun" ;
+                                                               net:hasClassType sys:Entity ;
+                                                               net:hasMotherClassNet net:atomClass_system_p ,
+                                                                                     net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                                                                     net:compositeClass_system-hasPart-sun-and-object_s ;
+                                                               net:hasRestriction01 net:restriction_hasPart_sun ;
+                                                               net:hasStructure "SSC-01-01" ;
+                                                               net:trackProgress net:initialized ,
+                                                                                 net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#compositeClass_system-hasPart-sun-and-object_s
+net:compositeClass_system-hasPart-sun-and-object_s rdf:type owl:NamedIndividual ,
+                                                            net:Composite_Class_Net ;
+                                                   amr:role_domain net:atomClass_system_p ,
+                                                                   net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                                                   net:individual_system_SolarSystem ;
+                                                   net:coverBaseNode amr:leaf_system_s ;
+                                                   net:coverNode amr:leaf_and_a ,
+                                                                 amr:leaf_hasPart_p9 ,
+                                                                 amr:leaf_system_s ;
+                                                   net:coverNodeCount 3 ;
+                                                   net:hasClassName "system-hasPart-sun-and-object" ;
+                                                   net:hasClassType sys:Entity ;
+                                                   net:hasMotherClassNet net:atomClass_system_s ;
+                                                   net:hasNaming "system-hasPart-sun-and-object" ;
+                                                   net:hasRestriction01 net:restriction_hasPart_object ,
+                                                                        net:restriction_hasPart_sun ;
+                                                   net:hasStructure "SSC-01-01" ;
+                                                   net:trackMainNetComposante net:atomClass_system_s ;
+                                                   net:trackNetComposante net:atomClass_system_s ,
+                                                                          net:atomProperty_hasPart_p9 ,
+                                                                          net:logicalSet_and_a ;
+                                                   net:trackProgress net:initialized ,
+                                                                     net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#compositeProperty_not-direct_d2
+net:compositeProperty_not-direct_d2 rdf:type owl:NamedIndividual ,
+                                             net:Composite_Property_Net ;
+                                    amr:role_polarity net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                                    net:coverBaseNode amr:leaf_direct-02_d2 ;
+                                    net:coverNode amr:leaf_direct-02_d2 ;
+                                    net:hasNaming "not-direct" ;
+                                    net:hasPropertyName "not-direct" ;
+                                    net:hasStructure "SSC-01-01" ;
+                                    net:trackProgress net:initialized ,
+                                                      net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#individual_system_SolarSystem
+net:individual_system_SolarSystem rdf:type owl:NamedIndividual ,
+                                           net:Individual_Net ;
+                                  amr:role_name net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                                net:value_SolarSystem_blankNode ;
+                                  net:coverBaseNode amr:leaf_system_p ;
+                                  net:coverNode amr:leaf_system_p ;
+                                  net:hasIndividualLabel "Solar System" ;
+                                  net:hasMotherClassName net:atomClass_system_p ;
+                                  net:hasMotherClassNet net:atomClass_system_p ,
+                                                        net:atomClass_system_s ,
+                                                        net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                                        net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s ,
+                                                        net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s ,
+                                                        net:compositeClass_system-hasPart-sun-and-object_s ;
+                                  net:hasNaming "system" ;
+                                  net:hasStructure "SSC-01-01" ;
+                                  net:trackProgress net:initialized ,
+                                                    net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#inverse_direction
+net:inverse_direction rdf:type owl:NamedIndividual .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#logicalSet_and_a
+net:logicalSet_and_a rdf:type owl:NamedIndividual ,
+                              net:Logical_Set_Net ;
+                     amr:role_op1 net:atomClass_sun_s2 ,
+                                  net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                     amr:role_op2 net:atomClass_object_o ,
+                                  net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                     net:bindPropertyNet net:atomProperty_hasPart_p9 ;
+                     net:bindRestriction net:restriction_hasPart_object ,
+                                         net:restriction_hasPart_sun ;
+                     net:containsNet net:atomClass_object_o ,
+                                     net:atomClass_sun_s2 ;
+                     net:containsNet1 net:atomClass_sun_s2 ;
+                     net:containsNet2 net:atomClass_object_o ;
+                     net:coverBaseNode amr:leaf_and_a ;
+                     net:coverNode amr:leaf_and_a ;
+                     net:hasLogicalConstraint "AND" ;
+                     net:hasNaming "hasPart-sun-and-object" ;
+                     net:hasStructure "SSC-01-01" ;
+                     net:trackProgress net:initialized ,
+                                       net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#normal_direction
+net:normal_direction rdf:type owl:NamedIndividual .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#phenomena_conjunction-AND_a
+net:phenomena_conjunction-AND_a rdf:type owl:NamedIndividual ,
+                                         net:Phenomena_Net ;
+                                amr:role_op1 net:atomClass_sun_s2 ,
+                                             net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                                amr:role_op2 net:atomClass_object_o ,
+                                             net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                                net:coverBaseNode amr:leaf_and_a ;
+                                net:coverNode amr:leaf_and_a ;
+                                net:hasNaming "conjunction-AND" ;
+                                net:hasPhenomenaRef "and" ;
+                                net:hasPhenomenaType amr:phenomena_conjunction_and ;
+                                net:hasStructure "SSC-01-01" ;
+                                net:trackProgress net:initialized ,
+                                                  net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#phenomena_conjunction-OR_o3
+net:phenomena_conjunction-OR_o3 rdf:type owl:NamedIndividual ,
+                                         net:Phenomena_Net ;
+                                amr:role_op1 net:atomProperty_direct_d ,
+                                             net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                                amr:role_op2 net:atomProperty_direct_d2 ,
+                                             net:compositeClass_orbit-hasManner-conjunction-OR_o2 ,
+                                             net:compositeProperty_not-direct_d2 ;
+                                net:coverBaseNode amr:leaf_or_o3 ;
+                                net:coverNode amr:leaf_or_o3 ;
+                                net:hasNaming "conjunction-OR" ;
+                                net:hasPhenomenaRef "or" ;
+                                net:hasPhenomenaType amr:phenomena_conjunction_or ;
+                                net:hasStructure "SSC-01-01" ;
+                                net:trackProgress net:initialized ,
+                                                  net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#restriction_binding_system-hasPart-sun-and-object
+net:restriction_binding_system-hasPart-sun-and-object rdf:type owl:NamedIndividual ,
+                                                               net:Restriction_Net ;
+                                                      net:coverBaseNode amr:leaf_gravitation_g ;
+                                                      net:coverNode amr:leaf_and_a ,
+                                                                    amr:leaf_bind-01_b ,
+                                                                    amr:leaf_gravitation_g ,
+                                                                    amr:leaf_hasPart_p9 ,
+                                                                    amr:leaf_system_s ;
+                                                      net:coverTargetNode amr:leaf_and_a ,
+                                                                          amr:leaf_bind-01_b ,
+                                                                          amr:leaf_hasPart_p9 ,
+                                                                          amr:leaf_system_s ;
+                                                      net:hasNaming "gravitation-binding-system-hasPart-sun-and-object" ;
+                                                      net:hasRestrictionNetValue net:compositeClass_system-hasPart-sun-and-object_s ;
+                                                      net:hasRestrictionOnProperty net:atomProperty_bind_b .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#restriction_hasPart_object
+net:restriction_hasPart_object rdf:type owl:NamedIndividual ,
+                                        net:Restriction_Net ;
+                               amr:role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                               net:coverBaseNode amr:leaf_system_s ;
+                               net:coverNode amr:leaf_and_a ,
+                                             amr:leaf_hasPart_p9 ,
+                                             amr:leaf_object_o ,
+                                             amr:leaf_system_s ;
+                               net:coverTargetNode amr:leaf_hasPart_p9 ,
+                                                   amr:leaf_object_o ;
+                               net:hasNaming "system-hasPart-sun-and-object-hasPart-object" ;
+                               net:hasRestrictionNetValue net:atomClass_object_o ;
+                               net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#restriction_hasPart_sun
+net:restriction_hasPart_sun rdf:type owl:NamedIndividual ,
+                                     net:Restriction_Net ;
+                            amr:role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
+                            net:coverBaseNode amr:leaf_system_s ;
+                            net:coverNode amr:leaf_and_a ,
+                                          amr:leaf_hasPart_p9 ,
+                                          amr:leaf_sun_s2 ,
+                                          amr:leaf_system_s ;
+                            net:coverTargetNode amr:leaf_hasPart_p9 ,
+                                                amr:leaf_sun_s2 ;
+                            net:hasNaming "system-hasPart-sun-and-object-hasPart-sun" ;
+                            net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+                            net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#value_SolarSystem_blankNode
+net:value_SolarSystem_blankNode rdf:type owl:NamedIndividual ,
+                                         net:Value_Net ;
+                                net:hasNaming "Solar System" ;
+                                net:hasStructure "SSC-01-01" ;
+                                net:hasValueLabel "Solar System" ;
+                                net:trackProgress net:initialized ,
+                                                  net:relation_propagated .
+
+
+###  https://tenet.tetras-libre.fr/semantic-net#value_negative_blankNode
+net:value_negative_blankNode rdf:type owl:NamedIndividual ,
+                                      net:Value_Net ;
+                             net:hasNaming "negative" ;
+                             net:hasStructure "SSC-01-01" ;
+                             net:hasValueLabel "negative" ;
+                             net:trackProgress net:initialized ,
+                                               net:relation_propagated .
+
+
+#################################################################
+#    Annotations
+#################################################################
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+                                          ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> .
+
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+                                          ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> ns11:polarity "-" .
+
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+                                           ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+                                           ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> .
+
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+                                           ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> .
+
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> rdfs:label "Solar System" .
+
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+                                          ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> .
+
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasSentence "The sun is a star." ;
+                                            ns21:hasID "test-1" ;
+                                            ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasSentence "Earth is a planet." ;
+                                            ns21:hasID "test-2" ;
+                                            ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+
+<http://amr.isi.edu/entity-types#planet> rdfs:comment "bug" .
+
+
+<http://amr.isi.edu/entity-types#system> rdfs:label "system" .
+
+
+ns3:FrameRole rdfs:label "AMR-PropBank-Role" .
+
+
+ns21:Frame rdfs:label "AMR-PropBank-Frame" .
+
+
+ns21:NamedEntity rdfs:label "AMR-Term" ,
+                            "AMR-EntityType" .
+
+
+amr:concept_and amr:hasPhenomenaLink amr:phenomena_conjunction_and ;
+                amr:fromAmrLk ns21:and ;
+                amr:label "and" .
+
+
+amr:concept_bind-01 amr:fromAmrLk ns3:bind-01 ;
+                    amr:label "bind-01" .
+
+
+amr:concept_direct-02 amr:label "direct-02" ;
+                      amr:fromAmrLk ns3:direct-02 .
+
+
+amr:concept_gravitation amr:label "gravitation" ;
+                        amr:fromAmrLk ns11:gravitation .
+
+
+amr:concept_manner amr:fromAmrLk ns11:manner ;
+                   amr:label "hasManner" ;
+                   amr:isReifiedConcept "true"^^xsd:boolean .
+
+
+amr:concept_object amr:fromAmrLk ns11:object ;
+                   amr:label "object" .
+
+
+amr:concept_or amr:hasPhenomenaLink amr:phenomena_conjunction_or ;
+               amr:label "or" ;
+               amr:fromAmrLk ns21:or .
+
+
+amr:concept_orbit-01 amr:label "orbit-01" ;
+                     amr:fromAmrLk ns3:orbit-01 .
+
+
+amr:concept_part amr:label "hasPart" ;
+                 amr:fromAmrLk ns11:part ;
+                 amr:isReifiedConcept "true"^^xsd:boolean .
+
+
+amr:concept_sun amr:label "sun" ;
+                amr:fromAmrLk ns11:sun .
+
+
+amr:concept_system amr:fromAmrLk ns11:system ;
+                   amr:label "system" ;
+                   amr:fromAmrLk <http://amr.isi.edu/entity-types#system> .
+
+
+amr:edge_a_op1_s2 amr:hasAmrRole amr:role_op1 ;
+                  amr:hasRoleID "op1" .
+
+
+amr:edge_a_op2_o amr:hasAmrRole amr:role_op2 ;
+                 amr:hasRoleID "op2" .
+
+
+amr:edge_b_ARG0_g amr:hasAmrRole amr:role_ARG0 ;
+                  amr:hasRoleID "ARG0" .
+
+
+amr:edge_b_ARG1_s amr:hasRoleID "ARG1" ;
+                  amr:hasAmrRole amr:role_ARG1 .
+
+
+amr:edge_d2_polarity_negative amr:hasRoleID "polarity" ;
+                              amr:hasAmrRole amr:role_polarity .
+
+
+amr:edge_m9_ARG0_o2 amr:hasRoleID "ARG0" ;
+                    amr:hasAmrRole amr:role_ARG0 .
+
+
+amr:edge_m9_ARG1_o3 amr:hasAmrRole amr:role_ARG1 ;
+                    amr:hasRoleID "ARG1" .
+
+
+amr:edge_o2_ARG0_o amr:hasRoleID "ARG0" ;
+                   amr:hasAmrRole amr:role_ARG0 .
+
+
+amr:edge_o2_ARG1_s2 amr:hasAmrRole amr:role_ARG1 ;
+                    amr:hasRoleID "ARG1" .
+
+
+amr:edge_o3_op1_d amr:hasAmrRole amr:role_op1 ;
+                  amr:hasRoleID "op1" .
+
+
+amr:edge_o3_op2_d2 amr:hasRoleID "op2" ;
+                   amr:hasAmrRole amr:role_op2 .
+
+
+amr:edge_p9_ARG0_s amr:hasAmrRole amr:role_ARG0 ;
+                   amr:hasRoleID "ARG0" .
+
+
+amr:edge_p9_ARG1_a amr:hasRoleID "ARG1" ;
+                   amr:hasAmrRole amr:role_ARG1 .
+
+
+amr:edge_p_name_SolarSystem amr:hasRoleID "name" ;
+                            amr:hasAmrRole amr:role_name .
+
+
+amr:edge_s_domain_p amr:hasRoleID "domain" ;
+                    amr:hasAmrRole amr:role_domain .
+
+
+amr:role_ARG0 amr:label "ARG0" .
+
+
+amr:role_ARG1 amr:label "ARG1" .
+
+
+amr:role_domain amr:toReifyWithBaseEdge "ARG0" ;
+                amr:label "domain" ;
+                amr:hasRelationName "domain" ;
+                amr:toReifyAsConcept "domain" ;
+                amr:toReifyWithHeadEdge "ARG1" .
+
+
+amr:role_name amr:label "name" .
+
+
+amr:role_op1 amr:label "op1" .
+
+
+amr:role_op2 amr:label "op2" .
+
+
+amr:role_polarity amr:label "polarity" .
+
+
+cprm:Config_Parameters cprm:newPropertyRef "new-relation#" ;
+                       cprm:objectRef "object_" ;
+                       cprm:newClassRef "new-class#" .
+
+
+cprm:baseURI rdfs:label "Base URI" .
+
+
+cprm:netURI rdfs:label "Net URI" .
+
+
+cprm:targetOntologyURI rdfs:label "URI of classes in target ontology" .
+
+
+#################################################################
+#    General axioms
+#################################################################
+
+[ rdf:type owl:AllDisjointClasses ;
+  owl:members ( sys:Degree
+                sys:Entity
+                sys:Feature
+              )
+] .
+
 
-<http://amr.isi.edu/amr_data/SSC-01-01#a>
-  rdf:type ns21:and ;
-  ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
-  ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#b>
-  rdf:type ns3:bind-01 ;
-  <http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
-  <http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#d>
-  rdf:type ns3:direct-02 ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#d2>
-  rdf:type ns3:direct-02 ;
-  ns11:polarity "-" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#g>
-  rdf:type ns11:gravitation ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#o>
-  rdf:type ns11:object ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#o2>
-  rdf:type ns3:orbit-01 ;
-  <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0> <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
-  <http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1> <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
-  ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#o3>
-  rdf:type ns21:or ;
-  ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
-  ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#p>
-  rdf:type <http://amr.isi.edu/entity-types#planet> ;
-  rdf:type <http://amr.isi.edu/entity-types#system> ;
-  rdfs:label "Solar System" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#root01>
-  rdf:type ns21:AMR ;
-  ns21:has-id "SSC-01-01" ;
-  ns21:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
-  ns21:root <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#s>
-  rdf:type ns11:system ;
-  ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
-  ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/SSC-01-01#s2>
-  rdf:type ns11:sun ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/amr_data/test-1#root01>
-  ns21:hasID "test-1" ;
-  ns21:hasSentence "The sun is a star." ;
-  ns21:root <http://amr.isi.edu/amr_data/test-1#s> ;
-.
-<http://amr.isi.edu/amr_data/test-1#s>
-  ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> ;
-.
-<http://amr.isi.edu/amr_data/test-2#p>
-  rdfs:label "Earth" ;
-.
-<http://amr.isi.edu/amr_data/test-2#root01>
-  ns21:hasID "test-2" ;
-  ns21:hasSentence "Earth is a planet." ;
-  ns21:root <http://amr.isi.edu/amr_data/test-2#p> ;
-.
-<http://amr.isi.edu/entity-types#planet>
-  rdf:type ns21:NamedEntity ;
-  rdfs:comment "bug" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/entity-types#system>
-  rdf:type ns21:NamedEntity ;
-  rdfs:label "system" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns3:FrameRole
-  rdf:type ns21:Role ;
-  rdf:type owl:Class ;
-  rdf:type owl:NamedIndividual ;
-  rdfs:label "AMR-PropBank-Role" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns3:bind-01
-  rdf:type ns21:Frame ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG0>
-  rdf:type ns3:FrameRole ;
-.
-<http://amr.isi.edu/frames/ld/v1.2.2/bind-01.ARG1>
-  rdf:type ns3:FrameRole ;
-.
-ns3:direct-02
-  rdf:type ns21:Frame ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns3:orbit-01
-  rdf:type ns21:Frame ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-<http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG0>
-  rdf:type ns3:FrameRole ;
-.
-<http://amr.isi.edu/frames/ld/v1.2.2/orbit-01.ARG1>
-  rdf:type ns3:FrameRole ;
-.
-ns11:domain
-  rdf:type ns21:Role ;
-  rdf:type owl:AnnotationProperty ;
-  rdf:type owl:NamedIndividual ;
-.
-ns11:gravitation
-  rdf:type ns21:Concept ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns11:manner
-  rdf:type ns21:Role ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns11:object
-  rdf:type ns21:Concept ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns11:op1
-  rdf:type ns21:Role ;
-.
-ns11:op2
-  rdf:type ns21:Role ;
-.
-ns11:part
-  rdf:type ns21:Role ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns11:sun
-  rdf:type ns21:Concept ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns11:system
-  rdf:type ns21:Concept ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:AMR
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:Concept
-  rdf:type rdfs:Class ;
-  rdf:type owl:Class ;
-  rdfs:label "AMR-Concept" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:Frame
-  rdf:type ns21:Concept ;
-  rdf:type owl:Class ;
-  rdf:type owl:NamedIndividual ;
-  rdfs:label "AMR-PropBank-Frame" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:NamedEntity
-  rdf:type ns21:Concept ;
-  rdf:type owl:Class ;
-  rdf:type owl:NamedIndividual ;
-  rdfs:label "AMR-EntityType" ;
-  rdfs:label "AMR-Term" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:Role
-  rdf:type rdfs:Class ;
-  rdf:type owl:Class ;
-  rdfs:label "AMR-Role" ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:and
-  rdf:type ns21:Concept ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:hasID
-  rdf:type owl:AnnotationProperty ;
-.
-ns21:hasSentence
-  rdf:type owl:AnnotationProperty ;
-.
-ns21:or
-  rdf:type ns21:Concept ;
-  rdfs:subClassOf :AMR_Linked_Data ;
-.
-ns21:root
-  rdf:type owl:AnnotationProperty ;
-.
-rdf:Property
-  rdf:type owl:Class ;
-.
-<https://amr.tetras-libre.fr/rdf/schema>
-  rdf:type owl:Ontology ;
-  owl:versionIRI <https://amr.tetras-libre.fr/rdf/schema#0.1> ;
-.
-:AMR_AnnotationProperty
-  rdf:type owl:AnnotationProperty ;
-.
-:AMR_Concept
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Element ;
-.
-:AMR_Core_Role
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Role ;
-.
-:AMR_DataProperty
-  rdf:type owl:DatatypeProperty ;
-.
-:AMR_Edge
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Structure ;
-.
-:AMR_Element
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Structure ;
-.
-:AMR_Leaf
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Structure ;
-.
-:AMR_Linked_Data
-  rdf:type owl:Class ;
-.
-:AMR_NonCore_Role
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Role ;
-.
-:AMR_ObjectProperty
-  rdf:type owl:ObjectProperty ;
-  rdfs:subPropertyOf owl:topObjectProperty ;
-.
-:AMR_Op_Role
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Role ;
-.
-:AMR_Phenomena
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Structure ;
-.
-:AMR_Predicat_Concept
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Concept ;
-.
-:AMR_Prep_Role
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Role ;
-.
-:AMR_Relation
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Structure ;
-.
-:AMR_Relation_Concept
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Concept ;
-.
-:AMR_Role
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Element ;
-.
-:AMR_Root
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Structure ;
-.
-:AMR_Specific_Role
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Role ;
-.
-:AMR_Structure
-  rdf:type owl:Class ;
-.
-:AMR_Term_Concept
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Concept ;
-.
-:AMR_Value
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Element ;
-.
-:AMR_Variable
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Element ;
-.
-:concept_and
-  rdfs:subClassOf :AMR_Relation_Concept ;
-  :fromAmrLk ns21:and ;
-  :hasPhenomenaLink :phenomena_conjunction_and ;
-  :label "and" ;
-.
-:concept_bind-01
-  rdfs:subClassOf :AMR_Predicat_Concept ;
-  :fromAmrLk ns3:bind-01 ;
-  :label "bind-01" ;
-.
-:concept_direct-02
-  rdfs:subClassOf :AMR_Predicat_Concept ;
-  :fromAmrLk ns3:direct-02 ;
-  :label "direct-02" ;
-.
-:concept_gravitation
-  rdfs:subClassOf :AMR_Term_Concept ;
-  :fromAmrLk ns11:gravitation ;
-  :label "gravitation" ;
-.
-:concept_manner
-  rdfs:subClassOf :AMR_Predicat_Concept ;
-  :fromAmrLk ns11:manner ;
-  :isReifiedConcept "true"^^xsd:boolean ;
-  :label "hasManner" ;
-.
-:concept_object
-  rdfs:subClassOf :AMR_Term_Concept ;
-  :fromAmrLk ns11:object ;
-  :label "object" ;
-.
-:concept_or
-  rdfs:subClassOf :AMR_Relation_Concept ;
-  :fromAmrLk ns21:or ;
-  :hasPhenomenaLink :phenomena_conjunction_or ;
-  :label "or" ;
-.
-:concept_orbit-01
-  rdfs:subClassOf :AMR_Predicat_Concept ;
-  :fromAmrLk ns3:orbit-01 ;
-  :label "orbit-01" ;
-.
-:concept_part
-  rdfs:subClassOf :AMR_Predicat_Concept ;
-  :fromAmrLk ns11:part ;
-  :isReifiedConcept "true"^^xsd:boolean ;
-  :label "hasPart" ;
-.
-:concept_sun
-  rdfs:subClassOf :AMR_Term_Concept ;
-  :fromAmrLk ns11:sun ;
-  :label "sun" ;
-.
-:concept_system
-  rdfs:subClassOf :AMR_Term_Concept ;
-  :fromAmrLk <http://amr.isi.edu/entity-types#system> ;
-  :fromAmrLk ns11:system ;
-  :label "system" ;
-.
-:edge_a_op1_s2
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_op1 ;
-  :hasRoleID "op1" ;
-.
-:edge_a_op2_o
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_op2 ;
-  :hasRoleID "op2" ;
-.
-:edge_b_ARG0_g
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG0 ;
-  :hasRoleID "ARG0" ;
-.
-:edge_b_ARG1_s
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG1 ;
-  :hasRoleID "ARG1" ;
-.
-:edge_d2_polarity_negative
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_polarity ;
-  :hasRoleID "polarity" ;
-.
-:edge_m9_ARG0_o2
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG0 ;
-  :hasRoleID "ARG0" ;
-.
-:edge_m9_ARG1_o3
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG1 ;
-  :hasRoleID "ARG1" ;
-.
-:edge_o2_ARG0_o
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG0 ;
-  :hasRoleID "ARG0" ;
-.
-:edge_o2_ARG1_s2
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG1 ;
-  :hasRoleID "ARG1" ;
-.
-:edge_o3_op1_d
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_op1 ;
-  :hasRoleID "op1" ;
-.
-:edge_o3_op2_d2
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_op2 ;
-  :hasRoleID "op2" ;
-.
-:edge_p9_ARG0_s
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG0 ;
-  :hasRoleID "ARG0" ;
-.
-:edge_p9_ARG1_a
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_ARG1 ;
-  :hasRoleID "ARG1" ;
-.
-:edge_p_name_SolarSystem
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_name ;
-  :hasRoleID "name" ;
-.
-:edge_s_domain_p
-  rdf:type :AMR_Edge ;
-  :hasAmrRole :role_domain ;
-  :hasRoleID "domain" ;
-.
-:fromAmrLk
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:fromAmrLkFramerole
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :fromAmrLk ;
-.
-:fromAmrLkRole
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :fromAmrLk ;
-.
-:fromAmrLkRoot
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :fromAmrLk ;
-.
-:getDirectPropertyName
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :getProperty ;
-.
-:getInversePropertyName
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :getProperty ;
-.
-:getProperty
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:getPropertyType
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :getProperty ;
-.
-:hasConcept
-  rdf:type owl:ObjectProperty ;
-  rdfs:domain :AMR_Leaf ;
-  rdfs:subPropertyOf :AMR_ObjectProperty ;
-.
-:hasConceptLink
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :hasLink ;
-.
-:hasEdgeLink
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :hasLink ;
-.
-:hasLink
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:hasReification
-  rdf:type owl:AnnotationProperty ;
-  rdfs:range xsd:boolean ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:hasReificationConcept
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :hasReificationDefinition ;
-.
-:hasReificationDefinition
-  rdf:type owl:AnnotationProperty ;
-  rdfs:range rdfs:Literal ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:hasReificationDomain
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :hasReificationDefinition ;
-.
-:hasReificationRange
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :hasReificationDefinition ;
-.
-:hasRelationName
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:hasRoleID
-  rdf:type owl:ObjectProperty ;
-  rdfs:domain :AMR_Edge ;
-  rdfs:subPropertyOf :AMR_ObjectProperty ;
-.
-:hasRoleTag
-  rdf:type owl:ObjectProperty ;
-  rdfs:domain :AMR_Edge ;
-  rdfs:subPropertyOf :AMR_ObjectProperty ;
-.
-:hasRolesetID
-  rdf:type owl:ObjectProperty ;
-  rdfs:domain :AMR_Edge ;
-  rdfs:subPropertyOf :AMR_ObjectProperty ;
-.
-:hasRootLeaf
-  rdf:type owl:ObjectProperty ;
-  rdfs:subPropertyOf :AMR_ObjectProperty ;
-.
-:hasSentenceID
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:hasSentenceStatement
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:hasVariable
-  rdf:type owl:ObjectProperty ;
-  rdfs:domain :AMR_Leaf ;
-  rdfs:subPropertyOf :AMR_ObjectProperty ;
-.
-:label
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:leaf_and_a
-  rdf:type :AMR_Leaf ;
-  :edge_a_op1_s2 :leaf_sun_s2 ;
-  :edge_a_op2_o :leaf_object_o ;
-  :hasConcept :concept_and ;
-  :hasVariable :variable_a ;
-.
-:leaf_bind-01_b
-  rdf:type :AMR_Leaf ;
-  :edge_b_ARG0_g :leaf_gravitation_g ;
-  :edge_b_ARG1_s :leaf_system_s ;
-  :hasConcept :concept_bind-01 ;
-  :hasVariable :variable_b ;
-.
-:leaf_direct-02_d
-  rdf:type :AMR_Leaf ;
-  :hasConcept :concept_direct-02 ;
-  :hasVariable :variable_d ;
-.
-:leaf_direct-02_d2
-  rdf:type :AMR_Leaf ;
-  :edge_d2_polarity_negative :value_negative ;
-  :hasConcept :concept_direct-02 ;
-  :hasVariable :variable_d2 ;
-.
-:leaf_gravitation_g
-  rdf:type :AMR_Leaf ;
-  :hasConcept :concept_gravitation ;
-  :hasVariable :variable_g ;
-.
-:leaf_hasManner_m9
-  rdf:type :AMR_Leaf ;
-  :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
-  :edge_m9_ARG1_o3 :leaf_or_o3 ;
-  :hasConcept :concept_manner ;
-  :hasVariable :variable_m9 ;
-  :isReifiedLeaf "true"^^xsd:boolean ;
-.
-:leaf_hasPart_p9
-  rdf:type :AMR_Leaf ;
-  :edge_p9_ARG0_s :leaf_system_s ;
-  :edge_p9_ARG1_a :leaf_and_a ;
-  :hasConcept :concept_part ;
-  :hasVariable :variable_p9 ;
-  :isReifiedLeaf "true"^^xsd:boolean ;
-.
-:leaf_object_o
-  rdf:type :AMR_Leaf ;
-  :hasConcept :concept_object ;
-  :hasVariable :variable_o ;
-.
-:leaf_or_o3
-  rdf:type :AMR_Leaf ;
-  :edge_o3_op1_d :leaf_direct-02_d ;
-  :edge_o3_op2_d2 :leaf_direct-02_d2 ;
-  :hasConcept :concept_or ;
-  :hasVariable :variable_o3 ;
-.
-:leaf_orbit-01_o2
-  rdf:type :AMR_Leaf ;
-  :edge_o2_ARG0_o :leaf_object_o ;
-  :edge_o2_ARG1_s2 :leaf_sun_s2 ;
-  :hasConcept :concept_orbit-01 ;
-  :hasVariable :variable_o2 ;
-.
-:leaf_sun_s2
-  rdf:type :AMR_Leaf ;
-  :hasConcept :concept_sun ;
-  :hasVariable :variable_s2 ;
-.
-:leaf_system_p
-  rdf:type :AMR_Leaf ;
-  :edge_p_name_SolarSystem :value_SolarSystem ;
-  :hasConcept :concept_system ;
-  :hasVariable :variable_p ;
-.
-:leaf_system_s
-  rdf:type :AMR_Leaf ;
-  :edge_s_domain_p :leaf_system_p ;
-  :hasConcept :concept_system ;
-  :hasVariable :variable_s ;
-.
-:phenomena_conjunction
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Phenomena ;
-  :hasConceptLink "contrast-01" ;
-  :hasConceptLink "either" ;
-  :hasConceptLink "neither" ;
-  :label "conjunction" ;
-.
-:phenomena_conjunction_and
-  rdf:type owl:Class ;
-  rdfs:subClassOf :phenomena_conjunction ;
-  :hasConceptLink "and" ;
-  :label "conjunction-AND" ;
-.
-:phenomena_conjunction_or
-  rdf:type owl:Class ;
-  rdfs:subClassOf :phenomena_conjunction ;
-  :hasConceptLink "or" ;
-  :label "conjunction-OR" ;
-.
-:phenomena_degree
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Phenomena ;
-  :hasConceptLink "have-degree-91" ;
-  :label "degree" ;
-.
-:relation_domain
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Relation ;
-  :hasReification "false"^^xsd:boolean ;
-  :hasRelationName "domain" ;
-.
-:relation_manner
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Relation ;
-  :hasReification "true"^^xsd:boolean ;
-  :hasReificationConcept "hasManner" ;
-  :hasReificationDomain "ARG1" ;
-  :hasReificationRange "ARG2" ;
-  :hasRelationName "manner" ;
-.
-:relation_mod
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Relation ;
-  :hasReification "false"^^xsd:boolean ;
-  :hasRelationName "mod" ;
-.
-:relation_name
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Relation ;
-  :hasReification "false"^^xsd:boolean ;
-  :hasRelationName "name" ;
-.
-:relation_part
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Relation ;
-  :hasReification "true"^^xsd:boolean ;
-  :hasReificationConcept "hasPart" ;
-  :hasReificationDomain "ARG1" ;
-  :hasReificationRange "ARG2" ;
-  :hasRelationName "part" ;
-.
-:relation_polarity
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Relation ;
-  :hasReification "false"^^xsd:boolean ;
-  :hasRelationName "polarity" ;
-.
-:relation_quant
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Relation ;
-  :hasReification "false"^^xsd:boolean ;
-  :hasRelationName "quant" ;
-.
-:role_ARG0
-  rdf:type owl:Class ;
-  rdf:type net:Relation ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG0" ;
-.
-:role_ARG1
-  rdf:type owl:Class ;
-  rdf:type net:Relation ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG1" ;
-.
-:role_ARG2
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG2" ;
-.
-:role_ARG3
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG3" ;
-.
-:role_ARG4
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG4" ;
-.
-:role_ARG5
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG5" ;
-.
-:role_ARG6
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG6" ;
-.
-:role_ARG7
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG7" ;
-.
-:role_ARG8
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG8" ;
-.
-:role_ARG9
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Core_Role ;
-  :label "ARG9" ;
-.
-:role_domain
-  rdf:type owl:Class ;
-  rdf:type net:Relation ;
-  rdfs:subClassOf :AMR_NonCore_Role ;
-  :hasRelationName "domain" ;
-  :label "domain" ;
-  :toReifyAsConcept "domain" ;
-  :toReifyWithBaseEdge "ARG0" ;
-  :toReifyWithHeadEdge "ARG1" ;
-.
-:role_have-degree-91
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Specific_Role ;
-  :getPropertyType <net:specificProperty> ;
-.
-:role_manner
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_NonCore_Role ;
-  :getDirectPropertyName "manner" ;
-  :getPropertyType owl:DataProperty ;
-  :label "manner" ;
-  :toReifyAsConcept "manner" ;
-  :toReifyWithBaseEdge "ARG0" ;
-  :toReifyWithHeadEdge "ARG1" ;
-.
-:role_mod
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_NonCore_Role ;
-  :getDirectPropertyName "hasFeature" ;
-  :getPropertyType rdfs:subClassOf ;
-  :getPropertyType owl:ObjectProperty ;
-  :label "mod" ;
-  :toReifyAsConcept "mod" ;
-  :toReifyWithBaseEdge "ARG0" ;
-  :toReifyWithHeadEdge "ARG1" ;
-.
-:role_name
-  rdf:type owl:Class ;
-  rdf:type net:Relation ;
-  rdfs:subClassOf :AMR_NonCore_Role ;
-  :label "name" ;
-.
-:role_op1
-  rdf:type owl:Class ;
-  rdf:type net:Relation ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op1" ;
-.
-:role_op2
-  rdf:type owl:Class ;
-  rdf:type net:Relation ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op2" ;
-.
-:role_op3
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op3" ;
-.
-:role_op4
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op4" ;
-.
-:role_op5
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op5" ;
-.
-:role_op6
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op6" ;
-.
-:role_op7
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op7" ;
-.
-:role_op8
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op8" ;
-.
-:role_op9
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Op_Role ;
-  :label "op9" ;
-.
-:role_part
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_NonCore_Role ;
-  :getDirectPropertyName "hasPart" ;
-  :getInversePropertyName "partOf" ;
-  :getPropertyType owl:ObjectProperty ;
-  :toReifyAsConcept "part" ;
-  :toReifyWithBaseEdge "ARG0" ;
-  :toReifyWithHeadEdge "ARG1" ;
-.
-:role_polarity
-  rdf:type owl:Class ;
-  rdf:type net:Relation ;
-  rdfs:subClassOf :AMR_Specific_Role ;
-  :label "polarity" ;
-.
-:role_quant
-  rdf:type owl:Class ;
-  rdfs:subClassOf :AMR_Specific_Role ;
-  :label "quant" ;
-.
-:root_SSC-01-01
-  rdf:type :AMR_Root ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
-  :hasRootLeaf :leaf_system_s ;
-  :hasSentenceID "SSC-01-01" ;
-  :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
-.
-:toReify
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :AMR_AnnotationProperty ;
-.
-:toReifyAsConcept
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :toReify ;
-.
-:toReifyWithBaseEdge
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :toReify ;
-.
-:toReifyWithHeadEdge
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf :toReify ;
-.
-:value_SolarSystem
-  rdf:type :AMR_Value ;
-  rdfs:label "Solar System" ;
-.
-:value_negative
-  rdf:type :AMR_Value ;
-  rdfs:label "negative" ;
-.
-:variable_a
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
-  :label "a" ;
-.
-:variable_b
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
-  :label "b" ;
-.
-:variable_d
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
-  :label "d" ;
-.
-:variable_d2
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
-  :label "d2" ;
-.
-:variable_g
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
-  :label "g" ;
-.
-:variable_m9
-  rdf:type ns11:manner ;
-  rdf:type :AMR_Variable ;
-  :isReifiedVariable "true"^^xsd:boolean ;
-  :label "m9" ;
-.
-:variable_o
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
-  :label "o" ;
-.
-:variable_o2
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
-  :label "o2" ;
-.
-:variable_o3
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
-  :label "o3" ;
-.
-:variable_p
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
-  :label "p" ;
-  :name "Solar System" ;
-.
-:variable_p9
-  rdf:type ns11:part ;
-  rdf:type :AMR_Variable ;
-  :isReifiedVariable "true"^^xsd:boolean ;
-  :label "p9" ;
-.
-:variable_s
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
-  :label "s" ;
-.
-:variable_s2
-  rdf:type :AMR_Variable ;
-  :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
-  :label "s2" ;
-.
-<https://tenet.tetras-libre.fr/base-ontology>
-  rdf:type owl:Ontology ;
-.
-sys:Degree
-  rdf:type owl:Class ;
-  rdfs:subClassOf sys:Out_Structure ;
-.
-sys:Entity
-  rdf:type owl:Class ;
-  rdfs:subClassOf sys:Out_Structure ;
-.
-sys:Event
-  rdf:type owl:Class ;
-  rdfs:subClassOf sys:Out_Structure ;
-.
-sys:Feature
-  rdf:type owl:Class ;
-  rdfs:subClassOf sys:Out_Structure ;
-.
-sys:Out_AnnotationProperty
-  rdf:type owl:AnnotationProperty ;
-.
-sys:Out_ObjectProperty
-  rdf:type owl:ObjectProperty ;
-.
-sys:Out_Structure
-  rdf:type owl:Class ;
-  rdfs:label "Output Ontology Structure" ;
-.
-sys:Undetermined_Thing
-  rdf:type owl:Class ;
-  rdfs:subClassOf sys:Out_Structure ;
-.
-sys:fromStructure
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf sys:Out_AnnotationProperty ;
-.
-sys:hasDegree
-  rdf:type owl:ObjectProperty ;
-  rdfs:subPropertyOf sys:Out_ObjectProperty ;
-.
-sys:hasFeature
-  rdf:type owl:ObjectProperty ;
-  rdfs:subPropertyOf sys:Out_ObjectProperty ;
-.
-<https://tenet.tetras-libre.fr/config/parameters>
-  rdf:type owl:Ontology ;
-.
-cprm:Config_Parameters
-  rdf:type owl:Class ;
-  cprm:baseURI "https://tenet.tetras-libre.fr/" ;
-  cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
-  cprm:newClassRef "new-class#" ;
-  cprm:newPropertyRef "new-relation#" ;
-  cprm:objectRef "object_" ;
-  cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" ;
-.
-cprm:baseURI
-  rdf:type rdf:Property ;
-  rdfs:domain cprm:Frame ;
-  rdfs:label "Base URI" ;
-  rdfs:range xsd:string ;
-  rdfs:subPropertyOf cprm:configParamProperty ;
-.
-cprm:configParamProperty
-  rdf:type rdf:Property ;
-  rdfs:label "Config Parameter Property" ;
-.
-cprm:netURI
-  rdf:type rdf:Property ;
-  rdfs:domain cprm:Frame ;
-  rdfs:label "Net URI" ;
-  rdfs:range xsd:string ;
-  rdfs:subPropertyOf cprm:configParamProperty ;
-.
-cprm:newClassRef
-  rdf:type rdf:Property ;
-  rdfs:label "Reference for a new class" ;
-  rdfs:subPropertyOf cprm:configParamProperty ;
-.
-cprm:newPropertyRef
-  rdf:type rdf:Property ;
-  rdfs:label "Reference for a new property" ;
-  rdfs:subPropertyOf cprm:configParamProperty ;
-.
-cprm:objectRef
-  rdf:type rdf:Property ;
-  rdfs:label "Object Reference" ;
-  rdfs:subPropertyOf cprm:configParamProperty ;
-.
-cprm:targetOntologyURI
-  rdf:type rdf:Property ;
-  rdfs:domain cprm:Frame ;
-  rdfs:label "URI of classes in target ontology" ;
-  rdfs:range xsd:string ;
-  rdfs:subPropertyOf cprm:configParamProperty ;
-.
-<https://tenet.tetras-libre.fr/semantic-net>
-  rdf:type owl:Ontology ;
-.
-net:Atom_Class_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Class_Net ;
-.
-net:Atom_Property_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Property_Net ;
-.
-net:Class_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:Composite_Class_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Class_Net ;
-.
-net:Composite_Property_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Property_Net ;
-.
-net:Deprecated_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:Feature
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net_Structure ;
-.
-net:Individual_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:Instance
-  rdf:type owl:Class ;
-  rdfs:label "Semantic Net Instance" ;
-  rdfs:subClassOf net:Net_Structure ;
-.
-net:Logical_Set_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net_Structure ;
-.
-net:Net_Structure
-  rdf:type owl:Class ;
-  rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." ;
-  rdfs:label "Semantic Net Structure" ;
-.
-net:Object
-  rdf:type owl:Class ;
-  rdfs:label "Object using in semantic net instance" ;
-  rdfs:subClassOf net:Net_Structure ;
-.
-net:Phenomena_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:Property_Direction
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Feature ;
-.
-net:Property_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:Relation
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net_Structure ;
-.
-net:Restriction_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:Type
-  rdf:type owl:Class ;
-  rdfs:label "Semantic Net Type" ;
-  rdfs:subClassOf net:Net_Structure ;
-.
-net:Value_Net
-  rdf:type owl:Class ;
-  rdfs:subClassOf net:Net ;
-.
-net:abstractionClass
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "abstraction class" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:atom
-  rdf:type owl:Class ;
-  rdfs:label "atom" ;
-  rdfs:subClassOf net:Type ;
-.
-net:atomClass_gravitation_g
-  rdf:type net:Atom_Class_Net ;
-  net:coverBaseNode :leaf_gravitation_g ;
-  net:coverNode :leaf_gravitation_g ;
-  net:coverNodeCount 1 ;
-  net:hasClassName "gravitation" ;
-  net:hasClassType sys:Entity ;
-  net:hasNaming "gravitation" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomClass_object_o
-  rdf:type net:Atom_Class_Net ;
-  net:coverBaseNode :leaf_object_o ;
-  net:coverNode :leaf_object_o ;
-  net:coverNodeCount 1 ;
-  net:hasClassName "object" ;
-  net:hasClassType sys:Entity ;
-  net:hasNaming "object" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomClass_sun_s2
-  rdf:type net:Atom_Class_Net ;
-  net:coverBaseNode :leaf_sun_s2 ;
-  net:coverNode :leaf_sun_s2 ;
-  net:coverNodeCount 1 ;
-  net:hasClassName "sun" ;
-  net:hasClassType sys:Entity ;
-  net:hasNaming "sun" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomClass_system_p
-  rdf:type net:Atom_Class_Net ;
-  :role_name net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_name net:value_SolarSystem_blankNode ;
-  net:coverBaseNode :leaf_system_p ;
-  net:coverNode :leaf_system_p ;
-  net:coverNodeCount 1 ;
-  net:hasClassName "system" ;
-  net:hasNaming "system" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomClass_system_s
-  rdf:type net:Atom_Class_Net ;
-  rdf:type net:Deprecated_Net ;
-  :role_domain net:atomClass_system_p ;
-  :role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_domain net:individual_system_SolarSystem ;
-  net:coverBaseNode :leaf_system_s ;
-  net:coverNode :leaf_system_s ;
-  net:coverNodeCount 1 ;
-  net:hasClassName "system" ;
-  net:hasClassType sys:Entity ;
-  net:hasMotherClassNet net:atomClass_system_p ;
-  net:hasMotherClassNet net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:hasNaming "system" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomOf
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "atom of" ;
-  rdfs:subPropertyOf net:typeProperty ;
-.
-net:atomProperty_bind_b
-  rdf:type net:Atom_Property_Net ;
-  :role_ARG0 net:atomClass_gravitation_g ;
-  :role_ARG0 net:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g ;
-  :role_ARG0 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_ARG1 net:atomClass_system_s ;
-  :role_ARG1 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_ARG1 net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s ;
-  :role_ARG1 net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s ;
-  :role_ARG1 net:compositeClass_system-hasPart-sun-and-object_s ;
-  net:coverBaseNode :leaf_bind-01_b ;
-  net:coverNode :leaf_bind-01_b ;
-  net:hasNaming "bind" ;
-  net:hasPropertyName "bind" ;
-  net:hasPropertyName01 "binding" ;
-  net:hasPropertyName10 "bind-by" ;
-  net:hasPropertyName12 "bind-of" ;
-  net:hasPropertyType owl:ObjectProperty ;
-  net:hasStructure "SSC-01-01" ;
-  net:isCoreRoleLinked "true"^^xsd:boolean ;
-  net:targetArgumentNode :leaf_gravitation_g ;
-  net:targetArgumentNode :leaf_system_s ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomProperty_direct_d
-  rdf:type net:Atom_Property_Net ;
-  net:coverBaseNode :leaf_direct-02_d ;
-  net:coverNode :leaf_direct-02_d ;
-  net:hasNaming "direct" ;
-  net:hasPropertyName "direct" ;
-  net:hasPropertyName01 "directing" ;
-  net:hasPropertyName10 "direct-by" ;
-  net:hasPropertyName12 "direct-of" ;
-  net:hasPropertyType owl:ObjectProperty ;
-  net:hasStructure "SSC-01-01" ;
-  net:isCoreRoleLinked "true"^^xsd:boolean ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomProperty_direct_d2
-  rdf:type net:Atom_Property_Net ;
-  :role_polarity net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_polarity net:value_negative_blankNode ;
-  net:coverBaseNode :leaf_direct-02_d2 ;
-  net:coverNode :leaf_direct-02_d2 ;
-  net:hasNaming "direct" ;
-  net:hasPropertyName "direct" ;
-  net:hasPropertyName01 "directing" ;
-  net:hasPropertyName10 "direct-by" ;
-  net:hasPropertyName12 "direct-of" ;
-  net:hasPropertyType owl:ObjectProperty ;
-  net:hasStructure "SSC-01-01" ;
-  net:isCoreRoleLinked "true"^^xsd:boolean ;
-  net:targetArgumentNode :value_negative ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomProperty_hasManner_m9
-  rdf:type net:Atom_Property_Net ;
-  :role_ARG0 net:atomProperty_orbit_o2 ;
-  :role_ARG0 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_ARG1 net:atomProperty_direct_d ;
-  :role_ARG1 net:atomProperty_direct_d2 ;
-  :role_ARG1 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_ARG1 net:compositeProperty_not-direct_d2 ;
-  :role_ARG1 net:phenomena_conjunction-OR_o3 ;
-  net:coverBaseNode :leaf_hasManner_m9 ;
-  net:coverNode :leaf_hasManner_m9 ;
-  net:hasNaming "hasManner" ;
-  net:hasPropertyName "hasManner" ;
-  net:hasPropertyName01 "hasManner" ;
-  net:hasPropertyName10 "hasManner" ;
-  net:hasPropertyName12 "hasManner" ;
-  net:hasPropertyType owl:ObjectProperty ;
-  net:hasStructure "SSC-01-01" ;
-  net:isCoreRoleLinked "true"^^xsd:boolean ;
-  net:targetArgumentNode :leaf_or_o3 ;
-  net:targetArgumentNode :leaf_orbit-01_o2 ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomProperty_hasPart_p9
-  rdf:type net:Atom_Property_Net ;
-  :role_ARG0 net:atomClass_system_s ;
-  :role_ARG0 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_ARG0 net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s ;
-  :role_ARG0 net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s ;
-  :role_ARG0 net:compositeClass_system-hasPart-sun-and-object_s ;
-  :role_ARG1 net:atomClass_object_o ;
-  :role_ARG1 net:atomClass_sun_s2 ;
-  :role_ARG1 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_ARG1 net:logicalSet_and_a ;
-  :role_ARG1 net:phenomena_conjunction-AND_a ;
-  net:coverBaseNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:hasNaming "hasPart" ;
-  net:hasPropertyName "hasPart" ;
-  net:hasPropertyName01 "hasPart" ;
-  net:hasPropertyName10 "hasPart" ;
-  net:hasPropertyName12 "hasPart" ;
-  net:hasPropertyType owl:ObjectProperty ;
-  net:hasStructure "SSC-01-01" ;
-  net:isCoreRoleLinked "true"^^xsd:boolean ;
-  net:targetArgumentNode :leaf_and_a ;
-  net:targetArgumentNode :leaf_system_s ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomProperty_orbit_o2
-  rdf:type net:Atom_Property_Net ;
-  rdf:type net:Deprecated_Net ;
-  :role_ARG0 net:atomClass_object_o ;
-  :role_ARG0 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_ARG1 net:atomClass_sun_s2 ;
-  :role_ARG1 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:coverBaseNode :leaf_orbit-01_o2 ;
-  net:coverNode :leaf_orbit-01_o2 ;
-  net:hasNaming "orbit" ;
-  net:hasPropertyName "orbit" ;
-  net:hasPropertyName01 "orbiting" ;
-  net:hasPropertyName10 "orbit-by" ;
-  net:hasPropertyName12 "orbit-of" ;
-  net:hasPropertyType owl:ObjectProperty ;
-  net:hasStructure "SSC-01-01" ;
-  net:isCoreRoleLinked "true"^^xsd:boolean ;
-  net:targetArgumentNode :leaf_object_o ;
-  net:targetArgumentNode :leaf_sun_s2 ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:atomType
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "atom type" ;
-  rdfs:subPropertyOf net:objectType ;
-.
-net:class
-  rdf:type owl:Class ;
-  rdfs:label "class" ;
-  rdfs:subClassOf net:Type ;
-.
-net:class_list
-  rdf:type owl:Class ;
-  rdfs:label "classList" ;
-  rdfs:subClassOf net:Type ;
-.
-net:composite
-  rdf:type owl:Class ;
-  rdfs:label "composite" ;
-  rdfs:subClassOf net:Type ;
-.
-net:compositeClass_gravitation-binding-system-hasPart-sun-and-object_g
-  rdf:type net:Composite_Class_Net ;
-  net:coverBaseNode :leaf_gravitation_g ;
-  net:coverNode :leaf_and_a ;
-  net:coverNode :leaf_bind-01_b ;
-  net:coverNode :leaf_gravitation_g ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_system_s ;
-  net:coverNodeCount 5 ;
-  net:hasClassName "gravitation-binding-system-hasPart-sun-and-object" ;
-  net:hasClassType sys:Entity ;
-  net:hasMotherClassNet net:atomClass_gravitation_g ;
-  net:hasRestriction01 net:restriction_binding_system-hasPart-sun-and-object ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:compositeClass_orbit-hasManner-conjunction-OR_o2
-  rdf:type net:Composite_Class_Net ;
-  :role_ARG0 net:atomClass_object_o ;
-  :role_ARG1 net:atomClass_sun_s2 ;
-  :role_domain net:atomClass_system_p ;
-  :role_domain net:individual_system_SolarSystem ;
-  :role_op1 net:atomClass_sun_s2 ;
-  :role_op1 net:atomProperty_direct_d ;
-  :role_op2 net:atomClass_object_o ;
-  :role_op2 net:atomProperty_direct_d2 ;
-  :role_op2 net:compositeProperty_not-direct_d2 ;
-  net:coverNode :leaf_hasManner_m9 ;
-  net:coverNode :leaf_or_o3 ;
-  net:coverNode :leaf_orbit-01_o2 ;
-  net:coverNodeCount 3 ;
-  net:hasClassType sys:Entity ;
-  net:hasMotherClassNet net:atomClass_system_p ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackMainNetComposante net:atomProperty_orbit_o2 ;
-  net:trackNetComposante net:atomProperty_direct_d ;
-  net:trackNetComposante net:atomProperty_direct_d2 ;
-  net:trackNetComposante net:atomProperty_hasManner_m9 ;
-  net:trackNetComposante net:atomProperty_orbit_o2 ;
-  net:trackNetComposante net:compositeProperty_not-direct_d2 ;
-  net:trackNetComposante net:phenomena_conjunction-OR_o3 ;
-  net:trackProgress net:relation_propagated ;
-.
-net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s
-  rdf:type net:Composite_Class_Net ;
-  :role_domain net:atomClass_system_p ;
-  :role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_domain net:individual_system_SolarSystem ;
-  net:coverBaseNode :leaf_system_s ;
-  net:coverNode :leaf_and_a ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_object_o ;
-  net:coverNode :leaf_system_s ;
-  net:coverNodeCount 4 ;
-  net:hasClassName "system-hasPart-sun-and-object-hasPart-object" ;
-  net:hasClassType sys:Entity ;
-  net:hasMotherClassNet net:atomClass_system_p ;
-  net:hasMotherClassNet net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:hasMotherClassNet net:compositeClass_system-hasPart-sun-and-object_s ;
-  net:hasRestriction01 net:restriction_hasPart_object ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s
-  rdf:type net:Composite_Class_Net ;
-  :role_domain net:atomClass_system_p ;
-  :role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_domain net:individual_system_SolarSystem ;
-  net:coverBaseNode :leaf_system_s ;
-  net:coverNode :leaf_and_a ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_sun_s2 ;
-  net:coverNode :leaf_system_s ;
-  net:coverNodeCount 4 ;
-  net:hasClassName "system-hasPart-sun-and-object-hasPart-sun" ;
-  net:hasClassType sys:Entity ;
-  net:hasMotherClassNet net:atomClass_system_p ;
-  net:hasMotherClassNet net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:hasMotherClassNet net:compositeClass_system-hasPart-sun-and-object_s ;
-  net:hasRestriction01 net:restriction_hasPart_sun ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:compositeClass_system-hasPart-sun-and-object_s
-  rdf:type net:Composite_Class_Net ;
-  :role_domain net:atomClass_system_p ;
-  :role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_domain net:individual_system_SolarSystem ;
-  net:coverBaseNode :leaf_system_s ;
-  net:coverNode :leaf_and_a ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_system_s ;
-  net:coverNodeCount 3 ;
-  net:hasClassName "system-hasPart-sun-and-object" ;
-  net:hasClassType sys:Entity ;
-  net:hasMotherClassNet net:atomClass_system_s ;
-  net:hasNaming "system-hasPart-sun-and-object" ;
-  net:hasRestriction01 net:restriction_hasPart_object ;
-  net:hasRestriction01 net:restriction_hasPart_sun ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackMainNetComposante net:atomClass_system_s ;
-  net:trackNetComposante net:atomClass_system_s ;
-  net:trackNetComposante net:atomProperty_hasPart_p9 ;
-  net:trackNetComposante net:logicalSet_and_a ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:compositeProperty_not-direct_d2
-  rdf:type net:Composite_Property_Net ;
-  :role_polarity net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:coverBaseNode :leaf_direct-02_d2 ;
-  net:coverNode :leaf_direct-02_d2 ;
-  net:hasNaming "not-direct" ;
-  net:hasPropertyName "not-direct" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:conjunctive_list
-  rdf:type owl:Class ;
-  rdfs:label "conjunctive-list" ;
-  rdfs:subClassOf net:list ;
-.
-net:disjunctive_list
-  rdf:type owl:Class ;
-  rdfs:label "disjunctive-list" ;
-  rdfs:subClassOf net:list ;
-.
-net:entityClass
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "entity class" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:entity_class_list
-  rdf:type owl:Class ;
-  rdfs:label "entityClassList" ;
-  rdfs:subClassOf net:class_list ;
-.
-net:event
-  rdf:type owl:Class ;
-  rdfs:label "event" ;
-  rdfs:subClassOf net:Type ;
-.
-net:featureClass
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "feature class" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_atom
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has atom" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_class
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "is class" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_class_name
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf net:has_value ;
-.
-net:has_class_uri
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "class uri" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_concept
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "concept "@fr ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_entity
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has entity" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_feature
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has feature" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_instance
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "entity instance" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_instance_uri
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "instance uri" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_item
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has item" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_mother_class
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has mother class" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_mother_class_uri
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "parent class uri" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_node
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "UNL Node" ;
-  rdfs:subPropertyOf net:netProperty ;
-.
-net:has_object
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "relation" ;
-  rdfs:subPropertyOf net:netProperty ;
-.
-net:has_parent
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has parent" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_parent_class
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "parent class" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_parent_class_uri
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "parent class uri" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:has_possible_domain
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has possible domain" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_possible_range
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has possible range" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_relation
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has relation" ;
-  rdfs:subPropertyOf net:has_relation_value ;
-.
-net:has_relation_value
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has relation value" ;
-  rdfs:subPropertyOf net:has_object ;
-.
-net:has_source
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has source" ;
-  rdfs:subPropertyOf net:has_relation_value ;
-.
-net:has_structure
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "Linguistic Structure (in UNL Document)" ;
-  rdfs:subPropertyOf net:netProperty ;
-.
-net:has_target
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "has target" ;
-  rdfs:subPropertyOf net:has_relation_value ;
-.
-net:has_value
-  rdf:type owl:AnnotationProperty ;
-  rdfs:subPropertyOf net:netProperty ;
-.
-net:individual_system_SolarSystem
-  rdf:type net:Individual_Net ;
-  :role_name net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_name net:value_SolarSystem_blankNode ;
-  net:coverBaseNode :leaf_system_p ;
-  net:coverNode :leaf_system_p ;
-  net:hasIndividualLabel "Solar System" ;
-  net:hasMotherClassName net:atomClass_system_p ;
-  net:hasMotherClassNet net:atomClass_system_p ;
-  net:hasMotherClassNet net:atomClass_system_s ;
-  net:hasMotherClassNet net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:hasMotherClassNet net:compositeClass_system-hasPart-sun-and-object-hasPart-object_s ;
-  net:hasMotherClassNet net:compositeClass_system-hasPart-sun-and-object-hasPart-sun_s ;
-  net:hasMotherClassNet net:compositeClass_system-hasPart-sun-and-object_s ;
-  net:hasNaming "system" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:inverse_direction
-  rdf:type owl:NamedIndividual ;
-.
-net:list
-  rdf:type owl:Class ;
-  rdfs:label "list" ;
-  rdfs:subClassOf net:Type ;
-.
-net:listBy
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "list by" ;
-  rdfs:subPropertyOf net:typeProperty ;
-.
-net:listGuiding
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "Guiding connector of a list (or, and)" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:listOf
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "list of" ;
-  rdfs:subPropertyOf net:typeProperty ;
-.
-net:logicalSet_and_a
-  rdf:type net:Logical_Set_Net ;
-  :role_op1 net:atomClass_sun_s2 ;
-  :role_op1 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_op2 net:atomClass_object_o ;
-  :role_op2 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:bindPropertyNet net:atomProperty_hasPart_p9 ;
-  net:bindRestriction net:restriction_hasPart_object ;
-  net:bindRestriction net:restriction_hasPart_sun ;
-  net:containsNet net:atomClass_object_o ;
-  net:containsNet net:atomClass_sun_s2 ;
-  net:containsNet1 net:atomClass_sun_s2 ;
-  net:containsNet2 net:atomClass_object_o ;
-  net:coverBaseNode :leaf_and_a ;
-  net:coverNode :leaf_and_a ;
-  net:hasLogicalConstraint "AND" ;
-  net:hasNaming "hasPart-sun-and-object" ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:modCat1
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "Modality Category (level 1)" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:modCat2
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "Modality Category (level 2)" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-net:netProperty
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "netProperty" ;
-.
-net:normal_direction
-  rdf:type owl:NamedIndividual ;
-.
-net:objectProperty
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "object attribute" ;
-.
-net:objectType
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "object type" ;
-  rdfs:subPropertyOf net:objectProperty ;
-.
-net:objectValue
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "valuations"@fr ;
-  rdfs:subPropertyOf net:objectProperty ;
-.
-net:phenomena_conjunction-AND_a
-  rdf:type net:Phenomena_Net ;
-  :role_op1 net:atomClass_sun_s2 ;
-  :role_op1 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_op2 net:atomClass_object_o ;
-  :role_op2 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:coverBaseNode :leaf_and_a ;
-  net:coverNode :leaf_and_a ;
-  net:hasNaming "conjunction-AND" ;
-  net:hasPhenomenaRef "and" ;
-  net:hasPhenomenaType :phenomena_conjunction_and ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:phenomena_conjunction-OR_o3
-  rdf:type net:Phenomena_Net ;
-  :role_op1 net:atomProperty_direct_d ;
-  :role_op1 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_op2 net:atomProperty_direct_d2 ;
-  :role_op2 net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  :role_op2 net:compositeProperty_not-direct_d2 ;
-  net:coverBaseNode :leaf_or_o3 ;
-  net:coverNode :leaf_or_o3 ;
-  net:hasNaming "conjunction-OR" ;
-  net:hasPhenomenaRef "or" ;
-  net:hasPhenomenaType :phenomena_conjunction_or ;
-  net:hasStructure "SSC-01-01" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:relation
-  rdf:type owl:Class ;
-  rdfs:label "relation" ;
-  rdfs:subClassOf net:Type ;
-.
-net:relationOf
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "relation of" ;
-  rdfs:subPropertyOf net:typeProperty ;
-.
-net:restriction_binding_system-hasPart-sun-and-object
-  rdf:type net:Restriction_Net ;
-  net:coverBaseNode :leaf_gravitation_g ;
-  net:coverNode :leaf_and_a ;
-  net:coverNode :leaf_bind-01_b ;
-  net:coverNode :leaf_gravitation_g ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_system_s ;
-  net:coverTargetNode :leaf_and_a ;
-  net:coverTargetNode :leaf_bind-01_b ;
-  net:coverTargetNode :leaf_hasPart_p9 ;
-  net:coverTargetNode :leaf_system_s ;
-  net:hasNaming "gravitation-binding-system-hasPart-sun-and-object" ;
-  net:hasRestrictionNetValue net:compositeClass_system-hasPart-sun-and-object_s ;
-  net:hasRestrictionOnProperty net:atomProperty_bind_b ;
-.
-net:restriction_hasPart_object
-  rdf:type net:Restriction_Net ;
-  :role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:coverBaseNode :leaf_system_s ;
-  net:coverNode :leaf_and_a ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_object_o ;
-  net:coverNode :leaf_system_s ;
-  net:coverTargetNode :leaf_hasPart_p9 ;
-  net:coverTargetNode :leaf_object_o ;
-  net:hasNaming "system-hasPart-sun-and-object-hasPart-object" ;
-  net:hasRestrictionNetValue net:atomClass_object_o ;
-  net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
-.
-net:restriction_hasPart_sun
-  rdf:type net:Restriction_Net ;
-  :role_domain net:compositeClass_orbit-hasManner-conjunction-OR_o2 ;
-  net:coverBaseNode :leaf_system_s ;
-  net:coverNode :leaf_and_a ;
-  net:coverNode :leaf_hasPart_p9 ;
-  net:coverNode :leaf_sun_s2 ;
-  net:coverNode :leaf_system_s ;
-  net:coverTargetNode :leaf_hasPart_p9 ;
-  net:coverTargetNode :leaf_sun_s2 ;
-  net:hasNaming "system-hasPart-sun-and-object-hasPart-sun" ;
-  net:hasRestrictionNetValue net:atomClass_sun_s2 ;
-  net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
-.
-net:state_property
-  rdf:type owl:Class ;
-  rdfs:label "stateProperty" ;
-  rdfs:subClassOf net:Type ;
-.
-net:type
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "type "@fr ;
-  rdfs:subPropertyOf net:netProperty ;
-.
-net:typeProperty
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "type property" ;
-.
-net:unary_list
-  rdf:type owl:Class ;
-  rdfs:label "unary-list" ;
-  rdfs:subClassOf net:list ;
-.
-net:value_SolarSystem_blankNode
-  rdf:type net:Value_Net ;
-  net:hasNaming "Solar System" ;
-  net:hasStructure "SSC-01-01" ;
-  net:hasValueLabel "Solar System" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:value_negative_blankNode
-  rdf:type net:Value_Net ;
-  net:hasNaming "negative" ;
-  net:hasStructure "SSC-01-01" ;
-  net:hasValueLabel "negative" ;
-  net:trackProgress net:initialized ;
-  net:trackProgress net:relation_propagated ;
-.
-net:verbClass
-  rdf:type owl:AnnotationProperty ;
-  rdfs:label "verb class" ;
-  rdfs:subPropertyOf net:objectValue ;
-.
-[
-  rdf:type owl:AllDisjointClasses ;
-  owl:members (
-      sys:Degree
-      sys:Entity
-      sys:Feature
-    ) ;
-].
+###  Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi
diff --git a/tests/test_rule.py b/tests/test_rule.py
index fdd76571ee50c52d2a5a4a557e61d31bb6fdc9ab..ac61dc2c82c60715e405f421050c81e65a9311aa 100644
--- a/tests/test_rule.py
+++ b/tests/test_rule.py
@@ -20,6 +20,7 @@ TEST_GRAPH = f'{INPUT_DIR_PATH}testGraph1.ttl'
 from context import tenet
 from tenet.febTransduction import phenomena_application_or as test_rule
 from tenet.febTransduction import query_builder
+from tenet.febTransduction import prefix_handle
 
 INDENT_STR = '            '
 
@@ -32,9 +33,7 @@ INDENT_STR = '            '
 def load_test_graph():
     print(f'\n -- Test Graph Loading')
     graph = Graph()
-    graph.bind('amr', Namespace('https://amr.tetras-libre.fr/rdf/schema#'))
-    graph.bind('net', Namespace('https://tenet.tetras-libre.fr/semantic-net#'))
-    graph.bind('base-out', Namespace('https://tenet.tetras-libre.fr/base-ontology#'))
+    prefix_handle.update_graph_namespacemanager(graph)
     graph.parse(TEST_GRAPH)
     print(f" ----- Graph Loaded ({len(graph)})")
     return graph
diff --git a/tests/test_transduction_prefix_handle.py b/tests/test_transduction_prefix_handle.py
new file mode 100644
index 0000000000000000000000000000000000000000..545ca2f63084888185a408d25efc83fca1035f1b
--- /dev/null
+++ b/tests/test_transduction_prefix_handle.py
@@ -0,0 +1,90 @@
+#!/usr/bin/python3.10
+# -*-coding:Utf-8 -*
+
+#==============================================================================
+# TENET: Extraction Rule Test
+#------------------------------------------------------------------------------
+# Script to test rules under development
+#==============================================================================
+
+import subprocess, os
+from rdflib import Graph
+from rdflib import Namespace
+from rdflib.namespace import NamespaceManager
+
+FILE_PATH = f'{os.path.dirname(os.path.abspath(__file__))}'
+INPUT_DIR_PATH = f'{FILE_PATH}/input/'
+OUTPUT_DIR_PATH = f'{FILE_PATH}/output/'
+TEST_GRAPH = f'{INPUT_DIR_PATH}testGraph1.ttl'
+
+from context import tenet
+from tenet.febTransduction import phenomena_application_or as test_rule
+from tenet.febTransduction import prefix_handle
+
+INDENT_STR = '            '
+
+
+
+#==============================================================================
+# Useful Methods
+#==============================================================================
+
+def load_test_graph():
+    print(f'\n -- Test Graph Loading')
+    graph = Graph()
+    graph.parse(TEST_GRAPH)
+    print(f" ----- Graph Loaded ({len(graph)})")
+    return graph
+
+
+#==============================================================================
+# Development Test
+#==============================================================================
+
+# None
+    
+
+#==============================================================================
+# Unit Test
+#==============================================================================
+
+def unittest_get_prefix_dict():
+    print('\n -- Get Prefix Dict')
+    prefix_dict = prefix_handle.get_prefix_dict()
+    print(prefix_dict)
+  
+def unittest_get_prefix_list():
+    print('\n -- Get Prefix List')
+    prefix_dict = prefix_handle.get_prefix_list()
+    print(prefix_dict)      
+
+def unittest_add_prefix_to_graph(graph):
+    print('\n -- Add Prefix to Graph')
+    prefix_handle.update_graph_namespacemanager(graph)
+    for n in graph.namespace_manager.namespaces():
+        print(n)
+    
+    
+
+
+#==============================================================================
+# Test Script
+#==============================================================================
+
+if __name__ == '__main__':
+      
+    print('\n *** Test Preparation ***')
+    graph = load_test_graph()
+    print('\n \n')
+    
+    print('\n *** Development Test ***')
+    pass
+    print('\n \n')
+    
+    print('\n *** Unit Test ***')
+    unittest_get_prefix_dict()
+    unittest_get_prefix_list()
+    unittest_add_prefix_to_graph(graph)
+    print('\n \n')
+
+    print('\n *** - ***')
\ No newline at end of file