merge
authorLuc Moreau <l.moreau@ecs.soton.ac.uk>
Thu, 12 Apr 2012 15:51:31 +0100
changeset 2277 d14a770c259a
parent 2276 d13170bebb69 (current diff)
parent 2275 ea30e26054f6 (diff)
child 2278 0c2fd0777ad2
merge
--- a/model/comments/issue-332-Simon.txt	Thu Apr 12 15:50:56 2012 +0100
+++ b/model/comments/issue-332-Simon.txt	Thu Apr 12 15:51:31 2012 +0100
@@ -2,6 +2,9 @@
 
 2. There is apparent inconsistency of brackets. The collections expressions use curly braces {} for unordered sets, while the rest of PROV-N uses square brackets [], e.g. for attribute sets. I suggest the curly braces are more standard.
 
+PM: I do agree but this is a rather pervasive change as all examples everywhere use []
+
+
 3. I find the form of sentence "An X's text matches the Y production" unintuitive. I think it is clear what you mean from the context, but is "text" the right word? Maybe something like "An X is expressed in PROV-N using the Y production" would be clearer?
 
 4. Some grammar errors in Section 2:
--- a/model/prov-n.html	Thu Apr 12 15:50:56 2012 +0100
+++ b/model/prov-n.html	Thu Apr 12 15:51:31 2012 +0100
@@ -304,7 +304,7 @@
 
 <p>The PROV namespace is <span class="name">http://www.w3.org/ns/prov#</span> with prefix <span class="name">prov:</span>.</p>
 
-<p> All the elements, relations, reserved names and attributes introduced in this specification belong to the PROV namespace.</p>
+<p> All the elements, predicates, reserved names and attributes introduced in this specification belong to the PROV namespace.</p>
 </section>
 
 <section id="conventions"> 
@@ -324,8 +324,8 @@
 <section id="grammar-notation"> 
 <h3>Functional-style Syntax</h3>
 
-<p> PROV-N adopts a functional-style syntax consisting of a relation name and an ordered list of terms.
-All PROV-DM relations involve two primary elements, the <em>subject</em> and the <em>object</em>, in this order. Furthermore, some relations also admit additional elements that further characterize it.
+<p> PROV-N adopts a functional-style syntax consisting of a predicate name and an ordered list of terms.
+All PROV-DM predicates involve two primary elements, the <em>subject</em> and the <em>object</em>, in this order. Furthermore, some predicates also admit additional elements that further characterize it.
 <div class="anexample">
 The following expression should be read as "<span class="name">e2</span> was generated by <span class="name">e1</span>". Here <span class="name">e2</span> is the subject, and  <span class="name">e1</span> is the object.
 <pre class="codeexample" >
@@ -336,20 +336,18 @@
 <div class="anexample">
 In the following expressions, the optional activity <span class="name">a</span> along with the generation and usage IDs, and timestamps have been added to further qualify the derivation:
 <pre class="codeexample" >
-wasDerivedFrom(e2, e1, a)
 wasDerivedFrom(e2, e1, a, g2, u1)
 activity(a2, 2011-11-16T16:00:00, 2011-11-16T16:00:01)
 </pre>
 </div>
 
-
 The grammar is specified using the Extended  Backus-Naur Form (EBNF) notation.<br/>
-Each production rule (or <dfn>production</dfn>, for short) in the grammar defines one non-terminal symbol <span class="nonterminal">E</span>, in the following form:</p>
 <div class="grammar">
+  Each production rule (or <dfn>production</dfn>, for short) in the grammar defines one non-terminal symbol <span class="nonterminal">E</span>, in the following form:</p>
+
 <span class="nonterminal">E</span>&nbsp;::= <em>expression</em>
-</div>
 
-Within the expression on the right-hand side of a rule, the following expressions are used to match strings of one or more characters:
+<p>Within the expression on the right-hand side of a rule, the following expressions are used to match strings of one or more characters:
 <ul>
 <li> 
 <span class="nonterminal">E</span>: matches term satisfying rule for symbol E.
@@ -373,6 +371,7 @@
 </li>
 
 </ul>
+</div>
 
 <div class="note">this is confusing. look at http://www.w3.org/TR/owl2-syntax/#BNF_Notation for example</div>
 
@@ -431,9 +430,9 @@
 
 
 <section id="prov-n-optionals"> 
-<h3>Optional terms in a relation expression</h3>
+<h3>Optional terms in expressions</h3>
 
-Some terms in a relation may be optional. For example:
+Some terms in a predicate may be optional. For example:
 
 <div class="anexample">
 <pre class="codeexample" >
@@ -475,9 +474,9 @@
 </section>
 
 <section id="prov-n-standard-terms"> 
-<h3>Relation identifiers and attributes</h3>
+<h3>Identifiers and attributes</h3>
 
-Most expression types defined in the grammar include the use of two terms: an identifier for the relation, and a set of attribute-value pairs, delimited by square brackets. Both are optional (unless specified otherwise). By convention, the identifier is the first term in any expression type, and the  set of attribute-value pairs is the last. <br/>
+Most expression types defined in the grammar include the use of two terms: an identifier for the predicate, and a set of attribute-value pairs, delimited by square brackets. Both are optional (unless specified otherwise). By convention, the identifier is the first term in any expression type, and the  set of attribute-value pairs is the last. <br/>
 Consistent with the convention on optional terms, the  '<span class="name">-</span>' marker can be used when the identifier is not available. Additionally, the grammar rules are defined in such a way that the optional identifier can be omitted altogether with no ambiguity arising.
 
 <div class="anexample">
@@ -489,7 +488,7 @@
 </pre>
 </div>
 
-A distinction is made between relations with no attributes, and relations that include an empty list of attributes.
+A distinction is made between expressions with no attributes, and expressions that include an empty list of attributes.
 <div class="anexample">
 <p>The first activity does not have any attributes. The second has an empty list of attributes. The third activity  has two attributes. 
 <pre class="codeexample" >
@@ -506,7 +505,7 @@
 
 <div class="note">This looks out of place --- why is this not in DM? </div>
 
-Name-value attribute pairs are intended for arbitrary, user-defined terms that are used to qualify the relation. Amongst these, a few are defined as standard in PROV-DM. These are:
+Name-value attribute pairs are intended for arbitrary, user-defined terms that are used to qualify the predicate. Amongst these, a few are defined as standard in PROV-DM. These are:
   <span class="name">prov:label</span>,
   <span class="name">prov:location</span>,
   <span class="name">prov:role</span>, and
@@ -531,7 +530,7 @@
 
 <div class="withPn">
 <p>
- The <span class="nonterminal">entityExpression</span> production is used to express  entity relations:
+ The <span class="nonterminal">entityExpression</span> production is used to express  entities:
 
   <div class="note">only changed here to see if it works</div>
 </p>
--- a/primer/Primer.html	Thu Apr 12 15:50:56 2012 +0100
+++ b/primer/Primer.html	Thu Apr 12 15:51:31 2012 +0100
@@ -513,6 +513,11 @@
      ex:illustrate prov:used           ex:composition .
      ex:chart1     prov:wasGeneratedBy ex:illustrate .
     </pre>
+    <p>
+     The PROV-DM data described so far is illustrated in the figure below, where
+     ovals denote entities and rectangles denote activities.
+    </p>
+    <img src="images/use-generate.svg"/>
    </section>
 
    <section>
@@ -557,6 +562,10 @@
     <pre class="turtle example">
      ex:chart1 prov:wasAttributedTo ex:derek .
     </pre>
+    <p>
+     We can extend our graphical depiction to show the association and attribution links.
+    </p>
+    <img src="images/agents.svg"/>
    </section>
 
    <section>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/primer/images/agents.svg	Thu Apr 12 15:51:31 2012 +0100
@@ -0,0 +1,638 @@
+<?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"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.2 r9819"
+   width="919.77539"
+   height="230.27417"
+   xml:space="preserve"
+   sodipodi:docname="agents.svg"><metadata
+     id="metadata8"><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 /></cc:Work></rdf:RDF></metadata><defs
+     id="defs6"><linearGradient
+       id="linearGradient3148"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop3150" /><stop
+         style="stop-color:#b8b8b8;stop-opacity:1;"
+         offset="1"
+         id="stop3152" /></linearGradient><linearGradient
+       id="linearGradient4511"><stop
+         style="stop-color:#d19d00;stop-opacity:1;"
+         offset="0"
+         id="stop4513" /><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop4515" /></linearGradient><linearGradient
+       id="linearGradient4452"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456" /></linearGradient><linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4452"
+       id="linearGradient4458"
+       x1="222.17677"
+       y1="164.01802"
+       x2="223.60345"
+       y2="182.29561"
+       gradientUnits="userSpaceOnUse" /><linearGradient
+       id="linearGradient4452-6"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454-5" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456-0" /></linearGradient><linearGradient
+       y2="182.29561"
+       x2="223.60345"
+       y1="164.01802"
+       x1="222.17677"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4480"
+       xlink:href="#linearGradient4452-6"
+       inkscape:collect="always" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4511"
+       id="linearGradient4517"
+       x1="375.91525"
+       y1="246.26715"
+       x2="375.91525"
+       y2="226.1618"
+       gradientUnits="userSpaceOnUse" /><linearGradient
+       id="linearGradient4452-5"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454-0" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456-9" /></linearGradient><linearGradient
+       y2="182.29561"
+       x2="223.60345"
+       y1="164.01802"
+       x1="222.17677"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4539"
+       xlink:href="#linearGradient4452-5"
+       inkscape:collect="always" /><linearGradient
+       id="linearGradient4511-4"><stop
+         style="stop-color:#d19d00;stop-opacity:1;"
+         offset="0"
+         id="stop4513-4" /><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop4515-6" /></linearGradient><linearGradient
+       y2="226.1618"
+       x2="375.91525"
+       y1="246.26715"
+       x1="375.91525"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4584"
+       xlink:href="#linearGradient4511-4"
+       inkscape:collect="always" /><linearGradient
+       id="linearGradient4452-5-7"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454-0-8" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456-9-8" /></linearGradient><linearGradient
+       y2="182.29561"
+       x2="223.60345"
+       y1="164.01802"
+       x1="222.17677"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4670"
+       xlink:href="#linearGradient4452-5-7"
+       inkscape:collect="always" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3148"
+       id="linearGradient3154"
+       x1="213.28375"
+       y1="304.68256"
+       x2="213.28375"
+       y2="317.47687"
+       gradientUnits="userSpaceOnUse" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3148"
+       id="linearGradient3349"
+       gradientUnits="userSpaceOnUse"
+       x1="213.28375"
+       y1="304.68256"
+       x2="213.28375"
+       y2="317.47687" /></defs><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1102"
+     inkscape:window-height="729"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="0.87538929"
+     inkscape:cx="466.73934"
+     inkscape:cy="-21.326319"
+     inkscape:window-x="285"
+     inkscape:window-y="89"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g12"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g12"
+     inkscape:groupmode="layer"
+     inkscape:label="example-graphical"
+     transform="matrix(1.25,0,0,-1.25,-5.5231775,1153.8324)"><g
+   id="g14"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438" /><g
+   transform="matrix(1.2454971,0,0,-1,-262.57855,1071.5)"
+   id="g262"><path
+     inkscape:connector-curvature="0"
+     id="path264"
+     style="fill:url(#linearGradient4517);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,221.25 44.17639,0 0,37.5 -44.17639,0 0,-37.5 z" /></g><g
+   transform="matrix(1,0,0,-1,195.9912,841.6)"
+   id="g266"><text
+   id="text268"
+   transform="translate(-13.23096,5)"><tspan
+     y="0"
+     x="0"
+     id="tspan270"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">ex:</tspan><tspan
+     id="tspan4509"
+     y="14"
+     x="0"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">compose</tspan></text>
+
+
+
+
+
+
+
+</g><g
+   inkscape:export-ydpi="79.550438"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   id="g936-2"
+   transform="matrix(1.2811284,0,0,-1,-243.02664,1003.0343)"><path
+     inkscape:connector-curvature="0"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     style="fill:url(#linearGradient4480);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     id="path938-8" /></g><g
+   inkscape:export-ydpi="79.550438"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   id="g544-9-6"
+   transform="matrix(1,0,0,-1,24.41479,834.24439)"><text
+   transform="translate(-7.640396,-2)"
+   id="text546-3-0"><tspan
+     id="tspan3196-2"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     x="0"
+     y="0"
+     sodipodi:role="line">ex:</tspan><tspan
+     id="tspan4448-4"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     x="0"
+     y="13.75"
+     sodipodi:role="line">regionList</tspan></text>
+
+
+</g><g
+   transform="matrix(1.2454971,0,0,-1,65.32126,1071.8947)"
+   id="g262-0"><path
+     inkscape:connector-curvature="0"
+     id="path264-6"
+     style="fill:url(#linearGradient4584);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,221.25 44.17639,0 0,37.5 -44.17639,0 0,-37.5 z" /></g><g
+   transform="matrix(1,0,0,-1,525.13557,841.352)"
+   id="g266-6"><text
+   id="text268-18"
+   transform="translate(-13.23096,5)"><tspan
+     y="0"
+     x="0"
+     id="tspan270-4"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">ex:</tspan><tspan
+     id="tspan4509-9"
+     y="14"
+     x="0"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">illustrate</tspan></text>
+
+
+</g><g
+   transform="matrix(1,0,0,-1,294.12,838.95)"
+   id="g334"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text336"
+   transform="translate(-46.02539,4)"><tspan
+     id="tspan338"
+     sodipodi:role="line"
+     y="0"
+     x="0 8.6664 15.3408 21.340799 30.6744 37.348801 44.023201 50.697601 54.6936 61.368 64.701599 71.375999 78.0504 86.054398"
+     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:ArialMT;-inkscape-font-specification:ArialMT">wasGeneratedBy</tspan></text>
+
+
+
+
+
+
+
+</g><g
+   transform="matrix(0.9368205,0,0,-1,-142.39394,1071.5)"
+   id="g340"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path342"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="M 408.7794,240 524,240"
+     inkscape:connector-curvature="0" /></g><path
+   id="path344"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 233.2794,831.5 8,-3 0,6 -8,-3 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(0.81444052,-0.58024705,-0.58024705,-0.81444052,117.61722,882.29873)"
+   id="g486"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text488"
+   transform="translate(-13.01074,4)"><tspan
+     id="tspan490"
+     sodipodi:role="line"
+     y="0"
+     x="0 6.6743999 12.6744 19.348801"
+     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:ArialMT;-inkscape-font-specification:ArialMT">used</tspan></text>
+
+
+
+
+
+
+
+</g><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g498"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path500"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,240 -98.3914,0"
+     inkscape:connector-curvature="0" /></g><path
+   id="path502"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 72.8116,831.5 8,-3 0,6 -8,-3 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g504"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path506"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 248.3116,240 8,3 0,-6 -8,3 z"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1.2811284,0,0,-1,-242.59854,1071.5)"
+   id="g936"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path938"
+     style="fill:url(#linearGradient4458);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g960"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path962"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="M 354.703,240 254.7608,176.3198"
+     inkscape:connector-curvature="0" /></g><path
+   id="path964"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 72.514,899.479 5.1347,-6.8289 3.2242,5.0601 -8.3589,1.7688 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g966"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path968"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 248.014,172.021 5.1347,6.8289 3.2242,-5.0601 -8.3589,-1.7688 z"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,105.07766,839.66125)"
+   id="g998"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text1000"
+   transform="translate(-13.01074,4)"><tspan
+     id="tspan1002"
+     sodipodi:role="line"
+     y="0"
+     x="0 6.6743999 12.6744 19.348801"
+     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:ArialMT;-inkscape-font-specification:ArialMT">used</tspan></text>
+
+
+
+
+
+
+
+</g>
+
+
+
+
+<g
+   transform="matrix(1,0,0,-1,24.8429,902.71014)"
+   id="g544-9"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text546-3"
+   transform="translate(-7.640396,-2)"><tspan
+     sodipodi:role="line"
+     y="0"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196">ex:</tspan><tspan
+     sodipodi:role="line"
+     y="13.75"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan4448">dataSet1</tspan></text>
+
+
+
+</g><g
+   transform="matrix(0.71351425,0,0,-1,254.12833,1071.63)"
+   id="g498-2"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path500-7"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,240 -98.3914,0"
+     inkscape:connector-curvature="0" /></g><path
+   id="path502-6"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 429.0103,831.63001 8,-3 0,6 -8,-3 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(1,0,0,-1,180.69871,1071.63)"
+   id="g504-1"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path506-4"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 248.3116,240 8,3 0,-6 -8,3 z"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,461.27636,839.79121)"
+   id="g998-2"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text1000-3"
+   transform="translate(-13.01074,4)"><tspan
+     id="tspan1002-2"
+     sodipodi:role="line"
+     y="0"
+     x="0 6.6743999 12.6744 19.348801"
+     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:ArialMT;-inkscape-font-specification:ArialMT">used</tspan></text>
+
+
+</g><g
+   transform="matrix(1,0,0,-1,629.04784,839.08001)"
+   id="g334-3"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text336-8"
+   transform="translate(-46.02539,4)"><tspan
+     id="tspan338-7"
+     sodipodi:role="line"
+     y="0"
+     x="0 8.6664 15.3408 21.340799 30.6744 37.348801 44.023201 50.697601 54.6936 61.368 64.701599 71.375999 78.0504 86.054398"
+     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:ArialMT;-inkscape-font-specification:ArialMT">wasGeneratedBy</tspan></text>
+
+
+</g><g
+   transform="matrix(1.5826615,0,0,-1,38.212014,1002.1546)"
+   id="g936-0"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path938-0"
+     style="fill:url(#linearGradient4539);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,366.35927,833.36467)"
+   id="g544-9-61"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text546-3-3"
+   transform="translate(-7.640396,-2)"><tspan
+     sodipodi:role="line"
+     y="0"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196-8">ex:</tspan><tspan
+     sodipodi:role="line"
+     y="13.75"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan4448-9">composition</tspan></text>
+
+
+</g><g
+   id="g3270"><g
+     inkscape:export-ydpi="79.550438"
+     inkscape:export-xdpi="79.550438"
+     inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+     id="g340-4"
+     transform="matrix(1,0,0,-1,159.42784,1071.63)"><path
+       inkscape:connector-curvature="0"
+       d="M 408.7794,240 524,240"
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+       id="path342-2" /></g><path
+     inkscape:connector-curvature="0"
+     inkscape:export-ydpi="79.550438"
+     inkscape:export-xdpi="79.550438"
+     inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+     d="m 560.54101,831.63001 8,-3.91388 0,7.82776 -8,-3.91388 z"
+     style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+     id="path344-6" /></g><g
+   transform="matrix(1.0394571,0,0,-1,483.59481,1001.7161)"
+   id="g936-0-2"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path938-0-9"
+     style="fill:url(#linearGradient4670);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,702.38205,832.92622)"
+   id="g544-9-61-1"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text546-3-3-3"
+   transform="translate(-7.640396,-2)"><tspan
+     sodipodi:role="line"
+     y="0"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196-8-5">ex:</tspan><tspan
+     sodipodi:role="line"
+     y="13.75"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan4448-9-9">chart1</tspan></text>
+
+
+</g><g
+   transform="matrix(1,0,0,-1,-169.56841,1072.6782)"
+   id="g318"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   style="fill:url(#linearGradient3154);fill-opacity:1"><path
+     inkscape:connector-curvature="0"
+     id="path320"
+     style="fill:url(#linearGradient3349);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 175,333.3316 0,-30.9031 36.456,-15.4285 36.456,15.4285 0,30.9031 -72.912,0 z" /></g><g
+   transform="matrix(0.44575114,0.89515693,0.89515693,-0.44575114,-194.37815,620.8999)"
+   id="g960-4"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path962-0"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="M 354.703,240 254.7608,176.3198"
+     inkscape:connector-curvature="0" /></g><path
+   id="path344-6-9"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 76.959475,769.40681 8.818086,1.24893 -4.392036,6.4795 -4.42605,-7.72843 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   inkscape:export-ydpi="79.550438"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   id="g544-9-6-4"
+   transform="matrix(1,0,0,-1,26.408902,761.97281)"><text
+     id="text546-3-0-8"
+     x="-0.32936299"
+     y="-2"><tspan
+       id="tspan3196-2-8"
+       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+       x="-0.32936299"
+       y="-2"
+       sodipodi:role="line">ex:</tspan><tspan
+       id="tspan4448-4-2"
+       style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+       x="-0.32936299"
+       y="11.75"
+       sodipodi:role="line">derek</tspan></text>
+</g><text
+   style="font-size:12px"
+   y="-632.1828"
+   x="455.42389"
+   transform="matrix(0.86570804,0.50054929,0.50054929,-0.86570804,0,0)"
+   id="text336-5"><tspan
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     x="455.42389 464.0903 470.76468"
+     y="-632.1828"
+     sodipodi:role="line"
+     id="tspan338-5">wasAssociatedWith</tspan></text>
+<text
+   style="font-size:11.99999905px"
+   y="-740.44678"
+   x="317.6286"
+   transform="matrix(0.98919467,0.14660802,0.14660802,-0.98919467,0,0)"
+   id="text336-5-1"><tspan
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     x="317.6286 326.29504 332.96942"
+     y="-740.44678"
+     sodipodi:role="line"
+     id="tspan338-5-7">wasAssociatedWith</tspan></text>
+<path
+   style="fill:none;stroke:#000000;stroke-width:0.68833554px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+   d="M 507.05206,817.10881 77.528872,760.27739"
+   id="path3327"
+   inkscape:connector-curvature="0" /><path
+   id="path344-6-9-2"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 76.780911,760.10155 8.200081,-3.47522 -0.423603,7.8163 -7.776478,-4.34108 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><path
+   style="fill:none;stroke:#000000;stroke-width:0.92873377px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+   d="M 686.54753,820.37201 78.14444,747.33116"
+   id="path3327-1"
+   inkscape:connector-curvature="0" /><path
+   id="path344-6-9-2-6"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 78.66727,748.48626 8.20008,-3.47522 -0.4236,7.8163 -7.77648,-4.34108 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><text
+   style="font-size:11.99999809px"
+   y="-733.96918"
+   x="475.53036"
+   transform="matrix(0.9927221,0.1204277,0.1204277,-0.9927221,0,0)"
+   id="text336-5-1-8"><tspan
+     style="font-size:11.19999886px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     x="475.53036 484.19681 490.87119"
+     y="-733.96918"
+     sodipodi:role="line"
+     id="tspan338-5-7-5">wasAttributedTo</tspan></text>
+</g></svg>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/primer/images/use-generate.svg	Thu Apr 12 15:51:31 2012 +0100
@@ -0,0 +1,503 @@
+<?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"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.2 r9819"
+   width="919.77539"
+   height="143.57451"
+   xml:space="preserve"
+   sodipodi:docname="agents.svg"><metadata
+     id="metadata8"><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 /></cc:Work></rdf:RDF></metadata><defs
+     id="defs6"><linearGradient
+       id="linearGradient4511"><stop
+         style="stop-color:#d19d00;stop-opacity:1;"
+         offset="0"
+         id="stop4513" /><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop4515" /></linearGradient><linearGradient
+       id="linearGradient4452"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456" /></linearGradient><linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4452"
+       id="linearGradient4458"
+       x1="222.17677"
+       y1="164.01802"
+       x2="223.60345"
+       y2="182.29561"
+       gradientUnits="userSpaceOnUse" /><linearGradient
+       id="linearGradient4452-6"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454-5" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456-0" /></linearGradient><linearGradient
+       y2="182.29561"
+       x2="223.60345"
+       y1="164.01802"
+       x1="222.17677"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4480"
+       xlink:href="#linearGradient4452-6"
+       inkscape:collect="always" /><linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4511"
+       id="linearGradient4517"
+       x1="375.91525"
+       y1="246.26715"
+       x2="375.91525"
+       y2="226.1618"
+       gradientUnits="userSpaceOnUse" /><linearGradient
+       id="linearGradient4452-5"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454-0" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456-9" /></linearGradient><linearGradient
+       y2="182.29561"
+       x2="223.60345"
+       y1="164.01802"
+       x1="222.17677"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4539"
+       xlink:href="#linearGradient4452-5"
+       inkscape:collect="always" /><linearGradient
+       id="linearGradient4511-4"><stop
+         style="stop-color:#d19d00;stop-opacity:1;"
+         offset="0"
+         id="stop4513-4" /><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="1"
+         id="stop4515-6" /></linearGradient><linearGradient
+       y2="226.1618"
+       x2="375.91525"
+       y1="246.26715"
+       x1="375.91525"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4584"
+       xlink:href="#linearGradient4511-4"
+       inkscape:collect="always" /><linearGradient
+       id="linearGradient4452-5-7"><stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4454-0-8" /><stop
+         style="stop-color:#2effff;stop-opacity:1;"
+         offset="1"
+         id="stop4456-9-8" /></linearGradient><linearGradient
+       y2="182.29561"
+       x2="223.60345"
+       y1="164.01802"
+       x1="222.17677"
+       gradientUnits="userSpaceOnUse"
+       id="linearGradient4670"
+       xlink:href="#linearGradient4452-5-7"
+       inkscape:collect="always" /></defs><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1272"
+     inkscape:window-height="860"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="0.87538929"
+     inkscape:cx="466.73934"
+     inkscape:cy="-108.02596"
+     inkscape:window-x="46"
+     inkscape:window-y="1"
+     inkscape:window-maximized="0"
+     inkscape:current-layer="g12"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g12"
+     inkscape:groupmode="layer"
+     inkscape:label="example-graphical"
+     transform="matrix(1.25,0,0,-1.25,-5.5231775,1153.8324)"><g
+   id="g14"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438" /><g
+   transform="matrix(1.2454971,0,0,-1,-262.57855,1071.5)"
+   id="g262"><path
+     inkscape:connector-curvature="0"
+     id="path264"
+     style="fill:url(#linearGradient4517);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,221.25 44.17639,0 0,37.5 -44.17639,0 0,-37.5 z" /></g><g
+   transform="matrix(1,0,0,-1,195.9912,841.6)"
+   id="g266"><text
+   id="text268"
+   transform="translate(-13.23096,5)"><tspan
+     y="0"
+     x="0"
+     id="tspan270"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">ex:</tspan><tspan
+     id="tspan4509"
+     y="14"
+     x="0"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">compose</tspan></text>
+
+
+
+
+
+
+</g><g
+   inkscape:export-ydpi="79.550438"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   id="g936-2"
+   transform="matrix(1.2811284,0,0,-1,-243.02664,1003.0343)"><path
+     inkscape:connector-curvature="0"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     style="fill:url(#linearGradient4480);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     id="path938-8" /></g><g
+   inkscape:export-ydpi="79.550438"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   id="g544-9-6"
+   transform="matrix(1,0,0,-1,24.41479,834.24439)"><text
+   transform="translate(-7.640396,-2)"
+   id="text546-3-0"><tspan
+     id="tspan3196-2"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     x="0"
+     y="0"
+     sodipodi:role="line">ex:</tspan><tspan
+     id="tspan4448-4"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     x="0"
+     y="13.75"
+     sodipodi:role="line">regionList</tspan></text>
+
+</g><g
+   transform="matrix(1.2454971,0,0,-1,65.32126,1071.8947)"
+   id="g262-0"><path
+     inkscape:connector-curvature="0"
+     id="path264-6"
+     style="fill:url(#linearGradient4584);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,221.25 44.17639,0 0,37.5 -44.17639,0 0,-37.5 z" /></g><g
+   transform="matrix(1,0,0,-1,525.13557,841.352)"
+   id="g266-6"><text
+   id="text268-18"
+   transform="translate(-13.23096,5)"><tspan
+     y="0"
+     x="0"
+     id="tspan270-4"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">ex:</tspan><tspan
+     id="tspan4509-9"
+     y="14"
+     x="0"
+     sodipodi:role="line"
+     style="font-size:11.19999981px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT">illustrate</tspan></text>
+
+</g><g
+   transform="matrix(1,0,0,-1,294.12,838.95)"
+   id="g334"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text336"
+   transform="translate(-46.02539,4)"><tspan
+     id="tspan338"
+     sodipodi:role="line"
+     y="0"
+     x="0 8.6664 15.3408 21.340799 30.6744 37.348801 44.023201 50.697601 54.6936 61.368 64.701599 71.375999 78.0504 86.054398"
+     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:ArialMT;-inkscape-font-specification:ArialMT">wasGeneratedBy</tspan></text>
+
+
+
+
+
+
+</g><g
+   transform="matrix(0.9368205,0,0,-1,-142.39394,1071.5)"
+   id="g340"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path342"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="M 408.7794,240 524,240"
+     inkscape:connector-curvature="0" /></g><path
+   id="path344"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 233.2794,831.5 8,-3 0,6 -8,-3 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(0.81444052,-0.58024705,-0.58024705,-0.81444052,117.61722,882.29873)"
+   id="g486"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text488"
+   transform="translate(-13.01074,4)"><tspan
+     id="tspan490"
+     sodipodi:role="line"
+     y="0"
+     x="0 6.6743999 12.6744 19.348801"
+     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:ArialMT;-inkscape-font-specification:ArialMT">used</tspan></text>
+
+
+
+
+
+
+</g><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g498"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path500"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,240 -98.3914,0"
+     inkscape:connector-curvature="0" /></g><path
+   id="path502"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 72.8116,831.5 8,-3 0,6 -8,-3 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g504"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path506"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 248.3116,240 8,3 0,-6 -8,3 z"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1.2811284,0,0,-1,-242.59854,1071.5)"
+   id="g936"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path938"
+     style="fill:url(#linearGradient4458);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g960"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path962"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="M 354.703,240 254.7608,176.3198"
+     inkscape:connector-curvature="0" /></g><path
+   id="path964"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 72.514,899.479 5.1347,-6.8289 3.2242,5.0601 -8.3589,1.7688 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(1,0,0,-1,-175.5,1071.5)"
+   id="g966"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path968"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 248.014,172.021 5.1347,6.8289 3.2242,-5.0601 -8.3589,-1.7688 z"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,105.07766,839.66125)"
+   id="g998"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text1000"
+   transform="translate(-13.01074,4)"><tspan
+     id="tspan1002"
+     sodipodi:role="line"
+     y="0"
+     x="0 6.6743999 12.6744 19.348801"
+     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:ArialMT;-inkscape-font-specification:ArialMT">used</tspan></text>
+
+
+
+
+
+
+</g>
+
+
+
+
+<g
+   transform="matrix(1,0,0,-1,24.8429,902.71014)"
+   id="g544-9"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text546-3"
+   transform="translate(-7.640396,-2)"><tspan
+     sodipodi:role="line"
+     y="0"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196">ex:</tspan><tspan
+     sodipodi:role="line"
+     y="13.75"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan4448">dataSet1</tspan></text>
+
+
+</g><g
+   transform="matrix(0.71351425,0,0,-1,254.12833,1071.63)"
+   id="g498-2"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path500-7"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 354.703,240 -98.3914,0"
+     inkscape:connector-curvature="0" /></g><path
+   id="path502-6"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 429.0103,831.63001 8,-3 0,6 -8,-3 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(1,0,0,-1,180.69871,1071.63)"
+   id="g504-1"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path506-4"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 248.3116,240 8,3 0,-6 -8,3 z"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,461.27636,839.79121)"
+   id="g998-2"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text1000-3"
+   transform="translate(-13.01074,4)"><tspan
+     id="tspan1002-2"
+     sodipodi:role="line"
+     y="0"
+     x="0 6.6743999 12.6744 19.348801"
+     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:ArialMT;-inkscape-font-specification:ArialMT">used</tspan></text>
+
+</g><g
+   transform="matrix(1,0,0,-1,629.04784,839.08001)"
+   id="g334-3"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text336-8"
+   transform="translate(-46.02539,4)"><tspan
+     id="tspan338-7"
+     sodipodi:role="line"
+     y="0"
+     x="0 8.6664 15.3408 21.340799 30.6744 37.348801 44.023201 50.697601 54.6936 61.368 64.701599 71.375999 78.0504 86.054398"
+     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:ArialMT;-inkscape-font-specification:ArialMT">wasGeneratedBy</tspan></text>
+
+</g><g
+   transform="matrix(1,0,0,-1,159.42784,1071.63)"
+   id="g340-4"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path342-2"
+     style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="M 408.7794,240 524,240"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1.5826615,0,0,-1,38.212014,1002.1546)"
+   id="g936-0"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path938-0"
+     style="fill:url(#linearGradient4539);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,366.35927,833.36467)"
+   id="g544-9-61"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text546-3-3"
+   transform="translate(-7.640396,-2)"><tspan
+     sodipodi:role="line"
+     y="0"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196-8">ex:</tspan><tspan
+     sodipodi:role="line"
+     y="13.75"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan4448-9">composition</tspan></text>
+
+</g><path
+   id="path344-6"
+   style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
+   d="m 560.54101,831.63001 8,-3.91388 0,7.82776 -8,-3.91388 z"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"
+   inkscape:connector-curvature="0" /><g
+   transform="matrix(1.0394571,0,0,-1,483.59481,1001.7161)"
+   id="g936-0-2"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><path
+     id="path938-0-9"
+     style="fill:url(#linearGradient4670);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1;stroke-dasharray:none"
+     d="m 238.6758,155.4437 c 10.3144,8.5915 10.3144,22.5211 0,31.1126 -10.3145,8.5916 -27.0375,8.5916 -37.3519,0 -10.3145,-8.5915 -10.3145,-22.5211 0,-31.1126 10.3144,-8.5916 27.0374,-8.5916 37.3519,0"
+     inkscape:connector-curvature="0" /></g><g
+   transform="matrix(1,0,0,-1,702.38205,832.92622)"
+   id="g544-9-61-1"
+   inkscape:export-filename="/home/lavm/papers/papers/prov-wg/hg/model/images/w3-publication1.png"
+   inkscape:export-xdpi="79.550438"
+   inkscape:export-ydpi="79.550438"><text
+   id="text546-3-3-3"
+   transform="translate(-7.640396,-2)"><tspan
+     sodipodi:role="line"
+     y="0"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan3196-8-5">ex:</tspan><tspan
+     sodipodi:role="line"
+     y="13.75"
+     x="0"
+     style="font-size:11px;font-variant:normal;font-weight:normal;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;font-family:ArialMT;-inkscape-font-specification:ArialMT"
+     id="tspan4448-9-9">chart1</tspan></text>
+
+</g></g></svg>
\ No newline at end of file