--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedAssociation.ttl Wed Jul 11 16:47:30 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedAssociation.ttl Wed Jul 11 16:50:34 2012 +0100
@@ -10,26 +10,26 @@
:steve;
prov:qualifiedAssociation [
a prov:Association;
- prov:agent :derek;
- prov:role :illustrationist;
+ prov:agent :derek;
+ prov:hadRole :illustrationist;
rdfs:comment "Derek made the illustration"@en
];
prov:qualifiedAssociation [
a prov:Association;
- prov:agent :steve;
- prov:role :stylist;
+ prov:agent :steve;
+ prov:hadRole :stylist;
prov:hadPlan :style-guide;
rdfs:comment "Steve helped Derek conform with the publisher's style guide."@en
];
prov:qualifiedAssociation [
a prov:Association;
- prov:agent :derek;
- prov:role :stylist;
+ prov:agent :derek;
+ prov:hadRole :stylist;
rdfs:comment "But Derek also did some styling of his own."@en
] .
-:derek a prov:Person, prov:Agent, prov:Entity .
-:steve a prov:Person, prov:Agent, prov:Entity .
+:derek a prov:Person, prov:Agent .
+:steve a prov:Person, prov:Agent .
:illustratonist a prov:Role .
:stylist a prov:Role .
--- a/model/prov-dm.html Wed Jul 11 16:47:30 2012 +0100
+++ b/model/prov-dm.html Wed Jul 11 16:50:34 2012 +0100
@@ -68,12 +68,31 @@
// function to replace figcaption since not allowed by prov rules, and not transformed by respec.js
function updateFigCaptions() {
+ var figureCount=1;
+
$('figcaption').each(function(index) {
var myid=$(this).attr('id');
-
-
- $(this).replaceWith(function(){return $('<span>').addClass('figcaption').attr('id',myid).append($(this).contents())});
+ var mycount=figureCount++;
+
+ $(this).replaceWith(function(){return $('<span>').addClass('figcaption').attr('data-count', mycount).attr('id',myid).append("Figure " + mycount)
+.append($('<sup>').append($('<a>').addClass('internalDFN').attr('href','#'+myid).append($('<span>').addClass('diamond').append(" ◊:")))).append(" ")
+.append($(this).contents())});
+ });
+ }
+
+ // function to update caption with linkable diamond
+ function updateCaptions() {
+ var tableCount=1;
+
+ $('caption').each(function(index) {
+
+ var myid=$(this).attr('id');
+ var mycount=tableCount++;
+
+ $(this).attr('data-count', mycount)
+.prepend($('<span>').append("Table " + mycount)
+ .append($('<sup>').append($('<a>').addClass('internalDFN').attr('href','#'+myid).append($('<span>').addClass('diamond').append(" ◊:")))).append(" "))
});
}
@@ -200,6 +219,7 @@
$('#glossary_div').html(glossary_string)
updateGlossaryRefs();
updateFigCaptions();
+ updateCaptions();
updateExamples();
updateExamplesRefs();
@@ -261,7 +281,7 @@
"URL: <a href=\"http://www.w3.org/TR/prov-constraints/\">http://www.w3.org/TR/prov-constraints/</a>",
"PROV-N":
- "Luc Moreau and Paolo Missier (eds.) "+
+ "Luc Moreau and Paolo Missier (eds.) James Cheney, Stian Soiland-Reyes "+
"<a href=\"http://www.w3.org/TR/prov-n/\"><cite>PROV-N: The Provenance Notation</cite></a>. "+
"2011, Working Draft. "+
"URL: <a href=\"http://www.w3.org/TR/prov-n/\">http://www.w3.org/TR/prov-n/</a>",
@@ -279,6 +299,7 @@
"URL: <a href=\"http://www.omg.org/spec/UML/2.0/Superstructure/PDF/\">http://www.omg.org/spec/UML/2.0/Superstructure/PDF/</a>",
"RDF-CONCEPTS11":
+ "Richard Cyganiak and David Wood (eds.) " +
"RDF 1.1 Concepts and Abstract Syntax "+
"<a href=\"http://www.w3.org/TR/rdf11-concepts/\"><cite>RDF 1.1 Concepts and Abstract Syntax</cite></a>. "+
"URL: <a href=\"http://www.w3.org/TR/rdf11-concepts/\">http://www.w3.org/TR/rdf11-concepts/</a>",
@@ -301,7 +322,7 @@
// if your specification has a subtitle that goes below the main
// formal title, define it here
- subtitle : "Final review before Last Call Vote (WD6) (<a href=\"diff.html\">Diffs since last release</a>)",
+ subtitle : "Version for Last Call Vote (WD6) (<a href=\"diff.html\">Diffs since last release</a>)",
// if you wish the publication date to be other than today, set this
@@ -446,22 +467,19 @@
interchange of provenance information in heterogeneous environments such as the Web. The specifications are:
<ul>
<li> PROV-DM, the PROV data model for provenance (this document);</li>
-<li> PROV-CONSTRAINTS, a set of constraints applying to the PROV data model;</li>
-<li> PROV-N, a notation for provenance aimed at human consumption;</li>
-<li> PROV-O, the PROV ontology, an OWL2 ontology allowing the mapping of PROV to RDF;</li>
-<li> PROV-AQ, the mechanisms for accessing and querying provenance; </li>
-<li> PROV-PRIMER, a primer for the PROV data model;</li>
-<li> PROV-SEM, a formal semantics for the PROV data model;</li>
-<li> PROV-XML, an XML schema for the PROV data model.</li>
+<li> PROV-CONSTRAINTS, a set of constraints applying to the PROV data model [[PROV-CONSTRAINTS]];</li>
+<li> PROV-N, a notation for provenance aimed at human consumption [[PROV-N]];</li>
+<li> PROV-O, the PROV ontology, an OWL2 ontology allowing the mapping of PROV to RDF [[PROV-O]];</li>
+<li> PROV-AQ, the mechanisms for accessing and querying provenance [[PROV-AQ]]; </li>
+<li> PROV-PRIMER, a primer for the PROV data model [[PROV-PRIMER]].</li>
</ul>
<h4>How to read the PROV Family of Specifications</h4>
<ul>
<li>The primer is the entry point to PROV offering an introduction to the provenance model.</li>
-<li>The Linked Data and Semantic Web community should focus on PROV-O defining PROV classes and properties specified in an OWL2 ontology. For further details, PROV-DM and PROV-CONSTRAINTS specify the constraints applicable to the data model, and its interpretation. PROV-SEM provides a mathematical semantics.</li>
-<li>The XML community should focus on PROV-XML defining an XML schema for PROV. Further details can also be found in PROV-DM, PROV-CONSTRAINTS, and PROV-SEM.</li>
+<li>The Linked Data and Semantic Web community should focus on PROV-O defining PROV classes and properties specified in an OWL2 ontology. For further details, PROV-DM and PROV-CONSTRAINTS specify the constraints applicable to the data model, and its interpretation. </li>
<li>Developers seeking to retrieve or publish provenance should focus on PROV-AQ.</li>
<li>Readers seeking to implement other PROV serializations
-should focus on PROV-DM and PROV-CONSTRAINTS. PROV-O, PROV-N, PROV-XML offer examples of mapping to RDF, text, and XML, respectively.</li>
+should focus on PROV-DM and PROV-CONSTRAINTS. PROV-O and PROV-N offer examples of mapping to RDF and text, respectively.</li>
</ul>
</section>
@@ -616,7 +634,7 @@
<div style="text-align: left;">
<table class="thinborder" style="margin-left: auto; margin-right: auto;">
-<caption id="namespace-table">Table 1: Prefix and Namespaces used in this specification</caption>
+<caption id="namespace-table">Prefix and Namespaces used in this specification</caption> <!-- Table 1-->
<tr><td><a><b>prefix</b></a></td><td><b>namespace uri</b></td> <td><b>definition</b></td></tr>
<tr><td><a>prov</a></td><td>http://www.w3.org/ns/prov#</td><td>The PROV namespace (see <a class="section-ref" href="#term-NamespaceDeclaration"><span>TBD</span></a>)</td></tr>
<tr><td><a>xsd</a></td><td>http://www.w3.org/2000/10/XMLSchema#</td><td>XML Schema Namespace [[!XMLSCHEMA11-2]]</td></tr>
@@ -656,7 +674,7 @@
<figure style="max-width: 70%; " id="prov-core-structures-top">
<!-- <img src="../images/OverviewDiagram.png" alt="PROV Core Structures" style="max-width: 70%; " /> -->
<img src="uml/essentials.png" alt="PROV Core Structures" style="max-width: 70%; " /><br>
-<figcaption id="prov-core-structures">Figure 1: PROV Core Structures</figcaption>
+<figcaption id="prov-core-structures">PROV Core Structures</figcaption>
</figure>
</div>
@@ -673,7 +691,7 @@
<div style="text-align: left;">
<table class="thinborder" style="margin-left: auto; margin-right: auto;">
-<caption id="overview-types-and-relations">Table 2: Mapping of PROV core concepts to types and relations</caption>
+<caption id="overview-types-and-relations">Mapping of PROV core concepts to types and relations</caption> <!-- Table 2 -->
<tr><td><a><b>PROV Concepts</b></a></td><td><b>PROV-DM types or relations</b></td><td><b>Name</b></td><td><b>Overview</b></td></tr>
<tr>
<td><a>Entity</a></td><td rowspan="3" style="text-align: center;">PROV-DM Types</td><td><a title="dfn-Entity">Entity</a></td><td style="text-align: center;"><a class="section-ref" href="#section-entity-activity"><span>TBD</span></a></td></tr>
@@ -1130,7 +1148,7 @@
<div id="components-overview-div" style="text-align: center;">
<table class="thinborder" style="margin-left: auto; margin-right: auto;">
-<caption id="components-overview">Table 3: Components Overview</caption>
+<caption id="components-overview">Components Overview</caption> <!-- Table 3: -->
<tr><td style="border-width: 0px; "></td><td>Component</td><td>Core <br>Structures</td><td>Overview</td><td>Specification</td><td>Description</td></tr>
<tr><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td></tr>
<tr><td style=" padding: 8px;">1</td><td style="text-align: left;">Entities and Activities</td><td>✔</td><td><a href="#section-entity-activity">2.1.1</a></td><td><a href="#component1">5.1</a></td><td style="text-align: left;">about entities and activities, and their interrelations</td></tr>
@@ -1239,7 +1257,7 @@
<div style="text-align: center; ">
<figure id="prov-a-document1-top">
<img src="images/w3-publication3.png" alt="Provenance of a Document (1)" style="max-width: 98%; "/><br>
-<figcaption id="prov-a-document1">Figure 2: Provenance of a Document (1)</figcaption>
+<figcaption id="prov-a-document1">Provenance of a Document (1)</figcaption> <!-- Figure 2 -->
</figure>
</div>
@@ -1330,7 +1348,7 @@
<div style="text-align: center;">
<figure id="prov-a-document2-top">
<img src="images/w3-publication1.png" alt="Provenance of a Document (2)" style="max-width: 90%; "/><br>
-<figcaption id="prov-a-document2">Figure 3: Provenance of a Document (2)</figcaption>
+<figcaption id="prov-a-document2">Provenance of a Document (2)</figcaption> <!-- figure 3 -->
</figure>
</div>
@@ -1465,7 +1483,7 @@
<area title="derivations" href="#component3" coords="80,0,210,70" alt="derivations" shape="rect"/>
<area title="agents/responsibility" href="#component2" coords="0,0,70,220" alt="agents/responsibility" shape="rect"/>
</map><br>
-<figcaption id="prov-dm-components">Figure 4: PROV-DM Components</figcaption>
+<figcaption id="prov-dm-components">PROV-DM Components</figcaption> <!-- Figure 4 -->
</figure>
</div>
@@ -1478,7 +1496,7 @@
<div id="relations-at-a-glance-div" style="text-align: center;">
<table class="thinborder" style="margin-left: auto; margin-right: auto;">
-<caption id="relations-at-a-glance">Table 4: PROV-DM Relations At a Glance</caption>
+<caption id="relations-at-a-glance">PROV-DM Relations At a Glance</caption> <!-- Table 4 -->
<tr><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td colspan="6">Object</td></tr>
<tr><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td colspan="2">Entity</td><td colspan="2">Activity</td><td colspan="2">Agent</td></tr>
<tr><td rowspan="3">Subject</td><td>Entity</td><td colspan="2"><div class="component2-color"><a class="essential">WasDerivedFrom</a><br><a>Revision</a><br><a>Quotation</a><br><a>PrimarySource</a></div><div class="component5-color"><a>AlternateOf</a><br><a>SpecializationOf</a><br><a>MentionOf</a></div></td><td class="component1-color"><a class="essential"
@@ -1502,7 +1520,7 @@
<div id="prov-dm-types-and-relations-fig" style="text-align: left;">
<table class="thinborder" style="margin-left: auto; margin-right: auto;">
-<caption id="prov-dm-types-and-relations">Table 5: PROV-DM Types and Relations</caption>
+<caption id="prov-dm-types-and-relations">PROV-DM Types and Relations</caption> <!-- Table 5-->
<tr><td><a><b>Type or Relation Name</b></a></td><td><b>Representation in the PROV-N notation</b></td><td><b>Component</b></td></tr>
<tr><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td></tr>
@@ -1568,7 +1586,7 @@
<figure style="max-width: 95%; ">
<!--<img src="images/Entities-Activities.png" alt="entities and activities"/> -->
<img src="uml/component1.png" alt="entities and activities"/><br>
-<figcaption id="figure-component1">Figure 5: Entities and Activities Component Overview</figcaption>
+<figcaption id="figure-component1">Entities and Activities Component Overview</figcaption> <!-- Figure 5 -->
</figure>
</div>
@@ -2016,7 +2034,7 @@
<figure style="max-width: 95%; ">
<!-- <img src="images/Derivation.png" alt="derivation"/> -->
<img src="uml/component2.png" alt="derivation"/><br>
-<figcaption id="figure-component2">Figure 6: Derivation Component Overview</figcaption>
+<figcaption id="figure-component2">Derivation Component Overview</figcaption> <!-- Figure 6 -->
</figure>
</div>
@@ -2242,7 +2260,7 @@
<figure style="max-width: 95%; ">
<!-- <img src="images/Agents-Responsibility.png" alt="agents and responsibilities"/> -->
<img src="uml/component3.png" alt="agents and responsibilities"/><br>
-<figcaption id="figure-component3">Figure 7: Agents and Responsibility Overview</figcaption>
+<figcaption id="figure-component3">Agents and Responsibility Overview</figcaption> <!-- Figure 7 -->
</figure>
</div>
@@ -2252,7 +2270,7 @@
<div style="text-align: center;">
<figure style="max-width: 95%; ">
<img src="uml/Component3b.png" alt="Influence"/><br>
-<figcaption id="figure-component3b">Figure 8: Influence</figcaption>
+<figcaption id="figure-component3b">Influence</figcaption> <!-- Figure 8 -->
</figure>
</div>
@@ -3251,7 +3269,7 @@
<div id="attributes-at-a-glance-divz" style="text-align: left;">
<table class="thinborder" style="margin-left: auto; margin-right: auto;">
-<caption id="attributes-at-a-glance">Table 6: PROV-DM Attributes At a Glance</caption>
+<caption id="attributes-at-a-glance">PROV-DM Attributes At a Glance</caption> <!-- Table 6 -->
<tr><td><b>Attribute</b></td><td><b>Allowed In</b></td><td><b>value</b></td><td><b>Section</b></td></tr>
<tr><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td style="border-width: 0px; "><td style="border-width: 0px; "></td></tr>
<tr><td><a title="label">prov:label</a></td><td><em>any construct</em></td><td>A <a>Value</a> of type <a class="section-ref" href="http://www.w3.org/TR/xmlschema11-2/#string">xsd:string</a></td><td><a class="section-ref" href="#term-attribute-label"><span>TBD</span></a> </td></tr>
@@ -3357,7 +3375,7 @@
<table class="thinborder" style="margin-left: auto; margin-right: auto;">
-<caption id="prov-dm-predefined-types">Table 7: PROV-DM Predefined Types</caption>
+<caption id="prov-dm-predefined-types">PROV-DM Predefined Types</caption> <!-- Table 7 -->
<tr><td><b>Type</b></td><td><b>Specification</b></td><td><b>Core concept</b></td></tr>
<tr><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td><td style="border-width: 0px; "></td></tr>
<tr><td><a title="bundle"><span class="name">prov:Bundle</span></a></td><td><a class="section-ref" href="#term-bundle"><span>TBD</span></a></td><td><a>Entity</a></td></tr>
--- a/model/prov-n.html Wed Jul 11 16:47:30 2012 +0100
+++ b/model/prov-n.html Wed Jul 11 16:50:34 2012 +0100
@@ -2096,6 +2096,26 @@
</section>
-->
+<section id="exceptions-summary">
+<h3>Summary of additional validity rules for grammar productions</h3>
+
+<div style="text-align: left;">
+<table border="1" style="margin-left: auto; margin-right: auto;">
+<caption id="validity-rules-table">Summary of additonal rules for grammar productions</caption>
+<tr><td><a><b>Production</b></a></td>
+ <td><b>Syntactically correct forms</b></td>
+ <td><b>Additional semantic rule</b></td>
+</tr>
+<tr><td><a class="grammarRef" href="#prod-generationExpression">Generation expression</a></td>
+ <td><span class="name">wasGeneratedBy(e2, -, -)</span><p/><span class="name">wasGeneratedBy(-; e2, -, -)</span></td>
+ <td>At least one of <a href="http://www.w3.org/TR/prov-dm/#generation.id"><span class='attribute'>id</span></a>, <a href="http://www.w3.org/TR/prov-dm/#generation.activity"><span class='attribute'>activity</span></a>, <a href="http://www.w3.org/TR/prov-dm/#generation.time"><span class='attribute'>time</span></a>, and <a href="http://www.w3.org/TR/prov-dm/#generation.attributes"><span class='attribute'>attributes</span></a> MUST be present.</td>
+</tr>
+</table>
+</div>
+
+
+
+</section>
<section id="subexpressions">
<h3>Further Expressions</h3>
@@ -2103,8 +2123,6 @@
This section defines further expressions of PROV-N.
-
-
<section id="expression-identifier">
<h4>Identifier</h4>
--- a/ontology/ProvenanceOntology.owl Wed Jul 11 16:47:30 2012 +0100
+++ b/ontology/ProvenanceOntology.owl Wed Jul 11 16:50:34 2012 +0100
@@ -202,9 +202,9 @@
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#alternateOf">
<rdfs:label>alternateOf</rdfs:label>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-alternate</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-alternate</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-alternate</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-alternate</n>
<definition xml:lang="en">Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.</definition>
<category>expanded</category>
<component>alternate</component>
@@ -223,7 +223,7 @@
<rdfs:label>asInBundle</rdfs:label>
<rdfs:comment xml:lang="en">The prov:mentionOf and prov:asInBundle properties are "at risk" (http://www.w3.org/2005/10/Process-20051014/tr#cfi) and may be removed from this specification based on feedback. Please send feedback to public-prov-comments@w3.org.
-These two properties are used to encode the PROV-DM's Mention construct (http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </rdfs:comment>
+These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </rdfs:comment>
<inverse>contextOf</inverse>
<category>expanded</category>
<rdfs:comment xml:lang="en">When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.</rdfs:comment>
@@ -351,7 +351,7 @@
<rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
</owl:ObjectProperty>
<owl:Axiom>
- <dm>http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-collection</dm>
+ <dm>http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-collection</dm>
<rdfs:comment xml:lang="en">A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.</rdfs:comment>
<owl:annotatedProperty rdf:resource="&rdfs;range"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#Entity"/>
@@ -499,14 +499,14 @@
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#mentionOf">
<rdfs:label>mentionOf</rdfs:label>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-mention</dm>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention</dm>
<inverse>hadMention</inverse>
<category>expanded</category>
<rdfs:comment>When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.</rdfs:comment>
<definition xml:lang="en">The mention of an Entity in a Bundle (containing a description of this Entity) is another Entity that is a specialization of the former and that presents the Bundle as a further additional aspect. </definition>
<rdfs:comment xml:lang="en">The prov:mentionOf and prov:asInBundle properties are "at risk" (http://www.w3.org/2005/10/Process-20051014/tr#cfi) and may be removed from this specification based on feedback. Please send feedback to public-prov-comments@w3.org.
-These two properties are used to encode the PROV-DM's Mention construct (http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </rdfs:comment>
+These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. </rdfs:comment>
<rdfs:comment xml:lang="en">prov:asInBundle is used to cite the Bundle in which the generalization was mentioned.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
@@ -757,9 +757,9 @@
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#specializationOf">
<rdfs:label>specializationOf</rdfs:label>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-specialization</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-specialization</n>
<component>alternate</component>
<category>expanded</category>
<inverse>generalizationOf</inverse>
@@ -794,6 +794,19 @@
</owl:ObjectProperty>
+ <!-- http://www.w3.org/ns/prov#qualifiedMembership -->
+
+ <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedMembership">
+ <rdfs:label xml:lang="en">qualifiedMembership</rdfs:label>
+ <category>collections</category>
+ <component>collections</component>
+ <rdfs:comment xml:lang="en">The collection included the specified membership of keys-values.</rdfs:comment>
+ <editorialNote xml:lang="en">This property is NOT inverse functional, since the membership of many distinct KeyValuePairs can be qualified using a single instance of prov:Membership.</editorialNote>
+ <inverse>membershipOf</inverse>
+ <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Collection"/>
+ <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Membership"/>
+ </owl:ObjectProperty>
+
<!-- http://www.w3.org/ns/prov#wasAssociatedWith -->
@@ -955,7 +968,7 @@
</rdfs:range>
</owl:ObjectProperty>
<owl:Axiom>
- <dm>http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-influence</dm>
+ <dm>http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence</dm>
<definition>influencer: an identifier (o1) for an ancestor entity, activity, or agent that the former depends on;</definition>
<owl:annotatedProperty rdf:resource="&rdfs;range"/>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
@@ -970,7 +983,7 @@
</owl:annotatedTarget>
</owl:Axiom>
<owl:Axiom>
- <dm>http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-influence</dm>
+ <dm>http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence</dm>
<definition>influencee: an identifier (o2) for an entity, activity, or agent; </definition>
<owl:annotatedProperty rdf:resource="&rdfs;domain"/>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
@@ -1079,7 +1092,7 @@
</owl:ObjectProperty>
<owl:Axiom>
<rdfs:comment>Revision is a derivation (see http://www.w3.org/TR/prov-dm/#term-Revision). Moreover, according to
-http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#term-Revision 23 April 2012 'wasRevisionOf is a strict sub-relation of wasDerivedFrom since two entities e2 and e1 may satisfy wasDerivedFrom(e2,e1) without being a variant of each other.'</rdfs:comment>
+http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#term-Revision 23 April 2012 'wasRevisionOf is a strict sub-relation of wasDerivedFrom since two entities e2 and e1 may satisfy wasDerivedFrom(e2,e1) without being a variant of each other.'</rdfs:comment>
<owl:annotatedProperty rdf:resource="&rdfs;subPropertyOf"/>
<owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
<owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasRevisionOf"/>
@@ -1211,7 +1224,7 @@
<owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#value">
<rdfs:label>value</rdfs:label>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribute-value</dm>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-value</dm>
<category>expanded</category>
<editorialNote>The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue</editorialNote>
<component>entities-activities</component>
@@ -1232,13 +1245,48 @@
///////////////////////////////////////////////////////////////////////////////////////
-->
+
<!-- http://www.w3.org/2002/07/owl#Thing -->
<owl:Class rdf:about="&owl;Thing"/>
-
+
+
+<!-- http://www.w3.org/ns/prov#Membership -->
+
+ <owl:Class rdf:about="http://www.w3.org/ns/prov#Membership">
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
+ <editorsDefinition xml:lang="en">An optional set of descriptions about the membership of KeyValuePairs in a prov:Dictionary.</editorsDefinition>
+ <rdfs:comment xml:lang="en">The descriptions on this Membership applies to the memberships of all KeyValuePairs cited by prov:pair.</rdfs:comment>
+ <category>collections</category>
+ <component>collections</component>
+ <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#hadMember"/>
+ </owl:Class>
+
+
+ <!-- http://www.w3.org/ns/prov#EmptyCollection -->
+
+ <owl:Class rdf:about="http://www.w3.org/ns/prov#EmptyCollection">
+ <rdfs:label xml:lang="en">EmptyCollection</rdfs:label>
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Collection"/>
+ <component>collections</component>
+ <prov-dm>http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-dictionary</prov-dm>
+ <category>collections</category>
+ <definition xml:lang="en">An empty collection is a collection without members.</definition>
+ <rdfs:comment xml:lang="en">An empty dictionary.</rdfs:comment>
+ </owl:Class>
+
+ <!-- http://www.w3.org/ns/prov#CompleteCollection -->
+
+ <owl:Class rdf:about="http://www.w3.org/ns/prov#CompleteCollection">
+ <rdfs:label xml:lang="en">CompleteMembership</rdfs:label>
+ <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Collection"/>
+ <category>collections</category>
+ <rdfs:comment xml:lang="en">Indicates that no other member belongs to the collection, that is all the prov:member stated for this CompleteMembership constitutes all members of the collection.</rdfs:comment>
+ <component xml:lang="en">collections</component>
+ </owl:Class>
<!-- http://www.w3.org/ns/prov#Activity -->
@@ -1246,9 +1294,9 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Activity">
<rdfs:label>Activity</rdfs:label>
<owl:disjointWith rdf:resource="http://www.w3.org/ns/prov#Entity"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Activity</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Activity</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Activity</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Activity</n>
<component>entities-activities</component>
<category>starting-point</category>
<definition>An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.</definition>
@@ -1284,8 +1332,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Agent">
<rdfs:label>Agent</rdfs:label>
<owl:disjointWith rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Agent</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Agent</n>
<definition xml:lang="en">An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. </definition>
<category>starting-point</category>
<component>agents-responsibility</component>
@@ -1314,8 +1362,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Association">
<rdfs:label>Association</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Association</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Association</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Association</n>
<component>agents-responsibility</component>
<rdfs:comment xml:lang="en">An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ].</rdfs:comment>
<category>qualified</category>
@@ -1331,9 +1379,9 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Attribution">
<rdfs:label>Attribution</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribution</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-attribution</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribution</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-attribution</n>
<rdfs:comment xml:lang="en">An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ].</rdfs:comment>
<definition xml:lang="en">Attribution is the ascribing of an entity to an agent.
@@ -1351,8 +1399,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Bundle">
<rdfs:label>Bundle</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-bundle-entity</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-bundle-declaration</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-bundle-entity</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-bundle-declaration</n>
<category>expanded</category>
<definition xml:lang="en">A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.</definition>
<rdfs:comment xml:lang="en">Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O.</rdfs:comment>
@@ -1366,7 +1414,7 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Collection">
<rdfs:label>Collection</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-collection</dm>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-collection</dm>
<component>collections</component>
<category>expanded</category>
<definition xml:lang="en">A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections. Many different types of collections exist, such as a sets, dictionaries, or lists. Using Collections, one can express the provenance of the collection itself in addition to that of the members.</definition>
@@ -1380,9 +1428,9 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Communication">
<rdfs:label>Communication</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Communication</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-wasInformedBy</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Communication</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-wasInformedBy</n>
<component>entities-activities</component>
<category>qualified</category>
<rdfs:comment xml:lang="en">An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ].</rdfs:comment>
@@ -1398,8 +1446,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Delegation">
<rdfs:label>Delegation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-delegation</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-delegation</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-delegation</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-delegation</n>
<category>qualified</category>
<rdfs:comment xml:lang="en">An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ].</rdfs:comment>
<definition xml:lang="en">Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.
@@ -1417,9 +1465,9 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Derivation">
<rdfs:label>Derivation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Derivation</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#Derivation-Relation</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Derivation</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#Derivation-Relation</n>
<definition xml:lang="en">A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.</definition>
<component>derivations</component>
<rdfs:comment xml:lang="en">An instance of prov:Derivation provides additional descriptions about the binary prov:wasDerivedFrom relation from some derived prov:Entity to another prov:Entity from which it was derived. For example, :chewed_bubble_gum prov:wasDerivedFrom :unwrapped_bubble_gum; prov:qualifiedDerivation [ a prov:Derivation; prov:entity :unwrapped_bubble_gum; :foo :bar ].</rdfs:comment>
@@ -1436,9 +1484,9 @@
<rdfs:label>End</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-End</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-End</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-End</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-End</n>
<rdfs:comment xml:lang="en">An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ].</rdfs:comment>
<category>qualified</category>
<definition xml:lang="en">End is when an activity is deemed to have ended. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to an entity, known as trigger, that terminated the activity, or to an activity, known as ender that generated the trigger.</definition>
@@ -1454,9 +1502,9 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Entity">
<rdfs:label>Entity</rdfs:label>
<owl:disjointWith rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-entity</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Entity</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-entity</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Entity</n>
<component>entities-activities</component>
<definition xml:lang="en">An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. </definition>
<category>starting-point</category>
@@ -1486,9 +1534,9 @@
<rdfs:label>Generation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Generation</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Generation</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Generation</n>
<rdfs:comment xml:lang="en">An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ].</rdfs:comment>
<category>qualified</category>
<component>entities-activities</component>
@@ -1503,8 +1551,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Influence">
<rdfs:label>Influence</rdfs:label>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-influence</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-influence</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-influence</n>
<component>derivations</component>
<rdfs:comment xml:lang="en">An instance of prov:Influence provides additional descriptions about the binary prov:wasInfluencedBy relation from some influenced Activity, Entity, or Agent to the influencing Activity, Entity, or Agent. For example, :stomach_ache prov:wasInfluencedBy :spoon; prov:qualifiedInfluence [ a prov:Influence; prov:entity :spoon; :foo :bar ] . Because prov:Influence is a broad relation, the more specific relations (Communication, Delegation, End, etc.) should be used when applicable.</rdfs:comment>
<category>qualified</category>
@@ -1520,7 +1568,7 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#InstantaneousEvent">
<rdfs:label>InstantaneousEvent</rdfs:label>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#dfn-event</constraints>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#dfn-event</constraints>
<component>entities-activities</component>
<rdfs:comment xml:lang="en">An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous.</rdfs:comment>
<definition xml:lang="en">The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.</definition>
@@ -1536,9 +1584,9 @@
<rdfs:label>Invalidation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Invalidation</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Invalidation</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Invalidation</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Invalidation</n>
<component>entities-activities</component>
<definition>Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.</definition>
<category>qualified</category>
@@ -1553,8 +1601,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Location">
<rdfs:label>Location</rdfs:label>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribute-location</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-attribute</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-location</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-attribute</n>
<definition xml:lang="en">A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.</definition>
<category>expanded</category>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
@@ -1568,8 +1616,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Organization">
<rdfs:label>Organization</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Agent"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-types</n>
<definition>Agents of type Organization are social institutions such as companies, societies etc.</definition>
<category>expanded</category>
<component>agents-responsibility</component>
@@ -1583,8 +1631,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Person">
<rdfs:label>Person</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Agent"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-types</n>
<category>expanded</category>
<definition xml:lang="en">Agents of type Person are people.</definition>
<component>agents-responsibility</component>
@@ -1598,8 +1646,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Plan">
<rdfs:label>Plan</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Association</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Association</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Association</n>
<definition>A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.</definition>
<rdfs:comment xml:lang="en">There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations.</rdfs:comment>
<category>qualified</category>
@@ -1614,8 +1662,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Quotation">
<rdfs:label>Quotation</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-quotation</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-quotation</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-quotation</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-quotation</n>
<rdfs:comment xml:lang="en">An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ].</rdfs:comment>
<component>derivations</component>
<category>qualified</category>
@@ -1631,8 +1679,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Revision">
<rdfs:label>Revision</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-revision</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Revision</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-revision</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Revision</n>
<component>derivations</component>
<category>qualified</category>
<definition xml:lang="en">A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.</definition>
@@ -1647,8 +1695,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Role">
<rdfs:label>Role</rdfs:label>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribute-role</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-attribute</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-role</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-attribute</n>
<definition xml:lang="en">A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.</definition>
<category>qualified</category>
<component>agents-responsibility</component>
@@ -1663,8 +1711,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#SoftwareAgent">
<rdfs:label>SoftwareAgent</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Agent"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-types</n>
<component>agents-responsibility</component>
<definition xml:lang="en">A software agent is running software.</definition>
<category>expanded</category>
@@ -1678,8 +1726,8 @@
<owl:Class rdf:about="http://www.w3.org/ns/prov#Source">
<rdfs:label>Source</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-primary-source</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-original-source</n>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-primary-source</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-original-source</n>
<definition xml:lang="en">A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.
Because of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.
@@ -1700,9 +1748,9 @@
<rdfs:label>Start</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Start</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Start</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Start</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Start</n>
<component>entities-activities</component>
<category>qualified</category>
<rdfs:comment xml:lang="en">An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] .</rdfs:comment>
@@ -1719,9 +1767,9 @@
<rdfs:label>Usage</rdfs:label>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
<rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
- <constraints rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
- <dm rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Usage</dm>
- <n rdf:datatype="&xsd;anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Usage</n>
+ <constraints rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig</constraints>
+ <dm rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Usage</dm>
+ <n rdf:datatype="&xsd;anyURI">http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Usage</n>
<rdfs:comment xml:lang="en">An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ].</rdfs:comment>
<definition xml:lang="en">Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.</definition>
<category>qualified</category>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-all.graffle Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,5891 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>ActiveLayerIndex</key>
+ <integer>0</integer>
+ <key>ApplicationVersion</key>
+ <array>
+ <string>com.omnigroup.OmniGraffle</string>
+ <string>139.7.0.167456</string>
+ </array>
+ <key>AutoAdjust</key>
+ <true/>
+ <key>BackgroundGraphic</key>
+ <dict>
+ <key>Bounds</key>
+ <string>{{0, 0}, {1677, 1566}}</string>
+ <key>Class</key>
+ <string>SolidGraphic</string>
+ <key>ID</key>
+ <integer>2</integer>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ </dict>
+ <key>BaseZoom</key>
+ <integer>0</integer>
+ <key>CanvasOrigin</key>
+ <string>{0, 0}</string>
+ <key>ColumnAlign</key>
+ <integer>1</integer>
+ <key>ColumnSpacing</key>
+ <real>36</real>
+ <key>CreationDate</key>
+ <string>2012-07-11 11:16:31 +0000</string>
+ <key>Creator</key>
+ <string>David</string>
+ <key>DisplayScale</key>
+ <string>1 0/72 in = 1.0000 in</string>
+ <key>GraphDocumentVersion</key>
+ <integer>8</integer>
+ <key>GraphicsList</key>
+ <array>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1235.4629502311138, 894.80540067346408}, {131, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>190</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>189</integer>
+ <key>Position</key>
+ <real>0.47056445479393005</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasInvalidatedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>186</integer>
+ </dict>
+ <key>ID</key>
+ <integer>189</integer>
+ <key>Points</key>
+ <array>
+ <string>{1347.1023042554825, 846.17096287390802}</string>
+ <string>{1249.0512282930531, 975.02564652386684}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>187</integer>
+ </dict>
+ <key>ID</key>
+ <integer>188</integer>
+ <key>Points</key>
+ <array>
+ <string>{1279.4802400067961, 1000.442985585154}</string>
+ <string>{1380.9840898385942, 1004.3921973390206}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>186</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1381.4837118172754, 975.42358281077168}, {180.52261352539062, 65}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>187</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 prov:wasEndedAt="2012-09-02T01:31:00Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1137.9806179964719, 975.42354678437027}, {141, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>186</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{-0.5, -0.233518}</string>
+ <string>{-0.49144199999999999, 0.26006299999999999}</string>
+ <string>{0.50711799999999996, -0.22408600000000001}</string>
+ <string>{0.50711799999999996, 0.267179}</string>
+ <string>{-0.27431, -0.474028}</string>
+ <string>{0.27977999999999997, -0.47847800000000001}</string>
+ <string>{0.29393799999999998, 0.54304399999999997}</string>
+ <string>{-0.28623199999999999, 0.55380399999999996}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>1</string>
+ <key>g</key>
+ <string>0.805677</string>
+ <key>r</key>
+ <string>0.811737</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :hard_disk_failure}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>184</integer>
+ </dict>
+ <key>ID</key>
+ <integer>185</integer>
+ <key>Points</key>
+ <array>
+ <string>{1394.5628615330397, 844.096527728301}</string>
+ <string>{1443.6243557259106, 881.40906402208611}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1381.4836021524234, 881.71177632766057}, {210.52989196777344, 65}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>184</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 prov:invalidatedAtTime="2012-09-02T01:31:00Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1287.8266471495151, 485.00038815268863}, {137, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>176</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>175</integer>
+ <key>Position</key>
+ <real>0.30919820070266724</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:hadPrimarySource}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>175</integer>
+ <key>Points</key>
+ <array>
+ <string>{1364.7802855780919, 796.49546307957826}</string>
+ <string>{1355, 450}</string>
+ <string>{765.2599779966522, 251.12330562247314}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1175.7550737405406, 451.51421207364177}, {129, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>174</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>173</integer>
+ <key>Position</key>
+ <real>0.35509863495826721</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasGeneratedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ <key>ID</key>
+ <integer>173</integer>
+ <key>Points</key>
+ <array>
+ <string>{1356.6958317697911, 796.7939519294556}</string>
+ <string>{1235.8828777569981, 451}</string>
+ <string>{615.48197931051254, 354.26114611275619}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1127.154317401971, 789.55439252476003}, {128, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>172</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>171</integer>
+ <key>Position</key>
+ <real>0.1655237078666687</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasDerivedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ <key>ID</key>
+ <integer>171</integer>
+ <key>Points</key>
+ <array>
+ <string>{1308.5779455016007, 815.32032298511922}</string>
+ <string>{599.17124109031602, 732.15440894307903}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1127.1521966802261, 747.74219169636388}, {128, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>170</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>169</integer>
+ <key>Position</key>
+ <real>0.17839738726615906</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasDerivedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>169</integer>
+ <key>Points</key>
+ <array>
+ <string>{1320.1333542315372, 805.79520574941671}</string>
+ <string>{597.13415395510117, 547.64670590027526}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1360.5502588932695, 725.66517651569063}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>168</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>167</integer>
+ <key>Position</key>
+ <real>0.54085326194763184</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>143</integer>
+ </dict>
+ <key>ID</key>
+ <integer>167</integer>
+ <key>Points</key>
+ <array>
+ <string>{1381.897598997271, 797.54121110097878}</string>
+ <string>{1456.1370697021484, 686.8345947265625}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1170.6055066603433, 531.45292696725801}, {91, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>166</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>165</integer>
+ <key>Position</key>
+ <real>0.69405710697174072</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:generated}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ <key>ID</key>
+ <integer>165</integer>
+ <key>Points</key>
+ <array>
+ <string>{615.48197931051254, 354.26114611275619}</string>
+ <string>{1181, 478}</string>
+ <string>{1352.1921830515998, 797.18153362815553}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>163</integer>
+ </dict>
+ <key>ID</key>
+ <integer>164</integer>
+ <key>Points</key>
+ <array>
+ <string>{1423.9170186347208, 818.43479744612409}</string>
+ <string>{1454.7495981653858, 816.55652577770297}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>162</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1455.24853515625, 791.9869384765625}, {93, 43}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>163</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1307, 796.99346923828125}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>162</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post19201}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1120.0146408379078, 315.3396157238152}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>114</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>161</integer>
+ <key>Position</key>
+ <real>0.57967191934585571</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>161</integer>
+ <key>Points</key>
+ <array>
+ <string>{615.48197931051254, 341.08970475196838}</string>
+ <string>{1152, 352}</string>
+ <string>{1151, 301.19147262022875}</string>
+ <string>{774.47984420506577, 243.9337550163753}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1169.6357490195669, 254.74671534989136}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>159</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>158</integer>
+ <key>Position</key>
+ <real>0.85589408874511719</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>150</integer>
+ </dict>
+ <key>ID</key>
+ <integer>158</integer>
+ <key>Points</key>
+ <array>
+ <string>{615.48197931051254, 341.08970475196838}</string>
+ <string>{1299.7416060684448, 254.22967104023172}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Info</key>
+ <integer>7</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1164.2856733293233, 185.80599496274996}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>157</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>156</integer>
+ <key>Position</key>
+ <real>0.90474987030029297</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>144</integer>
+ </dict>
+ <key>ID</key>
+ <integer>156</integer>
+ <key>Points</key>
+ <array>
+ <string>{615.48197931051254, 330.04267033394342}</string>
+ <string>{1256.8788040773443, 183.88440083642678}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{908.19964875805272, 461.38645947181135}, {126, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>154</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>153</integer>
+ <key>Position</key>
+ <real>0.47056445479393005</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasQuotedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ <key>ID</key>
+ <integer>153</integer>
+ <key>Points</key>
+ <array>
+ <string>{1321.4862147290216, 267.52254068019192}</string>
+ <string>{577.08964502983633, 705.00547568379636}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>150</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1392.74853515625, 137.43045043945312}, {188, 69.153701782226562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>151</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:value="In sumary, there are clearly more crimes in the country"}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1297.8266735076904, 222.0467529296875}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>150</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :quote2}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1145.4805596734232, 222.04675170901697}, {126, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>149</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>148</integer>
+ <key>Position</key>
+ <real>0.10439708083868027</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasQuotedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>148</integer>
+ <key>Points</key>
+ <array>
+ <string>{1275.2664190708163, 192.82724033600721}</string>
+ <string>{972, 380}</string>
+ <string>{598.23591419566912, 508.96036085362027}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>144</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>145</integer>
+ </dict>
+ <key>ID</key>
+ <integer>146</integer>
+ <key>Points</key>
+ <array>
+ <string>{1338.8846570397, 150.11148936653757}</string>
+ <string>{1406.666736371277, 100.44926839250905}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>144</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1360.24853515625, 31}, {188, 69.153701782226562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>145</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:value="Analysis of the datasets demonstrate that there is more crime"}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1250.4998779296875, 147.00731372833252}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>144</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :quote1}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1423.6370697021484, 636.8345947265625}, {65, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>143</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :john}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>151</integer>
+ </dict>
+ <key>ID</key>
+ <integer>139</integer>
+ <key>Points</key>
+ <array>
+ <string>{1391.7682626737783, 226.7648509109498}</string>
+ <string>{1426.5952198382402, 206.8346799045022}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>150</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{657.61762595303935, 879.82405667560363}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>137</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>136</integer>
+ <key>Position</key>
+ <real>0.54085326194763184</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ <key>Info</key>
+ <integer>1</integer>
+ </dict>
+ <key>ID</key>
+ <integer>136</integer>
+ <key>Points</key>
+ <array>
+ <string>{598.42149428692937, 908.96127190220193}</string>
+ <string>{821.58023281700491, 877.27575490099798}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{623.4548707652317, 838.00804109365959}, {128, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>135</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>134</integer>
+ <key>Position</key>
+ <real>0.12295693904161453</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasInfluencedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>134</integer>
+ <key>Points</key>
+ <array>
+ <string>{582.61147618723874, 898.36736893593684}</string>
+ <string>{905, 749.66470265540784}</string>
+ <string>{904, 332.39018588539199}</string>
+ <string>{756.29965785869263, 255.07455875371156}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{220.04605274778459, 853.20544114970767}, {122, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>132</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>131</integer>
+ <key>Position</key>
+ <real>0.40205538272857666</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:specializationOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ <key>ID</key>
+ <integer>131</integer>
+ <key>Points</key>
+ <array>
+ <string>{488.80705005691493, 906.31239543581307}</string>
+ <string>{189, 846.99349120950899}</string>
+ <string>{190, 734.27818536758332}</string>
+ <string>{220.1552692574524, 630.12999066985071}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{493.83450588519463, 822.99349120933869}, {97, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>129</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>128</integer>
+ <key>Position</key>
+ <real>0.40176945924758911</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:alternateOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ <key>ID</key>
+ <integer>128</integer>
+ <key>Points</key>
+ <array>
+ <string>{542.37846390042864, 891.41579101517129}</string>
+ <string>{542.26905285829446, 750.98127438591553}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{142.91632080078125, 891.91576766967773}, {102.16666412353516, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>126</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postContent2}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{273.92684047645577, 895.82230396557748}, {121, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>125</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>124</integer>
+ <key>Position</key>
+ <real>0.62557756900787354</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 my:snapshotContent}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>126</integer>
+ </dict>
+ <key>ID</key>
+ <integer>124</integer>
+ <key>Points</key>
+ <array>
+ <string>{483.70078171442947, 914.349267301493}</string>
+ <string>{245.08298492431641, 903.91576766967773}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{179.73710632324219, 938.90235900878906}, {141, 33.077266693115234}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>123</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :more-crime-happens-in-cities-for-dummies}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{359.62373793617837, 928.60061490122223}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>122</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>121</integer>
+ <key>Position</key>
+ <real>0.48859477043151855</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>123</integer>
+ </dict>
+ <key>ID</key>
+ <integer>121</integer>
+ <key>Points</key>
+ <array>
+ <string>{487.70183732711024, 926.42216841513198}</string>
+ <string>{320.73710632324219, 955.44099235534668}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>119</integer>
+ </dict>
+ <key>ID</key>
+ <integer>120</integer>
+ <key>Points</key>
+ <array>
+ <string>{537.13394198596313, 942.308447081537}</string>
+ <string>{528.96355268791967, 981.71811215968762}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{411.79573130368976, 982.20770263671875}, {215.94432067871094, 87.736953735351562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>119</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post\
+\
+sioc:title= "More crime happens in cities (for dummies)"^^xsd:string}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{483.89833068847656, 891.91580200195312}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>118</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9822}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>116</integer>
+ </dict>
+ <key>ID</key>
+ <integer>117</integer>
+ <key>Points</key>
+ <array>
+ <string>{822.07526779174805, 877.20546722412109}</string>
+ <string>{788.35389017030559, 928.07978737812221}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{637, 928.49654769897461}, {244, 87.736953735351562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>116</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Person, foaf:Person\
+\
+foaf:givenName="Monica"^^xsd:string\
+\
+foaf:mbox=<mailto:monica@example.org>}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{784.07526779174805, 827.20546722412109}, {76, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>115</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :monica}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{391.19182185670161, 222.61061521833165}, {107, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>113</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>112</integer>
+ <key>Position</key>
+ <real>0.52815955877304077</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasEndedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>112</integer>
+ <key>Points</key>
+ <array>
+ <string>{505.59239750513945, 315.62610335707734}</string>
+ <string>{473.01969404010993, 234.99408078193665}</string>
+ <string>{341.70216357707977, 233.21647636095531}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{323.57157374608073, 308.39018588539199}, {111, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>111</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>110</integer>
+ <key>Position</key>
+ <real>0.51685702800750732</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasStartedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>110</integer>
+ <key>Points</key>
+ <array>
+ <string>{474.48197931051254, 341.08970475196838}</string>
+ <string>{390.98799127340317, 330.99408078193665}</string>
+ <string>{309.20216357707977, 258.21647636095531}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{554.41430810207271, 395.14984034481228}, {91, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>109</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>108</integer>
+ <key>Position</key>
+ <real>0.25249019265174866</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:generated}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>108</integer>
+ <key>Points</key>
+ <array>
+ <string>{583.33118187317064, 366.55257743084064}</string>
+ <string>{626.98799127340317, 473.42910630375172}</string>
+ <string>{578.12594930864839, 505.11250248383868}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{597.31263553187773, 278.19529522345488}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>107</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>106</integer>
+ <key>Position</key>
+ <real>0.42980971932411194</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>106</integer>
+ <key>Points</key>
+ <array>
+ <string>{586.62903893320583, 315.83004340954881}</string>
+ <string>{684.77385674934749, 256.18795754326061}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Info</key>
+ <integer>14</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{502.88835779129488, 193.88742935305265}, {141, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>105</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>104</integer>
+ <key>Position</key>
+ <real>0.6778448224067688</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAssociatedWith}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>55</integer>
+ </dict>
+ <key>ID</key>
+ <integer>104</integer>
+ <key>Points</key>
+ <array>
+ <string>{584.43095931051255, 317.16580475196838}</string>
+ <string>{568.14020786682727, 153.00083406766248}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Info</key>
+ <integer>14</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{347.25123966583112, 260.10534569415796}, {141, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>20</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>19</integer>
+ <key>Position</key>
+ <real>0.52945011854171753</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAssociatedWith}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>19</integer>
+ <key>Points</key>
+ <array>
+ <string>{503.31962239582907, 315.86205946615564}</string>
+ <string>{341.70216357707977, 233.21647636095531}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>102</integer>
+ </dict>
+ <key>ID</key>
+ <integer>103</integer>
+ <key>Points</key>
+ <array>
+ <string>{474.48197931051254, 341.08970475196838}</string>
+ <string>{257.83332793072339, 340.8508577390337}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{23.999999940395355, 290.40857172012329}, {233.33332830667496, 100.62622833251953}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>102</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 \
+prov:wasStartedAt="2011-07-16T01:01:01Z"^^xsd:dateTime\
+\
+prov:wasEndedAt="2011-07-16T01:52:02Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{392.19387848020722, 597.3475978365766}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>101</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>100</integer>
+ <key>Position</key>
+ <real>0.22412244975566864</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>100</integer>
+ <key>Points</key>
+ <array>
+ <string>{523.81698135648151, 701.30880482692953}</string>
+ <string>{307.98799127340317, 418.26521979663528}</string>
+ <string>{309.20216357707977, 258.21647636095531}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{557.05335338738314, 655.55279126763344}, {145, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>99</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>98</integer>
+ <key>Position</key>
+ <real>0.32790404558181763</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasSpecializationOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>98</integer>
+ <key>Points</key>
+ <array>
+ <string>{580.79025846730462, 706.28352400769802}</string>
+ <string>{629.55335338738314, 681.99408078193665}</string>
+ <string>{629.55335338738314, 612.99408078193665}</string>
+ <string>{567.48245776568422, 552.45856479188262}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{483.89837617757178, 622.68865674152107}, {117, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>97</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>96</integer>
+ <key>Position</key>
+ <real>0.44624504446983337</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasRevisionOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>96</integer>
+ <key>Points</key>
+ <array>
+ <string>{542.29108764315879, 699.98125772316587}</string>
+ <string>{542.53151279911879, 553.66568113403764}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{218.57043266296387, 734.27818536758332}, {102.16666412353516, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>95</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postContent1}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{351.76955708181004, 725.68455311973196}, {121, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>94</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Position</key>
+ <real>0.44143190979957581</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 my:snapshotContent}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>95</integer>
+ </dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Points</key>
+ <array>
+ <string>{484.60693092340352, 730.8930740470139}</string>
+ <string>{320.73709678649902, 746.27818536758332}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{243.72908348239434, 673.8766273162579}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>92</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>91</integer>
+ <key>Position</key>
+ <real>0.68301957845687866</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ <key>ID</key>
+ <integer>91</integer>
+ <key>Points</key>
+ <array>
+ <string>{486.83663114909609, 716.77325141261213}</string>
+ <string>{249.98799133300781, 679.55279126763344}</string>
+ <string>{235.10699229705364, 630.11609413522058}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{395.39893365006765, 458.88537099445585}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>90</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Position</key>
+ <real>0.17704892158508301</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Points</key>
+ <array>
+ <string>{507.91057839052473, 504.99076903172283}</string>
+ <string>{322.44800137911824, 380.99408078193665}</string>
+ <string>{309.20216357707977, 258.21647636095531}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{665.10871114388556, 415.60126373300528}, {137, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>38</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>37</integer>
+ <key>Position</key>
+ <real>0.50460225343704224</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:hadPrimarySource}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>37</integer>
+ <key>Points</key>
+ <array>
+ <string>{586.23205837629632, 506.39232320871633}</string>
+ <string>{734, 432.6977942644927}</string>
+ <string>{720.81477756469349, 260.960501837393}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{709.22655868530273, 478}, {141, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>86</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postContent0}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{643.48503511546153, 520.12178191403109}, {121, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>85</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>84</integer>
+ <key>Position</key>
+ <real>0.41174548864364624</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 my:snapshotContent}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>86</integer>
+ </dict>
+ <key>ID</key>
+ <integer>84</integer>
+ <key>Points</key>
+ <array>
+ <string>{627.94643930320342, 530.25811788265423}</string>
+ <string>{780.61744497141308, 534}</string>
+ <string>{779.72655868530273, 502}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{266.2265036674462, 520.40744094884735}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>83</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>82</integer>
+ <key>Position</key>
+ <real>0.77092593908309937</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ <key>ID</key>
+ <integer>82</integer>
+ <key>Points</key>
+ <array>
+ <string>{508.16316571912375, 366.41338505101686}</string>
+ <string>{254.65414850479181, 581.73117411023031}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{479.3138083769752, 432.6977942644927}, {129, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>14</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>13</integer>
+ <key>Position</key>
+ <real>0.42443805932998657</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasGeneratedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ <key>ID</key>
+ <integer>13</integer>
+ <key>Points</key>
+ <array>
+ <string>{542.95236120863206, 502.66595129984887}</string>
+ <string>{544.98197931051254, 366.08970475196838}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{474.48197931051254, 316.08970475196838}, {141, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{-0.5, -0.233518}</string>
+ <string>{-0.49144199999999999, 0.26006299999999999}</string>
+ <string>{0.50711799999999996, -0.22408600000000001}</string>
+ <string>{0.50711799999999996, 0.267179}</string>
+ <string>{-0.27431, -0.474028}</string>
+ <string>{0.27977999999999997, -0.47847800000000001}</string>
+ <string>{0.29393799999999998, 0.54304399999999997}</string>
+ <string>{-0.28623199999999999, 0.55380399999999996}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>1</string>
+ <key>g</key>
+ <string>0.805677</string>
+ <key>r</key>
+ <string>0.811737</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :publicationActivity1123}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{321.85177767553057, 649.87557678504891}, {109, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>80</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>79</integer>
+ <key>Position</key>
+ <real>0.45689120888710022</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 sioc:latest_version}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ <key>ID</key>
+ <integer>79</integer>
+ <key>Points</key>
+ <array>
+ <string>{273.81219885876186, 622.56433960575873}</string>
+ <string>{498.24107125167916, 708.60503466540956}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>77</integer>
+ </dict>
+ <key>ID</key>
+ <integer>78</integer>
+ <key>Points</key>
+ <array>
+ <string>{601.16973575505006, 724.1643298245981}</string>
+ <string>{651.40180335769401, 723.04159256613593}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{651.90167617797852, 700.4812716643014}, {93, 43}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>77</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{483.74918613831187, 700.48126339912415}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>76</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9821v2}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{282.45725286429814, 564.10383953034898}, {126, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>75</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>74</integer>
+ <key>Position</key>
+ <real>0.32415285706520081</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 sioc:previous_version}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>74</integer>
+ <key>Points</key>
+ <array>
+ <string>{282.61548760279021, 591.39269697265195}</string>
+ <string>{476.48009157531607, 544.2271171880883}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>72</integer>
+ </dict>
+ <key>ID</key>
+ <integer>73</integer>
+ <key>Points</key>
+ <array>
+ <string>{468.72390739423503, 515.36741470930724}</string>
+ <string>{262.49267251040976, 479.62715801881262}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{23.999999940395355, 399.00196035702993}, {238, 119.87989044189453}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>72</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post\
+\
+sioc:title="More crime happens in cities"^^xsd:string\
+\
+prov:generatedAtTime "2011-07-16T01:52:02Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{457.40675348043487, 503.16567222277308}, {170.33332824707031, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>71</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9821v1}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{648.35810337464022, 119.92356832822156}, {141, 33.077266693115234}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>4</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 <file://Users/aggr.txt>}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>63</integer>
+ </dict>
+ <key>ID</key>
+ <integer>64</integer>
+ <key>Points</key>
+ <array>
+ <string>{193.24664683359086, 626.36595121076107}</string>
+ <string>{154.66136559762137, 650.66246840945632}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{48.499906902317434, 649.83456540107727}, {129.94431948423176, 54}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>63</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Location, sioc:Post}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{162.98799133300781, 579.80473955472189}, {129, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>62</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :more-crime-happens-in-cities}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{672.35811595296241, 170.13787736163488}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>70</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>69</integer>
+ <key>Position</key>
+ <real>0.48859477043151855</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>4</integer>
+ </dict>
+ <key>ID</key>
+ <integer>69</integer>
+ <key>Points</key>
+ <array>
+ <string>{718.85812797024744, 209.97530586295025}</string>
+ <string>{718.85810337464022, 153.0008350213368}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{660.35813897848129, 210.47531835238146}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>5</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :aggregatedByRegions}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>56</integer>
+ </dict>
+ <key>ID</key>
+ <integer>57</integer>
+ <key>Points</key>
+ <array>
+ <string>{568.1067249180378, 102.50195646749285}</string>
+ <string>{566.99726184609585, 85.971564288274692}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>55</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{479.31380202372907, 11.472686688105114}, {170.33332824707031, 74}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>56</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:SoftwareAgent\
+\
+foaf:name="Post Editor 3000"}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{530.14020786682727, 103.00083406766248}, {76, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>55</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postEditor}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>53</integer>
+ </dict>
+ <key>ID</key>
+ <integer>54</integer>
+ <key>Points</key>
+ <array>
+ <string>{310.02872641468633, 95.501668988264811}</string>
+ <string>{310.54083820931424, 86.637450636826628}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>10</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{210.72650140523911, 11.472687005996704}, {204, 74.665596008300781}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>53</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Organization\
+\
+foaf:name="Chart Generators, Inc."}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{245.09520591013018, 165.56255855312838}, {129, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>40</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>39</integer>
+ <key>Position</key>
+ <real>0.48859477043151855</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:actedOnBehalfOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>10</integer>
+ </dict>
+ <key>ID</key>
+ <integer>39</integer>
+ <key>Points</key>
+ <array>
+ <string>{309.2085740139662, 207.71651747891079}</string>
+ <string>{309.99988804260897, 146.00083661079395}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{271.99988804260897, 96.000836610793954}, {76, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>10</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :chartgen}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>47</integer>
+ </dict>
+ <key>ID</key>
+ <integer>48</integer>
+ <key>Points</key>
+ <array>
+ <string>{276.70216357707977, 233.21647636095531}</string>
+ <string>{257.83332824399298, 233.21647693141134}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{24, 186.54981253544463}, {233.33332824707031, 93.333335876464844}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>47</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Person, foaf:Person\
+\
+foaf:givenName="Derek"^^xsd:string\
+\
+foaf:mbox=<mailto:derek@example.org>}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{276.70216357707977, 208.21647636095531}, {65, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>9</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :derek}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{-0.36472924323470579, 2.9261674616553819}, {1090, 772.98822021484375}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>1</integer>
+ <key>IsLocked</key>
+ <string>YES</string>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>13</integer>
+ <key>Position</key>
+ <real>0.82917547225952148</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{-1, -1}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 :bundlePost\
+type=prov:bundle}</string>
+ </dict>
+ <key>TextPlacement</key>
+ <integer>0</integer>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{13.999975501661197, 813.50889232899885}, {1075.6352952551042, 289.49111938476562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>138</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{-1, -1}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 :bundlePost1\
+type=prov:bundle}</string>
+ </dict>
+ <key>TextPlacement</key>
+ <integer>0</integer>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1110, 2.9261474609375}, {494, 850.0738525390625}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>177</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{-1, -1}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 :bundlePost2\
+type=prov:bundle\
+prov:hasAnnotation=:noteMadeByParser}</string>
+ </dict>
+ <key>TextPlacement</key>
+ <integer>0</integer>
+ </dict>
+ </array>
+ <key>GridInfo</key>
+ <dict/>
+ <key>GuidesLocked</key>
+ <string>NO</string>
+ <key>GuidesVisible</key>
+ <string>YES</string>
+ <key>HPages</key>
+ <integer>3</integer>
+ <key>ImageCounter</key>
+ <integer>1</integer>
+ <key>KeepToScale</key>
+ <false/>
+ <key>Layers</key>
+ <array>
+ <dict>
+ <key>Lock</key>
+ <string>NO</string>
+ <key>Name</key>
+ <string>Layer 1</string>
+ <key>Print</key>
+ <string>YES</string>
+ <key>View</key>
+ <string>YES</string>
+ </dict>
+ </array>
+ <key>LayoutInfo</key>
+ <dict>
+ <key>Animate</key>
+ <string>NO</string>
+ <key>circoMinDist</key>
+ <real>18</real>
+ <key>circoSeparation</key>
+ <real>0.0</real>
+ <key>layoutEngine</key>
+ <string>dot</string>
+ <key>neatoSeparation</key>
+ <real>0.0</real>
+ <key>twopiSeparation</key>
+ <real>0.0</real>
+ </dict>
+ <key>LinksVisible</key>
+ <string>NO</string>
+ <key>MagnetsVisible</key>
+ <string>NO</string>
+ <key>MasterSheets</key>
+ <array/>
+ <key>ModificationDate</key>
+ <string>2012-07-11 11:49:46 +0000</string>
+ <key>Modifier</key>
+ <string>David</string>
+ <key>NotesVisible</key>
+ <string>NO</string>
+ <key>Orientation</key>
+ <integer>2</integer>
+ <key>OriginVisible</key>
+ <string>NO</string>
+ <key>PageBreaks</key>
+ <string>YES</string>
+ <key>PrintInfo</key>
+ <dict>
+ <key>NSBottomMargin</key>
+ <array>
+ <string>float</string>
+ <string>41</string>
+ </array>
+ <key>NSHorizonalPagination</key>
+ <array>
+ <string>coded</string>
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string>
+ </array>
+ <key>NSLeftMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSPaperSize</key>
+ <array>
+ <string>size</string>
+ <string>{595, 842}</string>
+ </array>
+ <key>NSPrintReverseOrientation</key>
+ <array>
+ <string>int</string>
+ <string>0</string>
+ </array>
+ <key>NSRightMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSTopMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ </dict>
+ <key>PrintOnePage</key>
+ <false/>
+ <key>ReadOnly</key>
+ <string>NO</string>
+ <key>RowAlign</key>
+ <integer>1</integer>
+ <key>RowSpacing</key>
+ <real>36</real>
+ <key>SheetTitle</key>
+ <string>Canvas 1</string>
+ <key>SmartAlignmentGuidesActive</key>
+ <string>YES</string>
+ <key>SmartDistanceGuidesActive</key>
+ <string>YES</string>
+ <key>UniqueID</key>
+ <integer>1</integer>
+ <key>UseEntirePage</key>
+ <false/>
+ <key>VPages</key>
+ <integer>2</integer>
+ <key>WindowInfo</key>
+ <dict>
+ <key>CurrentSheet</key>
+ <integer>0</integer>
+ <key>ExpandedCanvases</key>
+ <array>
+ <dict>
+ <key>name</key>
+ <string>Canvas 1</string>
+ </dict>
+ </array>
+ <key>FitInWindow</key>
+ <true/>
+ <key>Frame</key>
+ <string>{{403, 0}, {1616, 1081}}</string>
+ <key>ListView</key>
+ <true/>
+ <key>OutlineWidth</key>
+ <integer>142</integer>
+ <key>RightSidebar</key>
+ <false/>
+ <key>ShowRuler</key>
+ <true/>
+ <key>Sidebar</key>
+ <true/>
+ <key>SidebarWidth</key>
+ <integer>120</integer>
+ <key>VisibleRegion</key>
+ <string>{{-392.99999999999994, 0}, {2462.0445392518186, 1565.9999702736077}}</string>
+ <key>Zoom</key>
+ <real>0.60153257846832275</real>
+ <key>ZoomValues</key>
+ <array>
+ <array>
+ <string>Canvas 1</string>
+ <real>0.0</real>
+ <real>1</real>
+ </array>
+ </array>
+ </dict>
+</dict>
+</plist>
Binary file ontology/diagram-history/2012-07-09-david/expanded-terms-example-all.pdf has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-all.svg Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,1940 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.1"
+ width="2011.25"
+ height="1382.5"
+ id="svg3004"
+ xml:space="preserve"><metadata
+ id="metadata3010"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ id="defs3008"><clipPath
+ id="clipPath3020"><path
+ d="m 0,0 1609,0 0,1106 L 0,1106 0,0 z"
+ id="path3022" /></clipPath></defs><g
+ transform="matrix(1.25,0,0,-1.25,0,1382.5)"
+ id="g3012"><g
+ id="g3014" /><g
+ id="g3016"><g
+ clip-path="url(#clipPath3020)"
+ id="g3018"><path
+ d="m 2.5,1106.5 1677,0 0,-1566 -1677,0 0,1566 z"
+ id="path3024"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
+ d="m 1113.5,1102.574 494,0 0,-850.074 -494,0 0,850.074 z"
+ id="path3026"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3028"><path
+ d="m 1110,2.926147 494,0 0,850.073853 -494,0 0,-850.073853 z"
+ id="path3030"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1360,678.0369)"
+ id="g3032"><text
+ transform="translate(-242,-409.0369)"
+ id="text3034"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 30.0312 32.697601 39.372002 47.375999 54.0504 60.0504 63.383999"
+ y="0"
+ id="tspan3036"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:bundlePost2</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1360,678.0369)"
+ id="g3038"><text
+ transform="translate(-242,-395.0369)"
+ id="text3040"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 63.043201 69.717598 76.391998 83.066399 85.732803"
+ y="0"
+ id="tspan3042"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:bundle</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1360,678.0369)"
+ id="g3044"><text
+ transform="translate(-242,-381.0369)"
+ id="text3046"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.027199 54.0312 60.705601 67.379997 74.054398 77.388 84.062401 87.396004 90.062401 96.736801 103.4112 110.4192 113.7528 120.4272 127.1016 130.4352 137.1096 147.10561 153.78 160.45441 167.1288 175.1328 181.1328 189.1368 195.8112 199.80721 205.80721 212.4816"
+ y="0"
+ id="tspan3048"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:hasAnnotation=:noteMadeByParser</tspan></text>
+</g><path
+ d="m 17.49998,291.9911 1075.63502,0 0,-289.491112 -1075.63502,0 0,289.491112 z"
+ id="path3050"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3052"><path
+ d="m 13.99998,813.5089 1075.63502,0 0,289.4911 -1075.63502,0 0,-289.4911 z"
+ id="path3054"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,554.8176,147.7455)"
+ id="g3056"><text
+ transform="translate(-532.8176,-128.7456)"
+ id="text3058"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 30.0312 32.697601 39.372002 47.375999 54.0504 60.0504 63.383999"
+ y="0"
+ id="tspan3060"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:bundlePost1</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,554.8176,147.7455)"
+ id="g3062"><text
+ transform="translate(-532.8176,-114.7456)"
+ id="text3064"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 63.043201 69.717598 76.391998 83.066399 85.732803"
+ y="0"
+ id="tspan3066"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:bundle</tspan></text>
+</g><path
+ d="m 3.135271,1102.574 1089.999729,0 0,-772.9884 -1089.999729,0 0,772.9884 z"
+ id="path3068"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3070"><path
+ d="m -0.3647292,2.926167 1089.9997292,0 0,772.988233 -1089.9997292,0 0,-772.988233 z"
+ id="path3072"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,547.6353,716.5797)"
+ id="g3074"><text
+ transform="translate(-540,-370.4941)"
+ id="text3076"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 30.0312 32.697601 39.372002 47.375999 54.0504 60.0504"
+ y="0"
+ id="tspan3078"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:bundlePost</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,547.6353,716.5797)"
+ id="g3080"><text
+ transform="translate(-540,-356.4941)"
+ id="text3082"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 63.043201 69.717598 76.391998 83.066399 85.732803"
+ y="0"
+ id="tspan3084"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:bundle</tspan></text>
+</g><path
+ d="m 280.2022,847.2835 0,33.35 32.5,16.65 32.5,-16.65 0,-33.35 -65,0 z"
+ id="path3086"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3088"><path
+ d="m 276.7022,258.2165 0,-33.35 32.5,-16.65 32.5,16.65 0,33.35 -65,0 z"
+ id="path3090"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,312.2022,872.7835)"
+ id="g3092"><text
+ transform="translate(-16.67578,12.3)"
+ id="text3094"><tspan
+ x="0 3.3336 10.008 16.6824 20.6784 27.3528"
+ y="0"
+ id="tspan3096"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:derek</tspan></text>
+</g><path
+ d="m 260.8333,891.3329 c 0,8.8414 -2.9633,9.9353 -24.6096,18.6853 l -0.2287,0.0905 c -21.7607,8.8415 -21.987,8.8415 -44.3193,8.8415 -29.736,0 -164.1757,0 -164.1757,0 l 0,-93.3333 233.3333,0 0,65.716 z"
+ id="path3098"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3100"><path
+ d="m 257.3333,214.1671 c 0,-8.8414 -2.9633,-9.9353 -24.6096,-18.6853 l -0.2287,-0.0905 c -21.7607,-8.8415 -21.987,-8.8415 -44.3193,-8.8415 -29.736,0 -164.1757,0 -164.1757,0 l 0,93.3333 233.3333,0 0,-65.716 z m 0,-0.4554 c 0,-8.386 -0.2286,-8.386 -46.8253,-8.386 l 0,0 c 0,-18.6844 0,-18.7759 -20.965,-18.7759"
+ id="path3102"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,143.6667,872.7835)"
+ id="g3104"><text
+ transform="translate(-111.6667,-24)"
+ id="text3106"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 64.372803 71.047203 75.043198 81.043198 87.717598 94.391998 97.725601 101.0592 104.3928 111.0672 117.7416 121.0752 124.4088 132.4128 139.0872 143.08321 149.08321 155.7576"
+ y="0"
+ id="tspan3108"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Person, foaf:Person</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,143.6667,872.7835)"
+ id="g3110"><text
+ transform="translate(-111.6667,4)"
+ id="text3112"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 32.690399 38.690399 45.364799 52.0392 60.705601 67.379997 77.375999 84.0504 91.058403 95.318398 103.9848 110.6592 114.6552 121.3296 127.3296 131.5896 137.22 142.8504 148.8504 154.8504 161.5248 164.8584 170.8584 174.192 178.188 180.8544 187.52879"
+ y="0"
+ id="tspan3114"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:givenName="Derek"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,143.6667,872.7835)"
+ id="g3116"><text
+ transform="translate(-111.6667,32)"
+ id="text3118"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 33.3456 40.02 46.694401 52.694401 59.7024 66.710403 76.706398 83.380798 86.047203 88.7136 92.047203 98.721603 102.0552 108.7296 115.404 119.4 126.0744 132.0744 144.2556 150.92999 156.92999 163.6044 173.6004 180.2748 182.94119 189.6156 192.9492 199.6236 203.6196 210.29401"
+ y="0"
+ id="tspan3120"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:mbox=<mailto:derek@example.org></tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3122"><path
+ d="m 276.7022,233.2165 -18.8689,0"
+ id="path3124"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 275.4999,959.4992 0,33.35 38,16.6498 38,-16.6498 0,-33.35 -76,0 z"
+ id="path3126"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3128"><path
+ d="m 271.9999,146.0008 0,-33.35 38,-16.64996 38,16.64996 0,33.35 -76,0 z"
+ id="path3130"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,312.9999,984.9992)"
+ id="g3132"><text
+ transform="translate(-25.0166,12.3)"
+ id="text3134"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 26.6784 30.011999 36.686401 43.360802"
+ y="0"
+ id="tspan3136"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:chartgen</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3138"><path
+ d="M 309.2086,207.7165 309.873,155.9"
+ id="path3140"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 313.4755,957.5993 -3.1023,-7.9609 5.9995,-0.0769 -2.8972,8.0378 z"
+ id="path3142"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3144"><path
+ d="m 309.9755,147.9007 -3.1023,7.9609 5.9995,0.0769 -2.8972,-8.0378 z"
+ id="path3146"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 248.0952,940.4374 129,0 0,-24 -129,0 0,24 z"
+ id="path3148"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,312.5952,928.4374)"
+ id="g3150"><text
+ transform="translate(-59.36719,4)"
+ id="text3152"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 42.686401 49.360802 56.035198 65.368797 72.043198 80.047203 86.721603 93.396004 100.0704 102.7368 106.0704 115.404"
+ y="0"
+ id="tspan3154"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:actedOnBehalfOf</tspan></text>
+</g><path
+ d="m 418.2265,1071.934 c 0,7.073 -2.5908,7.948 -21.5159,14.948 l -0.1999,0.072 c -19.025,7.073 -19.2229,7.073 -38.7478,7.073 -25.9977,0 -143.5364,0 -143.5364,0 l 0,-74.665 204,0 0,52.572 z"
+ id="path3156"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3158"><path
+ d="m 414.7265,33.56624 c 0,-7.07308 -2.5908,-7.94816 -21.5159,-14.94806 l -0.1999,-0.07242 c -19.025,-7.07307 -19.2229,-7.07307 -38.7478,-7.07307 -25.9977,0 -143.5364,0 -143.5364,0 l 0,74.66559 204,0 0,-52.57204 z m 0,-0.36437 c 0,-6.70871 -0.1999,-6.70871 -40.9387,-6.70871 l 0,0 c 0,-14.9473 0,-15.02047 -18.3294,-15.02047"
+ id="path3160"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,315.7265,1057.195)"
+ id="g3162"><text
+ transform="translate(-97,-10)"
+ id="text3164"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 65.7024 69.698402 76.372803 83.047203 89.721603 92.388 98.388 105.0624 108.396 111.0624 117.7368"
+ y="0"
+ id="tspan3166"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Organization</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,315.7265,1057.195)"
+ id="g3168"><text
+ transform="translate(-97,18)"
+ id="text3170"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 36.698399 46.694401 53.368801 60.376801 64.636803 73.3032 79.9776 86.652 90.648003 93.981598 97.315201 106.6488 113.3232 119.9976 126.672 130.668 137.34241 140.67599 147.3504 151.34641 157.34641 160.67999 164.0136 167.3472 174.02161 180.02161 183.35519"
+ y="0"
+ id="tspan3172"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:name="Chart Generators, Inc."</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3174"><path
+ d="m 310.0287,95.50167 0.5121,-8.86422"
+ id="path3176"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 533.6402,952.4992 0,33.35 38,16.6498 38,-16.6498 0,-33.35 -76,0 z"
+ id="path3178"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3180"><path
+ d="m 530.1402,153.0008 0,-33.35 38,-16.65 38,16.65 0,33.35 -76,0 z"
+ id="path3182"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,571.1402,977.9992)"
+ id="g3184"><text
+ transform="translate(-28.68164,12.3)"
+ id="text3186"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.02 40.694401 43.360802 46.694401 53.368801"
+ y="0"
+ id="tspan3188"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postEditor</tspan></text>
+</g><path
+ d="m 653.1471,1072.131 c 0,7.01 -2.1632,7.877 -17.965,14.815 l -0.167,0.071 c -15.8852,7.01 -16.0505,7.01 -32.3531,7.01 -21.7072,0 -119.8482,0 -119.8482,0 l 0,-74 170.3333,0 0,52.104 z"
+ id="path3190"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3192"><path
+ d="m 649.6471,33.36929 c 0,-7.01002 -2.1632,-7.8773 -17.965,-14.8148 l -0.167,-0.07178 c -15.8852,-7.01002 -16.0505,-7.01002 -32.3531,-7.01002 -21.7072,0 -119.8482,0 -119.8482,0 l 0,74 170.3333,0 0,-52.1034 z m 0,-0.36112 c 0,-6.6489 -0.1669,-6.6489 -34.1825,-6.6489 l 0,0 c 0,-14.81406 0,-14.88658 -15.3044,-14.88658"
+ id="path3194"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,567.4805,1057.527)"
+ id="g3196"><text
+ transform="translate(-80.16666,-10)"
+ id="text3198"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 64.372803 71.047203 74.380798 77.714401 86.380798 93.055199 97.051201 103.7256 111.7296 118.404 125.0784 131.75281"
+ y="0"
+ id="tspan3200"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:SoftwareAgent</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,567.4805,1057.527)"
+ id="g3202"><text
+ transform="translate(-80.16666,18)"
+ id="text3204"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 36.698399 46.694401 53.368801 60.376801 64.636803 72.6408 79.315201 85.315201 88.648804 91.982399 99.986397 106.6608 109.3272 112.6608 119.3352 123.3312 126.6648 133.3392 140.0136 146.688 153.3624"
+ y="0"
+ id="tspan3206"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:name="Post Editor 3000"</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3208"><path
+ d="M 568.1067,102.502 566.9973,85.97156"
+ id="path3210"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 763.7238,887.7023 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8456,-9.7631 -59.8857,-9.7631 -82.7314,0 -22.8457,9.7631 -22.8457,25.5922 0,35.3553 22.8457,9.7632 59.8858,9.7632 82.7314,0"
+ id="path3212"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3214"><path
+ d="m 760.2238,217.7977 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8456,9.7631 -59.8857,9.7631 -82.7314,0 -22.8457,-9.7631 -22.8457,-25.5922 0,-35.3553 22.8457,-9.7632 59.8858,-9.7632 82.7314,0"
+ id="path3216"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,721.8581,870.5247)"
+ id="g3218"><text
+ transform="translate(-39.0293,-3)"
+ id="text3220"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 27.3528 34.027199 40.701599 47.375999 50.709599 57.383999 64.058403 72.062401"
+ y="0"
+ id="tspan3222"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:aggregatedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,721.8581,870.5247)"
+ id="g3224"><text
+ transform="translate(-22.01367,11)"
+ id="text3226"><tspan
+ x="0 8.6664 15.3408 22.0152 24.681601 31.356001 38.030399"
+ y="0"
+ id="tspan3228"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">Regions</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3230"><path
+ d="m 718.8581,209.9753 0,-47.0745"
+ id="path3232"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 722.3581,950.5992 -3,-8 6,0 -3,8 z"
+ id="path3234"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3236"><path
+ d="m 718.8581,154.9008 -3,8 6,0 -3,-8 z"
+ id="path3238"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 675.3581,935.8621 93,0 0,-24 -93,0 0,24 z"
+ id="path3240"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,721.8581,923.8621)"
+ id="g3242"><text
+ transform="translate(-41.02734,4)"
+ id="text3244"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3246"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><path
+ d="m 276.5963,518.3729 c 25.189,-9.7631 25.189,-25.5922 0,-35.3553 -25.1888,-9.7631 -66.0278,-9.7631 -91.2166,0 -25.189,9.7631 -25.189,25.5922 0,35.3553 25.1888,9.7632 66.0278,9.7632 91.2166,0"
+ id="path3248"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3250"><path
+ d="m 273.0963,587.1271 c 25.189,9.7631 25.189,25.5922 0,35.3553 -25.1888,9.7631 -66.0278,9.7631 -91.2166,0 -25.189,-9.7631 -25.189,-25.5922 0,-35.3553 25.1888,-9.7632 66.0278,-9.7632 91.2166,0"
+ id="path3252"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,230.488,501.1953)"
+ id="g3254"><text
+ transform="translate(-33.99902,-3)"
+ id="text3256"><tspan
+ x="0 3.3336 13.3296 20.004 24 30.6744 34.670399 40.670399 44.666401 47.332802 57.3288 64.003197"
+ y="0"
+ id="tspan3258"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:more-crime-</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,230.488,501.1953)"
+ id="g3260"><text
+ transform="translate(-45.35742,11)"
+ id="text3262"><tspan
+ x="0 6.6743999 13.3488 20.023199 26.697599 33.372002 40.046398 46.046398 50.0424 52.708801 59.383202 63.3792 69.379204 72.045601 75.379204 78.045601 84.720001"
+ y="0"
+ id="tspan3264"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">happens-in-cities</tspan></text>
+</g><path
+ d="m 181.9442,439.6868 c 0,5.1155 -1.6503,5.7483 -13.7052,10.8108 l -0.1273,0.0524 c -12.1187,5.1154 -12.2447,5.1154 -24.6817,5.1154 -16.5601,0 -91.43009,0 -91.43009,0 l 0,-54 129.94429,0 0,38.0214 z"
+ id="path3266"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3268"><path
+ d="m 178.4442,665.8132 c 0,-5.1155 -1.6503,-5.7483 -13.7052,-10.8108 l -0.1273,-0.0524 c -12.1187,-5.1154 -12.2447,-5.1154 -24.6817,-5.1154 -16.5601,0 -91.43009,0 -91.43009,0 l 0,54 129.94429,0 0,-38.0214 z m 0,-0.2636 c 0,-4.8519 -0.1273,-4.8519 -26.0772,-4.8519 l 0,0 c 0,-10.8102 0,-10.8631 -11.6755,-10.8631"
+ id="path3270"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,116.4721,429.1654)"
+ id="g3272"><text
+ transform="translate(-59.97216,-3)"
+ id="text3274"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 63.043201 69.717598 75.717598 82.391998 85.725601 88.391998 95.066399 101.7408 105.0744"
+ y="0"
+ id="tspan3276"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Location, </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,116.4721,429.1654)"
+ id="g3278"><text
+ transform="translate(-59.97216,11)"
+ id="text3280"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 32.678398 39.352798 45.352798"
+ y="0"
+ id="tspan3282"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3284"><path
+ d="m 193.2466,626.366 -38.5852,24.2965"
+ id="path3286"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 656.8581,985.5764 131,0 c 2.7614,0 5,-2.2385 5,-5 l 0,-23.0772 c 0,-2.7615 -2.2386,-5 -5,-5 l -131,0 c -2.7614,0 -5,2.2385 -5,5 0,0 0,0 0,0 l 0,23.0772 c 0,2.7615 2.2386,5 5,5 0,0 0,0 0,0 z"
+ id="path3288"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3290"><path
+ d="m 653.3581,119.9236 131,0 c 2.7614,0 5,2.2385 5,5 l 0,23.0772 c 0,2.7615 -2.2386,5 -5,5 l -131,0 c -2.7614,0 -5,-2.2385 -5,-5 0,0 0,0 0,0 l 0,-23.0772 c 0,-2.7615 2.2386,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3292"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,721.8581,969.5378)"
+ id="g3294"><text
+ transform="translate(-56.69531,4)"
+ id="text3296"><tspan
+ x="0 7.0079999 13.008 15.6744 22.348801 25.6824 29.016001 32.349602 41.015999 47.015999 53.690399 57.686401 63.686401 67.019997 73.694397 80.368797 87.043198 90.382797 93.7164 97.050003 103.05 106.3836"
+ y="0"
+ id="tspan3298"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica"><file://Users/aggr.txt></tspan></text>
+</g><path
+ d="m 606.2953,595.012 c 33.2598,-9.7631 33.2598,-25.5922 0,-35.3553 -33.2596,-9.7632 -87.1841,-9.7632 -120.4437,0 -33.2598,9.7631 -33.2598,25.5922 0,35.3553 33.2596,9.7631 87.1841,9.7631 120.4437,0"
+ id="path3300"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3302"><path
+ d="m 602.7953,510.488 c 33.2598,9.7631 33.2598,25.5922 0,35.3553 -33.2596,9.7632 -87.1841,9.7632 -120.4437,0 -33.2598,-9.7631 -33.2598,-25.5922 0,-35.3553 33.2596,-9.7631 87.1841,-9.7631 120.4437,0"
+ id="path3304"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,545.5734,577.8343)"
+ id="g3306"><text
+ transform="translate(-32.69238,4)"
+ id="text3308"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136 58.7136"
+ y="0"
+ id="tspan3310"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9821v1</tspan></text>
+</g><path
+ d="m 265.5,671.0256 c 0,11.3562 -3.0226,12.7612 -25.1019,23.9999 l -0.2332,0.1163 c -22.1959,11.3562 -22.4267,11.3562 -45.2057,11.3562 -30.3307,0 -167.4592,0 -167.4592,0 l 0,-119.8799 238,0 0,84.4075 z"
+ id="path3312"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3314"><path
+ d="m 262,434.4744 c 0,-11.3562 -3.0226,-12.7612 -25.1019,-23.9999 l -0.2332,-0.1163 C 214.469,399.002 214.2382,399.002 191.4592,399.002 c -30.3307,0 -167.4592,0 -167.4592,0 l 0,119.8799 238,0 0,-84.4075 z m 0,-0.585 c 0,-10.7712 -0.2332,-10.7712 -47.7618,-10.7712 l 0,0 c 0,-23.9988 0,-24.1162 -21.3843,-24.1162"
+ id="path3316"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,146,647.0581)"
+ id="g3318"><text
+ transform="translate(-114,-38)"
+ id="text3320"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan3322"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,146,647.0581)"
+ id="g3324"><text
+ transform="translate(-114,-10)"
+ id="text3326"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 28.007999 30.6744 34.007999 36.6744 43.348801 50.3568 54.616798 64.612801 71.287201 75.283203 81.957603 85.291199 91.291199 95.287201 97.953598 107.9496 114.624 117.9576 124.632 131.3064 137.9808 144.6552 151.32961 158.004 164.004 167.3376 170.004 176.67841"
+ y="0"
+ id="tspan3328"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:title="More crime happens in </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,146,647.0581)"
+ id="g3330"><text
+ transform="translate(-114,4)"
+ id="text3332"><tspan
+ x="0 6 8.6664 12 14.6664 21.340799 27.340799 31.6008 37.231201 42.861599 48.861599 54.861599 61.535999 64.869598 70.869598 74.203201 78.199203 80.865601 87.540001"
+ y="0"
+ id="tspan3334"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">cities"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,146,647.0581)"
+ id="g3336"><text
+ transform="translate(-114,32)"
+ id="text3338"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 53.375999 57.372002 64.046402 67.379997 74.054398 80.728798 88.732803 92.066399 98.956802 101.6232 111.6192 118.2936"
+ y="0"
+ id="tspan3340"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:generatedAtTime </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,146,647.0581)"
+ id="g3342"><text
+ transform="translate(-114,46)"
+ id="text3344"><tspan
+ x="0 4.2600002 10.9344 17.608801 23.3976 30.072001 34.068001 40.742401 47.416801 51.4128 58.0872 64.761597 72.091202 78.765602 85.440002 88.773598 95.447998 102.1224 105.456 112.1304 118.8048 126.1344 130.39439 136.0248 141.6552 147.6552 153.6552 160.32961 163.66319 170.3376 177.01199 180.3456 187.02 193.9104 196.5768 206.5728"
+ y="0"
+ id="tspan3346"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">"2011-07-16T01:52:02Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3348"><path
+ d="M 468.7239,515.3674 262.4927,479.6272"
+ id="path3350"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3352"><path
+ d="M 282.6155,591.3927 466.8607,546.5674"
+ id="path3354"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 478.1339,560.8237 -8.4824,1.0238 1.4184,-5.8299 7.064,4.8061 z"
+ id="path3356"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3358"><path
+ d="m 474.6339,544.6763 -8.4824,-1.0238 1.4184,5.8299 7.064,-4.8061 z"
+ id="path3360"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 285.4573,541.8962 126,0 0,-24 -126,0 0,24 z"
+ id="path3362"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,348.4573,529.8962)"
+ id="g3364"><text
+ transform="translate(-57.69434,4)"
+ id="text3366"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 31.348801 35.344799 42.019199 48.019199 50.6856 57.360001 64.034401 70.034401 76.708801 82.708801 89.383202 93.379204 99.379204 102.0456 108.72"
+ y="0"
+ id="tspan3368"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:previous_version</tspan></text>
+</g><path
+ d="m 587.1149,397.6964 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8457,-9.7632 -59.8858,-9.7632 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8456,9.7631 59.8857,9.7631 82.7314,0"
+ id="path3370"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3372"><path
+ d="m 583.6149,707.8036 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.7632 -59.8858,9.7632 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8456,-9.7631 59.8857,-9.7631 82.7314,0"
+ id="path3374"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,545.2492,380.5187)"
+ id="g3376"><text
+ transform="translate(-32.69238,4)"
+ id="text3378"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136 58.7136"
+ y="0"
+ id="tspan3380"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9821v2</tspan></text>
+</g><path
+ d="m 748.4017,392.295 c 0,4.0734 -1.1811,4.5774 -9.8087,8.6086 l -0.0912,0.0417 c -8.6732,4.0734 -8.7634,4.0734 -17.6644,4.0734 -11.8519,0 -65.4357,0 -65.4357,0 l 0,-43 93,0 0,30.2763 z"
+ id="path3382"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3384"><path
+ d="m 744.9017,713.205 c 0,-4.0734 -1.1811,-4.5774 -9.8087,-8.6086 l -0.0912,-0.0417 c -8.6732,-4.0734 -8.7634,-4.0734 -17.6644,-4.0734 -11.8519,0 -65.4357,0 -65.4357,0 l 0,43 93,0 0,-30.2763 z m 0,-0.2099 c 0,-3.8635 -0.0912,-3.8635 -18.6633,-3.8635 l 0,0 c 0,-8.6082 0,-8.6503 -8.356,-8.6503"
+ id="path3386"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,701.4017,384.0187)"
+ id="g3388"><text
+ transform="translate(-41.5,4)"
+ id="text3390"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan3392"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3394"><path
+ d="m 601.1697,724.1643 50.2321,-1.1227"
+ id="path3396"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3398"><path
+ d="m 273.8122,622.5643 215.1849,82.4968"
+ id="path3400"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 499.967,397.5751 -6.396,5.665 -2.1478,-5.6024 8.5438,-0.0626 z"
+ id="path3402"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3404"><path
+ d="m 496.467,707.9249 -6.396,-5.665 -2.1478,5.6024 8.5438,0.0626 z"
+ id="path3406"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 324.8518,456.1244 109,0 0,-24 -109,0 0,24 z"
+ id="path3408"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,379.3518,444.1244)"
+ id="g3410"><text
+ transform="translate(-49.35645,4)"
+ id="text3412"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 27.340799 34.015202 37.348801 44.023201 50.023201 53.3568 60.0312 66.031197 72.705597 76.701599 82.701599 85.367996 92.042397"
+ y="0"
+ id="tspan3414"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:latest_version</tspan></text>
+</g><path
+ d="m 477.982,789.4103 141,0 0,-50 -141,0 0,50 z"
+ id="path3416"
+ style="fill:#d8d8ff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3418"><path
+ d="m 474.482,316.0897 141,0 0,50 -141,0 0,-50 z"
+ id="path3420"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,547.982,764.9103)"
+ id="g3422"><text
+ transform="translate(-62.26172,4)"
+ id="text3424"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 26.023199 28.6896 34.689602 41.363998 44.697601 47.363998 54.038399 60.712799 68.716797 74.716797 78.0504 80.716797 86.716797 89.383202 92.716797 98.716797 104.5056 111.18 117.8544"
+ y="0"
+ id="tspan3426"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:publicationActivity1123</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3428"><path
+ d="m 542.9524,502.666 1.8825,-126.6774"
+ id="path3430"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 548.4537,737.5105 -3.1185,-7.9545 5.9993,-0.0892 -2.8808,8.0437 z"
+ id="path3432"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3434"><path
+ d="m 544.9537,367.9895 -3.1185,7.9545 5.9993,0.0892 -2.8808,-8.0437 z"
+ id="path3436"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 482.3138,673.3022 129,0 0,-24 -129,0 0,24 z"
+ id="path3438"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,546.8138,661.3022)"
+ id="g3440"><text
+ transform="translate(-59.36426,4)"
+ id="text3442"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 77.375999 81.372002 88.046402 91.379997 98.054398 104.7288 112.7328"
+ y="0"
+ id="tspan3444"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasGeneratedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3446"><path
+ d="M 508.1632,366.4134 262.1998,575.3223"
+ id="path3448"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 259.6023,524.9988 8.0396,2.8923 -3.8842,4.5731 -4.1554,-7.4654 z"
+ id="path3450"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3452"><path
+ d="m 256.1023,580.5012 8.0396,-2.8923 -3.8842,-4.5731 -4.1554,7.4654 z"
+ id="path3454"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 269.2265,585.5926 93,0 0,-24 -93,0 0,24 z"
+ id="path3456"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,315.7265,573.5926)"
+ id="g3458"><text
+ transform="translate(-41.02734,4)"
+ id="text3460"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3462"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3464"><path
+ d="M 627.9464,530.2581 780.6174,534 780.0021,511.8962"
+ id="path3466"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 783.2794,601.6007 -2.7762,-8.0804 5.9977,0.167 -3.2215,7.9134 z"
+ id="path3468"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3470"><path
+ d="m 779.7794,503.8993 -2.7762,8.0804 5.9977,-0.167 -3.2215,-7.9134 z"
+ id="path3472"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 646.485,585.8782 121,0 0,-24 -121,0 0,24 z"
+ id="path3474"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,706.985,573.8782)"
+ id="g3476"><text
+ transform="translate(-55.03125,4)"
+ id="text3478"><tspan
+ x="0 9.9960003 15.996 19.329599 25.329599 32.004002 38.678398 45.352798 51.352798 58.027199 64.701599 68.035202 76.701599 83.375999 90.0504 93.384003 100.0584 106.7328"
+ y="0"
+ id="tspan3480"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">my:snapshotContent</tspan></text>
+</g><path
+ d="m 717.7266,627.5 131,0 c 2.7614,0 5,-2.2386 5,-5 l 0,-14 c 0,-2.7614 -2.2386,-5 -5,-5 l -131,0 c -2.7615,0 -5,2.2386 -5,5 0,0 0,0 0,0 l 0,14 c 0,2.7614 2.2385,5 5,5 0,0 0,0 0,0 z"
+ id="path3482"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3484"><path
+ d="m 714.2266,478 131,0 c 2.7614,0 5,2.2386 5,5 l 0,14 c 0,2.7614 -2.2386,5 -5,5 l -131,0 c -2.7615,0 -5,-2.2386 -5,-5 0,0 0,0 0,0 l 0,-14 c 0,-2.7614 2.2385,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3486"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,782.7266,616)"
+ id="g3488"><text
+ transform="translate(-37.35938,4)"
+ id="text3490"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.6824 41.3568 48.0312 51.364799 58.0392 64.7136 68.047203"
+ y="0"
+ id="tspan3492"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postContent0</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3494"><path
+ d="M 586.2321,506.3923 734,432.6978 721.5726,270.8314"
+ id="path3496"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 724.4602,842.6451 -2.3788,-8.2062 5.9824,0.4593 -3.6036,7.7469 z"
+ id="path3498"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3500"><path
+ d="m 720.9602,262.8549 -2.3788,8.2062 5.9824,-0.4593 -3.6036,-7.7469 z"
+ id="path3502"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 668.1087,690.3987 137,0 0,-24 -137,0 0,24 z"
+ id="path3504"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,736.6087,678.3987)"
+ id="g3506"><text
+ transform="translate(-63.02637,4)"
+ id="text3508"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 54.705601 58.701599 61.368 71.363998 78.038399 82.034401 88.034401 96.038399 102.7128 109.3872 113.3832 119.3832"
+ y="0"
+ id="tspan3510"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:hadPrimarySource</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3512"><path
+ d="M 507.9106,504.9908 322.448,380.9941 310.2641,268.0594"
+ id="path3514"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 312.906,845.3945 -2.1246,-8.2756 5.9654,0.6435 -3.8408,7.6321 z"
+ id="path3516"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3518"><path
+ d="m 309.406,260.1055 -2.1246,8.2756 5.9654,-0.6435 -3.8408,-7.6321 z"
+ id="path3520"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 398.3989,647.1146 123,0 0,-24 -123,0 0,24 z"
+ id="path3522"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,459.8989,635.1146)"
+ id="g3524"><text
+ transform="translate(-56.02734,4)"
+ id="text3526"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan3528"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3530"><path
+ d="M 486.8366,716.7733 249.988,679.5528 237.9605,639.5959"
+ id="path3532"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 239.1546,473.5645 -0.5667,-8.5251 5.7453,1.7294 -5.1786,6.7957 z"
+ id="path3534"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3536"><path
+ d="m 235.6546,631.9355 -0.5667,8.5251 5.7453,-1.7294 -5.1786,-6.7957 z"
+ id="path3538"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 246.7291,432.1234 93,0 0,-24 -93,0 0,24 z"
+ id="path3540"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,293.2291,420.1234)"
+ id="g3542"><text
+ transform="translate(-41.02734,4)"
+ id="text3544"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3546"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3548"><path
+ d="M 484.6069,730.8931 330.5938,745.3528"
+ id="path3550"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 326.1288,359.3994 8.2454,-2.239 -0.5609,5.9737 -7.6845,-3.7347 z"
+ id="path3552"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3554"><path
+ d="m 322.6288,746.1006 8.2454,2.239 -0.5609,-5.9737 -7.6845,3.7347 z"
+ id="path3556"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 354.7696,380.3154 121,0 0,-24 -121,0 0,24 z"
+ id="path3558"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,415.2696,368.3154)"
+ id="g3560"><text
+ transform="translate(-55.03125,4)"
+ id="text3562"><tspan
+ x="0 9.9960003 15.996 19.329599 25.329599 32.004002 38.678398 45.352798 51.352798 58.027199 64.701599 68.035202 76.701599 83.375999 90.0504 93.384003 100.0584 106.7328"
+ y="0"
+ id="tspan3564"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">my:snapshotContent</tspan></text>
+</g><path
+ d="m 227.0704,371.2218 92.1667,0 c 2.7614,0 5,-2.2386 5,-5 l 0,-14 c 0,-2.7614 -2.2386,-5 -5,-5 l -92.1667,0 c -2.7614,0 -5,2.2386 -5,5 0,0 0,0 0,0 l 0,14 c 0,2.7614 2.2386,5 5,5 0,0 0,0 0,0 z"
+ id="path3566"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3568"><path
+ d="m 223.5704,734.2782 92.1667,0 c 2.7614,0 5,2.2386 5,5 l 0,14 c 0,2.7614 -2.2386,5 -5,5 l -92.1667,0 c -2.7614,0 -5,-2.2386 -5,-5 0,0 0,0 0,0 l 0,-14 c 0,-2.7614 2.2386,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3570"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,272.6538,359.7218)"
+ id="g3572"><text
+ transform="translate(-37.35938,4)"
+ id="text3574"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.6824 41.3568 48.0312 51.364799 58.0392 64.7136 68.047203"
+ y="0"
+ id="tspan3576"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postContent1</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3578"><path
+ d="m 542.2911,699.9813 0.2241,-136.4156"
+ id="path3580"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 546.0284,549.9343 -3.0132,-7.995 6,-0.01 -2.9868,8.0049 z"
+ id="path3582"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3584"><path
+ d="m 542.5284,555.5657 -3.0132,7.995 6,0.01 -2.9868,-8.0049 z"
+ id="path3586"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 486.8984,483.3113 117,0 0,-24 -117,0 0,24 z"
+ id="path3588"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,545.3984,471.3113)"
+ id="g3590"><text
+ transform="translate(-53.35254,4)"
+ id="text3592"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.6856 63.360001 69.360001 72.026398 78.026398 80.692802 87.367203 94.041603 103.3752"
+ y="0"
+ id="tspan3594"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasRevisionOf</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3596"><path
+ d="m 580.7903,706.2835 48.7631,-24.2894 0,-69 -54.9835,-53.6234"
+ id="path3598"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 572.3427,551.7149 3.6326,-7.7333 4.1892,4.2954 -7.8218,3.4379 z"
+ id="path3600"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3602"><path
+ d="m 568.8427,553.7851 3.6326,7.7333 4.1892,-4.2954 -7.8218,-3.4379 z"
+ id="path3604"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 560.0534,450.4472 145,0 0,-24 -145,0 0,24 z"
+ id="path3606"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,632.5534,438.4472)"
+ id="g3608"><text
+ transform="translate(-67.36523,4)"
+ id="text3610"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 75.372002 78.038399 84.712799 87.379204 90.045601 96.045601 102.72 106.0536 108.72 115.3944 122.0688 131.4024"
+ y="0"
+ id="tspan3612"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasSpecializationOf</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3614"><path
+ d="M 523.817,701.3088 307.988,418.2652 309.1271,268.1162"
+ id="path3616"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 312.6878,845.3836 -3.0607,-7.977 5.9999,-0.0455 -2.9392,8.0225 z"
+ id="path3618"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3620"><path
+ d="m 309.1878,260.1164 -3.0607,7.977 5.9999,0.0455 -2.9392,-8.0225 z"
+ id="path3622"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 395.1939,508.6524 123,0 0,-24 -123,0 0,24 z"
+ id="path3624"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,456.6939,496.6524)"
+ id="g3626"><text
+ transform="translate(-56.02734,4)"
+ id="text3628"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan3630"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g><path
+ d="m 260.8333,785.3161 c 0,9.5323 -2.9633,10.7117 -24.6096,20.1454 l -0.2287,0.0976 c -21.7607,9.5323 -21.987,9.5323 -44.3193,9.5323 -29.736,0 -164.1757,0 -164.1757,0 l 0,-100.6262 233.3333,0 0,70.8509 z"
+ id="path3632"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3634"><path
+ d="m 257.3333,320.1839 c 0,-9.5323 -2.9633,-10.7117 -24.6096,-20.1454 l -0.2287,-0.0976 c -21.7607,-9.5323 -21.987,-9.5323 -44.3193,-9.5323 -29.736,0 -164.1757,0 -164.1757,0 l 0,100.6262 233.3333,0 0,-70.8509 z m 0,-0.4911 c 0,-9.0412 -0.2286,-9.0412 -46.8253,-9.0412 l 0,0 c 0,-20.1444 0,-20.243 -20.965,-20.243"
+ id="path3636"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,143.6667,765.2783)"
+ id="g3638"><text
+ transform="translate(-111.6667,-17)"
+ id="text3640"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 66.031197 70.027199 73.360802 80.035202 86.709602 94.7136 98.047203 105.0552 109.3152 115.9896 122.664 128.4528 135.1272 139.1232 145.79761 152.472 156.468 163.1424 169.8168 177.14639 183.8208 190.49519 193.8288 200.5032 207.1776 210.5112"
+ y="0"
+ id="tspan3642"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasStartedAt="2011-07-16T01:01:0</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,143.6667,765.2783)"
+ id="g3644"><text
+ transform="translate(-111.6667,-3)"
+ id="text3646"><tspan
+ x="0 6.6743999 14.004 18.264 23.8944 29.524799 35.524799 41.524799 48.1992 51.532799 58.207199 64.881599 68.215202 74.889603 81.779999 84.446404 94.442398"
+ y="0"
+ id="tspan3648"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">1Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,143.6667,765.2783)"
+ id="g3650"><text
+ transform="translate(-111.6667,25)"
+ id="text3652"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 76.046402 82.720802 90.7248 94.058403 101.0664 105.3264 112.0008 118.6752 124.464 131.1384 135.1344 141.80881 148.4832 152.4792 159.15359 165.828 173.15759 179.832 186.50639 189.84 196.5144 203.1888 206.5224 213.19679"
+ y="0"
+ id="tspan3654"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasEndedAt="2011-07-16T01:52:02</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,143.6667,765.2783)"
+ id="g3656"><text
+ transform="translate(-111.6667,39)"
+ id="text3658"><tspan
+ x="0 7.3295999 11.5896 17.219999 22.850401 28.850401 34.850399 41.524799 44.858398 51.532799 58.207199 61.540798 68.215202 75.105598 77.772003 87.767998"
+ y="0"
+ id="tspan3660"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3662"><path
+ d="M 474.482,341.0897 257.8333,340.8509"
+ id="path3664"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3666"><path
+ d="M 503.3196,315.8621 350.5166,237.7239"
+ id="path3668"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 346.8938,871.4185 5.7569,-6.3134 2.7317,5.3421 -8.4886,0.9713 z"
+ id="path3670"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3672"><path
+ d="m 343.3938,234.0815 5.7569,6.3134 2.7317,-5.3421 -8.4886,-0.9713 z"
+ id="path3674"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 350.2512,845.8947 141,0 0,-24 -141,0 0,24 z"
+ id="path3676"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,420.7512,833.8947)"
+ id="g3678"><text
+ transform="translate(-65.3584,4)"
+ id="text3680"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.023201 68.023201 74.697601 80.697601 83.363998 90.038399 93.372002 100.0464 106.7208 118.0464 120.7128 124.0464"
+ y="0"
+ id="tspan3682"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAssociatedWith</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3684"><path
+ d="M 584.431,317.1658 569.1178,162.8524"
+ id="path3686"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 571.8278,950.6085 -2.1953,-8.2572 5.9707,0.5925 -3.7754,7.6647 z"
+ id="path3688"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3690"><path
+ d="m 568.3278,154.8915 -2.1953,8.2572 5.9707,-0.5925 -3.7754,-7.6647 z"
+ id="path3692"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 505.8884,912.1126 141,0 0,-24 -141,0 0,24 z"
+ id="path3694"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,576.3884,900.1126)"
+ id="g3696"><text
+ transform="translate(-65.3584,4)"
+ id="text3698"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.023201 68.023201 74.697601 80.697601 83.363998 90.038399 93.372002 100.0464 106.7208 118.0464 120.7128 124.0464"
+ y="0"
+ id="tspan3700"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAssociatedWith</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3702"><path
+ d="m 586.629,315.83 89.6845,-54.5007"
+ id="path3704"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 686.6502,848.3253 -8.3946,-1.5908 3.1159,-5.1275 5.2787,6.7183 z"
+ id="path3706"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3708"><path
+ d="m 683.1502,257.1747 -8.3946,1.5908 3.1159,5.1275 5.2787,-6.7183 z"
+ id="path3710"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 600.3126,827.8047 63,0 0,-24 -63,0 0,24 z"
+ id="path3712"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,631.8126,815.8047)"
+ id="g3714"><text
+ transform="translate(-26.34961,4)"
+ id="text3716"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan3718"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3720"><path
+ d="m 583.3312,366.5526 43.6568,106.8765 -40.5555,26.2972"
+ id="path3722"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 583.2201,601.4212 8.3446,1.8353 -3.2644,5.0343 -5.0802,-6.8696 z"
+ id="path3724"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3726"><path
+ d="m 579.7201,504.0788 8.3446,-1.8353 -3.2644,-5.0343 -5.0802,6.8696 z"
+ id="path3728"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 557.4143,710.8502 91,0 0,-24 -91,0 0,24 z"
+ id="path3730"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,602.9143,698.8502)"
+ id="g3732"><text
+ transform="translate(-40.3623,4)"
+ id="text3734"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 53.375999 57.372002 64.046402 67.379997 74.054398"
+ y="0"
+ id="tspan3736"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:generated</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3738"><path
+ d="m 474.482,341.0897 -83.494,-10.0956 -74.39,-66.1964"
+ id="path3740"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 314.1216,846.0205 3.9821,-7.5593 3.9886,4.4823 -7.9707,3.077 z"
+ id="path3742"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3744"><path
+ d="m 310.6216,259.4795 3.9821,7.5593 3.9886,-4.4823 -7.9707,-3.077 z"
+ id="path3746"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 326.5716,797.6098 111,0 0,-24 -111,0 0,24 z"
+ id="path3748"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,382.0716,785.6098)"
+ id="g3750"><text
+ transform="translate(-50.35547,4)"
+ id="text3752"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 66.031197 70.027199 73.360802 80.035202 86.709602 94.7136"
+ y="0"
+ id="tspan3754"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasStartedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3756"><path
+ d="m 505.5924,315.6261 -32.5727,-80.632 -121.4184,-1.6436"
+ id="path3758"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 347.102,872.2578 7.9587,-3.108 0.0812,5.9994 -8.0399,-2.8914 z"
+ id="path3760"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3762"><path
+ d="m 343.602,233.2422 7.9587,3.108 0.0812,-5.9994 -8.0399,2.8914 z"
+ id="path3764"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 394.1918,883.3894 107,0 0,-24 -107,0 0,24 z"
+ id="path3766"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,447.6918,871.3894)"
+ id="g3768"><text
+ transform="translate(-48.36035,4)"
+ id="text3770"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 76.046402 82.720802 90.7248"
+ y="0"
+ id="tspan3772"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasEndedBy</tspan></text>
+</g><path
+ d="m 787.5753,228.2945 0,33.35 38,16.65 38,-16.65 0,-33.35 -76,0 z"
+ id="path3774"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3776"><path
+ d="m 784.0753,877.2055 0,-33.35 38,-16.65 38,16.65 0,33.35 -76,0 z"
+ id="path3778"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,825.0753,253.7945)"
+ id="g3780"><text
+ transform="translate(-21.00879,12.3)"
+ id="text3782"><tspan
+ x="0 3.3336 13.3296 20.004 26.6784 29.344801 35.344799"
+ y="0"
+ id="tspan3784"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:monica</tspan></text>
+</g><path
+ d="m 884.5,151.0421 c 0,8.3113 -3.0988,9.3396 -25.7347,17.5649 l -0.2391,0.0851 c -22.7554,8.3114 -22.9921,8.3114 -46.3454,8.3114 -31.0953,0 -171.6808,0 -171.6808,0 l 0,-87.737 244,0 0,61.7756 z"
+ id="path3786"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3788"><path
+ d="m 881,954.4579 c 0,-8.3113 -3.0988,-9.3396 -25.7347,-17.5649 l -0.2391,-0.0851 c -22.7554,-8.3114 -22.9921,-8.3114 -46.3454,-8.3114 -31.0953,0 -171.6808,0 -171.6808,0 l 0,87.7375 244,0 0,-61.7761 z m 0,-0.4281 c 0,-7.8832 -0.2391,-7.8832 -48.9659,-7.8832 l 0,0 c 0,-17.5641 0,-17.6501 -21.9234,-17.6501"
+ id="path3790"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,762,133.635)"
+ id="g3792"><text
+ transform="translate(-117,-24)"
+ id="text3794"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 64.372803 71.047203 75.043198 81.043198 87.717598 94.391998 97.725601 101.0592 104.3928 111.0672 117.7416 121.0752 124.4088 132.4128 139.0872 143.08321 149.08321 155.7576"
+ y="0"
+ id="tspan3796"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Person, foaf:Person</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,762,133.635)"
+ id="g3798"><text
+ transform="translate(-117,4)"
+ id="text3800"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 32.690399 38.690399 45.364799 52.0392 60.705601 67.379997 77.375999 84.0504 91.058403 95.318398 105.3144 111.9888 118.6632 121.3296 127.3296 134.004 138.26401 143.89439 149.5248 155.5248 161.5248 168.1992 171.53281 177.53281 180.86639 184.8624 187.52879 194.2032"
+ y="0"
+ id="tspan3802"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:givenName="Monica"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,762,133.635)"
+ id="g3804"><text
+ transform="translate(-117,32)"
+ id="text3806"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 33.3456 40.02 46.694401 52.694401 59.7024 66.710403 76.706398 83.380798 86.047203 88.7136 92.047203 98.721603 102.0552 112.0512 118.7256 125.4 128.06641 134.06641 140.7408 152.922 159.59641 165.59641 172.2708 182.2668 188.94119 191.6076 198.282 201.6156 208.28999 212.286 218.9604"
+ y="0"
+ id="tspan3808"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:mbox=<mailto:monica@example.org></tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3810"><path
+ d="m 822.0753,877.2055 -33.7214,50.8743"
+ id="path3812"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 587.264,206.2618 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8456,-9.7631 -59.8857,-9.7631 -82.7314,0 -22.8457,9.7631 -22.8457,25.5922 0,35.3553 22.8457,9.7632 59.8858,9.7632 82.7314,0"
+ id="path3814"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3816"><path
+ d="m 583.764,899.2382 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8456,9.7631 -59.8857,9.7631 -82.7314,0 -22.8457,-9.7631 -22.8457,-25.5922 0,-35.3553 22.8457,-9.7632 59.8858,-9.7632 82.7314,0"
+ id="path3818"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,545.3983,189.0842)"
+ id="g3820"><text
+ transform="translate(-26.35547,4)"
+ id="text3822"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392"
+ y="0"
+ id="tspan3824"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9822</tspan></text>
+</g><path
+ d="m 631.2401,97.33093 c 0,8.31137 -2.7425,9.33957 -22.7757,17.56497 l -0.2116,0.0851 c -20.139,8.3113 -20.3485,8.3113 -41.0165,8.3113 -27.5199,0 -151.9406,0 -151.9406,0 l 0,-87.73696 215.9444,0 0,61.77559 z"
+ id="path3826"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3828"><path
+ d="m 627.7401,1008.169 c 0,-8.3113 -2.7425,-9.3395 -22.7757,-17.5649 l -0.2116,-0.0851 c -20.139,-8.3113 -20.3485,-8.3113 -41.0165,-8.3113 -27.5199,0 -151.9406,0 -151.9406,0 l 0,87.7373 215.9444,0 0,-61.776 z m 0,-0.428 c 0,-7.8833 -0.2117,-7.8833 -43.3358,-7.8833 l 0,0 c 0,-17.564 0,-17.65 -19.4026,-17.65"
+ id="path3830"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,522.7679,79.92382)"
+ id="g3832"><text
+ transform="translate(-102.9722,-17)"
+ id="text3834"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan3836"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,522.7679,79.92382)"
+ id="g3838"><text
+ transform="translate(-102.9722,11)"
+ id="text3840"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 28.007999 30.6744 34.007999 36.6744 43.348801 50.3568 53.690399 57.950401 67.946404 74.620796 78.616798 85.291199 88.624802 94.624802 98.620796 101.2872 111.2832 117.9576 121.2912 127.9656 134.64 141.31441 147.9888 154.66319 161.3376 167.3376 170.6712 173.3376 180.01199"
+ y="0"
+ id="tspan3842"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:title= "More crime happens in </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,522.7679,79.92382)"
+ id="g3844"><text
+ transform="translate(-102.9722,25)"
+ id="text3846"><tspan
+ x="0 6 8.6664 12 14.6664 21.340799 27.340799 30.6744 34.670399 38.004002 44.678398 48.6744 52.007999 58.6824 65.356796 75.352798 85.348801 88.015198 94.689598 100.6896 104.6856 108.9456 114.576 120.2064 126.2064 132.20641 138.8808 142.2144 148.2144 151.548 155.54401 158.2104 164.8848"
+ y="0"
+ id="tspan3848"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">cities (for dummies)"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3850"><path
+ d="m 537.1339,942.3084 -8.1703,39.4097"
+ id="path3852"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3854"><path
+ d="M 487.7018,926.4222 330.4909,953.7458"
+ id="path3856"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 326.109,150.3844 8.3956,-1.5859 -1.0274,5.9114 -7.3682,-4.3255 z"
+ id="path3858"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3860"><path
+ d="m 322.609,955.1156 8.3956,1.5859 -1.0274,-5.9114 -7.3682,4.3255 z"
+ id="path3862"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 362.6237,177.3994 93,0 0,-24 -93,0 0,24 z"
+ id="path3864"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,409.1237,165.3994)"
+ id="g3866"><text
+ transform="translate(-41.02734,4)"
+ id="text3868"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3870"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><path
+ d="m 188.2371,166.5976 131,0 c 2.7614,0 5,-2.2385 5,-5 l 0,-23.0772 c 0,-2.7614 -2.2386,-5 -5,-5 l -131,0 c -2.7614,0 -5,2.2386 -5,5 0,0 0,0 0,0 l 0,23.0772 c 0,2.7615 2.2386,5 5,5 0,0 0,0 0,0 z"
+ id="path3872"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3874"><path
+ d="m 184.7371,938.9024 131,0 c 2.7614,0 5,2.2385 5,5 l 0,23.0772 c 0,2.7614 -2.2386,5 -5,5 l -131,0 c -2.7614,0 -5,-2.2386 -5,-5 0,0 0,0 0,0 l 0,-23.0772 c 0,-2.7615 2.2386,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3876"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,253.2371,150.559)"
+ id="g3878"><text
+ transform="translate(-59.01855,-3)"
+ id="text3880"><tspan
+ x="0 3.3336 13.3296 20.004 24 30.6744 34.670399 40.670399 44.666401 47.332802 57.3288 64.003197 67.999199 74.673599 81.348 88.0224 94.6968 101.3712 108.0456 114.0456"
+ y="0"
+ id="tspan3882"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:more-crime-happens-</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,253.2371,150.559)"
+ id="g3884"><text
+ transform="translate(-55.67578,11)"
+ id="text3886"><tspan
+ x="0 2.6664 9.3408003 13.3368 19.3368 22.003201 25.3368 28.003201 34.677601 40.677601 44.673599 48.007198 54.681599 58.677601 62.673599 69.348 76.0224 86.018402 96.014397 98.680801 105.3552"
+ y="0"
+ id="tspan3888"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">in-cities-for-dummies</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3890"><path
+ d="M 483.7008,914.3493 254.9735,904.3482"
+ id="path3892"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 250.4812,201.5012 7.8613,-3.3466 0.2621,5.9943 -8.1234,-2.6477 z"
+ id="path3894"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3896"><path
+ d="m 246.9812,903.9988 7.8613,3.3466 0.2621,-5.9943 -8.1234,2.6477 z"
+ id="path3898"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 276.9268,210.1777 121,0 0,-24 -121,0 0,24 z"
+ id="path3900"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,337.4268,198.1777)"
+ id="g3902"><text
+ transform="translate(-55.03125,4)"
+ id="text3904"><tspan
+ x="0 9.9960003 15.996 19.329599 25.329599 32.004002 38.678398 45.352798 51.352798 58.027199 64.701599 68.035202 76.701599 83.375999 90.0504 93.384003 100.0584 106.7328"
+ y="0"
+ id="tspan3906"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">my:snapshotContent</tspan></text>
+</g><path
+ d="m 151.4163,213.5842 92.1667,0 c 2.7614,0 5,-2.2385 5,-5 l 0,-14 c 0,-2.7614 -2.2386,-5 -5,-5 l -92.1667,0 c -2.7614,0 -5,2.2386 -5,5 0,0 0,0 0,0 l 0,14 c 0,2.7615 2.2386,5 5,5 0,0 0,0 0,0 z"
+ id="path3908"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3910"><path
+ d="m 147.9163,891.9158 92.1667,0 c 2.7614,0 5,2.2385 5,5 l 0,14 c 0,2.7614 -2.2386,5 -5,5 l -92.1667,0 c -2.7614,0 -5,-2.2386 -5,-5 0,0 0,0 0,0 l 0,-14 c 0,-2.7615 2.2386,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3912"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,196.9997,202.0842)"
+ id="g3914"><text
+ transform="translate(-37.35938,4)"
+ id="text3916"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.6824 41.3568 48.0312 51.364799 58.0392 64.7136 68.047203"
+ y="0"
+ id="tspan3918"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postContent2</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3920"><path
+ d="M 542.3785,891.4158 542.2768,760.8813"
+ id="path3922"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 545.7705,352.6187 -2.9937,-8.0023 6,0.005 -3.0063,7.9976 z"
+ id="path3924"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3926"><path
+ d="m 542.2705,752.8813 -2.9937,8.0023 6,-0.005 -3.0063,-7.9976 z"
+ id="path3928"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 496.8345,283.0065 97,0 0,-24 -97,0 0,24 z"
+ id="path3930"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,545.3345,271.0065)"
+ id="g3932"><text
+ transform="translate(-43.02246,4)"
+ id="text3934"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.019199 39.352798 46.027199 50.023201 56.697601 63.372002 66.705597 73.379997 82.7136"
+ y="0"
+ id="tspan3936"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:alternateOf</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3938"><path
+ d="M 488.8071,906.3124 189,846.9935 l 1,-112.7153 27.4019,-94.6388"
+ id="path3940"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 223.1268,473.545 -5.1065,-6.85 5.7632,-1.6688 -0.6567,8.5188 z"
+ id="path3942"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3944"><path
+ d="m 219.6268,631.955 -5.1065,6.85 5.7632,1.6688 -0.6567,-8.5188 z"
+ id="path3946"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 223.0461,252.7946 122,0 0,-24 -122,0 0,24 z"
+ id="path3948"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,284.0461,240.7946)"
+ id="g3950"><text
+ transform="translate(-55.69336,4)"
+ id="text3952"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 32.678398 39.352798 46.027199 52.027199 54.6936 61.368 64.034401 66.700798 72.700798 79.375198 82.708801 85.375198 92.049599 98.723999 108.0576"
+ y="0"
+ id="tspan3954"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:specializationOf</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3956"><path
+ d="M 582.6115,898.3674 905,749.6647 904,332.3902 765.0706,259.6658"
+ id="path3958"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 761.483,849.5443 5.6963,-6.368 2.7826,5.3157 -8.4789,1.0523 z"
+ id="path3960"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3962"><path
+ d="m 757.983,255.9557 5.6963,6.368 2.7826,-5.3157 -8.4789,-1.0523 z"
+ id="path3964"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 626.4549,267.992 128,0 0,-24 -128,0 0,24 z"
+ id="path3966"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,690.4549,255.992)"
+ id="g3968"><text
+ transform="translate(-58.69922,4)"
+ id="text3970"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 51.352798 58.027199 64.027199 70.701599 77.375999 84.0504 90.0504 96.7248 103.3992 111.4032"
+ y="0"
+ id="tspan3972"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasInfluencedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3974"><path
+ d="m 598.4215,908.9613 213.357,-30.2938"
+ id="path3976"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 823.1991,227.9571 -8.3423,1.8456 0.8435,-5.9404 7.4988,4.0948 z"
+ id="path3978"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3980"><path
+ d="m 819.6991,877.5429 -8.3423,-1.8456 0.8435,5.9404 7.4988,-4.0948 z"
+ id="path3982"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 660.6176,226.1759 123,0 0,-24 -123,0 0,24 z"
+ id="path3984"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,722.1176,214.1759)"
+ id="g3986"><text
+ transform="translate(-56.02734,4)"
+ id="text3988"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan3990"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3992"><path
+ d="m 1391.768,226.7649 34.827,-19.9302"
+ id="path3994"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 1427.137,418.6654 0,33.35 32.5,16.65 32.5,-16.65 0,-33.35 -65,0 z"
+ id="path3996"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g3998"><path
+ d="m 1423.637,686.8346 0,-33.35 32.5,-16.65 32.5,16.65 0,33.35 -65,0 z"
+ id="path4000"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1459.137,444.1654)"
+ id="g4002"><text
+ transform="translate(-13.01074,12.3)"
+ id="text4004"><tspan
+ x="0 3.3336 5.9952002 12.6648 19.3344"
+ y="0"
+ id="tspan4006"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:john</tspan></text>
+</g><path
+ d="m 1353.866,951.1703 c 22.845,-9.7631 22.845,-25.5922 0,-35.3553 -22.846,-9.7631 -59.886,-9.7631 -82.732,0 -22.846,9.7631 -22.846,25.5922 0,35.3553 22.846,9.7632 59.886,9.7632 82.732,0"
+ id="path4008"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4010"><path
+ d="m 1350.366,154.3297 c 22.845,9.7631 22.845,25.5922 0,35.3553 -22.846,9.7631 -59.886,9.7631 -82.732,0 -22.846,-9.7631 -22.846,-25.5922 0,-35.3553 22.846,-9.7632 59.886,-9.7632 82.732,0"
+ id="path4012"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1312,933.9927)"
+ id="g4014"><text
+ transform="translate(-20.01855,4)"
+ id="text4016"><tspan
+ x="0 3.3336 10.0032 16.6728 23.3424 26.676001 33.3456"
+ y="0"
+ id="tspan4018"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:quote1</tspan></text>
+</g><path
+ d="m 1551.749,1054.037 c 0,6.551 -2.388,7.362 -19.829,13.845 l -0.184,0.067 c -17.533,6.551 -17.715,6.551 -35.709,6.551 -23.959,0 -132.278,0 -132.278,0 l 0,-69.154 188,0 0,48.691 z"
+ id="path4020"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4022"><path
+ d="m 1548.249,51.46258 c 0,-6.55093 -2.388,-7.36141 -19.829,-13.84457 l -0.184,-0.06708 C 1510.703,31 1510.521,31 1492.527,31 c -23.959,0 -132.278,0 -132.278,0 l 0,69.1537 188,0 0,-48.69112 z m 0,-0.33747 c 0,-6.21346 -0.185,-6.21346 -37.728,-6.21346 l 0,0 c 0,-13.84388 0,-13.91165 -16.892,-13.91165"
+ id="path4024"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1457.249,1040.423)"
+ id="g4026"><text
+ transform="translate(-72.33691,-10)"
+ id="text4028"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 32.678398 39.352798 42.019199 48.6936 55.368 62.375999 66.636002 74.639999 81.3144 87.9888 90.655197 96.655197 102.6552 105.3216 111.3216 114.6552 121.3296 124.6632 127.9968 131.3304 138.00481 144.6792"
+ y="0"
+ id="tspan4030"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:value="Analysis of the </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1457.249,1040.423)"
+ id="g4032"><text
+ transform="translate(-84.71777,4)"
+ id="text4034"><tspan
+ x="0 6.6743999 13.3488 16.6824 23.3568 29.3568 36.0312 39.364799 45.364799 48.698399 55.372799 62.047199 72.043198 78.717598 85.391998 91.391998 94.725601 98.721603 105.396 108.7296 115.404 118.7376 122.0712 128.74561 135.42 138.7536 142.0872 145.42081 152.0952 158.76961 162.76559 169.44"
+ y="0"
+ id="tspan4036"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">datasets demonstrate that there </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1457.249,1040.423)"
+ id="g4038"><text
+ transform="translate(-38.13281,18)"
+ id="text4040"><tspan
+ x="0 2.6664 8.6664 12 21.996 28.670401 32.666401 39.340801 42.6744 48.6744 52.670399 55.3368 65.332802 72.007202"
+ y="0"
+ id="tspan4042"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">is more crime"</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4044"><path
+ d="m 1338.885,150.1115 67.782,-49.6622"
+ id="path4046"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4048"><path
+ d="M 1275.266,192.8272 972,380 607.5945,505.7313"
+ id="path4050"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 603.532,597.1593 8.541,-0.2266 -1.957,5.6719 -6.584,-5.4453 z"
+ id="path4052"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4054"><path
+ d="m 600.032,508.3407 8.541,0.2266 -1.957,-5.6719 -6.584,5.4453 z"
+ id="path4056"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1148.481,883.9532 126,0 0,-24 -126,0 0,24 z"
+ id="path4058"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1211.481,871.9532)"
+ id="g4060"><text
+ transform="translate(-57.68848,4)"
+ id="text4062"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 74.035202 80.709602 87.384003 94.7136 98.709602 105.384"
+ y="0"
+ id="tspan4064"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasQuotedFrom</tspan></text>
+</g><path
+ d="m 1401.192,876.1309 c 22.846,-9.7631 22.846,-25.5922 0,-35.3553 -22.845,-9.7632 -59.885,-9.7632 -82.731,0 -22.846,9.7631 -22.846,25.5922 0,35.3553 22.846,9.7631 59.886,9.7631 82.731,0"
+ id="path4066"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4068"><path
+ d="m 1397.692,229.3691 c 22.846,9.7631 22.846,25.5922 0,35.3553 -22.845,9.7632 -59.885,9.7632 -82.731,0 -22.846,-9.7631 -22.846,-25.5922 0,-35.3553 22.846,-9.7631 59.886,-9.7631 82.731,0"
+ id="path4070"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1359.327,858.9532)"
+ id="g4072"><text
+ transform="translate(-20.01855,4)"
+ id="text4074"><tspan
+ x="0 3.3336 10.0032 16.6728 23.3424 26.676001 33.3456"
+ y="0"
+ id="tspan4076"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:quote2</tspan></text>
+</g><path
+ d="m 1584.249,947.607 c 0,6.5509 -2.388,7.3614 -19.829,13.8445 l -0.184,0.0671 c -17.533,6.5509 -17.715,6.5509 -35.709,6.5509 -23.959,0 -132.278,0 -132.278,0 l 0,-69.1537 188,0 0,48.6912 z"
+ id="path4078"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4080"><path
+ d="m 1580.749,157.893 c 0,-6.5509 -2.388,-7.3614 -19.829,-13.8445 l -0.184,-0.0671 c -17.533,-6.5509 -17.715,-6.5509 -35.709,-6.5509 -23.959,0 -132.278,0 -132.278,0 l 0,69.1537 188,0 0,-48.6912 z m 0,-0.3374 c 0,-6.2135 -0.185,-6.2135 -37.728,-6.2135 l 0,0 c 0,-13.8439 0,-13.9116 -16.892,-13.9116"
+ id="path4082"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1489.749,933.9927)"
+ id="g4084"><text
+ transform="translate(-86.56348,-10)"
+ id="text4086"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 32.678398 39.352798 42.019199 48.6936 55.368 62.375999 66.636002 69.969597 76.643997 79.9776 85.9776 92.652 102.648 109.3224 113.3184 118.434 121.7676 125.1012 128.4348 135.10921 141.7836 145.7796 152.45399 155.7876 162.46201 166.45799 173.1324"
+ y="0"
+ id="tspan4088"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:value="In sumary, there are </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1489.749,933.9927)"
+ id="g4090"><text
+ transform="translate(-68.35254,4)"
+ id="text4092"><tspan
+ x="0 6 8.6664 15.3408 22.0152 26.0112 28.677601 34.677601 38.0112 48.007198 54.681599 58.677601 65.351997 68.6856 74.6856 78.681602 81.348 91.344002 98.018402 104.0184 107.352 110.0184 116.6928 120.0264 123.36 130.03439 136.7088"
+ y="0"
+ id="tspan4094"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">clearly more crimes in the </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1489.749,933.9927)"
+ id="g4096"><text
+ transform="translate(-21.80566,18)"
+ id="text4098"><tspan
+ x="0 6 12.6744 19.348801 26.023199 29.3568 33.352798 39.352798"
+ y="0"
+ id="tspan4100"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">country"</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4102"><path
+ d="M 1321.486,267.5225 585.6248,699.9894"
+ id="path4104"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 582.2277,401.4572 8.4171,1.467 -3.0401,5.1728 -5.377,-6.6398 z"
+ id="path4106"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4108"><path
+ d="m 578.7277,704.0428 8.4171,-1.467 -3.0401,-5.1728 -5.377,6.6398 z"
+ id="path4110"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 911.1996,644.6135 126.0004,0 0,-24 -126.0004,0 0,24 z"
+ id="path4112"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,974.1996,632.6135)"
+ id="g4114"><text
+ transform="translate(-57.68848,4)"
+ id="text4116"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 74.035202 80.709602 87.384003 94.7136 98.709602 105.384"
+ y="0"
+ id="tspan4118"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasQuotedFrom</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4120"><path
+ d="M 615.482,330.0427 1247.226,186.084"
+ id="path4122"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1258.526,921.1935 -8.466,1.1475 1.333,-5.85 7.133,4.7025 z"
+ id="path4124"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4126"><path
+ d="m 1255.026,184.3065 -8.466,-1.1475 1.333,5.85 7.133,-4.7025 z"
+ id="path4128"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1167.286,920.194 63,0 0,-24 -63,0 0,24 z"
+ id="path4130"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1198.786,908.194)"
+ id="g4132"><text
+ transform="translate(-26.34961,4)"
+ id="text4134"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan4136"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4138"><path
+ d="M 615.482,341.0897 1289.92,255.4764"
+ id="path4140"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1301.357,851.0311 -8.314,1.9686 0.755,-5.9522 7.559,3.9836 z"
+ id="path4142"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4144"><path
+ d="m 1297.857,254.4689 -8.314,-1.9686 0.755,5.9522 7.559,-3.9836 z"
+ id="path4146"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1172.636,851.2533 63,0 0,-24 -63,0 0,24 z"
+ id="path4148"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1204.136,839.2533)"
+ id="g4150"><text
+ transform="translate(-26.34961,4)"
+ id="text4152"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan4154"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4156"><path
+ d="M 615.482,341.0897 1152,352 1151,301.1915 784.2673,245.4221"
+ id="path4158"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 779.8582,861.2806 7.4581,-4.1686 0.902,5.9318 -8.3601,-1.7632 z"
+ id="path4160"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4162"><path
+ d="m 776.3582,244.2194 7.4581,4.1686 0.902,-5.9318 -8.3601,1.7632 z"
+ id="path4164"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1123.015,790.6604 63,0 0,-24 -63,0 0,24 z"
+ id="path4166"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1154.515,778.6604)"
+ id="g4168"><text
+ transform="translate(-26.34961,4)"
+ id="text4170"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan4172"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><path
+ d="m 1410.366,301.1842 c 22.845,-9.7631 22.845,-25.5922 0,-35.3553 -22.846,-9.7632 -59.886,-9.7632 -82.732,0 -22.845,9.7631 -22.845,25.5922 0,35.3553 22.846,9.7631 59.886,9.7631 82.732,0"
+ id="path4174"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4176"><path
+ d="m 1406.866,804.3158 c 22.845,9.7631 22.845,25.5922 0,35.3553 -22.846,9.7632 -59.886,9.7632 -82.732,0 -22.845,-9.7631 -22.845,-25.5922 0,-35.3553 22.846,-9.7631 59.886,-9.7631 82.732,0"
+ id="path4178"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1368.5,284.0065)"
+ id="g4180"><text
+ transform="translate(-29.69238,4)"
+ id="text4182"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136"
+ y="0"
+ id="tspan4184"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post19201</tspan></text>
+</g><path
+ d="m 1551.749,300.7894 c 0,4.0734 -1.182,4.5773 -9.809,8.6086 l -0.091,0.0417 c -8.673,4.0734 -8.764,4.0734 -17.665,4.0734 -11.852,0 -65.435,0 -65.435,0 l 0,-43 93,0 0,30.2763 z"
+ id="path4186"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4188"><path
+ d="m 1548.249,804.7106 c 0,-4.0734 -1.182,-4.5773 -9.809,-8.6086 l -0.091,-0.0417 c -8.673,-4.0734 -8.764,-4.0734 -17.665,-4.0734 -11.852,0 -65.435,0 -65.435,0 l 0,43 93,0 0,-30.2763 z m 0,-0.2098 c 0,-3.8636 -0.092,-3.8636 -18.664,-3.8636 l 0,0 c 0,-8.6081 0,-8.6503 -8.356,-8.6503"
+ id="path4190"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1504.749,292.5131)"
+ id="g4192"><text
+ transform="translate(-41.5,4)"
+ id="text4194"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan4196"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4198"><path
+ d="m 1423.917,818.4348 30.833,-1.8783"
+ id="path4200"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4202"><path
+ d="M 615.482,354.2611 1181,478 1347.513,788.4572"
+ id="path4204"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1354.794,309.9928 -1.137,8.468 -5.288,-2.8359 6.425,-5.6321 z"
+ id="path4206"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4208"><path
+ d="m 1351.294,795.5072 -1.137,-8.468 -5.288,2.8359 6.425,5.6321 z"
+ id="path4210"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1173.606,574.5471 91,0 0,-24 -91,0 0,24 z"
+ id="path4212"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1219.106,562.5471)"
+ id="g4214"><text
+ transform="translate(-40.3623,4)"
+ id="text4216"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 53.375999 57.372002 64.046402 67.379997 74.054398"
+ y="0"
+ id="tspan4218"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:generated</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4220"><path
+ d="m 1381.898,797.5412 68.725,-102.4843"
+ id="path4222"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1458.579,417.0874 -6.947,-4.9735 4.983,-3.3417 1.964,8.3152 z"
+ id="path4224"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4226"><path
+ d="m 1455.079,688.4126 -6.947,4.9735 4.983,3.3417 1.964,-8.3152 z"
+ id="path4228"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1363.55,380.3348 123,0 0,-24 -123,0 0,24 z"
+ id="path4230"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1425.05,368.3348)"
+ id="g4232"><text
+ transform="translate(-56.02734,4)"
+ id="text4234"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan4236"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4238"><path
+ d="M 1320.133,805.7952 606.4577,550.9757"
+ id="path4240"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 602.4235,557.2144 6.5254,-5.5154 2.0175,5.6506 -8.5429,-0.1352 z"
+ id="path4242"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4244"><path
+ d="m 598.9235,548.2856 6.5254,5.5154 2.0175,-5.6506 -8.5429,0.1352 z"
+ id="path4246"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1130.152,358.2578 128,0 0,-24 -128,0 0,24 z"
+ id="path4248"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1194.152,346.2578)"
+ id="g4250"><text
+ transform="translate(-58.68164,4)"
+ id="text4252"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.6856 63.360001 67.356003 70.0224 76.0224 82.6968 89.371201 96.700798 100.6968 107.3712"
+ y="0"
+ id="tspan4254"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasDerivedFrom</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4256"><path
+ d="M 1308.578,815.3203 609.0039,733.3071"
+ id="path4258"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 604.5583,373.1244 7.5963,-3.9111 0.6986,5.9592 -8.2949,-2.0481 z"
+ id="path4260"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4262"><path
+ d="m 601.0583,732.3756 7.5963,3.9111 0.6986,-5.9592 -8.2949,2.0481 z"
+ id="path4264"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1130.154,316.4456 128,0 0,-24 -128,0 0,24 z"
+ id="path4266"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1194.154,304.4456)"
+ id="g4268"><text
+ transform="translate(-58.68164,4)"
+ id="text4270"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.6856 63.360001 67.356003 70.0224 76.0224 82.6968 89.371201 96.700798 100.6968 107.3712"
+ y="0"
+ id="tspan4272"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasDerivedFrom</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4274"><path
+ d="M 1356.696,796.794 1235.883,451 625.2638,355.7864"
+ id="path4276"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 620.8593,750.9461 7.4423,-4.1967 0.9244,5.9284 -8.3667,-1.7317 z"
+ id="path4278"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4280"><path
+ d="m 617.3593,354.5539 7.4423,4.1967 0.9244,-5.9284 -8.3667,1.7317 z"
+ id="path4282"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1178.755,654.4858 129,0 0,-24 -129,0 0,24 z"
+ id="path4284"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1243.255,642.4858)"
+ id="g4286"><text
+ transform="translate(-59.36426,4)"
+ id="text4288"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 77.375999 81.372002 88.046402 91.379997 98.054398 104.7288 112.7328"
+ y="0"
+ id="tspan4290"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasGeneratedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4292"><path
+ d="M 1364.78,796.4955 1355,450 774.6409,254.2868"
+ id="path4294"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 770.5604,853.7696 6.6219,-5.3991 1.9173,5.6854 -8.5392,-0.2863 z"
+ id="path4296"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4298"><path
+ d="m 767.0604,251.7304 6.6219,5.3991 1.9173,-5.6854 -8.5392,0.2863 z"
+ id="path4300"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1290.827,620.9996 137,0 0,-24 -137,0 0,24 z"
+ id="path4302"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1359.327,608.9996)"
+ id="g4304"><text
+ transform="translate(-63.02637,4)"
+ id="text4306"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 54.705601 58.701599 61.368 71.363998 78.038399 82.034401 88.034401 96.038399 102.7128 109.3872 113.3832 119.3832"
+ y="0"
+ id="tspan4308"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:hadPrimarySource</tspan></text>
+</g><path
+ d="m 1595.513,204.5547 c 0,6.1575 -2.673,6.9193 -22.204,13.013 l -0.206,0.0631 c -19.634,6.1574 -19.839,6.1574 -39.988,6.1574 -26.83,0 -148.131,0 -148.131,0 l 0,-65 210.529,0 0,45.7665 z"
+ id="path4310"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4312"><path
+ d="m 1592.013,900.9453 c 0,-6.1575 -2.673,-6.9193 -22.204,-13.013 l -0.206,-0.0631 c -19.634,-6.1574 -19.839,-6.1574 -39.988,-6.1574 -26.83,0 -148.131,0 -148.131,0 l 0,65 210.529,0 0,-45.7665 z m 0,-0.3172 c 0,-5.8403 -0.206,-5.8403 -42.249,-5.8403 l 0,0 c 0,-13.0123 0,-13.076 -18.916,-13.076"
+ id="path4314"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1489.749,191.7882)"
+ id="g4316"><text
+ transform="translate(-100.2649,-3)"
+ id="text4318"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 29.344801 36.019199 42.019199 48.6936 51.360001 54.026402 60.700802 67.375198 70.708801 77.383202 84.057602 92.0616 95.395203 102.2856 104.952 114.948 121.6224 128.6304 132.8904 139.5648 146.2392 152.9136 159.588 163.584 170.25841 176.9328 180.9288 187.6032"
+ y="0"
+ id="tspan4320"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:invalidatedAtTime="2012-09-02</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1489.749,191.7882)"
+ id="g4322"><text
+ transform="translate(-100.2649,11)"
+ id="text4324"><tspan
+ x="0 7.3295999 14.004 20.6784 24.011999 30.686399 37.360802 40.694401 47.368801 54.043201 61.372799 65.632797 71.263199 76.8936 82.8936 88.8936 95.568001 98.901604 105.576 112.2504 115.584 122.2584 129.1488 131.8152 141.8112"
+ y="0"
+ id="tspan4326"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">T01:31:00Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4328"><path
+ d="m 1394.563,844.0965 49.061,37.3126"
+ id="path4330"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 1141.481,130.0765 141,0 0,-50.00005 -141,0 0,50.00005 z"
+ id="path4332"
+ style="fill:#d8d8ff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4334"><path
+ d="m 1137.981,975.4235 141,0 0,50.0005 -141,0 0,-50.0005 z"
+ id="path4336"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1211.481,105.5765)"
+ id="g4338"><text
+ transform="translate(-47.36133,4)"
+ id="text4340"><tspan
+ x="0 3.3336 10.008 16.6824 20.6784 27.3528 34.027199 40.701599 43.368 49.368 55.368 62.0424 65.375999 72.0504 74.716797 77.383202 84.057602 88.053596"
+ y="0"
+ id="tspan4342"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:hard_disk_failure</tspan></text>
+</g><path
+ d="m 1565.506,110.8429 c 0,6.1575 -2.292,6.9193 -19.039,13.013 l -0.177,0.0631 c -16.836,6.1574 -17.011,6.1574 -34.289,6.1574 -23.006,0 -127.017,0 -127.017,0 l 0,-64.99998 180.522,0 0,45.76648 z"
+ id="path4344"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4346"><path
+ d="m 1562.006,994.6571 c 0,-6.1575 -2.292,-6.9193 -19.039,-13.013 l -0.177,-0.0631 c -16.836,-6.1574 -17.011,-6.1574 -34.289,-6.1574 -23.006,0 -127.017,0 -127.017,0 l 0,65.0004 180.522,0 0,-45.7669 z m 0,-0.3172 c 0,-5.8403 -0.177,-5.8403 -36.227,-5.8403 l 0,0 c 0,-13.0123 0,-13.076 -16.22,-13.076"
+ id="path4348"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,1474.745,98.07642)"
+ id="g4350"><text
+ transform="translate(-85.26131,-3)"
+ id="text4352"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 76.046402 82.720802 90.7248 94.058403 101.0664 105.3264 112.0008 118.6752 125.3496 132.024 136.02 142.6944 149.3688 153.36481 160.0392"
+ y="0"
+ id="tspan4354"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasEndedAt="2012-09-02</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,1474.745,98.07642)"
+ id="g4356"><text
+ transform="translate(-85.26131,11)"
+ id="text4358"><tspan
+ x="0 7.3295999 14.004 20.6784 24.011999 30.686399 37.360802 40.694401 47.368801 54.043201 61.372799 65.632797 71.263199 76.8936 82.8936 88.8936 95.568001 98.901604 105.576 112.2504 115.584 122.2584 129.1488 131.8152 141.8112"
+ y="0"
+ id="tspan4360"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">T01:31:00Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4362"><path
+ d="m 1279.48,1000.443 101.504,3.949"
+ id="path4364"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4366"><path
+ d="m 1347.102,846.171 -92.056,120.9762"
+ id="path4368"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1253.702,131.9864 7.232,4.5497 -4.775,3.6334 -2.457,-8.1831 z"
+ id="path4370"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,3.5,1105.5)"
+ id="g4372"><path
+ d="m 1250.202,973.5136 7.232,-4.5497 -4.775,-3.6334 -2.457,8.1831 z"
+ id="path4374"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 1238.463,211.1946 131,0 0,-24 -131,0 0,24 z"
+ id="path4376"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,1303.963,199.1946)"
+ id="g4378"><text
+ transform="translate(-60.03223,4)"
+ id="text4380"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 51.352798 58.027199 64.027199 70.701599 73.367996 76.034401 82.708801 89.383202 92.716797 99.391197 106.0656 114.0696"
+ y="0"
+ id="tspan4382"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasInvalidatedBy</tspan></text>
+</g></g></g></g></svg>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost.graffle Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,3284 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>ActiveLayerIndex</key>
+ <integer>0</integer>
+ <key>ApplicationVersion</key>
+ <array>
+ <string>com.omnigroup.OmniGraffle</string>
+ <string>139.7.0.167456</string>
+ </array>
+ <key>AutoAdjust</key>
+ <true/>
+ <key>BackgroundGraphic</key>
+ <dict>
+ <key>Bounds</key>
+ <string>{{0, 0}, {1677, 783}}</string>
+ <key>Class</key>
+ <string>SolidGraphic</string>
+ <key>ID</key>
+ <integer>2</integer>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ </dict>
+ <key>BaseZoom</key>
+ <integer>0</integer>
+ <key>CanvasOrigin</key>
+ <string>{0, 0}</string>
+ <key>ColumnAlign</key>
+ <integer>1</integer>
+ <key>ColumnSpacing</key>
+ <real>36</real>
+ <key>CreationDate</key>
+ <string>2012-07-10 15:30:32 +0000</string>
+ <key>Creator</key>
+ <string>David</string>
+ <key>DisplayScale</key>
+ <string>1 0/72 in = 1.0000 in</string>
+ <key>GraphDocumentVersion</key>
+ <integer>8</integer>
+ <key>GraphicsList</key>
+ <array>
+ <dict>
+ <key>Bounds</key>
+ <string>{{390.2038305236938, 227.616534436395}, {107, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>113</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>112</integer>
+ <key>Position</key>
+ <real>0.52815955877304077</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasEndedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>112</integer>
+ <key>Points</key>
+ <array>
+ <string>{504.60440617213163, 320.6320225751407}</string>
+ <string>{472.03170270710211, 240}</string>
+ <string>{340.71417224407202, 238.22239557901867}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{322.58358241307292, 313.39610510345534}, {111, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>111</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>110</integer>
+ <key>Position</key>
+ <real>0.51685702800750732</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasStartedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>110</integer>
+ <key>Points</key>
+ <array>
+ <string>{473.49398797750473, 346.09562397003174}</string>
+ <string>{389.99999994039536, 336}</string>
+ <string>{308.21417224407196, 263.22239557901867}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{553.4263167690649, 400.15575956287563}, {91, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>109</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>108</integer>
+ <key>Position</key>
+ <real>0.25249019265174866</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:generated}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>108</integer>
+ <key>Points</key>
+ <array>
+ <string>{582.34319054016282, 371.558496648904}</string>
+ <string>{625.99999994039536, 478.43502552181508}</string>
+ <string>{577.13795797564057, 510.11842170190204}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{596.3247163670602, 283.20123614039852}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>107</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>106</integer>
+ <key>Position</key>
+ <real>0.42980971932411194</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>106</integer>
+ <key>Points</key>
+ <array>
+ <string>{585.64105216333076, 320.8359631013526}</string>
+ <string>{683.78602727013958, 261.19392661770712}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Info</key>
+ <integer>14</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{501.90036645828707, 198.89334857111601}, {141, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>105</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>104</integer>
+ <key>Position</key>
+ <real>0.6778448224067688</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAssociatedWith}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>55</integer>
+ </dict>
+ <key>ID</key>
+ <integer>104</integer>
+ <key>Points</key>
+ <array>
+ <string>{583.44296797750474, 322.17172397003174}</string>
+ <string>{567.15221653381946, 158.00675328572584}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Info</key>
+ <integer>14</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{346.26324833282331, 265.11126491222132}, {141, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>20</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>19</integer>
+ <key>Position</key>
+ <real>0.52945011854171753</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAssociatedWith}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>19</integer>
+ <key>Points</key>
+ <array>
+ <string>{502.33163106282126, 320.867978684219}</string>
+ <string>{340.71417224407202, 238.22239557901867}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>102</integer>
+ </dict>
+ <key>ID</key>
+ <integer>103</integer>
+ <key>Points</key>
+ <array>
+ <string>{614.49398797750473, 346.09562397003174}</string>
+ <string>{763.87133783102036, 346.09562102723447}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{764.37133783102036, 280.09561920166016}, {184.33349609375, 132}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>102</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 prov:wasStartedAt="2011-07-16T01:01:01Z"^^xsd:dateTime\
+\
+prov:wasEndedAt="2011-07-16T01:52:02Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{391.20588714719941, 602.35351705463995}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>101</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>100</integer>
+ <key>Position</key>
+ <real>0.22412244975566864</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>100</integer>
+ <key>Points</key>
+ <array>
+ <string>{522.82899002347369, 706.31472404499289}</string>
+ <string>{306.99999994039536, 423.27113901469863}</string>
+ <string>{308.21417224407196, 263.22239557901867}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{556.06536205437533, 660.55871048569679}, {145, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>99</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>98</integer>
+ <key>Position</key>
+ <real>0.32790404558181763</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasSpecializationOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>98</integer>
+ <key>Points</key>
+ <array>
+ <string>{579.80226713429681, 711.28944322576137}</string>
+ <string>{628.56536205437533, 687}</string>
+ <string>{628.56536205437533, 618}</string>
+ <string>{566.4944664326764, 557.46448400994598}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{482.91038636057601, 627.69457595983852}, {117, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>97</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>96</integer>
+ <key>Position</key>
+ <real>0.44624504446983337</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasRevisionOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>96</integer>
+ <key>Points</key>
+ <array>
+ <string>{541.30309673593786, 704.98717694135462}</string>
+ <string>{541.5435243350064, 558.67160035251482}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{182.83331274986267, 714.98721313476517}, {102.16666412353516, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>95</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postContent1}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{310.60872132777126, 716.16327083164265}, {121, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>94</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Position</key>
+ <real>0.56354427337646484</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 my:snapshotContent}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>95</integer>
+ </dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Points</key>
+ <array>
+ <string>{482.2908799405181, 729.68177669559998}</string>
+ <string>{284.99997687339783, 726.98721313476517}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{242.74109214938653, 678.88254653432125}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>92</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>91</integer>
+ <key>Position</key>
+ <real>0.68301957845687866</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ <key>ID</key>
+ <integer>91</integer>
+ <key>Points</key>
+ <array>
+ <string>{485.84863981608822, 721.77917063067548}</string>
+ <string>{249, 684.55871048569679}</string>
+ <string>{234.11900096404582, 635.12201335328393}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{394.41094231705983, 463.89129021251921}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>90</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Position</key>
+ <real>0.17704892158508301</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Points</key>
+ <array>
+ <string>{506.92258705751692, 509.99668824978619}</string>
+ <string>{321.46001004611043, 386}</string>
+ <string>{308.21417224407196, 263.22239557901867}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{663.36121428942693, 424.96407221211842}, {137, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>38</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>37</integer>
+ <key>Position</key>
+ <real>0.50460225343704224</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:hadPrimarySource}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>37</integer>
+ <key>Points</key>
+ <array>
+ <string>{597.35299970503036, 513.99305930290291}</string>
+ <string>{733.99999994039536, 467}</string>
+ <string>{719.6850332818675, 265.96849193523366}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{786.03810113668442, 485.94283040365008}, {141, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>86</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postContent0}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{628.56507522277843, 499.91788532522304}, {121, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>85</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>84</integer>
+ <key>Position</key>
+ <real>0.42225828766822815</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 my:snapshotContent}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>86</integer>
+ </dict>
+ <key>ID</key>
+ <integer>84</integer>
+ <key>Points</key>
+ <array>
+ <string>{618.55139633697775, 522.07980948778447}</string>
+ <string>{785.54321377456449, 498.01415001031847}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{265.23851233443838, 525.41336016691082}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>83</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>82</integer>
+ <key>Position</key>
+ <real>0.77092593908309937</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ <key>ID</key>
+ <integer>82</integer>
+ <key>Points</key>
+ <array>
+ <string>{507.17517438611594, 371.41930426908021}</string>
+ <string>{253.66615717178394, 586.73709332829378}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{478.32581704396739, 437.70371348255605}, {129, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>14</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>13</integer>
+ <key>Position</key>
+ <real>0.42443805932998657</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasGeneratedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ <key>ID</key>
+ <integer>13</integer>
+ <key>Points</key>
+ <array>
+ <string>{541.96436987562424, 507.67187051791223}</string>
+ <string>{543.99398797750473, 371.09562397003174}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{473.49398797750473, 321.09562397003174}, {141, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{-0.5, -0.233518}</string>
+ <string>{-0.49144199999999999, 0.26006299999999999}</string>
+ <string>{0.50711799999999996, -0.22408600000000001}</string>
+ <string>{0.50711799999999996, 0.267179}</string>
+ <string>{-0.27431, -0.474028}</string>
+ <string>{0.27977999999999997, -0.47847800000000001}</string>
+ <string>{0.29393799999999998, 0.54304399999999997}</string>
+ <string>{-0.28623199999999999, 0.55380399999999996}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>1</string>
+ <key>g</key>
+ <string>0.805677</string>
+ <key>r</key>
+ <string>0.811737</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :publicationActivity1123}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{320.86124679274332, 654.88268065656132}, {109, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>80</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>79</integer>
+ <key>Position</key>
+ <real>0.45689120888710022</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 sioc:latest_version}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ <key>ID</key>
+ <integer>79</integer>
+ <key>Points</key>
+ <array>
+ <string>{272.82334753160745, 627.57060073897424}</string>
+ <string>{497.24854387298291, 713.61314030401377}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>77</integer>
+ </dict>
+ <key>ID</key>
+ <integer>78</integer>
+ <key>Points</key>
+ <array>
+ <string>{600.22137179600531, 729.55448672234752}</string>
+ <string>{715.50006259521672, 727.73088362007206}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{716, 705.48719088236476}, {93, 43}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>77</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{482.76119480530406, 705.4871826171875}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>76</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9821v2}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{281.47966666718412, 569.11415025918984}, {126, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>75</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>74</integer>
+ <key>Position</key>
+ <real>0.32415285706520081</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 sioc:previous_version}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>74</integer>
+ <key>Points</key>
+ <array>
+ <string>{281.63123304836932, 596.4009421391512}</string>
+ <string>{475.51642649092594, 549.24173020494766}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>72</integer>
+ </dict>
+ <key>ID</key>
+ <integer>73</integer>
+ <key>Points</key>
+ <array>
+ <string>{612.80122583742025, 547.2046528688511}</string>
+ <string>{658.87930185092932, 556.28433006293881}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{659.37011712789536, 534.18446572621633}, {289.334716796875, 100.62622833251953}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>72</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post\
+\
+sioc:title="More crime happens in cities"^^xsd:string\
+\
+prov:generatedAtTime "2011-07-16T01:52:02Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{456.41876214742706, 508.17159144083644}, {170.33332824707031, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>71</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9821v1}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{647.37011204163241, 124.92948754628492}, {141, 33.077266693115234}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>4</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 <file://Users/aggr.txt>}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>63</integer>
+ </dict>
+ <key>ID</key>
+ <integer>64</integer>
+ <key>Points</key>
+ <array>
+ <string>{218.90034932877688, 584.49834811716732}</string>
+ <string>{205.66698784234572, 540.42172256501874}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{132.44467390060845, 485.94284057617188}, {129.94431948423176, 54}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>63</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Location, sioc:Post}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{162, 584.81065877278525}, {129, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>62</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :more-crime-happens-in-cities}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{671.37012461995459, 175.14379657969823}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>70</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>69</integer>
+ <key>Position</key>
+ <real>0.48859477043151855</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>4</integer>
+ </dict>
+ <key>ID</key>
+ <integer>69</integer>
+ <key>Points</key>
+ <array>
+ <string>{717.87013663723963, 214.98122508101363}</string>
+ <string>{717.87011204163241, 158.00675423940015}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{659.37014764547348, 215.48123757044482}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>5</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :aggregatedByRegions}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>56</integer>
+ </dict>
+ <key>ID</key>
+ <integer>57</integer>
+ <key>Points</key>
+ <array>
+ <string>{567.1522166797489, 107.50675327247757}</string>
+ <string>{567.15222339102957, 84.511809044416736}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>55</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{481.98557021220563, 10.011809031168468}, {170.33332824707031, 74}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>56</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:SoftwareAgent\
+\
+foaf:name="Post Editor 3000"}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{529.15221653381946, 108.00675328572584}, {76, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>55</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postEditor}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>53</integer>
+ </dict>
+ <key>ID</key>
+ <integer>54</integer>
+ <key>Points</key>
+ <array>
+ <string>{309.01189670960116, 101.00675582885728}</string>
+ <string>{309.5955682295338, 83.165328681813023}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>10</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{208.83323663473129, 8}, {204, 74.665596008300781}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>53</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Organization\
+\
+foaf:name="Chart Generators, Inc."}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{244.10721457712236, 170.56847777119177}, {129, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>40</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>39</integer>
+ <key>Position</key>
+ <real>0.48859477043151855</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:actedOnBehalfOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>10</integer>
+ </dict>
+ <key>ID</key>
+ <integer>39</integer>
+ <key>Points</key>
+ <array>
+ <string>{308.22058268095839, 212.7224366969742}</string>
+ <string>{309.01189670960116, 151.00675582885731}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{271.01189670960116, 101.00675582885731}, {76, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>10</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :chartgen}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>47</integer>
+ </dict>
+ <key>ID</key>
+ <integer>48</integer>
+ <key>Points</key>
+ <array>
+ <string>{275.71417224407196, 238.22239557901867}</string>
+ <string>{256.84533691098517, 238.22239614947469}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{23.012008666992188, 191.55573175350798}, {233.33332824707031, 93.333335876464844}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>47</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Person, foaf:Person\
+\
+foaf:givenName="Derek"^^xsd:string\
+\
+foaf:mbox=<mailto:derek@example.org>}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{275.71417224407196, 213.22239557901867}, {65, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>9</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :derek}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>51</integer>
+ </dict>
+ <key>ID</key>
+ <integer>52</integer>
+ <key>Points</key>
+ <array>
+ <string>{1072.7326823293574, 114.80311034962517}</string>
+ <string>{1072.7326864742795, 69.028178521630878}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>7</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1007.7605285048485, 30.374480565388694}, {129.94431948423176, 38.153697967529297}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>51</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 type=prov:Bundle}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1014.23268002033, 115.30312283833791}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>7</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :bundlePost}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{6.703826904296875, 3.1881103515625}, {980.296142578125, 756.8118896484375}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>1</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{-1, -1}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural
+
+\f0\fs24 \cf0 :bundlePost\
+type=prov:Bundle}</string>
+ </dict>
+ <key>TextPlacement</key>
+ <integer>0</integer>
+ </dict>
+ </array>
+ <key>GridInfo</key>
+ <dict/>
+ <key>GuidesLocked</key>
+ <string>NO</string>
+ <key>GuidesVisible</key>
+ <string>YES</string>
+ <key>HPages</key>
+ <integer>3</integer>
+ <key>ImageCounter</key>
+ <integer>1</integer>
+ <key>KeepToScale</key>
+ <false/>
+ <key>Layers</key>
+ <array>
+ <dict>
+ <key>Lock</key>
+ <string>NO</string>
+ <key>Name</key>
+ <string>Layer 1</string>
+ <key>Print</key>
+ <string>YES</string>
+ <key>View</key>
+ <string>YES</string>
+ </dict>
+ </array>
+ <key>LayoutInfo</key>
+ <dict>
+ <key>Animate</key>
+ <string>NO</string>
+ <key>HierarchicalOrientation</key>
+ <integer>3</integer>
+ <key>circoMinDist</key>
+ <real>18</real>
+ <key>circoSeparation</key>
+ <real>0.0</real>
+ <key>layoutEngine</key>
+ <string>dot</string>
+ <key>neatoSeparation</key>
+ <real>0.0</real>
+ <key>twopiSeparation</key>
+ <real>0.0</real>
+ </dict>
+ <key>LinksVisible</key>
+ <string>NO</string>
+ <key>MagnetsVisible</key>
+ <string>NO</string>
+ <key>MasterSheets</key>
+ <array/>
+ <key>ModificationDate</key>
+ <string>2012-07-11 12:03:29 +0000</string>
+ <key>Modifier</key>
+ <string>David</string>
+ <key>NotesVisible</key>
+ <string>NO</string>
+ <key>Orientation</key>
+ <integer>2</integer>
+ <key>OriginVisible</key>
+ <string>NO</string>
+ <key>PageBreaks</key>
+ <string>YES</string>
+ <key>PrintInfo</key>
+ <dict>
+ <key>NSBottomMargin</key>
+ <array>
+ <string>float</string>
+ <string>41</string>
+ </array>
+ <key>NSHorizonalPagination</key>
+ <array>
+ <string>coded</string>
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string>
+ </array>
+ <key>NSLeftMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSPaperSize</key>
+ <array>
+ <string>size</string>
+ <string>{595, 842}</string>
+ </array>
+ <key>NSPrintReverseOrientation</key>
+ <array>
+ <string>int</string>
+ <string>0</string>
+ </array>
+ <key>NSRightMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSTopMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ </dict>
+ <key>PrintOnePage</key>
+ <false/>
+ <key>ReadOnly</key>
+ <string>NO</string>
+ <key>RowAlign</key>
+ <integer>1</integer>
+ <key>RowSpacing</key>
+ <real>36</real>
+ <key>SheetTitle</key>
+ <string>Canvas 1</string>
+ <key>SmartAlignmentGuidesActive</key>
+ <string>YES</string>
+ <key>SmartDistanceGuidesActive</key>
+ <string>YES</string>
+ <key>UniqueID</key>
+ <integer>1</integer>
+ <key>UseEntirePage</key>
+ <false/>
+ <key>VPages</key>
+ <integer>1</integer>
+ <key>WindowInfo</key>
+ <dict>
+ <key>CurrentSheet</key>
+ <integer>0</integer>
+ <key>ExpandedCanvases</key>
+ <array>
+ <dict>
+ <key>name</key>
+ <string>Canvas 1</string>
+ </dict>
+ </array>
+ <key>Frame</key>
+ <string>{{229, 229}, {1753, 1158}}</string>
+ <key>ListView</key>
+ <true/>
+ <key>OutlineWidth</key>
+ <integer>142</integer>
+ <key>RightSidebar</key>
+ <false/>
+ <key>ShowRuler</key>
+ <true/>
+ <key>Sidebar</key>
+ <true/>
+ <key>SidebarWidth</key>
+ <integer>120</integer>
+ <key>VisibleRegion</key>
+ <string>{{0, -110}, {1618, 1004}}</string>
+ <key>Zoom</key>
+ <real>1</real>
+ <key>ZoomValues</key>
+ <array>
+ <array>
+ <string>Canvas 1</string>
+ <real>1</real>
+ <real>2</real>
+ </array>
+ </array>
+ </dict>
+</dict>
+</plist>
Binary file ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost.pdf has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost.svg Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,1014 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.1"
+ width="1231.25"
+ height="951.25"
+ id="svg3004"
+ xml:space="preserve"><metadata
+ id="metadata3010"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ id="defs3008"><clipPath
+ id="clipPath3020"><path
+ d="M 0,0 985,0 985,761 0,761 0,0 z"
+ id="path3022" /></clipPath></defs><g
+ transform="matrix(1.25,0,0,-1.25,0,951.25)"
+ id="g3012"><g
+ id="g3014" /><g
+ id="g3016"><g
+ clip-path="url(#clipPath3020)"
+ id="g3018"><path
+ d="m -4.5,762.5 1677,0 0,-783 -1677,0 0,783 z"
+ id="path3024"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
+ d="m 3.203827,758.3119 980.296173,0 0,-756.8119 -980.296173,0 0,756.8119 z"
+ id="path3026"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3028"><path
+ d="M 6.703827,3.18811 987,3.18811 987,760 6.703827,760 l 0,-756.81189 z"
+ id="path3030"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,492.8519,380.4059)"
+ id="g3032"><text
+ transform="translate(-485.1481,-362.4059)"
+ id="text3034"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 30.0312 32.697601 39.372002 47.375999 54.0504 60.0504"
+ y="0"
+ id="tspan3036"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:bundlePost</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,492.8519,380.4059)"
+ id="g3038"><text
+ transform="translate(-485.1481,-348.4059)"
+ id="text3040"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 64.372803 71.047203 77.721603 84.396004 87.062401"
+ y="0"
+ id="tspan3042"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Bundle</tspan></text>
+</g><path
+ d="m 272.2142,498.2776 0,33.35 32.5,16.65 32.5,-16.65 0,-33.35 -65,0 z"
+ id="path3044"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3046"><path
+ d="m 275.7142,263.2224 0,-33.35 32.5,-16.65 32.5,16.65 0,33.35 -65,0 z"
+ id="path3048"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,304.2142,523.7776)"
+ id="g3050"><text
+ transform="translate(-16.67578,12.3)"
+ id="text3052"><tspan
+ x="0 3.3336 10.008 16.6824 20.6784 27.3528"
+ y="0"
+ id="tspan3054"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:derek</tspan></text>
+</g><path
+ d="m 252.8453,542.3269 c 0,8.8415 -2.9633,9.9354 -24.6096,18.6854 l -0.2287,0.0905 c -21.7607,8.8415 -21.987,8.8415 -44.3193,8.8415 -29.736,0 -164.17569,0 -164.17569,0 l 0,-93.3334 233.33329,0 0,65.716 z"
+ id="path3056"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3058"><path
+ d="m 256.3453,219.1731 c 0,-8.8415 -2.9633,-9.9354 -24.6096,-18.6854 l -0.2287,-0.0905 c -21.7607,-8.8415 -21.987,-8.8415 -44.3193,-8.8415 -29.736,0 -164.17569,0 -164.17569,0 l 0,93.3334 233.33329,0 0,-65.716 z m 0,-0.4555 c 0,-8.386 -0.2286,-8.386 -46.8253,-8.386 l 0,0 c 0,-18.6844 0,-18.7759 -20.965,-18.7759"
+ id="path3060"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,135.6787,523.7776)"
+ id="g3062"><text
+ transform="translate(-111.6667,-24)"
+ id="text3064"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 64.372803 71.047203 75.043198 81.043198 87.717598 94.391998 97.725601 101.0592 104.3928 111.0672 117.7416 121.0752 124.4088 132.4128 139.0872 143.08321 149.08321 155.7576"
+ y="0"
+ id="tspan3066"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Person, foaf:Person</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,135.6787,523.7776)"
+ id="g3068"><text
+ transform="translate(-111.6667,4)"
+ id="text3070"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 32.690399 38.690399 45.364799 52.0392 60.705601 67.379997 77.375999 84.0504 91.058403 95.318398 103.9848 110.6592 114.6552 121.3296 127.3296 131.5896 137.22 142.8504 148.8504 154.8504 161.5248 164.8584 170.8584 174.192 178.188 180.8544 187.52879"
+ y="0"
+ id="tspan3072"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:givenName="Derek"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,135.6787,523.7776)"
+ id="g3074"><text
+ transform="translate(-111.6667,32)"
+ id="text3076"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 33.3456 40.02 46.694401 52.694401 59.7024 66.710403 76.706398 83.380798 86.047203 88.7136 92.047203 98.721603 102.0552 108.7296 115.404 119.4 126.0744 132.0744 144.2556 150.92999 156.92999 163.6044 173.6004 180.2748 182.94119 189.6156 192.9492 199.6236 203.6196 210.29401"
+ y="0"
+ id="tspan3078"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:mbox=<mailto:derek@example.org></tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3080"><path
+ d="m 275.7142,238.2224 -18.8689,0"
+ id="path3082"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 267.5119,610.4932 0,33.35 38,16.65 38,-16.65 0,-33.35 -76,0 z"
+ id="path3084"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3086"><path
+ d="m 271.0119,151.0068 0,-33.35 38,-16.65 38,16.65 0,33.35 -76,0 z"
+ id="path3088"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,305.0119,635.9932)"
+ id="g3090"><text
+ transform="translate(-25.0166,12.3)"
+ id="text3092"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 26.6784 30.011999 36.686401 43.360802"
+ y="0"
+ id="tspan3094"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:chartgen</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3096"><path
+ d="m 308.2206,212.7224 0.6644,-51.8165"
+ id="path3098"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 305.4875,608.5934 -3.1023,-7.9609 5.9995,-0.0769 -2.8972,8.0378 z"
+ id="path3100"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3102"><path
+ d="m 308.9875,152.9066 -3.1023,7.9609 5.9995,0.0769 -2.8972,-8.0378 z"
+ id="path3104"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 240.1072,591.4315 129,0 0,-24 -129,0 0,24 z"
+ id="path3106"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,304.6072,579.4315)"
+ id="g3108"><text
+ transform="translate(-59.36719,4)"
+ id="text3110"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 42.686401 49.360802 56.035198 65.368797 72.043198 80.047203 86.721603 93.396004 100.0704 102.7368 106.0704 115.404"
+ y="0"
+ id="tspan3112"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:actedOnBehalfOf</tspan></text>
+</g><path
+ d="m 409.3332,731.4065 c 0,7.073 -2.5908,7.9481 -21.5158,14.948 l -0.2,0.0724 c -19.025,7.0731 -19.2229,7.0731 -38.7477,7.0731 -25.9978,0 -143.5365,0 -143.5365,0 l 0,-74.6656 204,0 0,52.5721 z"
+ id="path3114"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3116"><path
+ d="m 412.8332,30.09355 c 0,-7.07307 -2.5908,-7.94815 -21.5158,-14.94805 l -0.2,-0.07243 C 372.0924,8 371.8945,8 352.3697,8 326.3719,8 208.8332,8 208.8332,8 l 0,74.6656 204,0 0,-52.57205 z m 0,-0.36437 c 0,-6.7087 -0.1999,-6.7087 -40.9387,-6.7087 l 0,0 C 371.8945,8.073172 371.8945,8 353.5651,8"
+ id="path3118"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,306.8332,716.6672)"
+ id="g3120"><text
+ transform="translate(-97,-10)"
+ id="text3122"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 65.7024 69.698402 76.372803 83.047203 89.721603 92.388 98.388 105.0624 108.396 111.0624 117.7368"
+ y="0"
+ id="tspan3124"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Organization</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,306.8332,716.6672)"
+ id="g3126"><text
+ transform="translate(-97,18)"
+ id="text3128"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 36.698399 46.694401 53.368801 60.376801 64.636803 73.3032 79.9776 86.652 90.648003 93.981598 97.315201 106.6488 113.3232 119.9976 126.672 130.668 137.34241 140.67599 147.3504 151.34641 157.34641 160.67999 164.0136 167.3472 174.02161 180.02161 183.35519"
+ y="0"
+ id="tspan3130"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:name="Chart Generators, Inc."</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3132"><path
+ d="m 309.0119,101.0068 0.5837,-17.84147"
+ id="path3134"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 525.6522,603.4932 0,33.35 38,16.65 38,-16.65 0,-33.35 -76,0 z"
+ id="path3136"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3138"><path
+ d="m 529.1522,158.0068 0,-33.35 38,-16.65 38,16.65 0,33.35 -76,0 z"
+ id="path3140"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,563.1522,628.9932)"
+ id="g3142"><text
+ transform="translate(-28.68164,12.3)"
+ id="text3144"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.02 40.694401 43.360802 46.694401 53.368801"
+ y="0"
+ id="tspan3146"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postEditor</tspan></text>
+</g><path
+ d="m 648.8189,729.5916 c 0,7.01 -2.1632,7.8773 -17.9651,14.8148 l -0.1669,0.0718 c -15.8853,7.01 -16.0505,7.01 -32.3531,7.01 -21.7073,0 -119.8482,0 -119.8482,0 l 0,-74 170.3333,0 0,52.1034 z"
+ id="path3148"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3150"><path
+ d="m 652.3189,31.90841 c 0,-7.01002 -2.1632,-7.8773 -17.9651,-14.8148 l -0.1669,-0.07178 c -15.8853,-7.01002 -16.0505,-7.01002 -32.3531,-7.01002 -21.7073,0 -119.8482,0 -119.8482,0 l 0,74 170.3333,0 0,-52.1034 z m 0,-0.36112 c 0,-6.6489 -0.1669,-6.6489 -34.1825,-6.6489 l 0,0 c 0,-14.81406 0,-14.88658 -15.3044,-14.88658"
+ id="path3152"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,563.1522,714.9882)"
+ id="g3154"><text
+ transform="translate(-80.16666,-10)"
+ id="text3156"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 64.372803 71.047203 74.380798 77.714401 86.380798 93.055199 97.051201 103.7256 111.7296 118.404 125.0784 131.75281"
+ y="0"
+ id="tspan3158"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:SoftwareAgent</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,563.1522,714.9882)"
+ id="g3160"><text
+ transform="translate(-80.16666,18)"
+ id="text3162"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 36.698399 46.694401 53.368801 60.376801 64.636803 72.6408 79.315201 85.315201 88.648804 91.982399 99.986397 106.6608 109.3272 112.6608 119.3352 123.3312 126.6648 133.3392 140.0136 146.688 153.3624"
+ y="0"
+ id="tspan3164"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:name="Post Editor 3000"</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3166"><path
+ d="m 567.1522,107.5068 0,-22.99499"
+ id="path3168"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 755.7358,538.6964 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8456,-9.7631 -59.8857,-9.7631 -82.7314,0 -22.8457,9.7631 -22.8457,25.5922 0,35.3553 22.8457,9.7632 59.8858,9.7632 82.7314,0"
+ id="path3170"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3172"><path
+ d="m 759.2358,222.8036 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8456,9.7631 -59.8857,9.7631 -82.7314,0 -22.8457,-9.7631 -22.8457,-25.5922 0,-35.3553 22.8457,-9.7632 59.8858,-9.7632 82.7314,0"
+ id="path3174"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,713.8701,521.5188)"
+ id="g3176"><text
+ transform="translate(-39.0293,-3)"
+ id="text3178"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 27.3528 34.027199 40.701599 47.375999 50.709599 57.383999 64.058403 72.062401"
+ y="0"
+ id="tspan3180"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:aggregatedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,713.8701,521.5188)"
+ id="g3182"><text
+ transform="translate(-22.01367,11)"
+ id="text3184"><tspan
+ x="0 8.6664 15.3408 22.0152 24.681601 31.356001 38.030399"
+ y="0"
+ id="tspan3186"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">Regions</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3188"><path
+ d="m 717.8701,214.9812 0,-47.0744"
+ id="path3190"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 714.3701,601.5932 -3,-8 6,0 -3,8 z"
+ id="path3192"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3194"><path
+ d="m 717.8701,159.9068 -3,8 6,0 -3,-8 z"
+ id="path3196"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 667.3701,586.8562 93,0 0,-24 -93,0 0,24 z"
+ id="path3198"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,713.8701,574.8562)"
+ id="g3200"><text
+ transform="translate(-41.02734,4)"
+ id="text3202"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3204"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><path
+ d="m 268.6083,169.367 c 25.189,-9.7631 25.189,-25.5922 0,-35.3553 -25.1888,-9.7632 -66.0278,-9.7632 -91.2166,0 -25.189,9.7631 -25.189,25.5922 0,35.3553 25.1888,9.7631 66.0278,9.7631 91.2166,0"
+ id="path3206"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3208"><path
+ d="m 272.1083,592.133 c 25.189,9.7631 25.189,25.5922 0,35.3553 -25.1888,9.7632 -66.0278,9.7632 -91.2166,0 -25.189,-9.7631 -25.189,-25.5922 0,-35.3553 25.1888,-9.7631 66.0278,-9.7631 91.2166,0"
+ id="path3210"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,222.5,152.1893)"
+ id="g3212"><text
+ transform="translate(-33.99902,-3)"
+ id="text3214"><tspan
+ x="0 3.3336 13.3296 20.004 24 30.6744 34.670399 40.670399 44.666401 47.332802 57.3288 64.003197"
+ y="0"
+ id="tspan3216"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:more-crime-</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,222.5,152.1893)"
+ id="g3218"><text
+ transform="translate(-45.35742,11)"
+ id="text3220"><tspan
+ x="0 6.6743999 13.3488 20.023199 26.697599 33.372002 40.046398 46.046398 50.0424 52.708801 59.383202 63.3792 69.379204 72.045601 75.379204 78.045601 84.720001"
+ y="0"
+ id="tspan3222"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">happens-in-cities</tspan></text>
+</g><path
+ d="m 258.889,259.5786 c 0,5.1154 -1.6503,5.7483 -13.7052,10.8108 l -0.1274,0.0523 c -12.1186,5.1155 -12.2446,5.1155 -24.6816,5.1155 -16.5601,0 -91.4301,0 -91.4301,0 l 0,-54 129.9443,0 0,38.0214 z"
+ id="path3224"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3226"><path
+ d="m 262.389,501.9214 c 0,-5.1154 -1.6503,-5.7483 -13.7052,-10.8108 l -0.1274,-0.0523 c -12.1186,-5.1155 -12.2446,-5.1155 -24.6816,-5.1155 -16.5601,0 -91.4301,0 -91.4301,0 l 0,54 129.9443,0 0,-38.0214 z m 0,-0.2635 c 0,-4.8519 -0.1274,-4.8519 -26.0772,-4.8519 l 0,0 c 0,-10.8102 0,-10.8632 -11.6755,-10.8632"
+ id="path3228"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,193.4168,249.0572)"
+ id="g3230"><text
+ transform="translate(-59.97216,-3)"
+ id="text3232"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 63.043201 69.717598 75.717598 82.391998 85.725601 88.391998 95.066399 101.7408 105.0744"
+ y="0"
+ id="tspan3234"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Location, </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,193.4168,249.0572)"
+ id="g3236"><text
+ transform="translate(-59.97216,11)"
+ id="text3238"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 32.678398 39.352798 45.352798"
+ y="0"
+ id="tspan3240"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3242"><path
+ d="M 218.9003,584.4983 205.667,540.4217"
+ id="path3244"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 648.8701,636.5705 131,0 c 2.7614,0 5,-2.2386 5,-5 l 0,-23.0773 c 0,-2.7614 -2.2386,-5 -5,-5 l -131,0 c -2.7614,0 -5,2.2386 -5,5 0,0 0,0 0,0 l 0,23.0773 c 0,2.7614 2.2386,5 5,5 0,0 0,0 0,0 z"
+ id="path3246"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3248"><path
+ d="m 652.3701,124.9295 131,0 c 2.7614,0 5,2.2386 5,5 l 0,23.0773 c 0,2.7614 -2.2386,5 -5,5 l -131,0 c -2.7614,0 -5,-2.2386 -5,-5 0,0 0,0 0,0 l 0,-23.0773 c 0,-2.7614 2.2386,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3250"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,713.8701,620.5319)"
+ id="g3252"><text
+ transform="translate(-56.69531,4)"
+ id="text3254"><tspan
+ x="0 7.0079999 13.008 15.6744 22.348801 25.6824 29.016001 32.349602 41.015999 47.015999 53.690399 57.686401 63.686401 67.019997 73.694397 80.368797 87.043198 90.382797 93.7164 97.050003 103.05 106.3836"
+ y="0"
+ id="tspan3256"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica"><file://Users/aggr.txt></tspan></text>
+</g><path
+ d="m 598.3073,246.0061 c 33.2598,-9.7631 33.2598,-25.5922 0,-35.3553 -33.2596,-9.7632 -87.1841,-9.7632 -120.4437,0 -33.2598,9.7631 -33.2598,25.5922 0,35.3553 33.2596,9.7631 87.1841,9.7631 120.4437,0"
+ id="path3258"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3260"><path
+ d="m 601.8073,515.4939 c 33.2598,9.7631 33.2598,25.5922 0,35.3553 -33.2596,9.7632 -87.1841,9.7632 -120.4437,0 -33.2598,-9.7631 -33.2598,-25.5922 0,-35.3553 33.2596,-9.7631 87.1841,-9.7631 120.4437,0"
+ id="path3262"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,537.5854,228.8284)"
+ id="g3264"><text
+ transform="translate(-32.69238,4)"
+ id="text3266"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136 58.7136"
+ y="0"
+ id="tspan3268"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9821v1</tspan></text>
+</g><path
+ d="m 945.2048,197.5402 c 0,9.5324 -3.6745,10.7117 -30.5161,20.1454 l -0.2835,0.0976 c -26.9834,9.5323 -27.2641,9.5323 -54.9563,9.5323 -36.8728,0 -203.5788,0 -203.5788,0 l 0,-100.6262 289.3347,0 0,70.8509 z"
+ id="path3270"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3272"><path
+ d="m 948.7048,563.9598 c 0,-9.5324 -3.6745,-10.7117 -30.5161,-20.1454 l -0.2835,-0.0976 c -26.9834,-9.5323 -27.2641,-9.5323 -54.9563,-9.5323 -36.8728,0 -203.5788,0 -203.5788,0 l 0,100.6262 289.3347,0 0,-70.8509 z m 0,-0.4911 c 0,-9.0413 -0.2835,-9.0413 -58.0637,-9.0413 l 0,0 c 0,-20.1443 0,-20.2429 -25.9967,-20.2429"
+ id="path3274"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,800.0375,177.5024)"
+ id="g3276"><text
+ transform="translate(-139.6674,-31)"
+ id="text3278"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan3280"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,800.0375,177.5024)"
+ id="g3282"><text
+ transform="translate(-139.6674,-3)"
+ id="text3284"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 28.007999 30.6744 34.007999 36.6744 43.348801 50.3568 54.616798 64.612801 71.287201 75.283203 81.957603 85.291199 91.291199 95.287201 97.953598 107.9496 114.624 117.9576 124.632 131.3064 137.9808 144.6552 151.32961 158.004 164.004 167.3376 170.004 176.67841 180.01199 186.01199 188.67841 192.01199 194.67841 201.3528 207.3528 211.61279 217.24319 222.8736 228.8736 234.8736 241.548 244.88161 250.88161 254.21519 258.21121 260.87759 267.552"
+ y="0"
+ id="tspan3286"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:title="More crime happens in cities"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,800.0375,177.5024)"
+ id="g3288"><text
+ transform="translate(-139.6674,25)"
+ id="text3290"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 53.375999 57.372002 64.046402 67.379997 74.054398 80.728798 88.732803 92.066399 98.956802 101.6232 111.6192 118.2936"
+ y="0"
+ id="tspan3292"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:generatedAtTime </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,800.0375,177.5024)"
+ id="g3294"><text
+ transform="translate(-139.6674,39)"
+ id="text3296"><tspan
+ x="0 4.2600002 10.9344 17.608801 23.3976 30.072001 34.068001 40.742401 47.416801 51.4128 58.0872 64.761597 72.091202 78.765602 85.440002 88.773598 95.447998 102.1224 105.456 112.1304 118.8048 126.1344 130.39439 136.0248 141.6552 147.6552 153.6552 160.32961 163.66319 170.3376 177.01199 180.3456 187.02 193.9104 196.5768 206.5728"
+ y="0"
+ id="tspan3298"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">"2011-07-16T01:52:02Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3300"><path
+ d="m 612.8012,547.2047 46.0781,9.0796"
+ id="path3302"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3304"><path
+ d="M 281.6312,596.4009 465.8969,551.5815"
+ id="path3306"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 470.1703,211.8092 -8.4824,1.0243 1.418,-5.83 7.0644,4.8057 z"
+ id="path3308"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3310"><path
+ d="m 473.6703,549.6908 -8.4824,-1.0243 1.418,5.83 7.0644,-4.8057 z"
+ id="path3312"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 277.4797,192.8858 126,0 0,-24 -126,0 0,24 z"
+ id="path3314"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,340.4797,180.8858)"
+ id="g3316"><text
+ transform="translate(-57.69434,4)"
+ id="text3318"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 31.348801 35.344799 42.019199 48.019199 50.6856 57.360001 64.034401 70.034401 76.708801 82.708801 89.383202 93.379204 99.379204 102.0456 108.72"
+ y="0"
+ id="tspan3320"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:previous_version</tspan></text>
+</g><path
+ d="m 579.1269,48.69047 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8457,-9.763153 -59.8858,-9.763153 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8456,9.76315 59.8857,9.76315 82.7314,0"
+ id="path3322"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3324"><path
+ d="m 582.6269,712.8095 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.7632 -59.8858,9.7632 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8456,-9.7631 59.8857,-9.7631 82.7314,0"
+ id="path3326"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,537.2612,31.51282)"
+ id="g3328"><text
+ transform="translate(-32.69238,4)"
+ id="text3330"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136 58.7136"
+ y="0"
+ id="tspan3332"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9821v2</tspan></text>
+</g><path
+ d="m 805.5,43.28911 c 0,4.07339 -1.1811,4.57735 -9.8087,8.6086 l -0.0912,0.04171 c -8.6731,4.07339 -8.7633,4.07339 -17.6644,4.07339 -11.8519,0 -65.4357,0 -65.4357,0 l 0,-43 93,0 0,30.2763 z"
+ id="path3334"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3336"><path
+ d="m 809,718.2109 c 0,-4.0734 -1.1811,-4.5774 -9.8087,-8.6086 l -0.0912,-0.0417 c -8.6731,-4.0734 -8.7633,-4.0734 -17.6644,-4.0734 -11.8519,0 -65.4357,0 -65.4357,0 l 0,43 93,0 0,-30.2763 z m 0,-0.2098 c 0,-3.8636 -0.0911,-3.8636 -18.6632,-3.8636 l 0,0 c 0,-8.6082 0,-8.6503 -8.3561,-8.6503"
+ id="path3338"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,758.5,35.01281)"
+ id="g3340"><text
+ transform="translate(-41.5,4)"
+ id="text3342"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan3344"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3346"><path
+ d="m 600.2214,729.5545 115.2787,-1.8236"
+ id="path3348"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3350"><path
+ d="m 272.8233,627.5706 215.1813,82.4985"
+ id="path3352"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 491.9745,48.56703 -6.3959,5.66504 -2.1479,-5.60236 8.5438,-0.06268 z"
+ id="path3354"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3356"><path
+ d="m 495.4745,712.933 -6.3959,-5.6651 -2.1479,5.6024 8.5438,0.0627 z"
+ id="path3358"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 316.8612,107.1173 109,0 0,-23.99998 -109,0 0,23.99998 z"
+ id="path3360"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,371.3612,95.11732)"
+ id="g3362"><text
+ transform="translate(-49.35645,4)"
+ id="text3364"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 27.340799 34.015202 37.348801 44.023201 50.023201 53.3568 60.0312 66.031197 72.705597 76.701599 82.701599 85.367996 92.042397"
+ y="0"
+ id="tspan3366"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:latest_version</tspan></text>
+</g><path
+ d="m 469.994,440.4044 141,0 0,-50 -141,0 0,50 z"
+ id="path3368"
+ style="fill:#d8d8ff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3370"><path
+ d="m 473.494,321.0956 141,0 0,50 -141,0 0,-50 z"
+ id="path3372"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,539.994,415.9044)"
+ id="g3374"><text
+ transform="translate(-62.26172,4)"
+ id="text3376"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 26.023199 28.6896 34.689602 41.363998 44.697601 47.363998 54.038399 60.712799 68.716797 74.716797 78.0504 80.716797 86.716797 89.383202 92.716797 98.716797 104.5056 111.18 117.8544"
+ y="0"
+ id="tspan3378"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:publicationActivity1123</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3380"><path
+ d="m 541.9644,507.6719 1.8825,-126.6774"
+ id="path3382"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 540.4658,388.5046 -3.1186,-7.9546 5.9994,-0.0891 -2.8808,8.0437 z"
+ id="path3384"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3386"><path
+ d="m 543.9658,372.9954 -3.1186,7.9546 5.9994,0.0891 -2.8808,-8.0437 z"
+ id="path3388"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 474.3258,324.2963 129,0 0,-24 -129,0 0,24 z"
+ id="path3390"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,538.8258,312.2963)"
+ id="g3392"><text
+ transform="translate(-59.36426,4)"
+ id="text3394"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 77.375999 81.372002 88.046402 91.379997 98.054398 104.7288 112.7328"
+ y="0"
+ id="tspan3396"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasGeneratedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3398"><path
+ d="M 507.1752,371.4193 261.2118,580.3282"
+ id="path3400"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 251.6143,175.9929 8.0396,2.8923 -3.8842,4.5731 -4.1554,-7.4654 z"
+ id="path3402"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3404"><path
+ d="m 255.1143,585.5071 8.0396,-2.8923 -3.8842,-4.5731 -4.1554,7.4654 z"
+ id="path3406"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 261.2385,236.5866 93,0 0,-24 -93,0 0,24 z"
+ id="path3408"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,307.7385,224.5866)"
+ id="g3410"><text
+ transform="translate(-41.02734,4)"
+ id="text3412"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3414"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3416"><path
+ d="m 618.5514,522.0798 157.193,-22.6535"
+ id="path3418"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 780.1626,263.2148 -8.3461,1.8282 0.8559,-5.9386 7.4902,4.1104 z"
+ id="path3420"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3422"><path
+ d="m 783.6626,498.2852 -8.3461,-1.8282 0.8559,5.9386 7.4902,-4.1104 z"
+ id="path3424"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 624.5651,262.0821 121,0 0,-24 -121,0 0,24 z"
+ id="path3426"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,685.0651,250.0821)"
+ id="g3428"><text
+ transform="translate(-55.03125,4)"
+ id="text3430"><tspan
+ x="0 9.9960003 15.996 19.329599 25.329599 32.004002 38.678398 45.352798 51.352798 58.027199 64.701599 68.035202 76.701599 83.375999 90.0504 93.384003 100.0584 106.7328"
+ y="0"
+ id="tspan3432"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">my:snapshotContent</tspan></text>
+</g><path
+ d="m 787.5381,275.5572 131,0 c 2.7614,0 5,-2.2386 5,-5 l 0,-14 c 0,-2.7615 -2.2386,-5 -5,-5 l -131,0 c -2.7614,0 -5,2.2385 -5,5 0,0 0,0 0,0 l 0,14 c 0,2.7614 2.2386,5 5,5 0,0 0,0 0,0 z"
+ id="path3434"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3436"><path
+ d="m 791.0381,485.9428 131,0 c 2.7614,0 5,2.2386 5,5 l 0,14 c 0,2.7615 -2.2386,5 -5,5 l -131,0 c -2.7614,0 -5,-2.2385 -5,-5 0,0 0,0 0,0 l 0,-14 c 0,-2.7614 2.2386,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3438"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,852.5381,264.0572)"
+ id="g3440"><text
+ transform="translate(-37.35938,4)"
+ id="text3442"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.6824 41.3568 48.0312 51.364799 58.0392 64.7136 68.047203"
+ y="0"
+ id="tspan3444"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postContent0</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3446"><path
+ d="M 597.353,513.9931 734,467 720.3882,275.8435"
+ id="path3448"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 716.32,493.6363 -2.4242,-8.1929 5.9848,0.4262 -3.5606,7.7667 z"
+ id="path3450"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3452"><path
+ d="m 719.82,267.8637 -2.4242,8.1929 5.9848,-0.4262 -3.5606,-7.7667 z"
+ id="path3454"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 659.3612,337.0359 137,0 0,-24 -137,0 0,24 z"
+ id="path3456"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,727.8612,325.0359)"
+ id="g3458"><text
+ transform="translate(-63.02637,4)"
+ id="text3460"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 54.705601 58.701599 61.368 71.363998 78.038399 82.034401 88.034401 96.038399 102.7128 109.3872 113.3832 119.3832"
+ y="0"
+ id="tspan3462"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:hadPrimarySource</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3464"><path
+ d="M 506.9226,509.9967 321.46,386 309.2761,273.0653"
+ id="path3466"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 304.918,496.3886 -2.1246,-8.2757 5.9654,0.6436 -3.8408,7.6321 z"
+ id="path3468"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3470"><path
+ d="m 308.418,265.1114 -2.1246,8.2757 5.9654,-0.6436 -3.8408,-7.6321 z"
+ id="path3472"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 390.4109,298.1087 123,0 0,-24 -123,0 0,24 z"
+ id="path3474"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,451.9109,286.1087)"
+ id="g3476"><text
+ transform="translate(-56.02734,4)"
+ id="text3478"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan3480"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3482"><path
+ d="M 485.8486,721.7792 249,684.5587 236.9725,644.6019"
+ id="path3484"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 231.1666,124.5586 -0.5667,-8.5252 5.7453,1.7295 -5.1786,6.7957 z"
+ id="path3486"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3488"><path
+ d="m 234.6666,636.9414 -0.5667,8.5252 5.7453,-1.7295 -5.1786,-6.7957 z"
+ id="path3490"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 238.7411,83.11745 93,0 0,-24 -93,0 0,24 z"
+ id="path3492"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,285.2411,71.11745)"
+ id="g3494"><text
+ transform="translate(-41.02734,4)"
+ id="text3496"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3498"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3500"><path
+ d="M 482.2909,729.6818 294.8991,727.1224"
+ id="path3502"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 283.3998,34.48684 7.9583,-3.10897 0.0819,5.99944 -8.0402,-2.89047 z"
+ id="path3504"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3506"><path
+ d="m 286.8998,727.0132 7.9583,3.1089 0.0819,-5.9994 -8.0402,2.8905 z"
+ id="path3508"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 306.6087,45.83673 121,0 0,-24 -121,0 0,24 z"
+ id="path3510"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,367.1087,33.83673)"
+ id="g3512"><text
+ transform="translate(-55.03125,4)"
+ id="text3514"><tspan
+ x="0 9.9960003 15.996 19.329599 25.329599 32.004002 38.678398 45.352798 51.352798 58.027199 64.701599 68.035202 76.701599 83.375999 90.0504 93.384003 100.0584 106.7328"
+ y="0"
+ id="tspan3516"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">my:snapshotContent</tspan></text>
+</g><path
+ d="m 184.3333,46.51279 92.1667,0 c 2.7614,0 5,-2.23858 5,-5 l 0,-14 c 0,-2.76143 -2.2386,-5 -5,-5 l -92.1667,0 c -2.7614,0 -5,2.23857 -5,5 0,0 0,0 0,0 l 0,14 c 0,2.76142 2.2386,5 5,5 0,0 0,0 0,0 z"
+ id="path3518"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3520"><path
+ d="m 187.8333,714.9872 92.1667,0 c 2.7614,0 5,2.2386 5,5 l 0,14 c 0,2.7614 -2.2386,5 -5,5 l -92.1667,0 c -2.7614,0 -5,-2.2386 -5,-5 0,0 0,0 0,0 l 0,-14 c 0,-2.7614 2.2386,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3522"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,229.9166,35.01279)"
+ id="g3524"><text
+ transform="translate(-37.35938,4)"
+ id="text3526"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.6824 41.3568 48.0312 51.364799 58.0392 64.7136 68.047203"
+ y="0"
+ id="tspan3528"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postContent1</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3530"><path
+ d="m 541.3031,704.9872 0.2242,-136.4156"
+ id="path3532"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 538.0404,200.9284 -3.0131,-7.9951 6,-0.01 -2.9869,8.0049 z"
+ id="path3534"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3536"><path
+ d="m 541.5404,560.5716 -3.0131,7.9951 6,0.01 -2.9869,-8.0049 z"
+ id="path3538"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 478.9104,134.3054 117,0 0,-24 -117,0 0,24 z"
+ id="path3540"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,537.4104,122.3054)"
+ id="g3542"><text
+ transform="translate(-53.35254,4)"
+ id="text3544"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.6856 63.360001 69.360001 72.026398 78.026398 80.692802 87.367203 94.041603 103.3752"
+ y="0"
+ id="tspan3546"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasRevisionOf</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3548"><path
+ d="M 579.8023,711.2894 628.5654,687 l 0,-69 -54.9835,-53.6234"
+ id="path3550"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 564.3547,202.7089 3.6326,-7.7333 4.1892,4.2955 -7.8218,3.4378 z"
+ id="path3552"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3554"><path
+ d="m 567.8547,558.7911 3.6326,7.7333 4.1892,-4.2955 -7.8218,-3.4378 z"
+ id="path3556"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 552.0654,101.4413 145,0 0,-24.00001 -145,0 0,24.00001 z"
+ id="path3558"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,624.5654,89.44129)"
+ id="g3560"><text
+ transform="translate(-67.36523,4)"
+ id="text3562"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 75.372002 78.038399 84.712799 87.379204 90.045601 96.045601 102.72 106.0536 108.72 115.3944 122.0688 131.4024"
+ y="0"
+ id="tspan3564"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasSpecializationOf</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3566"><path
+ d="M 522.829,706.3147 307,423.2711 l 1.1391,-150.149"
+ id="path3568"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 304.6998,496.3777 -3.0606,-7.9771 5.9998,-0.0455 -2.9392,8.0226 z"
+ id="path3570"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3572"><path
+ d="m 308.1998,265.1223 -3.0606,7.9771 5.9998,0.0455 -2.9392,-8.0226 z"
+ id="path3574"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 387.2059,159.6465 123,0 0,-24 -123,0 0,24 z"
+ id="path3576"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,448.7059,147.6465)"
+ id="g3578"><text
+ transform="translate(-56.02734,4)"
+ id="text3580"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan3582"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g><path
+ d="m 945.2048,442.3456 c 0,12.5043 -2.341,14.0514 -19.4416,26.4264 l -0.1807,0.128 c -17.1909,12.5044 -17.3697,12.5044 -35.0123,12.5044 -23.4914,0 -129.6989,0 -129.6989,0 l 0,-132 184.3335,0 0,92.9412 z"
+ id="path3584"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3586"><path
+ d="m 948.7048,319.1544 c 0,-12.5043 -2.341,-14.0514 -19.4416,-26.4264 l -0.1807,-0.128 c -17.1909,-12.5044 -17.3697,-12.5044 -35.0123,-12.5044 -23.4914,0 -129.6989,0 -129.6989,0 l 0,132 184.3335,0 0,-92.9412 z m 0,-0.6441 c 0,-11.8602 -0.1806,-11.8602 -36.992,-11.8602 l 0,0 c 0,-26.4251 0,-26.5545 -16.5624,-26.5545"
+ id="path3588"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,852.5381,415.9044)"
+ id="g3590"><text
+ transform="translate(-87.16675,-24)"
+ id="text3592"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 66.031197 70.027199 73.360802 80.035202 86.709602 94.7136 98.047203 105.0552 109.3152 115.9896 122.664 128.4528 135.1272 139.1232 145.79761 152.472 156.468 163.1424"
+ y="0"
+ id="tspan3594"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasStartedAt="2011-07-16</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,852.5381,415.9044)"
+ id="g3596"><text
+ transform="translate(-87.16675,-10)"
+ id="text3598"><tspan
+ x="0 7.3295999 14.004 20.6784 24.011999 30.686399 37.360802 40.694401 47.368801 54.043201 61.372799 65.632797 71.263199 76.8936 82.8936 88.8936 95.568001 98.901604 105.576 112.2504 115.584 122.2584 129.1488 131.8152 141.8112"
+ y="0"
+ id="tspan3600"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">T01:01:01Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,852.5381,415.9044)"
+ id="g3602"><text
+ transform="translate(-87.16675,18)"
+ id="text3604"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 76.046402 82.720802 90.7248 94.058403 101.0664 105.3264 112.0008 118.6752 124.464 131.1384 135.1344 141.80881 148.4832 152.4792 159.15359 165.828"
+ y="0"
+ id="tspan3606"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasEndedAt="2011-07-16T</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,852.5381,415.9044)"
+ id="g3608"><text
+ transform="translate(-87.16675,32)"
+ id="text3610"><tspan
+ x="0 6.6743999 13.3488 16.6824 23.3568 30.0312 33.364799 40.0392 46.7136 54.043201 58.3032 63.933601 69.564003 75.564003 81.564003 88.238403 91.571999 98.246399 104.9208 108.2544 114.9288 121.8192 124.4856 134.4816"
+ y="0"
+ id="tspan3612"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">01:52:02Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3614"><path
+ d="m 614.494,346.0956 149.3773,0"
+ id="path3616"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3618"><path
+ d="M 502.3316,320.868 349.5286,242.7298"
+ id="path3620"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 338.9058,522.4126 5.7569,-6.3134 2.7317,5.3421 -8.4886,0.9713 z"
+ id="path3622"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3624"><path
+ d="m 342.4058,239.0874 5.7569,6.3134 2.7317,-5.3421 -8.4886,-0.9713 z"
+ id="path3626"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 342.2632,496.8887 141,0 0,-24 -141,0 0,24 z"
+ id="path3628"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,412.7632,484.8887)"
+ id="g3630"><text
+ transform="translate(-65.3584,4)"
+ id="text3632"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.023201 68.023201 74.697601 80.697601 83.363998 90.038399 93.372002 100.0464 106.7208 118.0464 120.7128 124.0464"
+ y="0"
+ id="tspan3634"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAssociatedWith</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3636"><path
+ d="M 583.443,322.1717 568.1298,167.8584"
+ id="path3638"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 563.8398,601.6025 -2.1953,-8.2571 5.9707,0.5925 -3.7754,7.6646 z"
+ id="path3640"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3642"><path
+ d="m 567.3398,159.8975 -2.1953,8.2571 5.9707,-0.5925 -3.7754,-7.6646 z"
+ id="path3644"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 497.9004,563.1067 141,0 0,-24 -141,0 0,24 z"
+ id="path3646"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,568.4004,551.1067)"
+ id="g3648"><text
+ transform="translate(-65.3584,4)"
+ id="text3650"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.023201 68.023201 74.697601 80.697601 83.363998 90.038399 93.372002 100.0464 106.7208 118.0464 120.7128 124.0464"
+ y="0"
+ id="tspan3652"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAssociatedWith</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3654"><path
+ d="m 585.6411,320.836 89.6846,-54.5008"
+ id="path3656"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 678.6623,499.3194 -8.3946,-1.5909 3.116,-5.1274 5.2786,6.7183 z"
+ id="path3658"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3660"><path
+ d="m 682.1623,262.1806 -8.3946,1.5909 3.116,5.1274 5.2786,-6.7183 z"
+ id="path3662"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 592.3247,478.7988 63,0 0,-24 -63,0 0,24 z"
+ id="path3664"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,623.8247,466.7988)"
+ id="g3666"><text
+ transform="translate(-26.34961,4)"
+ id="text3668"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan3670"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3672"><path
+ d="M 582.3432,371.5585 626,478.435 585.4445,504.7322"
+ id="path3674"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 575.2321,252.4153 8.3446,1.8353 -3.2644,5.0343 -5.0802,-6.8696 z"
+ id="path3676"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3678"><path
+ d="m 578.7321,509.0847 8.3446,-1.8353 -3.2644,-5.0343 -5.0802,6.8696 z"
+ id="path3680"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 549.4263,361.8442 91,0 0,-24 -91,0 0,24 z"
+ id="path3682"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,594.9263,349.8442)"
+ id="g3684"><text
+ transform="translate(-40.3623,4)"
+ id="text3686"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 53.375999 57.372002 64.046402 67.379997 74.054398"
+ y="0"
+ id="tspan3688"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:generated</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3690"><path
+ d="M 473.494,346.0956 390,336 315.61,269.8036"
+ id="path3692"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 306.1336,497.0145 3.9821,-7.5592 3.9886,4.4823 -7.9707,3.0769 z"
+ id="path3694"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3696"><path
+ d="m 309.6336,264.4855 3.9821,7.5592 3.9886,-4.4823 -7.9707,-3.0769 z"
+ id="path3698"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 318.5836,448.6039 111,0 0,-24 -111,0 0,24 z"
+ id="path3700"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,374.0836,436.6039)"
+ id="g3702"><text
+ transform="translate(-50.35547,4)"
+ id="text3704"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 66.031197 70.027199 73.360802 80.035202 86.709602 94.7136"
+ y="0"
+ id="tspan3706"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasStartedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3708"><path
+ d="M 504.6044,320.632 472.0317,240 350.6133,238.3564"
+ id="path3710"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 339.114,523.2519 7.9587,-3.108 0.0812,5.9994 -8.0399,-2.8914 z"
+ id="path3712"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-3.5,761.5)"
+ id="g3714"><path
+ d="m 342.614,238.2481 7.9587,3.108 0.0812,-5.9994 -8.0399,2.8914 z"
+ id="path3716"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 386.2038,534.3835 107,0 0,-24 -107,0 0,24 z"
+ id="path3718"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,439.7038,522.3835)"
+ id="g3720"><text
+ transform="translate(-48.36035,4)"
+ id="text3722"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 76.046402 82.720802 90.7248"
+ y="0"
+ id="tspan3724"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasEndedBy</tspan></text>
+</g></g></g></g></svg>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost1.graffle Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,1404 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>ActiveLayerIndex</key>
+ <integer>0</integer>
+ <key>ApplicationVersion</key>
+ <array>
+ <string>com.omnigroup.OmniGraffle</string>
+ <string>139.7.0.167456</string>
+ </array>
+ <key>AutoAdjust</key>
+ <true/>
+ <key>BackgroundGraphic</key>
+ <dict>
+ <key>Bounds</key>
+ <string>{{0, 0}, {1118, 783}}</string>
+ <key>Class</key>
+ <string>SolidGraphic</string>
+ <key>ID</key>
+ <integer>2</integer>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ </dict>
+ <key>BaseZoom</key>
+ <integer>0</integer>
+ <key>CanvasOrigin</key>
+ <string>{0, 0}</string>
+ <key>ColumnAlign</key>
+ <integer>1</integer>
+ <key>ColumnSpacing</key>
+ <real>36</real>
+ <key>CreationDate</key>
+ <string>2012-07-11 09:44:44 +0000</string>
+ <key>Creator</key>
+ <string>David</string>
+ <key>DisplayScale</key>
+ <string>1 0/72 in = 1.0000 in</string>
+ <key>GraphDocumentVersion</key>
+ <integer>8</integer>
+ <key>GraphicsList</key>
+ <array>
+ <dict>
+ <key>Bounds</key>
+ <string>{{441.1018229274124, 177.52509800772324}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>90</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Position</key>
+ <real>0.54085326194763184</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>10</integer>
+ <key>Info</key>
+ <integer>1</integer>
+ </dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Points</key>
+ <array>
+ <string>{383.72004552587879, 227.76782454396289}</string>
+ <string>{603.52416942713091, 157.05968755588921}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{354.87707797979948, 147.33913871193405}, {128, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>102</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>101</integer>
+ <key>Position</key>
+ <real>0.49315246939659119</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasInfluencedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>101</integer>
+ <key>Points</key>
+ <array>
+ <string>{359.5560180852267, 219.55435546524873}</string>
+ <string>{479.84551709567057, 97.451711498090177}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{444.35911560058685, 49.040237426757812}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>5</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :aggregatedByRegions}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{184.82132954813994, 156.8348487665146}, {122, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>100</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>99</integer>
+ <key>Position</key>
+ <real>0.58717244863510132</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:specializationOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>62</integer>
+ </dict>
+ <key>ID</key>
+ <integer>99</integer>
+ <key>Points</key>
+ <array>
+ <string>{309.00228836277176, 220.48057192394182}</string>
+ <string>{201.40023897932792, 132.52391919359124}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{108.87841796875, 84.610694885253906}, {129, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>62</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :more-crime-happens-in-cities}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{288.01512225406827, 117.30434786761595}, {97, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>98</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>97</integer>
+ <key>Position</key>
+ <real>0.65319299697875977</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:alternateOf}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>96</integer>
+ </dict>
+ <key>ID</key>
+ <integer>97</integer>
+ <key>Points</key>
+ <array>
+ <string>{336.50339292223549, 217.45788851424504}</string>
+ <string>{336.52134983831854, 82.500010744015952}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{278, 32}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>96</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9821v2}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{12, 194.30533599853516}, {102.16666412353516, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>95</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :postContent2}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{136.5234163712164, 207.96461244341663}, {121, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>94</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Position</key>
+ <real>0.50458323955535889</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 my:snapshotContent}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>95</integer>
+ </dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Points</key>
+ <array>
+ <string>{281.41323077847949, 233.87662049165999}</string>
+ <string>{114.16666412353516, 206.30533599853516}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{12, 278}, {141, 33.077266693115234}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>4</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :more-crime-happens-in-cities-for-dummies}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{175.09684667432794, 263.25647755331852}, {93, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>70</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>69</integer>
+ <key>Position</key>
+ <real>0.48859477043151855</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:atLocation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>4</integer>
+ </dict>
+ <key>ID</key>
+ <integer>69</integer>
+ <key>Points</key>
+ <array>
+ <string>{287.134034437249, 256.83437324442843}</string>
+ <string>{153, 294.53863334655762}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>77</integer>
+ </dict>
+ <key>ID</key>
+ <integer>78</integer>
+ <key>Points</key>
+ <array>
+ <string>{336.48994702622537, 268.45791308388993}</string>
+ <string>{336.4764690240583, 302.6457291291357}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{228.48681711911945, 303.14572906494141}, {215.94432067871094, 87.736953735351562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>77</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post\
+\
+sioc:title= "More crime happens in cities (for dummies)"^^xsd:string}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{278, 217.95790100097651}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>76</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9822}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>53</integer>
+ </dict>
+ <key>ID</key>
+ <integer>54</integer>
+ <key>Points</key>
+ <array>
+ <string>{604, 156.90611267089844}</string>
+ <string>{604.00001705772218, 213.13443756103516}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>10</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{482.00003051757812, 213.63443756103516}, {244, 87.736953735351562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>53</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=prov:Person, foaf:Person\
+\
+foaf:givenName="Monica"^^xsd:string\
+\
+foaf:mbox=<mailto:monica@example.org>}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{566, 106.90611267089844}, {76, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>10</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :monica}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>139</integer>
+ </dict>
+ <key>ID</key>
+ <integer>141</integer>
+ <key>Points</key>
+ <array>
+ <string>{88.02783906340494, 502.54271975272826}</string>
+ <string>{88.02783906340494, 465.72013472114872}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>140</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{23.055679321289062, 427.06643676757812}, {129.94431948423176, 38.153697967529297}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>139</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 type=prov:Bundle}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{29.52783906340494, 503.04273223876953}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>140</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :bundlePost1}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{4, 11}, {734, 398}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>138</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{-1, -1}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 :bundlePost1\
+type=prov:bundle}</string>
+ </dict>
+ <key>TextPlacement</key>
+ <integer>0</integer>
+ </dict>
+ </array>
+ <key>GridInfo</key>
+ <dict/>
+ <key>GuidesLocked</key>
+ <string>NO</string>
+ <key>GuidesVisible</key>
+ <string>YES</string>
+ <key>HPages</key>
+ <integer>2</integer>
+ <key>ImageCounter</key>
+ <integer>1</integer>
+ <key>KeepToScale</key>
+ <false/>
+ <key>Layers</key>
+ <array>
+ <dict>
+ <key>Lock</key>
+ <string>NO</string>
+ <key>Name</key>
+ <string>Layer 1</string>
+ <key>Print</key>
+ <string>YES</string>
+ <key>View</key>
+ <string>YES</string>
+ </dict>
+ </array>
+ <key>LayoutInfo</key>
+ <dict>
+ <key>Animate</key>
+ <string>NO</string>
+ <key>HierarchicalOrientation</key>
+ <integer>3</integer>
+ <key>circoMinDist</key>
+ <real>18</real>
+ <key>circoSeparation</key>
+ <real>0.0</real>
+ <key>layoutEngine</key>
+ <string>dot</string>
+ <key>neatoSeparation</key>
+ <real>0.0</real>
+ <key>twopiSeparation</key>
+ <real>0.0</real>
+ </dict>
+ <key>LinksVisible</key>
+ <string>NO</string>
+ <key>MagnetsVisible</key>
+ <string>NO</string>
+ <key>MasterSheets</key>
+ <array/>
+ <key>ModificationDate</key>
+ <string>2012-07-11 11:41:50 +0000</string>
+ <key>Modifier</key>
+ <string>David</string>
+ <key>NotesVisible</key>
+ <string>NO</string>
+ <key>Orientation</key>
+ <integer>2</integer>
+ <key>OriginVisible</key>
+ <string>NO</string>
+ <key>PageBreaks</key>
+ <string>YES</string>
+ <key>PrintInfo</key>
+ <dict>
+ <key>NSBottomMargin</key>
+ <array>
+ <string>float</string>
+ <string>41</string>
+ </array>
+ <key>NSHorizonalPagination</key>
+ <array>
+ <string>coded</string>
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string>
+ </array>
+ <key>NSLeftMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSPaperSize</key>
+ <array>
+ <string>size</string>
+ <string>{595, 842}</string>
+ </array>
+ <key>NSPrintReverseOrientation</key>
+ <array>
+ <string>int</string>
+ <string>0</string>
+ </array>
+ <key>NSRightMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSTopMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ </dict>
+ <key>PrintOnePage</key>
+ <false/>
+ <key>ReadOnly</key>
+ <string>NO</string>
+ <key>RowAlign</key>
+ <integer>1</integer>
+ <key>RowSpacing</key>
+ <real>36</real>
+ <key>SheetTitle</key>
+ <string>Canvas 1</string>
+ <key>SmartAlignmentGuidesActive</key>
+ <string>YES</string>
+ <key>SmartDistanceGuidesActive</key>
+ <string>YES</string>
+ <key>UniqueID</key>
+ <integer>1</integer>
+ <key>UseEntirePage</key>
+ <false/>
+ <key>VPages</key>
+ <integer>1</integer>
+ <key>WindowInfo</key>
+ <dict>
+ <key>CurrentSheet</key>
+ <integer>0</integer>
+ <key>ExpandedCanvases</key>
+ <array>
+ <dict>
+ <key>name</key>
+ <string>Canvas 1</string>
+ </dict>
+ </array>
+ <key>Frame</key>
+ <string>{{925, 411}, {1472, 972}}</string>
+ <key>ListView</key>
+ <true/>
+ <key>OutlineWidth</key>
+ <integer>142</integer>
+ <key>RightSidebar</key>
+ <false/>
+ <key>ShowRuler</key>
+ <true/>
+ <key>Sidebar</key>
+ <true/>
+ <key>SidebarWidth</key>
+ <integer>120</integer>
+ <key>VisibleRegion</key>
+ <string>{{-110, -25}, {1337, 833}}</string>
+ <key>Zoom</key>
+ <real>1</real>
+ <key>ZoomValues</key>
+ <array>
+ <array>
+ <string>Canvas 1</string>
+ <real>1</real>
+ <real>1</real>
+ </array>
+ </array>
+ </dict>
+</dict>
+</plist>
Binary file ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost1.pdf has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost1.svg Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,432 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.1"
+ width="922.5"
+ height="502.5"
+ id="svg3004"
+ xml:space="preserve"><metadata
+ id="metadata3010"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ id="defs3008"><clipPath
+ id="clipPath3020"><path
+ d="M 0,0 738,0 738,402 0,402 0,0 z"
+ id="path3022" /></clipPath></defs><g
+ transform="matrix(1.25,0,0,-1.25,0,502.5)"
+ id="g3012"><g
+ id="g3014" /><g
+ id="g3016"><g
+ clip-path="url(#clipPath3020)"
+ id="g3018"><path
+ d="m -2.5,411.5 1118,0 0,-783 -1118,0 0,783 z"
+ id="path3024"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
+ d="m 2.5,399.5 734,0 0,-398 -734,0 0,398 z"
+ id="path3026"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3028"><path
+ d="m 4,11 734,0 0,398 L 4,409 4,11 z"
+ id="path3030"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,369,201)"
+ id="g3032"><text
+ transform="translate(-362,-183)"
+ id="text3034"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 30.0312 32.697601 39.372002 47.375999 54.0504 60.0504 63.383999"
+ y="0"
+ id="tspan3036"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:bundlePost1</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,369,201)"
+ id="g3038"><text
+ transform="translate(-362,-169)"
+ id="text3040"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 63.043201 69.717598 76.391998 83.066399 85.732803"
+ y="0"
+ id="tspan3042"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:bundle</tspan></text>
+</g><path
+ d="m 564.5,253.5939 0,33.35 38,16.65 38,-16.65 0,-33.35 -76,0 z"
+ id="path3044"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3046"><path
+ d="m 566,156.9061 0,-33.35 38,-16.65 38,16.65 0,33.35 -76,0 z"
+ id="path3048"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,602,279.0939)"
+ id="g3050"><text
+ transform="translate(-21.00879,12.3)"
+ id="text3052"><tspan
+ x="0 3.3336 13.3296 20.004 26.6784 29.344801 35.344799"
+ y="0"
+ id="tspan3054"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:monica</tspan></text>
+</g><path
+ d="m 724.5,170.9042 c 0,8.3113 -3.0988,9.3396 -25.7346,17.5649 l -0.2392,0.0851 c -22.7554,8.3114 -22.9921,8.3114 -46.3453,8.3114 -31.0954,0 -171.6809,0 -171.6809,0 l 0,-87.737 244,0 0,61.7756 z"
+ id="path3056"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3058"><path
+ d="m 726,239.5958 c 0,-8.3113 -3.0988,-9.3396 -25.7346,-17.5649 l -0.2392,-0.0851 c -22.7554,-8.3114 -22.9921,-8.3114 -46.3453,-8.3114 -31.0954,0 -171.6809,0 -171.6809,0 l 0,87.737 244,0 0,-61.7756 z m 0,-0.4282 c 0,-7.8831 -0.2391,-7.8831 -48.9659,-7.8831 l 0,0 c 0,-17.5641 0,-17.6501 -21.9234,-17.6501"
+ id="path3060"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,602,153.4971)"
+ id="g3062"><text
+ transform="translate(-117,-24)"
+ id="text3064"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 64.372803 71.047203 75.043198 81.043198 87.717598 94.391998 97.725601 101.0592 104.3928 111.0672 117.7416 121.0752 124.4088 132.4128 139.0872 143.08321 149.08321 155.7576"
+ y="0"
+ id="tspan3066"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:Person, foaf:Person</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,602,153.4971)"
+ id="g3068"><text
+ transform="translate(-117,4)"
+ id="text3070"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 30.024 32.690399 38.690399 45.364799 52.0392 60.705601 67.379997 77.375999 84.0504 91.058403 95.318398 105.3144 111.9888 118.6632 121.3296 127.3296 134.004 138.26401 143.89439 149.5248 155.5248 161.5248 168.1992 171.53281 177.53281 180.86639 184.8624 187.52879 194.2032"
+ y="0"
+ id="tspan3072"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:givenName="Monica"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,602,153.4971)"
+ id="g3074"><text
+ transform="translate(-117,32)"
+ id="text3076"><tspan
+ x="0 3.3336 10.008 16.6824 20.016001 23.3496 33.3456 40.02 46.694401 52.694401 59.7024 66.710403 76.706398 83.380798 86.047203 88.7136 92.047203 98.721603 102.0552 112.0512 118.7256 125.4 128.06641 134.06641 140.7408 152.922 159.59641 165.59641 172.2708 182.2668 188.94119 191.6076 198.282 201.6156 208.28999 212.286 218.9604"
+ y="0"
+ id="tspan3078"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">foaf:mbox=<mailto:monica@example.org></tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3080"><path
+ d="m 604,156.9061 0,56.2283"
+ id="path3082"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 376.3657,185.2197 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8457,-9.7631 -59.8857,-9.7631 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8457,9.7632 59.8857,9.7632 82.7314,0"
+ id="path3084"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3086"><path
+ d="m 377.8657,225.2803 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.7631 -59.8857,9.7631 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8457,-9.7632 59.8857,-9.7632 82.7314,0"
+ id="path3088"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,334.5,168.0421)"
+ id="g3090"><text
+ transform="translate(-26.35547,4)"
+ id="text3092"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392"
+ y="0"
+ id="tspan3094"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9822</tspan></text>
+</g><path
+ d="m 442.9311,81.39291 c 0,8.31132 -2.7425,9.3396 -22.7756,17.56493 l -0.2116,0.08511 c -20.139,8.31135 -20.3485,8.31135 -41.0165,8.31135 -27.5199,0 -151.9406,0 -151.9406,0 l 0,-87.73698 215.9443,0 0,61.77559 z"
+ id="path3096"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3098"><path
+ d="m 444.4311,329.1071 c 0,-8.3113 -2.7425,-9.3396 -22.7756,-17.5649 l -0.2116,-0.0851 c -20.139,-8.3114 -20.3485,-8.3114 -41.0165,-8.3114 -27.5199,0 -151.9406,0 -151.9406,0 l 0,87.737 215.9443,0 0,-61.7756 z m 0,-0.4282 c 0,-7.8831 -0.2116,-7.8831 -43.3357,-7.8831 l 0,0 c 0,-17.5641 0,-17.6501 -19.4026,-17.6501"
+ id="path3100"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,334.459,63.98579)"
+ id="g3102"><text
+ transform="translate(-102.9722,-17)"
+ id="text3104"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan3106"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,334.459,63.98579)"
+ id="g3108"><text
+ transform="translate(-102.9722,11)"
+ id="text3110"><tspan
+ x="0 6 8.6664 15.3408 21.340799 24.6744 28.007999 30.6744 34.007999 36.6744 43.348801 50.3568 53.690399 57.950401 67.946404 74.620796 78.616798 85.291199 88.624802 94.624802 98.620796 101.2872 111.2832 117.9576 121.2912 127.9656 134.64 141.31441 147.9888 154.66319 161.3376 167.3376 170.6712 173.3376 180.01199"
+ y="0"
+ id="tspan3112"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">sioc:title= "More crime happens in </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,334.459,63.98579)"
+ id="g3114"><text
+ transform="translate(-102.9722,25)"
+ id="text3116"><tspan
+ x="0 6 8.6664 12 14.6664 21.340799 27.340799 30.6744 34.670399 38.004002 44.678398 48.6744 52.007999 58.6824 65.356796 75.352798 85.348801 88.015198 94.689598 100.6896 104.6856 108.9456 114.576 120.2064 126.2064 132.20641 138.8808 142.2144 148.2144 151.548 155.54401 158.2104 164.8848"
+ y="0"
+ id="tspan3118"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">cities (for dummies)"^^xsd:string</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3120"><path
+ d="m 336.4899,268.4579 -0.0134,34.1878"
+ id="path3122"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3124"><path
+ d="M 287.134,256.8344 162.5306,291.8596"
+ id="path3126"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 153.3291,116.4755 8.5134,-0.7232 -1.6237,5.7761 -6.8897,-5.0529 z"
+ id="path3128"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3130"><path
+ d="m 154.8291,294.0245 8.5134,0.7232 -1.6237,-5.7761 -6.8897,5.0529 z"
+ id="path3132"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 173.0968,147.7435 93,0 0,-24 -93,0 0,24 z"
+ id="path3134"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,219.5968,135.7435)"
+ id="g3136"><text
+ transform="translate(-41.02734,4)"
+ id="text3138"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.686401 43.360802 50.035198 56.035198 62.709599 66.043198 68.709602 75.384003"
+ y="0"
+ id="tspan3140"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:atLocation</tspan></text>
+</g><path
+ d="m 15.5,132.5 131,0 c 2.7614,0 5,-2.2386 5,-5 l 0,-23.0773 c 0,-2.7614 -2.2386,-4.99997 -5,-4.99997 l -131,0 c -2.76142,0 -5,2.23857 -5,4.99997 0,0 0,0 0,0 l 0,23.0773 c 0,2.7614 2.23858,5 5,5 0,0 0,0 0,0 z"
+ id="path3142"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3144"><path
+ d="m 17,278 131,0 c 2.7614,0 5,2.2386 5,5 l 0,23.0773 c 0,2.7614 -2.2386,5 -5,5 l -131,0 c -2.76142,0 -5,-2.2386 -5,-5 0,0 0,0 0,0 L 12,283 c 0,-2.7614 2.23858,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3146"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,80.5,116.4614)"
+ id="g3148"><text
+ transform="translate(-59.01855,-3)"
+ id="text3150"><tspan
+ x="0 3.3336 13.3296 20.004 24 30.6744 34.670399 40.670399 44.666401 47.332802 57.3288 64.003197 67.999199 74.673599 81.348 88.0224 94.6968 101.3712 108.0456 114.0456"
+ y="0"
+ id="tspan3152"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:more-crime-happens-</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,80.5,116.4614)"
+ id="g3154"><text
+ transform="translate(-55.67578,11)"
+ id="text3156"><tspan
+ x="0 2.6664 9.3408003 13.3368 19.3368 22.003201 25.3368 28.003201 34.677601 40.677601 44.673599 48.007198 54.681599 58.677601 62.673599 69.348 76.0224 86.018402 96.014397 98.680801 105.3552"
+ y="0"
+ id="tspan3158"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">in-cities-for-dummies</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3160"><path
+ d="M 281.4132,233.8766 123.9348,207.9157"
+ id="path3162"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 114.5414,203.8856 7.4054,-4.2613 0.976,5.9201 -8.3814,-1.6588 z"
+ id="path3164"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3166"><path
+ d="m 116.0414,206.6144 7.4054,4.2613 0.976,-5.9201 -8.3814,1.6588 z"
+ id="path3168"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 134.5234,203.0354 121,0 0,-24 -121,0 0,24 z"
+ id="path3170"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,195.0234,191.0354)"
+ id="g3172"><text
+ transform="translate(-55.03125,4)"
+ id="text3174"><tspan
+ x="0 9.9960003 15.996 19.329599 25.329599 32.004002 38.678398 45.352798 51.352798 58.027199 64.701599 68.035202 76.701599 83.375999 90.0504 93.384003 100.0584 106.7328"
+ y="0"
+ id="tspan3176"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">my:snapshotContent</tspan></text>
+</g><path
+ d="m 15.5,216.1947 92.1667,0 c 2.7614,0 5,-2.2386 5,-5 l 0,-14 c 0,-2.7615 -2.2386,-5 -5,-5 l -92.1667,0 c -2.76142,0 -5,2.2385 -5,5 0,0 0,0 0,0 l 0,14 c 0,2.7614 2.23858,5 5,5 0,0 0,0 0,0 z"
+ id="path3178"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3180"><path
+ d="m 17,194.3053 92.1667,0 c 2.7614,0 5,2.2386 5,5 l 0,14 c 0,2.7615 -2.2386,5 -5,5 l -92.1667,0 c -2.76142,0 -5,-2.2385 -5,-5 0,0 0,0 0,0 l 0,-14 c 0,-2.7614 2.23858,-5 5,-5 0,0 0,0 0,0 z"
+ id="path3182"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,61.08333,204.6947)"
+ id="g3184"><text
+ transform="translate(-37.35938,4)"
+ id="text3186"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 34.6824 41.3568 48.0312 51.364799 58.0392 64.7136 68.047203"
+ y="0"
+ id="tspan3188"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:postContent2</tspan></text>
+</g><path
+ d="m 376.3657,371.1776 c 22.8458,-9.763 22.8458,-25.5922 0,-35.3552 -22.8457,-9.7632 -59.8857,-9.7632 -82.7314,0 -22.8458,9.763 -22.8458,25.5922 0,35.3552 22.8457,9.7632 59.8857,9.7632 82.7314,0"
+ id="path3190"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3192"><path
+ d="m 377.8657,39.32235 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.76315 -59.8857,9.76315 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8457,-9.76315 59.8857,-9.76315 82.7314,0"
+ id="path3194"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,334.5,354)"
+ id="g3196"><text
+ transform="translate(-32.69238,4)"
+ id="text3198"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136 58.7136"
+ y="0"
+ id="tspan3200"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9821v2</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3202"><path
+ d="M 336.5034,217.4579 336.52,92.40001"
+ id="path3204"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 335.0211,326.1 -3.0011,-7.9996 6,-8e-4 -2.9989,8.0004 z"
+ id="path3206"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3208"><path
+ d="m 336.5211,84.40001 -3.0011,7.9996 6,8e-4 -2.9989,-8.0004 z"
+ id="path3210"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 286.0151,293.6957 97,0 0,-24 -97,0 0,24 z"
+ id="path3212"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,334.5151,281.6957)"
+ id="g3214"><text
+ transform="translate(-43.02246,4)"
+ id="text3216"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 36.019199 39.352798 46.027199 50.023201 56.697601 63.372002 66.705597 73.379997 82.7136"
+ y="0"
+ id="tspan3218"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:alternateOf</tspan></text>
+</g><path
+ d="m 217.4868,318.567 c 25.1889,-9.7631 25.1889,-25.5922 0,-35.3553 -25.1888,-9.7632 -66.0279,-9.7632 -91.2167,0 -25.1889,9.7631 -25.1889,25.5922 0,35.3553 25.1888,9.7631 66.0279,9.7631 91.2167,0"
+ id="path3220"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3222"><path
+ d="m 218.9868,91.93304 c 25.1889,9.76306 25.1889,25.59216 0,35.35526 -25.1888,9.7632 -66.0279,9.7632 -91.2167,0 -25.1889,-9.7631 -25.1889,-25.5922 0,-35.35526 25.1888,-9.76315 66.0279,-9.76315 91.2167,0"
+ id="path3224"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,171.3784,301.3893)"
+ id="g3226"><text
+ transform="translate(-33.99902,-3)"
+ id="text3228"><tspan
+ x="0 3.3336 13.3296 20.004 24 30.6744 34.670399 40.670399 44.666401 47.332802 57.3288 64.003197"
+ y="0"
+ id="tspan3230"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:more-crime-</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,171.3784,301.3893)"
+ id="g3232"><text
+ transform="translate(-45.35742,11)"
+ id="text3234"><tspan
+ x="0 6.6743999 13.3488 20.023199 26.697599 33.372002 40.046398 46.046398 50.0424 52.708801 59.383202 63.3792 69.379204 72.045601 75.379204 78.045601 84.720001"
+ y="0"
+ id="tspan3236"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">happens-in-cities</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3238"><path
+ d="m 309.0023,220.4806 -99.937,-81.6911"
+ id="path3240"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 201.3713,276.7736 4.2953,-7.3858 3.7973,4.6454 -8.0926,2.7404 z"
+ id="path3242"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3244"><path
+ d="m 202.8713,133.7264 4.2953,7.3858 3.7973,-4.6454 -8.0926,-2.7404 z"
+ id="path3246"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 182.8213,254.1652 122,0 0,-24 -122,0 0,24 z"
+ id="path3248"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,243.8213,242.1652)"
+ id="g3250"><text
+ transform="translate(-55.69336,4)"
+ id="text3252"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 32.678398 39.352798 46.027199 52.027199 54.6936 61.368 64.034401 66.700798 72.700798 79.375198 82.708801 85.375198 92.049599 98.723999 108.0576"
+ y="0"
+ id="tspan3254"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:specializationOf</tspan></text>
+</g><path
+ d="m 542.7248,354.1374 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8456,-9.7631 -59.8857,-9.7631 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8457,9.7632 59.8858,9.7632 82.7314,0"
+ id="path3256"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3258"><path
+ d="m 544.2248,56.36259 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8456,9.76311 -59.8857,9.76311 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8457,-9.76315 59.8858,-9.76315 82.7314,0"
+ id="path3260"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,500.8591,336.9598)"
+ id="g3262"><text
+ transform="translate(-39.0293,-3)"
+ id="text3264"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 27.3528 34.027199 40.701599 47.375999 50.709599 57.383999 64.058403 72.062401"
+ y="0"
+ id="tspan3266"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:aggregatedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,500.8591,336.9598)"
+ id="g3268"><text
+ transform="translate(-22.01367,11)"
+ id="text3270"><tspan
+ x="0 8.6664 15.3408 22.0152 24.681601 31.356001 38.030399"
+ y="0"
+ id="tspan3272"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">Regions</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3274"><path
+ d="M 359.556,219.5544 472.8977,104.5042"
+ id="path3276"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 477.0121,311.6948 -7.7515,-3.5936 4.2742,-4.2108 3.4773,7.8044 z"
+ id="path3278"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3280"><path
+ d="m 478.5121,98.80523 -7.7515,3.59357 4.2742,4.2108 3.4773,-7.80437 z"
+ id="path3282"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 352.8771,263.6609 128,0 0,-24 -128,0 0,24 z"
+ id="path3284"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,416.8771,251.6609)"
+ id="g3286"><text
+ transform="translate(-58.69922,4)"
+ id="text3288"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 51.352798 58.027199 64.027199 70.701599 77.375999 84.0504 90.0504 96.7248 103.3992 111.4032"
+ y="0"
+ id="tspan3290"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasInfluencedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3292"><path
+ d="M 383.72,227.7678 594.0998,160.0914"
+ id="path3294"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 600.2155,252.8585 -8.5344,0.406 1.8374,-5.7118 6.697,5.3058 z"
+ id="path3296"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-1.5,410.5)"
+ id="g3298"><path
+ d="m 601.7155,157.6415 -8.5344,-0.406 1.8374,5.7118 6.697,-5.3058 z"
+ id="path3300"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 439.1018,233.4749 123,0 0,-24 -123,0 0,24 z"
+ id="path3302"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,500.6018,221.4749)"
+ id="g3304"><text
+ transform="translate(-56.02734,4)"
+ id="text3306"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan3308"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g></g></g></g></svg>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost2.graffle Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,2147 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>ActiveLayerIndex</key>
+ <integer>0</integer>
+ <key>ApplicationVersion</key>
+ <array>
+ <string>com.omnigroup.OmniGraffle</string>
+ <string>139.7.0.167456</string>
+ </array>
+ <key>AutoAdjust</key>
+ <true/>
+ <key>BackgroundGraphic</key>
+ <dict>
+ <key>Bounds</key>
+ <string>{{0, 0}, {1677, 783}}</string>
+ <key>Class</key>
+ <string>SolidGraphic</string>
+ <key>ID</key>
+ <integer>2</integer>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ </dict>
+ <key>BaseZoom</key>
+ <integer>0</integer>
+ <key>CanvasOrigin</key>
+ <string>{0, 0}</string>
+ <key>ColumnAlign</key>
+ <integer>1</integer>
+ <key>ColumnSpacing</key>
+ <real>36</real>
+ <key>CreationDate</key>
+ <string>2012-07-11 09:56:59 +0000</string>
+ <key>Creator</key>
+ <string>David</string>
+ <key>DisplayScale</key>
+ <string>1 0/72 in = 1 0/72 in</string>
+ <key>GraphDocumentVersion</key>
+ <integer>8</integer>
+ <key>GraphicsList</key>
+ <array>
+ <dict>
+ <key>Bounds</key>
+ <string>{{134.99645298946376, 386.21342831865218}, {137, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>38</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>37</integer>
+ <key>Position</key>
+ <real>0.5363534688949585</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:hadPrimarySource}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>37</integer>
+ <key>Points</key>
+ <array>
+ <string>{308.71434079092285, 477.91266038117271}</string>
+ <string>{201.89450073242188, 397}</string>
+ <string>{178.83683094197011, 287.30444896879442}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{340.93972744957301, 388.77139311372957}, {129, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>14</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>13</integer>
+ <key>Position</key>
+ <real>0.72497838735580444</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasGeneratedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ <key>ID</key>
+ <integer>13</integer>
+ <key>Points</key>
+ <array>
+ <string>{359.97343028122333, 476.41699537953747}</string>
+ <string>{411, 422}</string>
+ <string>{396.16012882933973, 365.34274291992188}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{537.94785035552536, 341.34275127024745}, {128, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>121</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>120</integer>
+ <key>Position</key>
+ <real>0.55690062046051025</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasDerivedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>108</integer>
+ </dict>
+ <key>ID</key>
+ <integer>120</integer>
+ <key>Points</key>
+ <array>
+ <string>{377.24169808423267, 481.11427495259915}</string>
+ <string>{600.64488195449962, 374}</string>
+ <string>{615.39378983274173, 140.17095372903813}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{34.002303843215742, 346.99431098977504}, {128, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>119</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ <key>Position</key>
+ <real>0.54085326194763184</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasDerivedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>118</integer>
+ <key>Points</key>
+ <array>
+ <string>{296.40413999475072, 481.96302994107668}</string>
+ <string>{98, 395.68093872070312}</string>
+ <string>{98.015793672271187, 144.18093596120013}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{454.81844138194174, 443.64489933348983}, {123, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>90</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Position</key>
+ <real>0.54085326194763184</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasAttributedTo}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>9</integer>
+ </dict>
+ <key>ID</key>
+ <integer>89</integer>
+ <key>Points</key>
+ <array>
+ <string>{388.93385421666306, 487.30236731033096}</string>
+ <string>{624.45908097883921, 428.76991460247183}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{254.76936565186338, 405.8686934309244}, {91, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>117</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>116</integer>
+ <key>Position</key>
+ <real>0.47103968262672424</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:generated}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ <key>ID</key>
+ <integer>116</integer>
+ <key>Points</key>
+ <array>
+ <string>{321.56227835118568, 365.34274291992188}</string>
+ <string>{299, 421}</string>
+ <string>{325.60644678547726, 475.07727869701381}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>77</integer>
+ </dict>
+ <key>ID</key>
+ <integer>78</integer>
+ <key>Points</key>
+ <array>
+ <string>{396.82696016840066, 499.0754017894111}</string>
+ <string>{515.40435793882443, 497.2284142972365}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{515.904296875, 474.99380493164062}, {93, 43}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>77</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 type=sioc:Post}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{279.36557006835938, 474.99379730224609}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>115</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post19201}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{223.88002515550113, 288.2891917286729}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>114</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>113</integer>
+ <key>Position</key>
+ <real>0.42980971932411194</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>5</integer>
+ </dict>
+ <key>ID</key>
+ <integer>113</integer>
+ <key>Points</key>
+ <array>
+ <string>{287.04725597980234, 315.1305570350458}</string>
+ <string>{213.36992994329756, 280.60047397942913}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{115, 236.91477966308594}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>5</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :aggregatedByRegions}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{383.7553378380087, 269.31007573441417}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>112</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>111</integer>
+ <key>Position</key>
+ <real>0.42980971932411194</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>103</integer>
+ </dict>
+ <key>ID</key>
+ <integer>111</integer>
+ <key>Points</key>
+ <array>
+ <string>{398.22091658286553, 314.89681679777169}</string>
+ <string>{437.85338762593608, 236.75353721774346}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{308.56514752832987, 269.29395343947988}, {63, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>107</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>106</integer>
+ <key>Position</key>
+ <real>0.42980971932411194</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:used}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ <key>ID</key>
+ <integer>106</integer>
+ <key>Points</key>
+ <array>
+ <string>{357.76697990896298, 314.9003611363546}</string>
+ <string>{316.58170283223762, 236.71132495140802}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{287.5, 315.34274291992188}, {141, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{-0.5, -0.233518}</string>
+ <string>{-0.49144199999999999, 0.26006299999999999}</string>
+ <string>{0.50711799999999996, -0.22408600000000001}</string>
+ <string>{0.50711799999999996, 0.267179}</string>
+ <string>{-0.27431, -0.474028}</string>
+ <string>{0.27977999999999997, -0.47847800000000001}</string>
+ <string>{0.29393799999999998, 0.54304399999999997}</string>
+ <string>{-0.28623199999999999, 0.55380399999999996}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>1</string>
+ <key>g</key>
+ <string>0.805677</string>
+ <key>r</key>
+ <string>0.811737</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :publicationActivity1123}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{467.93808791569654, 152.94350875097362}, {126, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>110</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>109</integer>
+ <key>Position</key>
+ <real>0.47056445479393005</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasQuotedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>108</integer>
+ </dict>
+ <key>ID</key>
+ <integer>109</integer>
+ <key>Points</key>
+ <array>
+ <string>{485.51464873087338, 191.45123948125268}</string>
+ <string>{582.04433498759465, 135.11946503414245}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>103</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{558.5015869140625, 89.680953979492188}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>108</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9821v2}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{396.82640933990479, 20.527252197265625}, {188, 69.153701782226562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>104</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:value="In sumary, there are clearly more crimes in the country"}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{392.0147705078125, 186.8760986328125}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>103</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :quote2}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{142.99395815750401, 155.6394162865073}, {126, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>102</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>101</integer>
+ <key>Position</key>
+ <real>0.47056445479393005</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasQuotedFrom}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>71</integer>
+ </dict>
+ <key>ID</key>
+ <integer>101</integer>
+ <key>Points</key>
+ <array>
+ <string>{262.93280936141826, 193.47151596796161}</string>
+ <string>{141.93163593269219, 138.57553005511417}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{27.51739501953125, 93.680923461914062}, {141, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>71</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post9821v1}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>99</integer>
+ </dict>
+ <key>ID</key>
+ <integer>100</integer>
+ <key>Points</key>
+ <array>
+ <string>{301.71584183797228, 186.38841450338973}</string>
+ <string>{298.34982289228014, 138.30297865345324}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>76</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{201.89450073242188, 68.650497436523438}, {188, 69.153701782226562}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>99</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:value="Analysis of the datasets demonstrate that there is more crime"}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{245, 186.87609720230103}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>76</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :quote1}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{624.94432067871094, 403.64932250976562}, {65, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>9</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>House</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>a</key>
+ <string>0.39</string>
+ <key>b</key>
+ <string>0.4</string>
+ <key>g</key>
+ <string>0.8</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :john}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{1037, 138.31907653808594}, {117, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>95</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>CornerRadius</key>
+ <real>5</real>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :noteMadeByParser}</string>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{915.00050901171278, 164.90050605714487}, {114, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>94</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Position</key>
+ <real>0.47056445479393005</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:hasAnnotation}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>95</integer>
+ </dict>
+ <key>ID</key>
+ <integer>93</integer>
+ <key>Points</key>
+ <array>
+ <string>{914.22869841882675, 200.52618816810079}</string>
+ <string>{1037.0000000000002, 150.31907653808594}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>7</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>51</integer>
+ </dict>
+ <key>ID</key>
+ <integer>52</integer>
+ <key>Points</key>
+ <array>
+ <string>{873.40463586672854, 192.51405407712076}</string>
+ <string>{876.50923251478594, 150.97138408239846}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>7</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{813, 112.31907653808594}, {129.94431948423176, 38.153697967529297}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>51</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 type=prov:Bundle}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{813.00000071286922, 193.00001525878906}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>7</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :bundlePost2}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>104</integer>
+ </dict>
+ <key>ID</key>
+ <integer>105</integer>
+ <key>Points</key>
+ <array>
+ <string>{457.02944226467042, 186.54053497851351}</string>
+ <string>{481.81095780137713, 90.165201306591896}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>103</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{5, 10.36187744140625}, {706, 523.319091796875}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>177</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{-1, -1}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 :bundlePost2\
+type=prov:bundle\
+prov:hasAnnotation=:noteMadeByParser}</string>
+ </dict>
+ <key>TextPlacement</key>
+ <integer>0</integer>
+ </dict>
+ </array>
+ <key>GridInfo</key>
+ <dict/>
+ <key>GuidesLocked</key>
+ <string>NO</string>
+ <key>GuidesVisible</key>
+ <string>YES</string>
+ <key>HPages</key>
+ <integer>3</integer>
+ <key>ImageCounter</key>
+ <integer>1</integer>
+ <key>KeepToScale</key>
+ <false/>
+ <key>Layers</key>
+ <array>
+ <dict>
+ <key>Lock</key>
+ <string>NO</string>
+ <key>Name</key>
+ <string>Layer 1</string>
+ <key>Print</key>
+ <string>YES</string>
+ <key>View</key>
+ <string>YES</string>
+ </dict>
+ </array>
+ <key>LayoutInfo</key>
+ <dict>
+ <key>Animate</key>
+ <string>NO</string>
+ <key>circoMinDist</key>
+ <real>18</real>
+ <key>circoSeparation</key>
+ <real>0.0</real>
+ <key>layoutEngine</key>
+ <string>dot</string>
+ <key>neatoSeparation</key>
+ <real>0.0</real>
+ <key>twopiSeparation</key>
+ <real>0.0</real>
+ </dict>
+ <key>LinksVisible</key>
+ <string>NO</string>
+ <key>MagnetsVisible</key>
+ <string>NO</string>
+ <key>MasterSheets</key>
+ <array/>
+ <key>ModificationDate</key>
+ <string>2012-07-11 11:44:58 +0000</string>
+ <key>Modifier</key>
+ <string>David</string>
+ <key>NotesVisible</key>
+ <string>NO</string>
+ <key>Orientation</key>
+ <integer>2</integer>
+ <key>OriginVisible</key>
+ <string>NO</string>
+ <key>PageBreaks</key>
+ <string>YES</string>
+ <key>PrintInfo</key>
+ <dict>
+ <key>NSBottomMargin</key>
+ <array>
+ <string>float</string>
+ <string>41</string>
+ </array>
+ <key>NSHorizonalPagination</key>
+ <array>
+ <string>coded</string>
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string>
+ </array>
+ <key>NSLeftMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSPaperSize</key>
+ <array>
+ <string>size</string>
+ <string>{595, 842}</string>
+ </array>
+ <key>NSPrintReverseOrientation</key>
+ <array>
+ <string>int</string>
+ <string>0</string>
+ </array>
+ <key>NSRightMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSTopMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ </dict>
+ <key>PrintOnePage</key>
+ <false/>
+ <key>ReadOnly</key>
+ <string>NO</string>
+ <key>RowAlign</key>
+ <integer>1</integer>
+ <key>RowSpacing</key>
+ <real>36</real>
+ <key>SheetTitle</key>
+ <string>Canvas 1</string>
+ <key>SmartAlignmentGuidesActive</key>
+ <string>YES</string>
+ <key>SmartDistanceGuidesActive</key>
+ <string>YES</string>
+ <key>UniqueID</key>
+ <integer>1</integer>
+ <key>UseEntirePage</key>
+ <false/>
+ <key>VPages</key>
+ <integer>1</integer>
+ <key>WindowInfo</key>
+ <dict>
+ <key>CurrentSheet</key>
+ <integer>0</integer>
+ <key>ExpandedCanvases</key>
+ <array>
+ <dict>
+ <key>name</key>
+ <string>Canvas 1</string>
+ </dict>
+ </array>
+ <key>Frame</key>
+ <string>{{1214, 382}, {1144, 1036}}</string>
+ <key>ListView</key>
+ <true/>
+ <key>OutlineWidth</key>
+ <integer>142</integer>
+ <key>RightSidebar</key>
+ <false/>
+ <key>ShowRuler</key>
+ <true/>
+ <key>Sidebar</key>
+ <true/>
+ <key>SidebarWidth</key>
+ <integer>120</integer>
+ <key>VisibleRegion</key>
+ <string>{{0, -49}, {1009, 882}}</string>
+ <key>Zoom</key>
+ <real>1</real>
+ <key>ZoomValues</key>
+ <array>
+ <array>
+ <string>Canvas 1</string>
+ <real>1</real>
+ <real>1</real>
+ </array>
+ </array>
+ </dict>
+</dict>
+</plist>
Binary file ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost2.pdf has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-bundlePost2.svg Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,587 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.1"
+ width="887.5"
+ height="660"
+ id="svg3348"
+ xml:space="preserve"><metadata
+ id="metadata3354"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ id="defs3352"><clipPath
+ id="clipPath3364"><path
+ d="M 0,0 710,0 710,528 0,528 0,0 z"
+ id="path3366" /></clipPath></defs><g
+ transform="matrix(1.25,0,0,-1.25,0,660)"
+ id="g3356"><g
+ id="g3358" /><g
+ id="g3360"><g
+ clip-path="url(#clipPath3364)"
+ id="g3362"><path
+ d="m -3.5,536.5 1677,0 0,-783 -1677,0 0,783 z"
+ id="path3368"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
+ d="m 2.5,525.1381 706,0 0,-523.319069 -706,0 0,523.319069 z"
+ id="path3370"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3372"><path
+ d="m 5,10.36188 706,0 0,523.31912 -706,0 0,-523.31912 z"
+ id="path3374"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,355,263.9786)"
+ id="g3376"><text
+ transform="translate(-348,-245.6595)"
+ id="text3378"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 30.0312 32.697601 39.372002 47.375999 54.0504 60.0504 63.383999"
+ y="0"
+ id="tspan3380"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:bundlePost2</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,355,263.9786)"
+ id="g3382"><text
+ transform="translate(-348,-231.6595)"
+ id="text3384"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 36.364799 40.360802 47.035198 53.035198 56.368801 63.043201 69.717598 76.391998 83.066399 85.732803"
+ y="0"
+ id="tspan3386"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=prov:bundle</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,355,263.9786)"
+ id="g3388"><text
+ transform="translate(-348,-217.6595)"
+ id="text3390"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.027199 54.0312 60.705601 67.379997 74.054398 77.388 84.062401 87.396004 90.062401 96.736801 103.4112 110.4192 113.7528 120.4272 127.1016 130.4352 137.1096 147.10561 153.78 160.45441 167.1288 175.1328 181.1328 189.1368 195.8112 199.80721 205.80721 212.4816"
+ y="0"
+ id="tspan3392"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:hasAnnotation=:noteMadeByParser</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3394"><path
+ d="M 457.0294,186.5405 481.811,90.1652"
+ id="path3396"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 622.4443,81.85068 0,33.35002 32.5,16.65 32.5,-16.65 0,-33.35002 -65,0 z"
+ id="path3398"
+ style="fill:#ffd479;fill-opacity:0.38999999;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3400"><path
+ d="m 624.9443,453.6493 0,-33.35 32.5,-16.65 32.5,16.65 0,33.35 -65,0 z"
+ id="path3402"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,654.4443,107.3507)"
+ id="g3404"><text
+ transform="translate(-13.01074,12.3)"
+ id="text3406"><tspan
+ x="0 3.3336 5.9952002 12.6648 19.3344"
+ y="0"
+ id="tspan3408"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:john</tspan></text>
+</g><path
+ d="m 342.3657,341.3016 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8457,-9.7632 -59.8857,-9.7632 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8457,9.7631 59.8857,9.7631 82.7314,0"
+ id="path3410"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3412"><path
+ d="m 344.8657,194.1984 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.7632 -59.8857,9.7632 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8457,-9.7631 59.8857,-9.7631 82.7314,0"
+ id="path3414"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,300.5,324.1239)"
+ id="g3416"><text
+ transform="translate(-20.01855,4)"
+ id="text3418"><tspan
+ x="0 3.3336 10.0032 16.6728 23.3424 26.676001 33.3456"
+ y="0"
+ id="tspan3420"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:quote1</tspan></text>
+</g><path
+ d="m 387.3945,446.3869 c 0,6.551 -2.3876,7.3614 -19.8284,13.8446 l -0.1842,0.0671 c -17.5329,6.5509 -17.7152,6.5509 -35.7087,6.5509 -23.9587,0 -132.2787,0 -132.2787,0 l 0,-69.1537 188,0 0,48.6911 z"
+ id="path3422"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3424"><path
+ d="m 389.8945,89.11308 c 0,-6.55093 -2.3876,-7.36141 -19.8284,-13.84457 l -0.1842,-0.06708 C 352.349,68.6505 352.1667,68.6505 334.1732,68.6505 c -23.9587,0 -132.2787,0 -132.2787,0 l 0,69.1537 188,0 0,-48.69112 z m 0,-0.33747 c 0,-6.21346 -0.1842,-6.21346 -37.7278,-6.21346 l 0,0 c 0,-13.84388 0,-13.91165 -16.8918,-13.91165"
+ id="path3426"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,292.8945,432.7727)"
+ id="g3428"><text
+ transform="translate(-72.33691,-10)"
+ id="text3430"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 32.678398 39.352798 42.019199 48.6936 55.368 62.375999 66.636002 74.639999 81.3144 87.9888 90.655197 96.655197 102.6552 105.3216 111.3216 114.6552 121.3296 124.6632 127.9968 131.3304 138.00481 144.6792"
+ y="0"
+ id="tspan3432"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:value="Analysis of the </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,292.8945,432.7727)"
+ id="g3434"><text
+ transform="translate(-84.71777,4)"
+ id="text3436"><tspan
+ x="0 6.6743999 13.3488 16.6824 23.3568 29.3568 36.0312 39.364799 45.364799 48.698399 55.372799 62.047199 72.043198 78.717598 85.391998 91.391998 94.725601 98.721603 105.396 108.7296 115.404 118.7376 122.0712 128.74561 135.42 138.7536 142.0872 145.42081 152.0952 158.76961 162.76559 169.44"
+ y="0"
+ id="tspan3438"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">datasets demonstrate that there </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,292.8945,432.7727)"
+ id="g3440"><text
+ transform="translate(-38.13281,18)"
+ id="text3442"><tspan
+ x="0 2.6664 8.6664 12 21.996 28.670401 32.666401 39.340801 42.6744 48.6744 52.670399 55.3368 65.332802 72.007202"
+ y="0"
+ id="tspan3444"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">is more crime"</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3446"><path
+ d="m 301.7158,186.3884 -3.366,-48.0854"
+ id="path3448"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 145.3684,434.4967 c 27.5321,-9.7631 27.5321,-25.5922 0,-35.3553 -27.532,-9.7631 -72.17004,-9.7631 -99.70198,0 -27.53208,9.7631 -27.53208,25.5922 0,35.3553 27.53194,9.7632 72.16998,9.7632 99.70198,0"
+ id="path3450"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3452"><path
+ d="m 147.8684,101.0033 c 27.5321,9.7631 27.5321,25.5922 0,35.3553 -27.532,9.7631 -72.17004,9.7631 -99.70198,0 -27.53208,-9.7631 -27.53208,-25.5922 0,-35.3553 27.53194,-9.76318 72.16998,-9.76318 99.70198,0"
+ id="path3454"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,95.0174,417.3191)"
+ id="g3456"><text
+ transform="translate(-32.69238,4)"
+ id="text3458"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136 58.7136"
+ y="0"
+ id="tspan3460"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9821v1</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3462"><path
+ d="M 262.9328,193.4715 150.9472,142.6657"
+ id="path3464"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 141.1619,396.1395 6.0458,-6.0372 2.4789,5.464 -8.5247,0.5732 z"
+ id="path3466"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3468"><path
+ d="m 143.6619,139.3605 6.0458,6.0372 2.4789,-5.464 -8.5247,-0.5732 z"
+ id="path3470"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 139.994,380.3606 126,0 0,-24 -126,0 0,24 z"
+ id="path3472"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,202.994,368.3606)"
+ id="g3474"><text
+ transform="translate(-57.68848,4)"
+ id="text3476"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 74.035202 80.709602 87.384003 94.7136 98.709602 105.384"
+ y="0"
+ id="tspan3478"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasQuotedFrom</tspan></text>
+</g><path
+ d="m 489.3805,341.3016 c 22.8457,-9.7631 22.8457,-25.5922 0,-35.3553 -22.8457,-9.7632 -59.8858,-9.7632 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8456,9.7631 59.8857,9.7631 82.7314,0"
+ id="path3480"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3482"><path
+ d="m 491.8805,194.1984 c 22.8457,9.7631 22.8457,25.5922 0,35.3553 -22.8457,9.7632 -59.8858,9.7632 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8456,-9.7631 59.8857,-9.7631 82.7314,0"
+ id="path3484"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,447.5148,324.1239)"
+ id="g3486"><text
+ transform="translate(-20.01855,4)"
+ id="text3488"><tspan
+ x="0 3.3336 10.0032 16.6728 23.3424 26.676001 33.3456"
+ y="0"
+ id="tspan3490"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:quote2</tspan></text>
+</g><path
+ d="m 582.3264,494.5102 c 0,6.5509 -2.3876,7.3614 -19.8284,13.8445 l -0.1842,0.0671 c -17.5329,6.5509 -17.7152,6.5509 -35.7087,6.5509 -23.9587,0 -132.2787,0 -132.2787,0 l 0,-69.1537 188,0 0,48.6912 z"
+ id="path3492"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3494"><path
+ d="m 584.8264,40.98983 c 0,-6.55093 -2.3876,-7.36141 -19.8284,-13.84457 l -0.1842,-0.06708 c -17.5329,-6.55093 -17.7152,-6.55093 -35.7087,-6.55093 -23.9587,0 -132.2787,0 -132.2787,0 l 0,69.1537 188,0 0,-48.69112 z m 0,-0.33747 c 0,-6.21346 -0.1842,-6.21346 -37.7278,-6.21346 l 0,0 c 0,-13.84388 0,-13.91165 -16.8918,-13.91165"
+ id="path3496"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,487.8264,480.8959)"
+ id="g3498"><text
+ transform="translate(-86.56348,-10)"
+ id="text3500"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 32.678398 39.352798 42.019199 48.6936 55.368 62.375999 66.636002 69.969597 76.643997 79.9776 85.9776 92.652 102.648 109.3224 113.3184 118.434 121.7676 125.1012 128.4348 135.10921 141.7836 145.7796 152.45399 155.7876 162.46201 166.45799 173.1324"
+ y="0"
+ id="tspan3502"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:value="In sumary, there are </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,487.8264,480.8959)"
+ id="g3504"><text
+ transform="translate(-68.35254,4)"
+ id="text3506"><tspan
+ x="0 6 8.6664 15.3408 22.0152 26.0112 28.677601 34.677601 38.0112 48.007198 54.681599 58.677601 65.351997 68.6856 74.6856 78.681602 81.348 91.344002 98.018402 104.0184 107.352 110.0184 116.6928 120.0264 123.36 130.03439 136.7088"
+ y="0"
+ id="tspan3508"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">clearly more crimes in the </tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,487.8264,480.8959)"
+ id="g3510"><text
+ transform="translate(-21.80566,18)"
+ id="text3512"><tspan
+ x="0 6 12.6744 19.348801 26.023199 29.3568 33.352798 39.352798"
+ y="0"
+ id="tspan3514"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">country"</tspan></text>
+</g><path
+ d="m 655.8673,438.4967 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8457,-9.7632 -59.8858,-9.7632 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8456,9.7631 59.8857,9.7631 82.7314,0"
+ id="path3516"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3518"><path
+ d="m 658.3673,97.0033 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.7632 -59.8858,9.7632 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8456,-9.76315 59.8857,-9.76315 82.7314,0"
+ id="path3520"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,614.0016,421.319)"
+ id="g3522"><text
+ transform="translate(-32.69238,4)"
+ id="text3524"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136 58.7136"
+ y="0"
+ id="tspan3526"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post9821v2</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3528"><path
+ d="m 485.5146,191.4512 87.9792,-51.3419"
+ id="path3530"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 577.9033,399.4229 -8.4216,-1.4411 3.0242,-5.1822 5.3974,6.6233 z"
+ id="path3532"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3534"><path
+ d="m 580.4033,136.0771 -8.4216,1.4411 3.0242,5.1822 5.3974,-6.6233 z"
+ id="path3536"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 464.9381,383.0565 126,0 0,-24 -126,0 0,24 z"
+ id="path3538"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,527.9381,371.0565)"
+ id="g3540"><text
+ transform="translate(-57.68848,4)"
+ id="text3542"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 74.035202 80.709602 87.384003 94.7136 98.709602 105.384"
+ y="0"
+ id="tspan3544"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasQuotedFrom</tspan></text>
+</g><path
+ d="m 285,220.1573 141,0 0,-50 -141,0 0,50 z"
+ id="path3546"
+ style="fill:#d8d8ff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3548"><path
+ d="m 287.5,315.3427 141,0 0,50 -141,0 0,-50 z"
+ id="path3550"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,355,195.6573)"
+ id="g3552"><text
+ transform="translate(-62.26172,4)"
+ id="text3554"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 26.023199 28.6896 34.689602 41.363998 44.697601 47.363998 54.038399 60.712799 68.716797 74.716797 78.0504 80.716797 86.716797 89.383202 92.716797 98.716797 104.5056 111.18 117.8544"
+ y="0"
+ id="tspan3556"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:publicationActivity1123</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3558"><path
+ d="M 357.767,314.9004 321.1955,245.4705"
+ id="path3560"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 314.9672,297.1076 1.074,-8.4762 5.3086,2.7962 -6.3826,5.68 z"
+ id="path3562"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3564"><path
+ d="m 317.4672,238.3924 1.074,8.4762 5.3086,-2.7962 -6.3826,-5.68 z"
+ id="path3566"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 305.5651,266.706 63,0 0,-24 -63,0 0,24 z"
+ id="path3568"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,337.0651,254.706)"
+ id="g3570"><text
+ transform="translate(-26.34961,4)"
+ id="text3572"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan3574"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3576"><path
+ d="m 398.2209,314.8968 35.1545,-69.3139"
+ id="path3578"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 434.494,297.0519 -6.2942,-5.7778 5.3511,-2.714 0.9431,8.4918 z"
+ id="path3580"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3582"><path
+ d="m 436.994,238.4481 -6.2942,5.7778 5.3511,2.714 0.9431,-8.4918 z"
+ id="path3584"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 380.7553,266.6899 63,0 0,-24 -63,0 0,24 z"
+ id="path3586"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,412.2553,254.6899)"
+ id="g3588"><text
+ transform="translate(-26.34961,4)"
+ id="text3590"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan3592"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><path
+ d="m 212.3657,291.2629 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.8457,-9.7632 -59.8857,-9.7632 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8457,9.7631 59.8857,9.7631 82.7314,0"
+ id="path3594"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3596"><path
+ d="m 214.8657,244.2371 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.7632 -59.8857,9.7632 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8457,-9.7631 59.8857,-9.7631 82.7314,0"
+ id="path3598"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,170.5,274.0852)"
+ id="g3600"><text
+ transform="translate(-39.0293,-3)"
+ id="text3602"><tspan
+ x="0 3.3336 10.008 16.6824 23.3568 27.3528 34.027199 40.701599 47.375999 50.709599 57.383999 64.058403 72.062401"
+ y="0"
+ id="tspan3604"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:aggregatedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,170.5,274.0852)"
+ id="g3606"><text
+ transform="translate(-22.01367,11)"
+ id="text3608"><tspan
+ x="0 8.6664 15.3408 22.0152 24.681601 31.356001 38.030399"
+ y="0"
+ id="tspan3610"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">Regions</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3612"><path
+ d="m 287.0473,315.1306 -64.713,-30.3288"
+ id="path3614"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 212.5904,254.0932 5.9707,-6.1114 2.5463,5.4329 -8.517,0.6785 z"
+ id="path3616"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3618"><path
+ d="m 215.0904,281.4068 5.9707,6.1114 2.5463,-5.4329 -8.517,-0.6785 z"
+ id="path3620"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 220.88,247.7108 63,0 0,-24 -63,0 0,24 z"
+ id="path3622"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,252.38,235.7108)"
+ id="g3624"><text
+ transform="translate(-26.34961,4)"
+ id="text3626"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 39.352798 46.027199"
+ y="0"
+ id="tspan3628"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:used</tspan></text>
+</g><path
+ d="m 376.7313,53.18385 c 22.8457,-9.7631 22.8457,-25.5922 0,-35.3553 -22.8457,-9.763147 -59.8858,-9.763147 -82.7314,0 -22.8458,9.7631 -22.8458,25.5922 0,35.3553 22.8456,9.76315 59.8857,9.76315 82.7314,0"
+ id="path3630"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3632"><path
+ d="m 379.2313,482.3161 c 22.8457,9.7631 22.8457,25.5922 0,35.3553 -22.8457,9.7632 -59.8858,9.7632 -82.7314,0 -22.8458,-9.7631 -22.8458,-25.5922 0,-35.3553 22.8456,-9.7631 59.8857,-9.7631 82.7314,0"
+ id="path3634"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,334.8656,36.0062)"
+ id="g3636"><text
+ transform="translate(-29.69238,4)"
+ id="text3638"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136"
+ y="0"
+ id="tspan3640"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post19201</tspan></text>
+</g><path
+ d="m 606.4043,47.7825 c 0,4.07339 -1.1811,4.57735 -9.8087,8.6086 l -0.0912,0.04171 c -8.6731,4.07339 -8.7633,4.07339 -17.6644,4.07339 -11.8519,0 -65.4357,0 -65.4357,0 l 0,-43 93,0 0,30.2763 z"
+ id="path3642"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3644"><path
+ d="m 608.9043,487.7175 c 0,-4.0734 -1.1811,-4.5773 -9.8087,-8.6086 l -0.0912,-0.0417 c -8.6731,-4.0734 -8.7633,-4.0734 -17.6644,-4.0734 -11.8519,0 -65.4357,0 -65.4357,0 l 0,43 93,0 0,-30.2763 z m 0,-0.2098 c 0,-3.8636 -0.0911,-3.8636 -18.6632,-3.8636 l 0,0 c 0,-8.6082 0,-8.6503 -8.3561,-8.6503"
+ id="path3646"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,559.4043,39.5062)"
+ id="g3648"><text
+ transform="translate(-41.5,4)"
+ id="text3650"><tspan
+ x="0 3.3336 9.3336 16.007999 22.6824 29.690399 35.690399 38.3568 45.0312 51.0312 54.364799 62.368801 69.043198 75.043198"
+ y="0"
+ id="tspan3652"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">type=sioc:Post</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3654"><path
+ d="m 396.827,499.0754 118.5774,-1.847"
+ id="path3656"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3658"><path
+ d="M 321.5623,365.3427 299,421 l 22.2359,45.1942"
+ id="path3660"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 322.2677,62.12755 -0.84,8.50262 -5.3836,-2.64881 6.2236,-5.85381 z"
+ id="path3662"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3664"><path
+ d="m 324.7677,473.3725 -0.84,-8.5027 -5.3836,2.6488 6.2236,5.8539 z"
+ id="path3666"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 251.7694,130.1313 91,0 0,-24 -91,0 0,24 z"
+ id="path3668"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,297.2694,118.1313)"
+ id="g3670"><text
+ transform="translate(-40.3623,4)"
+ id="text3672"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 53.375999 57.372002 64.046402 67.379997 74.054398"
+ y="0"
+ id="tspan3674"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:generated</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3676"><path
+ d="M 388.9339,487.3024 614.8513,431.1576"
+ id="path3678"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 620.1152,106.2718 -8.4874,0.982 1.4471,-5.8229 7.0403,4.8409 z"
+ id="path3680"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3682"><path
+ d="m 622.6152,429.2282 -8.4874,-0.982 1.4471,5.8229 7.0403,-4.8409 z"
+ id="path3684"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 451.8184,92.3551 123,0 0,-24 -123,0 0,24 z"
+ id="path3686"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,513.3184,80.3551)"
+ id="g3688"><text
+ transform="translate(-56.02734,4)"
+ id="text3690"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 59.3568 62.690399 66.686401 69.352798 76.027199 82.701599 86.035202 92.709602 99.384003 105.384"
+ y="0"
+ id="tspan3692"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasAttributedTo</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3694"><path
+ d="M 296.4041,481.963 98,395.6809 l 0.01517,-241.6"
+ id="path3696"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 95.51567,389.4191 -3.0005,-7.9998 6,-4e-4 -2.9995,8.0002 z"
+ id="path3698"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3700"><path
+ d="m 98.01567,146.0809 -3.0005,7.9998 6.00003,4e-4 -2.99953,-8.0002 z"
+ id="path3702"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 31.0023,189.0057 128,0 0,-24 -128,0 0,24 z"
+ id="path3704"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,95.0023,177.0057)"
+ id="g3706"><text
+ transform="translate(-58.68164,4)"
+ id="text3708"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.6856 63.360001 67.356003 70.0224 76.0224 82.6968 89.371201 96.700798 100.6968 107.3712"
+ y="0"
+ id="tspan3710"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasDerivedFrom</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3712"><path
+ d="M 377.2417,481.1143 600.6449,374 614.7706,150.0513"
+ id="path3714"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 612.7742,393.4328 -3.4977,-7.7953 5.9881,-0.3777 -2.4904,8.173 z"
+ id="path3716"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3718"><path
+ d="m 615.2742,142.0672 -3.4977,7.7953 5.9881,0.3777 -2.4904,-8.173 z"
+ id="path3720"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 534.9479,194.6572 128,0 0,-24 -128,0 0,24 z"
+ id="path3722"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,598.9479,182.6572)"
+ id="g3724"><text
+ transform="translate(-58.68164,4)"
+ id="text3726"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.6856 63.360001 67.356003 70.0224 76.0224 82.6968 89.371201 96.700798 100.6968 107.3712"
+ y="0"
+ id="tspan3728"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasDerivedFrom</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3730"><path
+ d="M 359.9734,476.417 411,422 398.6686,374.9197"
+ id="path3732"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 394.1415,168.3193 -0.875,-8.4991 5.8042,1.5202 -4.9292,6.9789 z"
+ id="path3734"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3736"><path
+ d="m 396.6415,367.1807 -0.875,8.4991 5.8042,-1.5202 -4.9292,-6.9789 z"
+ id="path3738"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 337.9397,147.2286 129,0 0,-24 -129,0 0,24 z"
+ id="path3740"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,402.4397,135.2286)"
+ id="g3742"><text
+ transform="translate(-59.36426,4)"
+ id="text3744"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 57.352798 64.027199 70.701599 77.375999 81.372002 88.046402 91.379997 98.054398 104.7288 112.7328"
+ y="0"
+ id="tspan3746"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasGeneratedBy</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3748"><path
+ d="M 308.7143,477.9127 201.8945,397 180.8733,296.9927"
+ id="path3750"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 176.7277,246.3362 -1.2903,-8.446 5.8717,1.2342 -4.5814,7.2118 z"
+ id="path3752"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-2.5,535.5)"
+ id="g3754"><path
+ d="m 179.2277,289.1638 -1.2903,8.446 5.8717,-1.2342 -4.5814,-7.2118 z"
+ id="path3756"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 131.9965,149.7866 137,0 0,-24 -137,0 0,24 z"
+ id="path3758"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,200.4965,137.7866)"
+ id="g3760"><text
+ transform="translate(-63.02637,4)"
+ id="text3762"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 33.352798 40.027199 46.701599 54.705601 58.701599 61.368 71.363998 78.038399 82.034401 88.034401 96.038399 102.7128 109.3872 113.3832 119.3832"
+ y="0"
+ id="tspan3764"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:hadPrimarySource</tspan></text>
+</g></g></g></g></svg>
\ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-hdd-failure.graffle Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,554 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>ActiveLayerIndex</key>
+ <integer>0</integer>
+ <key>ApplicationVersion</key>
+ <array>
+ <string>com.omnigroup.OmniGraffle</string>
+ <string>139.7.0.167456</string>
+ </array>
+ <key>AutoAdjust</key>
+ <true/>
+ <key>BackgroundGraphic</key>
+ <dict>
+ <key>Bounds</key>
+ <string>{{0, 0}, {559, 783}}</string>
+ <key>Class</key>
+ <string>SolidGraphic</string>
+ <key>ID</key>
+ <integer>2</integer>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ </dict>
+ <key>BaseZoom</key>
+ <integer>0</integer>
+ <key>CanvasOrigin</key>
+ <string>{0, 0}</string>
+ <key>ColumnAlign</key>
+ <integer>1</integer>
+ <key>ColumnSpacing</key>
+ <real>36</real>
+ <key>CreationDate</key>
+ <string>2012-07-11 10:12:39 +0000</string>
+ <key>Creator</key>
+ <string>David</string>
+ <key>DisplayScale</key>
+ <string>1 0/72 in = 1 0/72 in</string>
+ <key>GraphDocumentVersion</key>
+ <integer>8</integer>
+ <key>GraphicsList</key>
+ <array>
+ <dict>
+ <key>Bounds</key>
+ <string>{{36.000623652306416, 147.09051688399848}, {131, 24}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FitText</key>
+ <string>YES</string>
+ <key>Flow</key>
+ <string>Resize</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>w</key>
+ <string>0</string>
+ </dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>110</integer>
+ <key>Line</key>
+ <dict>
+ <key>ID</key>
+ <integer>109</integer>
+ <key>Position</key>
+ <real>0.47056445479393005</real>
+ <key>RotationType</key>
+ <integer>0</integer>
+ </dict>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ <key>stroke</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc
+
+\f0\fs24 \cf0 prov:wasInvalidatedBy}</string>
+ </dict>
+ <key>Wrap</key>
+ <string>NO</string>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ <key>ID</key>
+ <integer>109</integer>
+ <key>Points</key>
+ <array>
+ <string>{101.50022427385258, 204.49998142865064}</string>
+ <string>{101.50107299595592, 107.99999278301888}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>FilledArrow</string>
+ <key>Legacy</key>
+ <true/>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>118</integer>
+ </dict>
+ <key>ID</key>
+ <integer>119</integer>
+ <key>Points</key>
+ <array>
+ <string>{172, 82.499993909167983}</string>
+ <string>{204.73504638671875, 82.499992302757676}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>81</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{205.23504638671875, 49.999987818335967}, {181.76495361328125, 65}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>118</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 prov:wasEndedAt="2012-09-02T01:31:00Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{31, 57.499993909167983}, {141, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>81</integer>
+ <key>Magnets</key>
+ <array>
+ <string>{1, 1}</string>
+ <string>{1, -1}</string>
+ <string>{-1, -1}</string>
+ <string>{-1, 1}</string>
+ <string>{0, 1}</string>
+ <string>{0, -1}</string>
+ <string>{1, 0}</string>
+ <string>{-1, 0}</string>
+ <string>{-0.5, -0.233518}</string>
+ <string>{-0.49144199999999999, 0.26006299999999999}</string>
+ <string>{0.50711799999999996, -0.22408600000000001}</string>
+ <string>{0.50711799999999996, 0.267179}</string>
+ <string>{-0.27431, -0.474028}</string>
+ <string>{0.27977999999999997, -0.47847800000000001}</string>
+ <string>{0.29393799999999998, 0.54304399999999997}</string>
+ <string>{-0.28623199999999999, 0.55380399999999996}</string>
+ </array>
+ <key>Shape</key>
+ <string>Rectangle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>1</string>
+ <key>g</key>
+ <string>0.805677</string>
+ <key>r</key>
+ <string>0.811737</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :hard_disk_failure}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Class</key>
+ <string>LineGraphic</string>
+ <key>Head</key>
+ <dict>
+ <key>ID</key>
+ <integer>77</integer>
+ </dict>
+ <key>ID</key>
+ <integer>78</integer>
+ <key>Points</key>
+ <array>
+ <string>{160.500029240522, 229.99999141319998}</string>
+ <string>{204.7350595299327, 229.99998954185818}</string>
+ </array>
+ <key>Style</key>
+ <dict>
+ <key>stroke</key>
+ <dict>
+ <key>HeadArrow</key>
+ <string>0</string>
+ <key>Legacy</key>
+ <true/>
+ <key>Pattern</key>
+ <integer>1</integer>
+ <key>TailArrow</key>
+ <string>0</string>
+ </dict>
+ </dict>
+ <key>Tail</key>
+ <dict>
+ <key>ID</key>
+ <integer>115</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{205.23505952045468, 197.49999390916798}, {210.52989196777344, 65}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>ID</key>
+ <integer>77</integer>
+ <key>Shape</key>
+ <string>NoteShape</string>
+ <key>Style</key>
+ <dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Align</key>
+ <integer>0</integer>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720
+
+\f0\fs24 \cf0 prov:invalidatedAtTime="2012-09-02T01:31:00Z"^^xsd:dateTime}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ <dict>
+ <key>Bounds</key>
+ <string>{{43, 204.99999390916798}, {117, 50}}</string>
+ <key>Class</key>
+ <string>ShapedGraphic</string>
+ <key>FontInfo</key>
+ <dict>
+ <key>Font</key>
+ <string>Helvetica</string>
+ <key>Size</key>
+ <real>12</real>
+ </dict>
+ <key>ID</key>
+ <integer>115</integer>
+ <key>Shape</key>
+ <string>Circle</string>
+ <key>Style</key>
+ <dict>
+ <key>fill</key>
+ <dict>
+ <key>Color</key>
+ <dict>
+ <key>b</key>
+ <string>0.745836</string>
+ <key>g</key>
+ <string>1</string>
+ <key>r</key>
+ <string>1</string>
+ </dict>
+ </dict>
+ <key>shadow</key>
+ <dict>
+ <key>Draws</key>
+ <string>NO</string>
+ </dict>
+ </dict>
+ <key>Text</key>
+ <dict>
+ <key>Text</key>
+ <string>{\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf470
+{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
+{\colortbl;\red255\green255\blue255;}
+\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\qc
+
+\f0\fs24 \cf0 :post19201}</string>
+ <key>VerticalPad</key>
+ <integer>0</integer>
+ </dict>
+ </dict>
+ </array>
+ <key>GridInfo</key>
+ <dict/>
+ <key>GuidesLocked</key>
+ <string>NO</string>
+ <key>GuidesVisible</key>
+ <string>YES</string>
+ <key>HPages</key>
+ <integer>1</integer>
+ <key>ImageCounter</key>
+ <integer>1</integer>
+ <key>KeepToScale</key>
+ <false/>
+ <key>Layers</key>
+ <array>
+ <dict>
+ <key>Lock</key>
+ <string>NO</string>
+ <key>Name</key>
+ <string>Layer 1</string>
+ <key>Print</key>
+ <string>YES</string>
+ <key>View</key>
+ <string>YES</string>
+ </dict>
+ </array>
+ <key>LayoutInfo</key>
+ <dict>
+ <key>Animate</key>
+ <string>NO</string>
+ <key>circoMinDist</key>
+ <real>18</real>
+ <key>circoSeparation</key>
+ <real>0.0</real>
+ <key>layoutEngine</key>
+ <string>dot</string>
+ <key>neatoSeparation</key>
+ <real>0.0</real>
+ <key>twopiSeparation</key>
+ <real>0.0</real>
+ </dict>
+ <key>LinksVisible</key>
+ <string>NO</string>
+ <key>MagnetsVisible</key>
+ <string>NO</string>
+ <key>MasterSheets</key>
+ <array/>
+ <key>ModificationDate</key>
+ <string>2012-07-11 11:48:35 +0000</string>
+ <key>Modifier</key>
+ <string>David</string>
+ <key>NotesVisible</key>
+ <string>NO</string>
+ <key>Orientation</key>
+ <integer>2</integer>
+ <key>OriginVisible</key>
+ <string>NO</string>
+ <key>PageBreaks</key>
+ <string>YES</string>
+ <key>PrintInfo</key>
+ <dict>
+ <key>NSBottomMargin</key>
+ <array>
+ <string>float</string>
+ <string>41</string>
+ </array>
+ <key>NSHorizonalPagination</key>
+ <array>
+ <string>coded</string>
+ <string>BAtzdHJlYW10eXBlZIHoA4QBQISEhAhOU051bWJlcgCEhAdOU1ZhbHVlAISECE5TT2JqZWN0AIWEASqEhAFxlwCG</string>
+ </array>
+ <key>NSLeftMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSPaperSize</key>
+ <array>
+ <string>size</string>
+ <string>{595, 842}</string>
+ </array>
+ <key>NSPrintReverseOrientation</key>
+ <array>
+ <string>int</string>
+ <string>0</string>
+ </array>
+ <key>NSRightMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ <key>NSTopMargin</key>
+ <array>
+ <string>float</string>
+ <string>18</string>
+ </array>
+ </dict>
+ <key>PrintOnePage</key>
+ <false/>
+ <key>ReadOnly</key>
+ <string>NO</string>
+ <key>RowAlign</key>
+ <integer>1</integer>
+ <key>RowSpacing</key>
+ <real>36</real>
+ <key>SheetTitle</key>
+ <string>Canvas 1</string>
+ <key>SmartAlignmentGuidesActive</key>
+ <string>YES</string>
+ <key>SmartDistanceGuidesActive</key>
+ <string>YES</string>
+ <key>UniqueID</key>
+ <integer>1</integer>
+ <key>UseEntirePage</key>
+ <false/>
+ <key>VPages</key>
+ <integer>1</integer>
+ <key>WindowInfo</key>
+ <dict>
+ <key>CurrentSheet</key>
+ <integer>0</integer>
+ <key>ExpandedCanvases</key>
+ <array>
+ <dict>
+ <key>name</key>
+ <string>Canvas 1</string>
+ </dict>
+ </array>
+ <key>Frame</key>
+ <string>{{371, -56}, {693, 922}}</string>
+ <key>ListView</key>
+ <true/>
+ <key>OutlineWidth</key>
+ <integer>142</integer>
+ <key>RightSidebar</key>
+ <false/>
+ <key>ShowRuler</key>
+ <true/>
+ <key>Sidebar</key>
+ <true/>
+ <key>SidebarWidth</key>
+ <integer>120</integer>
+ <key>VisibleRegion</key>
+ <string>{{0, 0}, {558, 783}}</string>
+ <key>Zoom</key>
+ <real>1</real>
+ <key>ZoomValues</key>
+ <array>
+ <array>
+ <string>Canvas 1</string>
+ <real>1</real>
+ <real>1</real>
+ </array>
+ </array>
+ </dict>
+</dict>
+</plist>
Binary file ontology/diagram-history/2012-07-09-david/expanded-terms-example-hdd-failure.pdf has changed
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/diagram-history/2012-07-09-david/expanded-terms-example-hdd-failure.svg Wed Jul 11 16:50:34 2012 +0100
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ version="1.1"
+ width="486.25"
+ height="272.5"
+ id="svg3804"
+ xml:space="preserve"><metadata
+ id="metadata3810"><rdf:RDF><cc:Work
+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+ id="defs3808"><clipPath
+ id="clipPath3820"><path
+ d="M 0,0 389,0 389,218 0,218 0,0 z"
+ id="path3822" /></clipPath></defs><g
+ transform="matrix(1.25,0,0,-1.25,0,272.5)"
+ id="g3812"><g
+ id="g3814" /><g
+ id="g3816"><g
+ clip-path="url(#clipPath3820)"
+ id="g3818"><path
+ d="m -29.5,265.5 559,0 0,-783 -559,0 0,783 z"
+ id="path3824"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><path
+ d="m 114.3657,52.17766 c 22.8458,-9.7631 22.8458,-25.5922 0,-35.3553 -22.84565,-9.763154 -59.88575,-9.763154 -82.7314,0 -22.845772,9.7631 -22.845772,25.5922 0,35.3553 22.84565,9.76315 59.88575,9.76315 82.7314,0"
+ id="path3826"
+ style="fill:#fffdca;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3828"><path
+ d="m 142.8657,212.3223 c 22.8458,9.7631 22.8458,25.5922 0,35.3553 -22.8457,9.7632 -59.88575,9.7632 -82.7314,0 -22.84577,-9.7631 -22.84577,-25.5922 0,-35.3553 22.84565,-9.7631 59.8857,-9.7631 82.7314,0"
+ id="path3830"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,72.5,35.00001)"
+ id="g3832"><text
+ transform="translate(-29.69238,4)"
+ id="text3834"><tspan
+ x="0 3.3336 10.008 16.6824 22.6824 26.016001 32.690399 39.364799 46.0392 52.7136"
+ y="0"
+ id="tspan3836"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:post19201</tspan></text>
+</g><path
+ d="m 387.265,47.76651 c 0,6.15745 -2.6738,6.91925 -22.2046,13.013 l -0.2064,0.06305 c -19.634,6.15745 -19.8382,6.15745 -39.988,6.15745 -26.8299,0 -148.1309,0 -148.1309,0 l 0,-65.000004 210.5299,0 0,45.766504 z"
+ id="path3838"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3840"><path
+ d="m 415.765,216.7335 c 0,-6.1575 -2.6738,-6.9193 -22.2046,-13.013 l -0.2064,-0.0631 C 373.72,197.5 373.5158,197.5 353.366,197.5 c -26.8299,0 -148.1309,0 -148.1309,0 l 0,65 210.5299,0 0,-45.7665 z m 0,-0.3172 c 0,-5.8403 -0.2064,-5.8403 -42.2492,-5.8403 l 0,0 c 0,-13.0123 0,-13.076 -18.9161,-13.076"
+ id="path3842"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,281.5,35.00001)"
+ id="g3844"><text
+ transform="translate(-100.2649,-3)"
+ id="text3846"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 29.344801 36.019199 42.019199 48.6936 51.360001 54.026402 60.700802 67.375198 70.708801 77.383202 84.057602 92.0616 95.395203 102.2856 104.952 114.948 121.6224 128.6304 132.8904 139.5648 146.2392 152.9136 159.588 163.584 170.25841 176.9328 180.9288 187.6032"
+ y="0"
+ id="tspan3848"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:invalidatedAtTime="2012-09-02</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,281.5,35.00001)"
+ id="g3850"><text
+ transform="translate(-100.2649,11)"
+ id="text3852"><tspan
+ x="0 7.3295999 14.004 20.6784 24.011999 30.686399 37.360802 40.694401 47.368801 54.043201 61.372799 65.632797 71.263199 76.8936 82.8936 88.8936 95.568001 98.901604 105.576 112.2504 115.584 122.2584 129.1488 131.8152 141.8112"
+ y="0"
+ id="tspan3854"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">T01:31:00Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3856"><path
+ d="m 160.5,230 44.2351,0"
+ id="path3858"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><path
+ d="m 2.5,207 141,0 0,-50 -141,0 0,50 z"
+ id="path3860"
+ style="fill:#d8d8ff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3862"><path
+ d="m 31,57.49999 141,0 0,50.00001 -141,0 0,-50.00001 z"
+ id="path3864"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,72.5,182.5)"
+ id="g3866"><text
+ transform="translate(-47.36133,4)"
+ id="text3868"><tspan
+ x="0 3.3336 10.008 16.6824 20.6784 27.3528 34.027199 40.701599 43.368 49.368 55.368 62.0424 65.375999 72.0504 74.716797 77.383202 84.057602 88.053596"
+ y="0"
+ id="tspan3870"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">:hard_disk_failure</tspan></text>
+</g><path
+ d="m 358.5,195.2665 c 0,6.1575 -2.3084,6.9193 -19.1707,13.013 l -0.1782,0.0631 C 322.1997,214.5 322.0234,214.5 304.6267,214.5 c -23.1641,0 -127.8917,0 -127.8917,0 l 0,-65 181.765,0 0,45.7665 z"
+ id="path3872"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3874"><path
+ d="m 387,69.23349 c 0,-6.15745 -2.3084,-6.91925 -19.1707,-13.013 l -0.1782,-0.06305 c -16.9514,-6.15745 -17.1277,-6.15745 -34.5244,-6.15745 -23.1641,0 -127.8917,0 -127.8917,0 l 0,65.00001 181.765,0 0,-45.76651 z m 0,-0.3172 c 0,-5.84025 -0.1781,-5.84025 -36.4766,-5.84025 l 0,0 c 0,-13.01235 0,-13.07605 -16.3316,-13.07605"
+ id="path3876"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><g
+ transform="matrix(1,0,0,-1,267.1175,182.5)"
+ id="g3878"><text
+ transform="translate(-85.88248,-3)"
+ id="text3880"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 56.023201 62.697601 69.372002 76.046402 82.720802 90.7248 94.058403 101.0664 105.3264 112.0008 118.6752 125.3496 132.024 136.02 142.6944 149.3688 153.36481 160.0392"
+ y="0"
+ id="tspan3882"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasEndedAt="2012-09-02</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,267.1175,182.5)"
+ id="g3884"><text
+ transform="translate(-85.88248,11)"
+ id="text3886"><tspan
+ x="0 7.3295999 14.004 20.6784 24.011999 30.686399 37.360802 40.694401 47.368801 54.043201 61.372799 65.632797 71.263199 76.8936 82.8936 88.8936 95.568001 98.901604 105.576 112.2504 115.584 122.2584 129.1488 131.8152 141.8112"
+ y="0"
+ id="tspan3888"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">T01:31:00Z"^^xsd:dateTime</tspan></text>
+</g><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3890"><path
+ d="m 172,82.49999 32.735,0"
+ id="path3892"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:4, 4;stroke-dashoffset:0" /></g><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3894"><path
+ d="m 101.5002,204.5 8e-4,-86.6"
+ id="path3896"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 73.00106,154.6 -3.00007,-8 6,0 -2.99993,8 z"
+ id="path3898"
+ style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,-28.5,264.5)"
+ id="g3900"><path
+ d="m 101.5011,109.9 -3.00011,8 6.00001,0 -2.9999,-8 z"
+ id="path3902"
+ style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none" /></g><path
+ d="m 7.000624,117.9095 130.999976,0 0,-24.00002 -130.999976,0 0,24.00002 z"
+ id="path3904"
+ style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" /><g
+ transform="matrix(1,0,0,-1,72.50062,105.9095)"
+ id="g3906"><text
+ transform="translate(-60.03223,4)"
+ id="text3908"><tspan
+ x="0 6.6743999 10.6704 17.344801 23.344801 26.6784 35.344799 42.019199 48.019199 51.352798 58.027199 64.027199 70.701599 73.367996 76.034401 82.708801 89.383202 92.716797 99.391197 106.0656 114.0696"
+ y="0"
+ id="tspan3910"
+ style="font-size:12px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:Helvetica;-inkscape-font-specification:Helvetica">prov:wasInvalidatedBy</tspan></text>
+</g></g></g></g></svg>
\ No newline at end of file
--- a/ontology/prov-dictionary.owl Wed Jul 11 16:47:30 2012 +0100
+++ b/ontology/prov-dictionary.owl Wed Jul 11 16:50:34 2012 +0100
@@ -284,21 +284,6 @@
- <!-- http://www.w3.org/ns/prov#qualifiedMembership -->
-
- <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedMembership">
- <rdfs:label xml:lang="en">qualifiedMembership</rdfs:label>
- <category>collections</category>
- <component>collections</component>
- <rdfs:comment xml:lang="en">The collection included the specified membership of keys-values.</rdfs:comment>
- <editorialNote xml:lang="en">This property is NOT inverse functional, since the membership of many distinct KeyValuePairs can be qualified using a single instance of prov:Membership.</editorialNote>
- <inverse>membershipOf</inverse>
- <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
- <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Membership"/>
- </owl:ObjectProperty>
-
-
-
<!-- http://www.w3.org/ns/prov#qualifiedRemoval -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedRemoval">
@@ -471,17 +456,6 @@
- <!-- http://www.w3.org/ns/prov#CompleteCollection -->
-
- <owl:Class rdf:about="http://www.w3.org/ns/prov#CompleteCollection">
- <rdfs:label xml:lang="en">CompleteMembership</rdfs:label>
- <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Collection"/>
- <category>collections</category>
- <rdfs:comment xml:lang="en">Indicates that no other member belongs to the collection, that is all the prov:member stated for this CompleteMembership constitutes all members of the collection.</rdfs:comment>
- <component xml:lang="en">collections</component>
- </owl:Class>
-
-
<!-- http://www.w3.org/ns/prov#Dictionary -->
@@ -512,19 +486,6 @@
- <!-- http://www.w3.org/ns/prov#EmptyCollection -->
-
- <owl:Class rdf:about="http://www.w3.org/ns/prov#EmptyCollection">
- <rdfs:label xml:lang="en">Dictionary</rdfs:label>
- <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Collection"/>
- <component>collections</component>
- <prov-dm>http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-dictionary</prov-dm>
- <category>collections</category>
- <definition xml:lang="en">An empty collection is a collection without members.</definition>
- <rdfs:comment xml:lang="en">An empty dictionary.</rdfs:comment>
- </owl:Class>
-
-
<!-- http://www.w3.org/ns/prov#Entity -->
--- a/ontology/prov.ttl Wed Jul 11 16:47:30 2012 +0100
+++ b/ontology/prov.ttl Wed Jul 11 16:50:34 2012 +0100
@@ -43,10 +43,10 @@
owl:disjointWith :Entity ;
:category "starting-point" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities." ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Activity"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Activity"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Activity"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Activity"^^xsd:anyURI .
:ActivityInfluence
a owl:Class ;
@@ -71,8 +71,8 @@
:category "starting-point" ;
:component "agents-responsibility" ;
:definition "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. "@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Agent"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Agent"^^xsd:anyURI .
:AgentInfluence
a owl:Class ;
@@ -93,8 +93,8 @@
:category "qualified" ;
:component "agents-responsibility" ;
:definition "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Association"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Association"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Association"^^xsd:anyURI ;
:unqualifiedForm :wasAssociatedWith .
:Attribution
@@ -105,12 +105,12 @@
rdfs:subClassOf :AgentInfluence ;
:category "qualified" ;
:component "agents-responsibility" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition """Attribution is the ascribing of an entity to an agent.
When an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant."""@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribution"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-attribution"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribution"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-attribution"^^xsd:anyURI ;
:unqualifiedForm :wasAttributedTo .
:Bundle
@@ -121,8 +121,8 @@
rdfs:subClassOf :Entity ;
:category "expanded" ;
:definition "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-bundle-entity"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-bundle-declaration"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-bundle-entity"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-bundle-declaration"^^xsd:anyURI .
:Collection
a owl:Class ;
@@ -132,7 +132,7 @@
:category "expanded" ;
:component "collections" ;
:definition "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections. Many different types of collections exist, such as a sets, dictionaries, or lists. Using Collections, one can express the provenance of the collection itself in addition to that of the members."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-collection"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-collection"^^xsd:anyURI .
:Communication
a owl:Class ;
@@ -142,12 +142,20 @@
rdfs:subClassOf :ActivityInfluence ;
:category "qualified" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other." ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Communication"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-wasInformedBy"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Communication"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-wasInformedBy"^^xsd:anyURI ;
:unqualifiedForm :wasInformedBy .
+:CompleteCollection
+ a owl:Class ;
+ rdfs:comment "Indicates that no other member belongs to the collection, that is all the prov:member stated for this CompleteMembership constitutes all members of the collection."@en ;
+ rdfs:label "CompleteMembership"@en ;
+ rdfs:subClassOf :Collection ;
+ :category "collections" ;
+ :component "collections"@en .
+
:Delegation
a owl:Class ;
rdfs:comment "An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ]."@en ;
@@ -159,8 +167,8 @@
:definition """Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.
For example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree."""@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-delegation"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-delegation"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-delegation"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-delegation"^^xsd:anyURI ;
:unqualifiedForm :actedOnBehalfOf .
:Derivation
@@ -171,12 +179,22 @@
rdfs:subClassOf :EntityInfluence ;
:category "qualified" ;
:component "derivations" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Derivation"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#Derivation-Relation"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Derivation"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#Derivation-Relation"^^xsd:anyURI ;
:unqualifiedForm :wasDerivedFrom .
+:EmptyCollection
+ a owl:Class ;
+ rdfs:comment "An empty dictionary."@en ;
+ rdfs:label "EmptyCollection"@en ;
+ rdfs:subClassOf :Collection ;
+ :category "collections" ;
+ :component "collections" ;
+ :definition "An empty collection is a collection without members."@en ;
+ :prov-dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-dictionary" .
+
:End
a owl:Class ;
rdfs:comment "An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ]."@en ;
@@ -185,10 +203,10 @@
rdfs:subClassOf :EntityInfluence, :InstantaneousEvent ;
:category "qualified" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "End is when an activity is deemed to have ended. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to an entity, known as trigger, that terminated the activity, or to an activity, known as ender that generated the trigger."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-End"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-End"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-End"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-End"^^xsd:anyURI ;
:unqualifiedForm :wasEndedBy .
:Entity
@@ -198,10 +216,10 @@
owl:disjointWith :InstantaneousEvent ;
:category "starting-point" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. "@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-entity"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Entity"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-entity"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Entity"^^xsd:anyURI .
:EntityInfluence
a owl:Class ;
@@ -221,10 +239,10 @@
rdfs:subClassOf :ActivityInfluence, :InstantaneousEvent ;
:category "qualified" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Generation"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Generation"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Generation"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Generation"^^xsd:anyURI ;
:unqualifiedForm :wasGeneratedBy .
:Influence
@@ -235,8 +253,8 @@
:category "qualified" ;
:component "derivations" ;
:definition "Influence is the capacity an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation. "@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-influence"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-influence"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-influence"^^xsd:anyURI ;
:unqualifiedForm :wasInfluencedBy .
:InstantaneousEvent
@@ -246,7 +264,7 @@
rdfs:label "InstantaneousEvent" ;
:category "qualified" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#dfn-event"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#dfn-event"^^xsd:anyURI ;
:definition "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics."@en .
:Invalidation
@@ -257,10 +275,10 @@
rdfs:subClassOf :ActivityInfluence, :InstantaneousEvent ;
:category "qualified" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation." ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Invalidation"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Invalidation"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Invalidation"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Invalidation"^^xsd:anyURI ;
:unqualifiedForm :wasInvalidatedBy .
:Location
@@ -270,8 +288,17 @@
rdfs:seeAlso :hadLocation ;
:category "expanded" ;
:definition "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribute-location"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-attribute"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-location"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-attribute"^^xsd:anyURI .
+
+:Membership
+ a owl:Class ;
+ rdfs:comment "The descriptions on this Membership applies to the memberships of all KeyValuePairs cited by prov:pair."@en ;
+ rdfs:subClassOf :EntityInfluence ;
+ :category "collections" ;
+ :component "collections" ;
+ :editorsDefinition "An optional set of descriptions about the membership of KeyValuePairs in a prov:Dictionary."@en ;
+ :unqualifiedForm :hadMember .
:Organization
a owl:Class ;
@@ -281,8 +308,8 @@
:category "expanded" ;
:component "agents-responsibility" ;
:definition "Agents of type Organization are social institutions such as companies, societies etc." ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-types"^^xsd:anyURI .
:Person
a owl:Class ;
@@ -292,8 +319,8 @@
:category "expanded" ;
:component "agents-responsibility" ;
:definition "Agents of type Person are people."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-types"^^xsd:anyURI .
:Plan
a owl:Class ;
@@ -304,8 +331,8 @@
:category "qualified" ;
:component "agents-responsibility" ;
:definition "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals." ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Association"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Association"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Association"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Association"^^xsd:anyURI .
:Quotation
a owl:Class ;
@@ -316,8 +343,8 @@
:category "qualified" ;
:component "derivations" ;
:definition "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-quotation"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-quotation"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-quotation"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-quotation"^^xsd:anyURI ;
:unqualifiedForm :wasQuotedFrom .
:Revision
@@ -329,8 +356,8 @@
:category "qualified" ;
:component "derivations" ;
:definition "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-revision"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Revision"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-revision"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Revision"^^xsd:anyURI ;
:unqualifiedForm :wasRevisionOf .
:Role
@@ -341,8 +368,8 @@
:category "qualified" ;
:component "agents-responsibility" ;
:definition "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribute-role"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-attribute"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-role"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-attribute"^^xsd:anyURI .
:SoftwareAgent
a owl:Class ;
@@ -352,8 +379,8 @@
:category "expanded" ;
:component "agents-responsibility" ;
:definition "A software agent is running software."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types"^^xsd:anyURI .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-agent"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-types"^^xsd:anyURI .
:Source
a owl:Class ;
@@ -368,8 +395,8 @@
Because of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.
A primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain."""@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-primary-source"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-original-source"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-primary-source"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-original-source"^^xsd:anyURI ;
:unqualifiedForm :hadPrimarySource .
:Start
@@ -380,10 +407,10 @@
rdfs:subClassOf :EntityInfluence, :InstantaneousEvent ;
:category "qualified" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "Start is when an activity is deemed to have started. The activity did not exist before its start. Any usage or generation involving an activity follows the activity's start. A start may refer to an entity, known as trigger, that set off the activity, or to an activity, known as starter, that generated the trigger."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Start"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Start"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Start"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Start"^^xsd:anyURI ;
:unqualifiedForm :wasStartedBy .
:Usage
@@ -394,10 +421,10 @@
rdfs:subClassOf :EntityInfluence, :InstantaneousEvent ;
:category "qualified" ;
:component "entities-activities" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-Usage"^^xsd:anyURI ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-Usage"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-Usage"^^xsd:anyURI ;
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-Usage"^^xsd:anyURI ;
:unqualifiedForm :used .
:actedOnBehalfOf
@@ -452,11 +479,11 @@
rdfs:seeAlso :specializationOf ;
:category "expanded" ;
:component "alternate" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-alternate"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-alternate"^^xsd:anyURI ;
:inverse "alternateOf" ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-alternate"^^xsd:anyURI .
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-alternate"^^xsd:anyURI .
:aq
a owl:AnnotationProperty ;
@@ -467,7 +494,7 @@
a owl:ObjectProperty ;
rdfs:comment """The prov:mentionOf and prov:asInBundle properties are \"at risk\" (http://www.w3.org/2005/10/Process-20051014/tr#cfi) and may be removed from this specification based on feedback. Please send feedback to public-prov-comments@w3.org.
-These two properties are used to encode the PROV-DM's Mention construct (http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. """@en, "When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described."@en ;
+These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. """@en, "When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described."@en ;
rdfs:domain :Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov#> ;
rdfs:label "asInBundle" ;
@@ -756,7 +783,7 @@
a owl:ObjectProperty ;
rdfs:comment """The prov:mentionOf and prov:asInBundle properties are \"at risk\" (http://www.w3.org/2005/10/Process-20051014/tr#cfi) and may be removed from this specification based on feedback. Please send feedback to public-prov-comments@w3.org.
-These two properties are used to encode the PROV-DM's Mention construct (http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. """@en, "When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.", "prov:asInBundle is used to cite the Bundle in which the generalization was mentioned."@en ;
+These two properties are used to encode the PROV-DM's Mention construct (http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention), which might be removed from PROV if implementation experience reveals problems with supporting this construct. """@en, "When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.", "prov:asInBundle is used to cite the Bundle in which the generalization was mentioned."@en ;
rdfs:domain :Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov#> ;
rdfs:label "mentionOf" ;
@@ -764,7 +791,7 @@
rdfs:subPropertyOf :specializationOf ;
:category "expanded" ;
:definition "The mention of an Entity in a Bundle (containing a description of this Entity) is another Entity that is a specialization of the former and that presents the Bundle as a further additional aspect. "@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-mention"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-mention"^^xsd:anyURI ;
:inverse "hadMention" .
:n
@@ -913,6 +940,17 @@
:sharesDefinitionWith :Invalidation ;
:unqualifiedForm :wasInvalidatedBy .
+:qualifiedMembership
+ a owl:ObjectProperty ;
+ rdfs:comment "The collection included the specified membership of keys-values."@en ;
+ rdfs:domain :Collection ;
+ rdfs:label "qualifiedMembership"@en ;
+ :category "collections" ;
+ :component "collections" ;
+ :editorialNote "This property is NOT inverse functional, since the membership of many distinct KeyValuePairs can be qualified using a single instance of prov:Membership."@en ;
+ :inverse "membershipOf" ;
+ :sharesDefinitionWith :Membership .
+
:qualifiedQuotation
a owl:ObjectProperty ;
rdfs:comment "If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ]."@en ;
@@ -993,11 +1031,11 @@
rdfs:subPropertyOf :alternateOf ;
:category "expanded" ;
:component "alternate" ;
- :constraints "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
+ :constraints "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI ;
:definition "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity."@en ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-specialization"^^xsd:anyURI ;
:inverse "generalizationOf" ;
- :n "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization"^^xsd:anyURI .
+ :n "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-n.html#expression-specialization"^^xsd:anyURI .
:startedAtTime
a owl:DatatypeProperty ;
@@ -1044,7 +1082,7 @@
rdfs:label "value" ;
:category "expanded" ;
:component "entities-activities" ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-attribute-value"^^xsd:anyURI ;
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-attribute-value"^^xsd:anyURI ;
:editorialNote "The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue", "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values')."@en ;
:editorsDefinition "The main value (if there is one) of a structured value."@en .
@@ -1244,7 +1282,7 @@
owl:annotatedProperty rdfs:range ;
owl:annotatedSource :hadMember ;
owl:annotatedTarget :Entity ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-collection" .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-collection" .
[]
a owl:Axiom ;
@@ -1280,7 +1318,7 @@
)
] ;
:definition "influencer: an identifier (o1) for an ancestor entity, activity, or agent that the former depends on;" ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-influence" .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence" .
[]
a owl:Axiom ;
@@ -1294,7 +1332,7 @@
)
] ;
:definition "influencee: an identifier (o2) for an entity, activity, or agent; " ;
- :dm "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-influence" .
+ :dm "http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-dm.html#term-influence" .
[]
a owl:Axiom ;
@@ -1306,7 +1344,7 @@
[]
a owl:Axiom ;
rdfs:comment """Revision is a derivation (see http://www.w3.org/TR/prov-dm/#term-Revision). Moreover, according to
-http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#term-Revision 23 April 2012 'wasRevisionOf is a strict sub-relation of wasDerivedFrom since two entities e2 and e1 may satisfy wasDerivedFrom(e2,e1) without being a variant of each other.'""" ;
+http://dvcs.w3.org/hg/prov/raw-file/default/model/prov-constraints.html#term-Revision 23 April 2012 'wasRevisionOf is a strict sub-relation of wasDerivedFrom since two entities e2 and e1 may satisfy wasDerivedFrom(e2,e1) without being a variant of each other.'""" ;
owl:annotatedProperty rdfs:subPropertyOf ;
owl:annotatedSource :wasRevisionOf ;
owl:annotatedTarget :wasDerivedFrom .