[Swift-commit] r4480 - in trunk/docs: . cookbook tutorial userguide

davidk at ci.uchicago.edu davidk at ci.uchicago.edu
Mon May 16 14:38:03 CDT 2011


Author: davidk
Date: 2011-05-16 14:38:01 -0500 (Mon, 16 May 2011)
New Revision: 4480

Added:
   trunk/docs/build_docs.sh
   trunk/docs/cookbook/
   trunk/docs/cookbook/cookbook-asciidoc.html
   trunk/docs/cookbook/cookbook-asciidoc.pdf
   trunk/docs/cookbook/cookbook-asciidoc.txt
   trunk/docs/tutorial/
   trunk/docs/tutorial/tutorial.html
   trunk/docs/tutorial/tutorial.pdf
   trunk/docs/tutorial/tutorial.txt
   trunk/docs/userguide/
   trunk/docs/userguide/swift-site-model.png
   trunk/docs/userguide/type-hierarchy.png
   trunk/docs/userguide/userguide.html
   trunk/docs/userguide/userguide.txt
Removed:
   trunk/docs/Makefile
   trunk/docs/README.txt
   trunk/docs/build-chunked-userguide.sh
   trunk/docs/buildguides.sh
   trunk/docs/formatting/
   trunk/docs/historical/
   trunk/docs/log-processing.xml
   trunk/docs/plot-tour.xml
   trunk/docs/plot-tour/
   trunk/docs/provenance.xml
   trunk/docs/quickstartguide.xml
   trunk/docs/reallyquickstartguide.xml
   trunk/docs/swift-site-model.fig
   trunk/docs/swift-site-model.png
   trunk/docs/tutorial-live.xml
   trunk/docs/tutorial.xml
   trunk/docs/type-hierarchy.fig
   trunk/docs/type-hierarchy.png
   trunk/docs/userguide-rotated.jpeg
   trunk/docs/userguide-shane.jpeg
   trunk/docs/userguide.xml
Log:
Updated asciidoc guides


Deleted: trunk/docs/Makefile
===================================================================
--- trunk/docs/Makefile	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/Makefile	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,35 +0,0 @@
-
-# FOP = fop
-FOP = fop/fop.sh
-
-all: phps pdfs
-
-phps: userguide.php tutorial.php tutorial-live.php quickstartguide.php reallyquickstartguide.php provenance.php historical/languagespec.php historical/languagespec-0.6.php log-processing.php plot-tour.php
-
-htmls: userguide.html tutorial.html tutorial-live.html quickstartguide.html reallyquickstartguide.html provenance.html historical/languagespec.html historical/languagespec-0.6.html log-processing.html plot-tour.html
-
-pdfs: userguide.pdf tutorial.pdf tutorial-live.pdf quickstartguide.pdf reallyquickstartguide.pdf provenance.pdf historical/languagespec.pdf historical/languagespec-0.6.pdf log-processing.pdf
-
-GUIDE_PHP=$(shell find userguide -name "*.php" )
-GUIDE_HTML=$(patsubst %.php,%.html,$(GUIDE_PHP))
-
-guide_html: $(GUIDE_HTML)
-
-chunked-userguide: userguide.xml
-	./build-chunked-userguide.sh
-
-%.php: %.xml formatting/swiftsh_html.xsl
-	xsltproc --nonet formatting/swiftsh_html.xsl $<
-	sed -e "s/index.html#/#/g" index.html >$@
-	chmod a+rx $@
-
-%.pdf: %.xml formatting/vdl2_fo.xsl
-	$(FOP) -xsl formatting/vdl2_fo.xsl -xml $< -pdf $@
-	chmod a+rx $@
-
-%.html: %.php
-	cp $< $@
-	chmod a+rx $@
-
-clean:
-	rm -fv *.php userguide/*.php

Deleted: trunk/docs/README.txt
===================================================================
--- trunk/docs/README.txt	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/README.txt	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,69 +0,0 @@
-Swift Documentation
-===================
-
-General principles:
-
- - sections and subsections are ordered from <sect1>, <sect2>, or using
-   arbitrary depth <section> tags
- - code samples are given inside <programlisting> tags, which will cause
-   syntax highlighting to happen automatically
- - user interactions / screen output are given inside <screen> tags.
- - be careful to escape in-text "<" to "<"
- - there are some conventions for using id attributes at various
-   places in the documents - for example, some tutorial sections use
-   'tutorial.<something>'; profile entries in the user guide use
-   'profile.<namespace>.<key>'. Try to keep id attributes unique across
-   the entire document set.
-
-The first time guides are built in a particular checkout, it is necessary
-to place the docbook formatting stylesheets under the formatting/docbook/
-directory. This can be done with a symlink if docbook is installed elsewhere.
-
-For example:
-
-A) On the CI network, /home/hategan/docbook contains a docbook installation that
-can be linked like this:
-
-$ cd formatting
-$ ln -s /home/hategan/docbook/ docbook
-
-
-B) on benc's os x machine:
-
-# install docbook from DarwinPorts
-$ sudo port install docbook-xsl
-
-# setup links
-$ cd formatting
-$ ln -s /opt/local/share/xsl/docbook-xsl/ docbook
-
-C) in general:
-
- 1) Install Apache
-
- 2) Install PHP (cf. http://dan.drydog.com/apache2php.html)
-
- 3) Add these lines to Apache's httpd.conf:
-
-    AddHandler php5-script php
-    AddType text/html       php
-
- 4) Update httpd.conf, adding index.php:
-
-    DirectoryIndex index.html index.php
-
- 5) Make sure perms are correct
-
- 6) Create formatting/docbook link (see above) 
-
- 7) Create fop link
-
-Once the links are set up, the buildguides.sh script will build all guides
-as php.  Run it with no parameters, like this:
-
-$ ./buildguides.sh
-
-or use make to get HTML documents like this:
-
-$ make userguide.html
-

Deleted: trunk/docs/build-chunked-userguide.sh
===================================================================
--- trunk/docs/build-chunked-userguide.sh	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/build-chunked-userguide.sh	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-mkdir -p userguide/ || exit 1
-cd userguide/ || exit 2
-rm -f *.html *.php
-cp ../*.png .
-cp ../*.jpeg .
-
-xsltproc --nonet ../formatting/swiftsh_html_chunked.xsl ../userguide.xml
-chmod a+r *.php 
-

Added: trunk/docs/build_docs.sh
===================================================================
--- trunk/docs/build_docs.sh	                        (rev 0)
+++ trunk/docs/build_docs.sh	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,33 @@
+#!/bin/bash
+
+if [ -n "$1" ]; then
+   INSTALLATION_DIRECTORY=$1
+else
+   echo Error: Must specify a directory for installation
+   exit 1
+fi
+
+if [ ! -d "$INSTALLATION_DIRECTORY" ]; then
+   mkdir $INSTALLATION_DIRECTORY || exit 1
+fi
+
+echo Installing docs into $INSTALLATION_DIRECTORY
+
+cd docs || exit 1
+DIRECTORIES=*/
+for directory in $DIRECTORIES
+do
+   cd $directory || exit 1
+   FILES=*.txt
+   for file in $FILES
+   do
+      echo Converting $directory"$file" to HTML
+      asciidoc -a toc $file
+      echo Converting $directory"$file" to PDF
+      a2x --format=pdf --no-xmllint $file 
+   done
+   cp *.html $INSTALLATION_DIRECTORY || exit 1
+   cp *.pdf $INSTALLATION_DIRECTORY || exit 1
+   cd .. || exit 1
+done
+cd ..


Property changes on: trunk/docs/build_docs.sh
___________________________________________________________________
Added: svn:executable
   + *

Deleted: trunk/docs/buildguides.sh
===================================================================
--- trunk/docs/buildguides.sh	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/buildguides.sh	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-make all chunked-userguide
-./build-chunked-userguide.sh
-

Added: trunk/docs/cookbook/cookbook-asciidoc.html
===================================================================
--- trunk/docs/cookbook/cookbook-asciidoc.html	                        (rev 0)
+++ trunk/docs/cookbook/cookbook-asciidoc.html	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,1497 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<head>
+<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
+<meta name="generator" content="AsciiDoc 8.6.4" />
+<title>Swift Cookbook</title>
+<style type="text/css">
+/* Sans-serif font. */
+h1, h2, h3, h4, h5, h6,
+div.title, caption.title,
+thead, p.table.header,
+div#toctitle,
+span#author, span#revnumber, span#revdate, span#revremark,
+div#footer {
+  font-family: Arial,Helvetica,sans-serif;
+}
+
+/* Serif font. */
+div.sectionbody {
+  font-family: Georgia,"Times New Roman",Times,serif;
+}
+
+/* Monospace font. */
+tt {
+  font-size: inherit;
+}
+
+body {
+  margin: 1em 5% 1em 5%;
+}
+
+a {
+  color: blue;
+  text-decoration: underline;
+}
+a:visited {
+  color: fuchsia;
+}
+
+em {
+  font-style: italic;
+  color: navy;
+}
+
+strong {
+  font-weight: bold;
+  color: #083194;
+}
+
+tt {
+  font-size: inherit;
+  color: navy;
+}
+
+h1, h2, h3, h4, h5, h6 {
+  color: #527bbd;
+  margin-top: 1.2em;
+  margin-bottom: 0.5em;
+  line-height: 1.3;
+}
+
+h1, h2, h3 {
+  border-bottom: 2px solid silver;
+}
+h2 {
+  padding-top: 0.5em;
+}
+h3 {
+  float: left;
+}
+h3 + * {
+  clear: left;
+}
+
+div.sectionbody {
+  margin-left: 0;
+}
+
+hr {
+  border: 1px solid silver;
+}
+
+p {
+  margin-top: 0.5em;
+  margin-bottom: 0.5em;
+}
+
+ul, ol, li > p {
+  margin-top: 0;
+}
+ul > li     { color: #aaa; }
+ul > li > * { color: black; }
+
+pre {
+  padding: 0;
+  margin: 0;
+}
+
+span#author {
+  color: #527bbd;
+  font-weight: bold;
+  font-size: 1.1em;
+}
+span#email {
+}
+span#revnumber, span#revdate, span#revremark {
+}
+
+div#footer {
+  font-size: small;
+  border-top: 2px solid silver;
+  padding-top: 0.5em;
+  margin-top: 4.0em;
+}
+div#footer-text {
+  float: left;
+  padding-bottom: 0.5em;
+}
+div#footer-badges {
+  float: right;
+  padding-bottom: 0.5em;
+}
+
+div#preamble {
+  margin-top: 1.5em;
+  margin-bottom: 1.5em;
+}
+div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
+div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
+div.admonitionblock {
+  margin-top: 1.0em;
+  margin-bottom: 1.5em;
+}
+div.admonitionblock {
+  margin-top: 2.0em;
+  margin-bottom: 2.0em;
+  margin-right: 10%;
+  color: #606060;
+}
+
+div.content { /* Block element content. */
+  padding: 0;
+}
+
+/* Block element titles. */
+div.title, caption.title {
+  color: #527bbd;
+  font-weight: bold;
+  text-align: left;
+  margin-top: 1.0em;
+  margin-bottom: 0.5em;
+}
+div.title + * {
+  margin-top: 0;
+}
+
+td div.title:first-child {
+  margin-top: 0.0em;
+}
+div.content div.title:first-child {
+  margin-top: 0.0em;
+}
+div.content + div.title {
+  margin-top: 0.0em;
+}
+
+div.sidebarblock > div.content {
+  background: #ffffee;
+  border: 1px solid #dddddd;
+  border-left: 4px solid #f0f0f0;
+  padding: 0.5em;
+}
+
+div.listingblock > div.content {
+  border: 1px solid #dddddd;
+  border-left: 5px solid #f0f0f0;
+  background: #f8f8f8;
+  padding: 0.5em;
+}
+
+div.quoteblock, div.verseblock {
+  padding-left: 1.0em;
+  margin-left: 1.0em;
+  margin-right: 10%;
+  border-left: 5px solid #f0f0f0;
+  color: #777777;
+}
+
+div.quoteblock > div.attribution {
+  padding-top: 0.5em;
+  text-align: right;
+}
+
+div.verseblock > pre.content {
+  font-family: inherit;
+  font-size: inherit;
+}
+div.verseblock > div.attribution {
+  padding-top: 0.75em;
+  text-align: left;
+}
+/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
+div.verseblock + div.attribution {
+  text-align: left;
+}
+
+div.admonitionblock .icon {
+  vertical-align: top;
+  font-size: 1.1em;
+  font-weight: bold;
+  text-decoration: underline;
+  color: #527bbd;
+  padding-right: 0.5em;
+}
+div.admonitionblock td.content {
+  padding-left: 0.5em;
+  border-left: 3px solid #dddddd;
+}
+
+div.exampleblock > div.content {
+  border-left: 3px solid #dddddd;
+  padding-left: 0.5em;
+}
+
+div.imageblock div.content { padding-left: 0; }
+span.image img { border-style: none; }
+a.image:visited { color: white; }
+
+dl {
+  margin-top: 0.8em;
+  margin-bottom: 0.8em;
+}
+dt {
+  margin-top: 0.5em;
+  margin-bottom: 0;
+  font-style: normal;
+  color: navy;
+}
+dd > *:first-child {
+  margin-top: 0.1em;
+}
+
+ul, ol {
+    list-style-position: outside;
+}
+ol.arabic {
+  list-style-type: decimal;
+}
+ol.loweralpha {
+  list-style-type: lower-alpha;
+}
+ol.upperalpha {
+  list-style-type: upper-alpha;
+}
+ol.lowerroman {
+  list-style-type: lower-roman;
+}
+ol.upperroman {
+  list-style-type: upper-roman;
+}
+
+div.compact ul, div.compact ol,
+div.compact p, div.compact p,
+div.compact div, div.compact div {
+  margin-top: 0.1em;
+  margin-bottom: 0.1em;
+}
+
+div.tableblock > table {
+  border: 3px solid #527bbd;
+}
+thead, p.table.header {
+  font-weight: bold;
+  color: #527bbd;
+}
+tfoot {
+  font-weight: bold;
+}
+td > div.verse {
+  white-space: pre;
+}
+p.table {
+  margin-top: 0;
+}
+/* Because the table frame attribute is overriden by CSS in most browsers. */
+div.tableblock > table[frame="void"] {
+  border-style: none;
+}
+div.tableblock > table[frame="hsides"] {
+  border-left-style: none;
+  border-right-style: none;
+}
+div.tableblock > table[frame="vsides"] {
+  border-top-style: none;
+  border-bottom-style: none;
+}
+
+
+div.hdlist {
+  margin-top: 0.8em;
+  margin-bottom: 0.8em;
+}
+div.hdlist tr {
+  padding-bottom: 15px;
+}
+dt.hdlist1.strong, td.hdlist1.strong {
+  font-weight: bold;
+}
+td.hdlist1 {
+  vertical-align: top;
+  font-style: normal;
+  padding-right: 0.8em;
+  color: navy;
+}
+td.hdlist2 {
+  vertical-align: top;
+}
+div.hdlist.compact tr {
+  margin: 0;
+  padding-bottom: 0;
+}
+
+.comment {
+  background: yellow;
+}
+
+.footnote, .footnoteref {
+  font-size: 0.8em;
+}
+
+span.footnote, span.footnoteref {
+  vertical-align: super;
+}
+
+#footnotes {
+  margin: 20px 0 20px 0;
+  padding: 7px 0 0 0;
+}
+
+#footnotes div.footnote {
+  margin: 0 0 5px 0;
+}
+
+#footnotes hr {
+  border: none;
+  border-top: 1px solid silver;
+  height: 1px;
+  text-align: left;
+  margin-left: 0;
+  width: 20%;
+  min-width: 100px;
+}
+
+div.colist td {
+  padding-right: 0.5em;
+  padding-bottom: 0.3em;
+  vertical-align: top;
+}
+div.colist td img {
+  margin-top: 0.3em;
+}
+
+ at media print {
+  div#footer-badges { display: none; }
+}
+
+div#toc {
+  margin-bottom: 2.5em;
+}
+
+div#toctitle {
+  color: #527bbd;
+  font-size: 1.1em;
+  font-weight: bold;
+  margin-top: 1.0em;
+  margin-bottom: 0.1em;
+}
+
+div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
+  margin-top: 0;
+  margin-bottom: 0;
+}
+div.toclevel2 {
+  margin-left: 2em;
+  font-size: 0.9em;
+}
+div.toclevel3 {
+  margin-left: 4em;
+  font-size: 0.9em;
+}
+div.toclevel4 {
+  margin-left: 6em;
+  font-size: 0.9em;
+}
+
+span.aqua { color: aqua; }
+span.black { color: black; }
+span.blue { color: blue; }
+span.fuchsia { color: fuchsia; }
+span.gray { color: gray; }
+span.green { color: green; }
+span.lime { color: lime; }
+span.maroon { color: maroon; }
+span.navy { color: navy; }
+span.olive { color: olive; }
+span.purple { color: purple; }
+span.red { color: red; }
+span.silver { color: silver; }
+span.teal { color: teal; }
+span.white { color: white; }
+span.yellow { color: yellow; }
+
+span.aqua-background { background: aqua; }
+span.black-background { background: black; }
+span.blue-background { background: blue; }
+span.fuchsia-background { background: fuchsia; }
+span.gray-background { background: gray; }
+span.green-background { background: green; }
+span.lime-background { background: lime; }
+span.maroon-background { background: maroon; }
+span.navy-background { background: navy; }
+span.olive-background { background: olive; }
+span.purple-background { background: purple; }
+span.red-background { background: red; }
+span.silver-background { background: silver; }
+span.teal-background { background: teal; }
+span.white-background { background: white; }
+span.yellow-background { background: yellow; }
+
+span.big { font-size: 2em; }
+span.small { font-size: 0.6em; }
+</style>
+<script type="text/javascript">
+/*<![CDATA[*/
+window.onload = function(){asciidoc.footnotes(); asciidoc.toc(2);}
+var asciidoc = {  // Namespace.
+
+/////////////////////////////////////////////////////////////////////
+// Table Of Contents generator
+/////////////////////////////////////////////////////////////////////
+
+/* Author: Mihai Bazon, September 2002
+ * http://students.infoiasi.ro/~mishoo
+ *
+ * Table Of Content generator
+ * Version: 0.4
+ *
+ * Feel free to use this script under the terms of the GNU General Public
+ * License, as long as you do not remove or alter this notice.
+ */
+
+ /* modified by Troy D. Hanson, September 2006. License: GPL */
+ /* modified by Stuart Rackham, 2006, 2009. License: GPL */
+
+// toclevels = 1..4.
+toc: function (toclevels) {
+
+  function getText(el) {
+    var text = "";
+    for (var i = el.firstChild; i != null; i = i.nextSibling) {
+      if (i.nodeType == 3 /* Node.TEXT_NODE */) // IE doesn't speak constants.
+        text += i.data;
+      else if (i.firstChild != null)
+        text += getText(i);
+    }
+    return text;
+  }
+
+  function TocEntry(el, text, toclevel) {
+    this.element = el;
+    this.text = text;
+    this.toclevel = toclevel;
+  }
+
+  function tocEntries(el, toclevels) {
+    var result = new Array;
+    var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');
+    // Function that scans the DOM tree for header elements (the DOM2
+    // nodeIterator API would be a better technique but not supported by all
+    // browsers).
+    var iterate = function (el) {
+      for (var i = el.firstChild; i != null; i = i.nextSibling) {
+        if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
+          var mo = re.exec(i.tagName);
+          if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
+            result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
+          }
+          iterate(i);
+        }
+      }
+    }
+    iterate(el);
+    return result;
+  }
+
+  var toc = document.getElementById("toc");
+  var entries = tocEntries(document.getElementById("content"), toclevels);
+  for (var i = 0; i < entries.length; ++i) {
+    var entry = entries[i];
+    if (entry.element.id == "")
+      entry.element.id = "_toc_" + i;
+    var a = document.createElement("a");
+    a.href = "#" + entry.element.id;
+    a.appendChild(document.createTextNode(entry.text));
+    var div = document.createElement("div");
+    div.appendChild(a);
+    div.className = "toclevel" + entry.toclevel;
+    toc.appendChild(div);
+  }
+  if (entries.length == 0)
+    toc.parentNode.removeChild(toc);
+},
+
+
+/////////////////////////////////////////////////////////////////////
+// Footnotes generator
+/////////////////////////////////////////////////////////////////////
+
+/* Based on footnote generation code from:
+ * http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
+ */
+
+footnotes: function () {
+  var cont = document.getElementById("content");
+  var noteholder = document.getElementById("footnotes");
+  var spans = cont.getElementsByTagName("span");
+  var refs = {};
+  var n = 0;
+  for (i=0; i<spans.length; i++) {
+    if (spans[i].className == "footnote") {
+      n++;
+      // Use [\s\S] in place of . so multi-line matches work.
+      // Because JavaScript has no s (dotall) regex flag.
+      note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
+      noteholder.innerHTML +=
+        "<div class='footnote' id='_footnote_" + n + "'>" +
+        "<a href='#_footnoteref_" + n + "' title='Return to text'>" +
+        n + "</a>. " + note + "</div>";
+      spans[i].innerHTML =
+        "[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
+        "' title='View footnote' class='footnote'>" + n + "</a>]";
+      var id =spans[i].getAttribute("id");
+      if (id != null) refs["#"+id] = n;
+    }
+  }
+  if (n == 0)
+    noteholder.parentNode.removeChild(noteholder);
+  else {
+    // Process footnoterefs.
+    for (i=0; i<spans.length; i++) {
+      if (spans[i].className == "footnoteref") {
+        var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
+        href = href.match(/#.*/)[0];  // Because IE return full URL.
+        n = refs[href];
+        spans[i].innerHTML =
+          "[<a href='#_footnote_" + n +
+          "' title='View footnote' class='footnote'>" + n + "</a>]";
+      }
+    }
+  }
+}
+
+}
+/*]]>*/
+</script>
+</head>
+<body class="article">
+<div id="header">
+<h1>Swift Cookbook</h1>
+<span id="author">Swift team</span><br />
+<span id="email"><tt><<a href="mailto:swift-user at ci.uchicago.edu">swift-user at ci.uchicago.edu</a>></tt></span><br />
+<span id="revnumber">version 0.92,</span>
+<span id="revdate">March 2011</span>
+<div id="toc">
+  <div id="toctitle">Table of Contents</div>
+  <noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
+</div>
+</div>
+<div id="content">
+<div class="sect1">
+<h2 id="_overview">Overview</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This cookbook covers various recipes involving setting up and running Swift under diverse
+configurations based on the application requirements and the underlying
+infrastructures. The Swift system comprises of SwiftScript language and the
+Swift runtime system. For
+introductory material, consult the Swift tutorial found
+<a href="http://www.ci.uchicago.edu/swift/guides/tutorial.php">here</a>.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_swift_basics">Swift Basics</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_installation">Installation</h3>
+<div class="paragraph"><p>This section takes you through the installation of the Swift system on your
+computer. We will start with the prerequisites as explained in the subsequent
+section.</p></div>
+<div class="sect3">
+<h4 id="_prerequisites">Prerequisites</h4>
+<div class="paragraph"><div class="title">Check your Java</div><p>Swift is a Java application. Make sure you are running Java version 5 or higher. You
+can make sure you have Java in your $PATH (or $HOME/.soft file depending upon
+your environment)</p></div>
+<div class="paragraph"><p>Following are the possible ways to detect and run Java:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ grep java $HOME/.soft
+#+java-sun # Gives you Java 5
++java-1.6.0_03-sun-r1
+$ which java
+/soft/java-1.6.0_11-sun-r1/bin/java
+$ java -version
+java version "1.6.0_11"
+Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
+Java HotSpot(TM) 64-Bit Server VM (build 11.0-b16, mixed mode)</tt></pre>
+</div></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_setting_up_to_run_swift">Setting up to run Swift</h3>
+<div class="paragraph"><p>This is simple. We will be using a pre-compiled version of Swift that can be
+downloaded from <a href="http://www.ci.uchicago.edu/swift/downloads/index.php">here</a>. Download and untar the latest precompiled version as follows:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ tar xf swift-0.92.1.tar.gz</tt></pre>
+</div></div>
+<div class="sect3">
+<h4 id="_environment_setup">Environment Setup</h4>
+<div class="paragraph"><p>The examples were tested with Java version 1.6. Make sure you do not already
+have Swift in your PATH. If you do, remove it, or remove any +swift or @swift
+lines from your $HOME/.soft or $HOME/.bash_profile file. Then do:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>PATH=$PATH:/path/to/swift/bin</tt></pre>
+</div></div>
+<div class="paragraph"><p>Note that the environment will be different when using Swift from prebuilt distribution (as above) and trunk. The PATH setup when using swift from trunk would be as follows:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>PATH=$PATH:/path/to/swift/dist/swift-svn/bin</tt></pre>
+</div></div>
+<div class="admonitionblock">
+<table><tr>
+<td class="icon">
+<div class="title">Warning</div>
+</td>
+<td class="content">Do NOT set SWIFT_HOME or CLASSPATH in your environment unless you
+fully understand how these will affect Swift’s execution.</td>
+</tr></table>
+</div>
+<div class="paragraph"><p>To execute your Swift script on a login host (or "localhost") use
+the following command:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>swift -tc.file tc somescript.swift</tt></pre>
+</div></div>
+</div>
+<div class="sect3">
+<h4 id="_setting_transformation_catalog">Setting transformation catalog</h4>
+<div class="paragraph"><p>The transformation catalog lists where application executables are located on
+remote sites.</p></div>
+<div class="paragraph"><p>By default, the site catalog is stored in etc/tc.data. This path can be
+overridden with the tc.file configuration property, either in the Swift
+configuration file or on the command line.</p></div>
+<div class="paragraph"><p>The format is one line per executable per site, with fields separated by tabs
+or spaces.</p></div>
+<div class="paragraph"><p>Some example entries:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>localhost  echo    /bin/echo       INSTALLED       INTEL32::LINUX  null
+TGUC       touch   /usr/bin/touch  INSTALLED       INTEL32::LINUX GLOBUS::maxwalltime="00:00:10"</tt></pre>
+</div></div>
+<div class="paragraph"><p>The fields are: <em>site</em>, <em>transformation-name</em>, <em>executable-path</em>, <em>installation-status</em>, <em>platform</em>, and <em>profile</em> entries.</p></div>
+<div class="paragraph"><p>The <em>site</em> field should correspond to a site name listed in the sites catalog.</p></div>
+<div class="paragraph"><p>The <em>transformation-name</em> should correspond to the transformation name used in a
+SwiftScript app procedure.</p></div>
+<div class="paragraph"><p>The <em>executable-path</em> should specify where the particular executable is located
+on that site.</p></div>
+<div class="paragraph"><p>The <em>installation-status</em> and <em>platform</em> fields are not used. Set them to
+<strong>INSTALLED</strong> and <strong>INTEL32::LINUX</strong> respectively.</p></div>
+<div class="paragraph"><p>The <em>profiles</em> field should be set to null if no profile entries are to be
+specified, or should contain the profile entries separated by semicolons.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_setting_swift_configuration">Setting swift configuration</h4>
+<div class="paragraph"><p>Many configuration properties could be set using the Swift configuration file.
+We will not cover them all in this section. see
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#engineconfiguration">here</a> for details. In this section we will cover a simple configuration file with the most basic properties.</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt># A comment
+wrapperlog.always.transfer=true
+sitedir.keep=true
+execution.retries=1
+lazy.errors=true
+status.mode=provider
+use.provider.staging=true
+provider.staging.pin.swiftfiles=false
+clustering.enabled=false
+clustering.queue.delay=10
+clustering.min.time=86400
+foreach.max.threads=100
+provenance.log=true</tt></pre>
+</div></div>
+</div>
+<div class="sect3">
+<h4 id="_setting_sites_xml">Setting sites.xml</h4>
+<div class="paragraph"><p>sites.xml specifies details of the sites that Swift can run on. Following is
+an example of a simple sites.xml file entry for running Swift on local
+environment:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><pool</span></span> <span style="color: #009900">handle</span><span style="color: #990000">=</span><span style="color: #FF0000">"localhost"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><filesystem</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"local"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"local"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><workdirectory</span></span> <span style="font-weight: bold"><span style="color: #0000FF">></span></span>/var/tmp<span style="font-weight: bold"><span style="color: #0000FF"></workdirectory></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"jobThrottle"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>.07<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span>
+<span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"initialScore"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>100000<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"></pool></span></span></tt></pre></div></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_first_swiftscript">First SwiftScript</h3>
+<div class="paragraph"><p>Your first SwiftScript
+Hello Swift-World!</p></div>
+<div class="paragraph"><p>A good sanity check that Swift is set up and running OK locally is this:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ which swift
+
+/home/wilde/swift/src/stable/cog/modules/swift/dist/swift-svn/bin/swift
+
+$ echo 'trace("Hello, Swift world!");' >hello.swift
+
+$ swift hello.swift
+
+Swift svn swift-r3202 cog-r2682
+
+RunID: 20100115-1240-6xhzxuz3
+
+Progress:
+
+SwiftScript trace: Hello, Swift world!
+
+Final status:
+
+$</tt></pre>
+</div></div>
+<div class="paragraph"><p>A good first tutorial in using Swift is at:
+<a href="http://www.ci.uchicago.edu/swift/guides/tutorial.php">http://www.ci.uchicago.edu/swift/guides/tutorial.php</a>. Follow the steps in that
+tutorial to learn how to run a few simple scripts on the login host.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_second_swiftscript">second SwiftScript</h3>
+<div class="paragraph"><p>Following is a more involved Swift script.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> o<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">cat</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> i<span style="color: #990000">)</span>
+<span style="color: #FF0000">{</span>
+    cat @<span style="color: #008080">i</span> stdout<span style="color: #990000">=</span>@o<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">file</span> out<span style="color: #990000">[]<</span>simple_mapper<span style="color: #990000">;</span> location<span style="color: #990000">=</span><span style="color: #FF0000">"outdir"</span><span style="color: #990000">,</span> prefix<span style="color: #990000">=</span><span style="color: #FF0000">"f."</span><span style="color: #990000">,</span>suffix<span style="color: #990000">=</span><span style="color: #FF0000">".out"</span><span style="color: #990000">>;</span>
+
+foreach <span style="color: #008080">j</span> in <span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">:</span>@<span style="font-weight: bold"><span style="color: #000000">toint</span></span><span style="color: #990000">(</span>@<span style="font-weight: bold"><span style="color: #000000">arg</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"n"</span><span style="color: #990000">,</span><span style="color: #FF0000">"1"</span><span style="color: #990000">))]</span> <span style="color: #FF0000">{</span>
+
+    <span style="color: #008080">file</span> data<span style="color: #990000"><</span><span style="color: #FF0000">"data.txt"</span><span style="color: #990000">>;</span>
+
+    out<span style="color: #990000">[</span>j<span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">cat</span></span><span style="color: #990000">(</span>data<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_swift_commandline_options">Swift Commandline Options</h3>
+<div class="paragraph"><p>A description of Swift Commandline Options</p></div>
+<div class="paragraph"><p>Also includes a description of Swift inputs and outputs.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_what_if_swift_hangs">What if Swift hangs</h3>
+<div class="paragraph"><p>Owing to its highly multithreaded architecture it is often the case that the
+underlying java virtual machine gets into deadlock situations or Swift hangs
+because of other complications in its threaded operations. Under such
+situations, Swift <em>hang-checker</em> chips in and resolves the situation.</p></div>
+<div class="olist arabic"><ol class="arabic">
+<li>
+<p>
+how to use the information to identify and correct the deadlock.
+</p>
+</li>
+<li>
+<p>
+How close to the Swift source code can we make the hang-checker messages, so that the user can relate it to Swift functions, expressions, and ideally source code lines?
+</p>
+</li>
+<li>
+<p>
+The current Hang Checker output is actually <strong>very</strong> nice and useful already:
+</p>
+</li>
+</ol></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>Registered futures:
+Rupture[] rups  Closed, 1 elements, 0 listeners
+Variation vars - Closed, no listeners
+SgtDim sub - Open, 1 listeners
+string site  Closed, no listeners
+Variation[] vars  Closed, 72 elements, 0 listeners</tt></pre>
+</div></div>
+</div>
+<div class="sect2">
+<h3 id="_resuming_a_stopped_or_crashed_swift_run">Resuming a stopped or crashed Swift Run</h3>
+<div class="paragraph"><p>I had a .rlog file from a Swift run that ran out of time. I kicked it off
+using the -resume flag described in section 16.2 of the Swift User Guide and
+it picked up where it left off. Then I killed it because I wanted to make
+changes to my sites file.</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>. . .
+Progress:  Selecting site:1150  Stage in:55  Active:3  Checking status:1
+Stage out:37  Finished in previous run:2462  Finished successfully:96
+Progress:  Selecting site:1150  Stage in:55  Active:2  Checking status:1
+Stage out:38  Finished in previous run:2462  Finished successfully:96
+Cleaning up...
+Shutting down service at https://192.5.86.6:54813
+Got channel MetaChannel: 1293358091 -> null
++ Done
+Canceling job 9297.svc.pads.ci.uchicago.edu</tt></pre>
+</div></div>
+<div class="paragraph"><p>No new rlog file was emitted but it did recognize the progress that had been
+made, the 96 tasks that finished sucessfully above and resumed from 2558 tasks
+finished.</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>[nbest at login2 files]$ pwd
+/home/nbest/bigdata/files
+[nbest at login2 files]$
+~wilde/swift/src/stable/cog/modules/swift/dist/swift-svn/bin/swift \
+> -tc.file tc -sites.file pbs.xml ~/scripts/mcd12q1.swift -resume
+> mcd12q1-20100310-1326-ptxe1x1d.0.rlog
+Swift svn swift-r3255 (swift modified locally) cog-r2723 (cog modified
+locally)
+RunID: 20100311-1027-148caf0a
+Progress:
+Progress:  uninitialized:4
+Progress:  Selecting site:671  Initializing site shared directory:1  Finished
+in previous run:1864
+Progress:  uninitialized:1  Selecting site:576  Stage in:96  Finished in
+previous run:1864
+Progress:  Selecting site:1150  Stage in:94  Submitting:2  Finished in
+previous run:2558
+Progress:  Selecting site:1150  Stage in:94  Submitted:2  Finished in previous
+run:2558
+Progress:  Selecting site:1150  Stage in:93  Submitting:1  Submitted:2
+Finished in previous run:2558
+Progress:  Selecting site:1150  Stage in:90  Submitting:1  Submitted:5
+Finished in previous run:2558
+Progress:  Selecting site:1150  Stage in:90  Submitted:5  Active:1  Finished
+in previous run:2558</tt></pre>
+</div></div>
+<div class="paragraph"><p>From Neil: A comment about that section of the user guide: It says "In order
+to restart from a restart log file, the -resume logfile argument can be used
+after the SwiftScript? program file name." and then puts the -resume logfile
+argument before the script file name. I’m sure the order doesn’t matter but
+the contradiction is confusing.</p></div>
+<div class="paragraph"><p>Notes to add (from Mike):</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+explain what aspects of a Swift script make it restartable, and which
+  aspects are notrestartable. Eg, if your mappers can return different data at
+different times, what happens? What other non-determinsitc behavior would
+cause unpredictable, unexpected, or undesired behavior on resumption?
+</p>
+</li>
+<li>
+<p>
+explain what changes you can make in the execution environment (eg
+  increasing or reducing CPUs to run on or throttles, etc); fixing tc.data
+entries, env vars, or apps, etc.
+</p>
+</li>
+<li>
+<p>
+note that resume will again retry failed app() calls. Explain if the retry
+  count starts over or not.
+</p>
+</li>
+<li>
+<p>
+explain how to resume after multiple failures and resumes - i.e. if a .rlog
+  is generated on each run, which one should you resume from? Do you have a
+choice of resuming from any of them, and what happens if you go backwards to
+an older resume file?
+</p>
+</li>
+<li>
+<p>
+whap happens when you kill (eg with <sup>C) a running swift script? Is the
+  signal caught, and the resume file written out at that point? Or written out
+all along? (Note case in which script ws running for hours, then hit </sup>C, but
+resume fie was short (54 bbytes) and swift shows no sign of doing a resume?
+(It silently ignored resume file instead of acknowleging that it found one
+with not useful resume state in it???) Swift should clearly state that its
+resuming and what its resume state is.
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p><tt>swift -resume ftdock-[id].0.rlog \[rest of the exact command line from initial
+run\]</tt></p></div>
+</div>
+<div class="sect2">
+<h3 id="_passing_an_array_to_swift">Passing an array to swift?</h3>
+<div class="paragraph"><p>Arrays can be passed to Swift in one of the following ways:</p></div>
+<div class="olist arabic"><ol class="arabic">
+<li>
+<p>
+You can write the array to a file and read in in swift using
+readData (or readData2).
+</p>
+</li>
+<li>
+<p>
+Direct the array into a file (possibly with a "here document" which expands the array) and then read the file in Swift with readData() or process it with a Swift app() function?
+</p>
+</li>
+<li>
+<p>
+You can use @strsplit on a comma separated command line arg and that works well for me.
+</p>
+</li>
+</ol></div>
+<div class="sect3">
+<h4 id="_mappers">Mappers</h4>
+<div class="paragraph"><p>SimpleMapper</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ cat swiftapply.swift</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> RFile<span style="color: #990000">;</span>
+<span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hi 1"</span><span style="color: #990000">);</span>
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">RFile</span> result<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">RunR</span></span> <span style="color: #990000">(</span><span style="color: #008080">RFile</span> rcall<span style="color: #990000">)</span>
+<span style="color: #FF0000">{</span>
+  RunR @rcall @result<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+<span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hi 2"</span><span style="color: #990000">);</span>
+<span style="color: #008080">RFile</span> rcalls<span style="color: #990000">[]</span> <span style="color: #990000">;</span>
+<span style="color: #008080">RFile</span> results<span style="color: #990000">[]</span> <span style="color: #990000">;</span>
+<span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"start"</span><span style="color: #990000">);</span>
+<span style="color: #008080">foreach</span> c<span style="color: #990000">,</span> i <span style="color: #008080">in</span> rcalls <span style="color: #FF0000">{</span>
+  <span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"c"</span><span style="color: #990000">,</span>i<span style="color: #990000">,</span>@c<span style="color: #990000">);</span>
+  <span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"r"</span><span style="color: #990000">,</span>i<span style="color: #990000">,</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>results<span style="color: #990000">[</span>i<span style="color: #990000">]));</span>
+  results<span style="color: #990000">[</span>i<span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">RunR</span></span><span style="color: #990000">(</span>c<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ ls calldir resdir
+calldir:
+rcall.1.Rdata  rcall.2.Rdata  rcall.3.Rdata  rcall.4.Rdata
+resdir:
+result.1.Rdata result.2.Rdata result.3.Rdata result.4.Rdata
+$</tt></pre>
+</div></div>
+<div class="paragraph"><p>Notes:</p></div>
+<div class="paragraph"><p>how the .'s match
+prefix and suffix dont span dirs
+intervening pattern must be digits
+these digits become the array indices
+explain how padding= arg works & helps (including padding=0)
+figure out and explain differences between simple_mapper and
+filesys_mapper
+FIXME: Use the "filesys_mapper" and its "location=" parameter to map the
+input data from /home/wilde/bigdata/*</p></div>
+<div class="paragraph"><p>Abbreviations for SingleFileMapper
+Notes:</p></div>
+<div class="paragraph"><p>within <> you can only have a literal string as in <"filename">, not an
+expression. Someday we will fix this to make <> accept a general expression.
+you can use @filenames( ) (note: plural) to pull off a list of filenames.</p></div>
+<div class="paragraph"><p>writeData()</p></div>
+<div class="paragraph"><p>example here</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ cat writedata.swift</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+
+<span style="color: #008080">file</span> f <span style="color: #990000"><</span><span style="color: #FF0000">"filea"</span><span style="color: #990000">>;</span>
+<span style="color: #008080">file</span> nf <span style="color: #990000"><</span><span style="color: #FF0000">"filenames"</span><span style="color: #990000">>;</span>
+nf <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">writeData</span></span><span style="color: #990000">(</span>@f<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>$ swift writedata.swift
+Swift svn swift-r3264 (swift modified locally) cog-r2730 (cog modified
+locally)
+RunID: 20100319-2002-s9vpo0pe
+Progress:
+Final status:
+$ cat filenames
+filea$</tt></pre>
+</div></div>
+<div class="paragraph"><p>StructuredRegexpMapper
+IN PROGRESS This mapper can be used to base the mapped filenames of an output
+array on the mapped filenames of an existing array. landuse outputfiles[]
+<structured_regexp_mapper; source=inputfiles,
+location="./output",match="(.)*tif", transform="\\1histogram">;</p></div>
+<div class="paragraph"><p>Use the undocumented "structured_regexp_mapper" to name the output
+filenames based on the input filenames:</p></div>
+<div class="paragraph"><p>For example:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>login2$ ls /home/wilde/bigdata/data/sample
+h11v04.histogram  h11v05.histogram  h12v04.histogram  h32v08.histogram
+h11v04.tif        h11v05.tif        h12v04.tif        h32v08.tif
+login2$
+
+login2$ cat regexp2.swift
+type tif;
+type mytype;
+
+tif  images[]<filesys_mapper;
+location="/home/wilde/bigdata/data/sample", prefix="h", suffix=".tif">;
+
+mytype of[] <structured_regexp_mapper; source=images, match="(h..v..)",
+transform="output/myfile.\\1.mytype">;
+
+foreach image, i in images {
+   trace(i, at filename(images));
+   trace(i, at filename(of[i]));
+}
+login2$
+
+login1$ swift regexp2.swift
+Swift svn swift-r3255 (swift modified locally) cog-r2723 (cog modified
+locally)
+
+RunID: 20100310-1105-4okarq08
+Progress:
+SwiftScript trace: 1, output/myfile.h11v04.mytype
+SwiftScript trace: 2, home/wilde/bigdata/data/sample/h11v05.tif
+SwiftScript trace: 3, home/wilde/bigdata/data/sample/h12v04.tif
+SwiftScript trace: 0, output/myfile.h32v08.mytype
+SwiftScript trace: 0, home/wilde/bigdata/data/sample/h32v08.tif
+SwiftScript trace: 3, output/myfile.h12v04.mytype
+SwiftScript trace: 1, home/wilde/bigdata/data/sample/h11v04.tif
+SwiftScript trace: 2, output/myfile.h11v05.mytype
+Final status:
+login1$</tt></pre>
+</div></div>
+</div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_coasters">Coasters</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Coasters were introduced in Swift v0.6 as an experimental feature. In many
+applications, Swift performance can be greatly enhanced by the use of CoG
+coasters. CoG coasters provide a low-overhead job submission and file transfer
+mechanism suited for the execution of short jobs (on the order of a few
+seconds). A detailed information on coasters can be found at <a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#coasters">http://www.ci.uchicago.edu/swift/guides/userguide.php#coasters</a>.</p></div>
+<div class="paragraph"><p>Following is a coasters setup case-study for a PBS underlying provider where sites.xml coaster settings were:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"coaster"</span> <span style="color: #009900">jobmanager</span><span style="color: #990000">=</span><span style="color: #FF0000">"local:pbs"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"project"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>CI-CCR000013<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+
+<span style="font-style: italic"><span style="color: #9A1900"><!-- Note that the following is going to be defunct in the new version (0.93+) and replaced by</span></span>
+<span style="font-style: italic"><span style="color: #9A1900">"ProviderAttributes" key and may not work in the future Swift versions--></span></span>
+
+<span style="font-style: italic"><span style="color: #9A1900"><!--<profile namespace="globus" key="ppn">24:cray:pack</profile>--></span></span>
+
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"providerAttributes"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>
+pbs.aprun
+pbs.mpp=true
+<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"workersPerNode"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>24<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"maxTime"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>100000<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"lowOverallocation"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>100<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"highOverallocation"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>100<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"slots"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>20<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"nodeGranularity"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>5<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"maxNodes"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>5<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"jobThrottle"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>20.00<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"initialScore"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>10000<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The following table briefly describes the elements on the coasters setup:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="70%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="23%" />
+<col width="76%" />
+<thead>
+<tr>
+<th align="center" valign="top">profile key </th>
+<th align="left" valign="top"> brief description</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="center" valign="top"><p class="table">slots</p></td>
+<td align="left" valign="top"><p class="table">How many maximum LRM jobs/worker blocks are allowed</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">workersPerNode</p></td>
+<td align="left" valign="top"><p class="table">How many coaster workers to run per execution node</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">nodeGranularity</p></td>
+<td align="left" valign="top"><p class="table">Each worker block uses a number of nodes that is a multiple of this number</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">lowOverallocation</p></td>
+<td align="left" valign="top"><p class="table">How many times larger than the job walltime should a block’s walltime be if all jobs are 1s long</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">highOverallocation</p></td>
+<td align="left" valign="top"><p class="table">How many times larger than the job walltime should a block’s walltime be if all jobs are infinitely long</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">workersPerNode</p></td>
+<td align="left" valign="top"><p class="table">How many coaster workers to run per execution node reserve How many seconds to reserve in a block’s walltime for starting/shutdown operations</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">maxnodes</p></td>
+<td align="left" valign="top"><p class="table">The maximum number of nodes allowed in a block</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">maxtime</p></td>
+<td align="left" valign="top"><p class="table">The maximum number of walltime allowed for a block coaster service</p></td>
+</tr>
+<tr>
+<td align="center" valign="top"><p class="table">jobThrottle</p></td>
+<td align="left" valign="top"><p class="table">the number of concurrent jobs allowed on a site</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="sect2">
+<h3 id="_for_advanced_users">For Advanced Users</h3>
+<div class="paragraph"><p>One of the main reason that one would initially deviate from coaster
+defaults into more complex pool entries is to force jobs to fit into some
+site-imposed constraint. For instance a typical submission to the experimental
+queue requires a user to request upto 3 nodes for under 1 hour. This setup
+could be achieved with a careful tuning of coaters parameters.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_coaster_providers_local_ssh_pbs">Coaster providers: local, ssh, pbs</h3>
+<div class="paragraph"><p>Settings and examples for different coaster providers mechanisms.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_swift_on_diverse_infrastructures">Swift on Diverse Infrastructures</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_beagle">Beagle</h3>
+<div class="paragraph"><p>Swift is now installed on Beagle as a module. Swift supports a Coasters based,
+computing environment for Beagle. A detailed Swift documentation is maintained
+[[<a href="http://www.ci.uchicago.edu/swift/docs/index.php]">here</a>]. To get started
+with Swift on Beagle follow the steps outlined below:</p></div>
+<div class="paragraph"><p><strong>step 1.</strong> Load the Swift module on Beagle as follows: <tt>module load swift</tt></p></div>
+<div class="paragraph"><p><strong>step 2.</strong> Create and change to a directory where your Swift related work will
+stay. (say, <tt>mkdir swift-lab</tt>, followed by, <tt>cd swift-lab</tt>)</p></div>
+<div class="paragraph"><p><strong>step 3.</strong> To get started with a simple example running <tt>/bin/cat</tt> to read an input file <tt>data.txt</tt> and write to an output file <tt>f.nnn.out</tt>, copy the folder at <tt>/home/ketan/labs/catsn</tt> to the above directory. (<tt>cp -r /home/ketan/catsn .</tt> followed by <tt>cd catsn</tt>).</p></div>
+<div class="paragraph"><p><strong>step 4.</strong>  In the sites file: <tt>beagle-coaster.xml</tt>, make the following two
+changes: <strong>1)</strong> change the path of <tt>workdirectory</tt> to your preferred location
+(say to <tt>/lustre/beagle/$USER/swift-lab/swift.workdir</tt>) and <strong>2)</strong> Change the
+project name to your project (<tt>CI-CCR000013</tt>) . The workdirectory will contain
+execution data related to each run, e.g. wrapper scripts, system information,
+inputs and outputs.</p></div>
+<div class="paragraph"><p><strong>step 5.</strong> Run the example using following commandline (also found in run.sh):
+<tt>swift -config cf -tc.file tc -sites.file beagle-coaster.xml catsn.swift -n=1</tt>
+. You can further change the value of <tt>-n</tt> to any arbitrary number to run that
+many number of concurrent <tt>cat</tt></p></div>
+<div class="paragraph"><p><strong>step 6.</strong> Check the output in the generated <tt>outdir</tt> directory (<tt>ls outdir</tt>)</p></div>
+<div class="paragraph"><p>Note: Running from sandbox node or requesting 1 hour walltime for upto 3 nodes
+will get fast prioritized execution. Good for small tests</p></div>
+</div>
+<div class="sect2">
+<h3 id="_pads">PADS</h3>
+<div class="paragraph"><p>Swift on PADS
+To execute your Swift script on the PADS cluster use this command:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>swift -tc.file tc -sites.file pbs.xml modis.swift</tt></pre>
+</div></div>
+<div class="paragraph"><p>where the contents of a simple pbs.xml sites file could be:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><config></span></span>
+  <span style="font-weight: bold"><span style="color: #0000FF"><pool</span></span> <span style="color: #009900">handle</span><span style="color: #990000">=</span><span style="color: #FF0000">"pbs"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"pbs"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"none"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"queue"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>fast<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"maxwalltime"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>00:05:00<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"initialScore"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>10000<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"jobThrottle"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>.10<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><filesystem</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"local"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><workdirectory</span></span> <span style="font-weight: bold"><span style="color: #0000FF">></span></span>/home/you/swiftwork<span style="font-weight: bold"><span style="color: #0000FF"></workdirectory></span></span>
+  <span style="font-weight: bold"><span style="color: #0000FF"></pool></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"></config></span></span></tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_osg">OSG</h3>
+<div class="paragraph"><p>This section describes how to get Swift running on the OSG Grid. We will use a
+manual coaster setup to get Swift running on OSG.</p></div>
+<div class="paragraph"><div class="title">Coaster setup on OSG</div><p>The following figure shows an abstract scheme for the manual coasters setup on
+OSG.</p></div>
+<div class="imageblock">
+<div class="content">
+<img src="figures/coaster_setup.png" alt="Coaster setup" />
+</div>
+</div>
+<div class="paragraph"><p>In the following steps, we will go through the process of manually setting</p></div>
+</div>
+<div class="sect2">
+<h3 id="_bionimbus">Bionimbus</h3>
+<div class="paragraph"><p>This section explains a step by step procedure on getting Swift running on the
+Bionimbus cloud. We will use the <em>manual</em> <em>coasters</em> configuration on the
+Bionimbus cloud.</p></div>
+<div class="paragraph"><p><strong>step1.</strong> Connect to the gateway (ssh gatewayx.lac.uic.edu)</p></div>
+<div class="paragraph"><p><strong>step2.</strong> Start a virtual machine (euca-run-instances -n 1 -t m1.small
+emi-17EB1170)</p></div>
+<div class="paragraph"><p><strong>step3.</strong> Start the coaster-service on gateway
+<tt>coaster-service -port 1984 -localport 35753 -nosec</tt></p></div>
+<div class="paragraph"><p><strong>step4.</strong> Start the Swift-script from the gateway using normal Swift commandline</p></div>
+<div class="paragraph"><p><tt>swift -config cf -tc.file tc -sites.file sites.xml yourscript.swift -aparam=999</tt></p></div>
+<div class="listingblock">
+<div class="title">cf</div>
+<div class="content">
+<pre><tt>wrapperlog.always.transfer=true
+sitedir.keep=true
+execution.retries=1
+lazy.errors=true
+status.mode=provider
+use.provider.staging=true
+provider.staging.pin.swiftfiles=false
+foreach.max.threads=100
+provenance.log=true</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="title">tc</div>
+<div class="content">
+<pre><tt>localhost modftdock /home/ketan/swift-labs/bionimbus-coaster-modftdock/app/modftdock.sh null null GLOBUS::maxwalltime="1:00:00"</tt></pre>
+</div></div>
+<div class="paragraph"><p>(See below for a sample sites.xml for this run)</p></div>
+<div class="paragraph"><p><strong>step5.</strong> Connect back to gateway from virtual machines using reverse ssh tunneling as follows:</p></div>
+<div class="paragraph"><div class="title">From the gateway prompt</div><p><tt>ssh -R *:5000:localhost:5000 <a href="mailto:root at 10.101.8.50">root at 10.101.8.50</a> sleep 999</tt></p></div>
+<div class="paragraph"><p>WHERE:
+*=network interface, should remain the same on all cases</p></div>
+<div class="paragraph"><p>localhost=the gateway host, should remain the same</p></div>
+<div class="paragraph"><p>5000(LEFT OF localhost)=the port number on localhost to listen to **THIS WILL
+vary depending upon which port you want to listen to</p></div>
+<div class="paragraph"><p>5000(RIGHT OF localhost)=the port on target host that you want to forward</p></div>
+<div class="paragraph"><p><a href="mailto:root at 10.101.8.50">root at 10.101.8.50</a>=the ip of the Virtual Machine on Bionimbus cloud, this will
+vary based on what ip you get for your Virtual Machine instance</p></div>
+<div class="paragraph"><p>#On anywhere as long as provide the correct callback uri: here the
+"http://140.221.9.110:42195" is the callback uri of previous ones</p></div>
+<div class="paragraph"><p><strong>step6.</strong> Start the worker from the virtual machine
+<tt>worker.pl <a href="http://localhost:42195">http://localhost:42195</a> tmp /tmp # where 42195 is the port where the
+coaster service is listening to the workers</tt></p></div>
+<div class="listingblock">
+<div class="title">sites.xml for the above run</div>
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><config></span></span>
+  <span style="font-weight: bold"><span style="color: #0000FF"><pool</span></span> <span style="color: #009900">handle</span><span style="color: #990000">=</span><span style="color: #FF0000">"localhost"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"coaster-persistent"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"http://localhost:1984"</span> <span style="color: #009900">jobmanager</span><span style="color: #990000">=</span><span style="color: #FF0000">"local:local"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"workerManager"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>passive<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"workersPerNode"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>4<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"maxTime"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>10000<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"lowOverAllocation"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>100<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"highOverAllocation"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>100<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"slots"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>100<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"nodeGranularity"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>1<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"maxNodes"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>10<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"jobThrottle"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>25.00<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"initialScore"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>10000<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"swift"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"stagingMethod"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>proxy<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><filesystem</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"local"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+    <span style="font-weight: bold"><span style="color: #0000FF"><workdirectory></span></span>/home/ketan/swift-labs/bionimbus-coaster-modftdock/swift.workdir<span style="font-weight: bold"><span style="color: #0000FF"></workdirectory></span></span>
+  <span style="font-weight: bold"><span style="color: #0000FF"></pool></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"></config></span></span></tt></pre></div></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_debugging_swift">Debugging Swift</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Swift errors are logged in several places:</p></div>
+<div class="olist arabic"><ol class="arabic">
+<li>
+<p>
+All text from standard output and standard error produced by running the
+swift command
+</p>
+</li>
+<li>
+<p>
+The .log file from this run. It will be named swiftscript.uniqueID.log
+where "swiftscript" is the name of your *.swift script source file, and
+uniqueID is a long unique id which starts with the date and time you ran the
+swift command.
+</p>
+</li>
+<li>
+<p>
+$HOME/.globus/coasters directory on remote machines on which you are
+running coasters
+</p>
+</li>
+<li>
+<p>
+$HOME/.globus/scripts directory on the host on which you run the Swift
+command, when swift is submitting to a local scheduler (Condor, PBS, SGE,
+Cobalt)
+</p>
+</li>
+<li>
+<p>
+$HOME/.globus/??? on remote systems that you access via Globus
+</p>
+</li>
+</ol></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_log_processing">Log Processing</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>To properly generate log plots, you must enable VDL/Karajan logging. Make sure
+log4.properties contains:</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>log4j.logger.swift=DEBUG
+log4j.logger.org.globus.cog.abstraction.coaster.service.job.manager.Cpu=DEBUG</tt></pre>
+</div></div>
+<div class="sect2">
+<h3 id="_make_a_basic_load_plot_from_coasters_cpu_log_lines">Make a basic load plot from Coasters Cpu log lines</h3>
+<div class="paragraph"><div class="title">Generate the log (may set log4j.logger.swift=INFO for this one)</div><p>(assuming the log is titled swift-run.log)</p></div>
+<div class="listingblock">
+<div class="title">Convert the log times to Unix time</div>
+<div class="content">
+<pre><tt>./iso-to-secs < swift-run.log > swift-run.time</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="title">Make the start time file (this contains the earliest timestamp)</div>
+<div class="content">
+<pre><tt>make LOG=swift-run.log start-time.tmp</tt></pre>
+</div></div>
+<div class="paragraph"><p>or</p></div>
+<div class="listingblock">
+<div class="content">
+<pre><tt>extract-start-time swift-run.log > start-time.tmp</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="title">Normalize the transition times</div>
+<div class="content">
+<pre><tt>./normalise-event-start-time < swift-run.time > swift-run.norm</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="title">Build up a load data file:</div>
+<div class="content">
+<pre><tt>./cpu-job-load.pl < swift-run.norm > load.data</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="title">Plot with the JFreeChart-based plotter in usertools/plotter:</div>
+<div class="content">
+<pre><tt>lines.zsh load.cfg load.eps load.data</tt></pre>
+</div></div>
+<div class="sect3">
+<h4 id="_make_a_basic_job_completion_plot_from_coasters_cpu_log_lines">Make a basic job completion plot from Coasters Cpu log lines</h4>
+<div class="listingblock">
+<div class="title">Same as above, but, build up a completed data file:</div>
+<div class="content">
+<pre><tt>./cpu-job-completed.pl < swift-run.norm > completed.data</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="title">Plot with the JFreeChart-based plotter in usertools/plotter:</div>
+<div class="content">
+<pre><tt>lines.zsh completed.cfg completed.eps completed.data</tt></pre>
+</div></div>
+</div>
+<div class="sect3">
+<h4 id="_make_a_basic_block_allocation_plot_from_coasters_block_log_lines">Make a basic Block allocation plot from Coasters Block log lines</h4>
+<div class="paragraph"><p>Same as above, but:</p></div>
+<div class="listingblock">
+<div class="title">Build up a block allocation data file:</div>
+<div class="content">
+<pre><tt>./block-level.pl < swift-run.norm > blocks.data</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="title">Plot with the JFreeChart-based plotter in usertools/plotter:</div>
+<div class="content">
+<pre><tt>lines.zsh blocks.{cfg,eps,data}</tt></pre>
+</div></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_problem_reporting">Problem Reporting</h3>
+<div class="paragraph"><p>When reporting problems to <a href="mailto:swift-user at ci.uchicago.edu">swift-user at ci.uchicago.edu</a>, please attach the
+following files and information:</p></div>
+<div class="olist arabic"><ol class="arabic">
+<li>
+<p>
+tc.data and sites.xml (or whatever you named these files)
+</p>
+</li>
+<li>
+<p>
+your .swift source file and any .swift files it imports
+</p>
+</li>
+<li>
+<p>
+any external mapper scripts called by your .swift script
+</p>
+</li>
+<li>
+<p>
+all text from standard output and standard error produced by running the
+swift command
+</p>
+</li>
+<li>
+<p>
+The .log file from this run. It will be named swiftscript.uniqueID.log
+</p>
+</li>
+<li>
+<p>
+where "swiftscript" is the name of your *.swift script source file, and
+uniqueID is a long unique id which starts with the date and time you ran the
+swift command.
+</p>
+</li>
+<li>
+<p>
+The swift command line you invoked
+</p>
+</li>
+<li>
+<p>
+Any swift.properties entries you over-rode ($HOME/.swift/swift.properties,
+-config.file argument properties file, any changes to etc/swift.proerties from
+your swift distribution)
+</p>
+</li>
+<li>
+<p>
+Which swift distribution you are running (release; svn revisions; other
+local changes you mave have made or included)
+</p>
+</li>
+</ol></div>
+</div>
+</div>
+</div>
+</div>
+<div id="footnotes"><hr /></div>
+<div id="footer">
+<div id="footer-text">
+Version 0.92<br />
+Last updated 2011-05-16 11:39:32 CDT
+</div>
+</div>
+</body>
+</html>

Added: trunk/docs/cookbook/cookbook-asciidoc.pdf
===================================================================
--- trunk/docs/cookbook/cookbook-asciidoc.pdf	                        (rev 0)
+++ trunk/docs/cookbook/cookbook-asciidoc.pdf	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,4267 @@
+%PDF-1.4
+5 0 obj
+<< /S /GoTo /D (section.1) >>
+endobj
+8 0 obj
+(Overview)
+endobj
+9 0 obj
+<< /S /GoTo /D (section.2) >>
+endobj
+12 0 obj
+(Swift Basics)
+endobj
+13 0 obj
+<< /S /GoTo /D (subsection.2.1) >>
+endobj
+16 0 obj
+(Installation)
+endobj
+17 0 obj
+<< /S /GoTo /D (subsubsection.2.1.1) >>
+endobj
+20 0 obj
+(Prerequisites)
+endobj
+21 0 obj
+<< /S /GoTo /D (subsection.2.2) >>
+endobj
+24 0 obj
+(Setting up to run Swift)
+endobj
+25 0 obj
+<< /S /GoTo /D (subsubsection.2.2.1) >>
+endobj
+28 0 obj
+(Environment Setup)
+endobj
+29 0 obj
+<< /S /GoTo /D (subsubsection.2.2.2) >>
+endobj
+32 0 obj
+(Setting transformation catalog)
+endobj
+33 0 obj
+<< /S /GoTo /D (subsubsection.2.2.3) >>
+endobj
+36 0 obj
+(Setting swift configuration)
+endobj
+37 0 obj
+<< /S /GoTo /D (subsubsection.2.2.4) >>
+endobj
+40 0 obj
+(Setting sites.xml)
+endobj
+41 0 obj
+<< /S /GoTo /D (subsection.2.3) >>
+endobj
+44 0 obj
+(First SwiftScript)
+endobj
+45 0 obj
+<< /S /GoTo /D (subsection.2.4) >>
+endobj
+48 0 obj
+(second SwiftScript)
+endobj
+49 0 obj
+<< /S /GoTo /D (subsection.2.5) >>
+endobj
+52 0 obj
+(Swift Commandline Options)
+endobj
+53 0 obj
+<< /S /GoTo /D (subsection.2.6) >>
+endobj
+56 0 obj
+(What if Swift hangs)
+endobj
+57 0 obj
+<< /S /GoTo /D (subsection.2.7) >>
+endobj
+60 0 obj
+(Resuming a stopped or crashed Swift Run)
+endobj
+61 0 obj
+<< /S /GoTo /D (subsection.2.8) >>
+endobj
+64 0 obj
+(Passing an array to swift?)
+endobj
+65 0 obj
+<< /S /GoTo /D (subsubsection.2.8.1) >>
+endobj
+68 0 obj
+(Mappers)
+endobj
+69 0 obj
+<< /S /GoTo /D (section.3) >>
+endobj
+72 0 obj
+(Coasters)
+endobj
+73 0 obj
+<< /S /GoTo /D (subsection.3.1) >>
+endobj
+76 0 obj
+(For Advanced Users)
+endobj
+77 0 obj
+<< /S /GoTo /D (subsection.3.2) >>
+endobj
+80 0 obj
+(Coaster providers: local, ssh, pbs)
+endobj
+81 0 obj
+<< /S /GoTo /D (section.4) >>
+endobj
+84 0 obj
+(Swift on Diverse Infrastructures)
+endobj
+85 0 obj
+<< /S /GoTo /D (subsection.4.1) >>
+endobj
+88 0 obj
+(Beagle)
+endobj
+89 0 obj
+<< /S /GoTo /D (subsection.4.2) >>
+endobj
+92 0 obj
+(PADS)
+endobj
+93 0 obj
+<< /S /GoTo /D (subsection.4.3) >>
+endobj
+96 0 obj
+(OSG)
+endobj
+97 0 obj
+<< /S /GoTo /D (subsection.4.4) >>
+endobj
+100 0 obj
+(Bionimbus)
+endobj
+101 0 obj
+<< /S /GoTo /D (section.5) >>
+endobj
+104 0 obj
+(Debugging Swift)
+endobj
+105 0 obj
+<< /S /GoTo /D (section.6) >>
+endobj
+108 0 obj
+(Log Processing)
+endobj
+109 0 obj
+<< /S /GoTo /D (subsection.6.1) >>
+endobj
+112 0 obj
+(Make a basic load plot from Coasters Cpu log lines)
+endobj
+113 0 obj
+<< /S /GoTo /D (subsubsection.6.1.1) >>
+endobj
+116 0 obj
+(Make a basic job completion plot from Coasters Cpu log lines)
+endobj
+117 0 obj
+<< /S /GoTo /D (subsubsection.6.1.2) >>
+endobj
+120 0 obj
+(Make a basic Block allocation plot from Coasters Block log lines)
+endobj
+121 0 obj
+<< /S /GoTo /D (subsection.6.2) >>
+endobj
+124 0 obj
+(Problem Reporting)
+endobj
+125 0 obj
+<< /S /GoTo /D [126 0 R  /FitH ] >>
+endobj
+128 0 obj <<
+/Length 277       
+/Filter /FlateDecode
+>>
+stream
+xÚ­QÁJCA¼ïWäØ^Lv“ì檨ЛôÝJ/ZZŠ–"ý}ó´Ï¶X<ÉÈnf’É,ÅaPCóìÐX±xÙ%‚MÔ1ÝêÎQ·}ºyPG·lЯÁ2Z%…F‹ç
+ýj1™¶ëi—•&wûýësÄtÙÏ‚ÊЂje Š7d¡3ºjþândºï”ŒBª3ÍmÐñžK‚U¨ž%ÂhÄpˆagØ%åH‹åñå-ÍÓÓ©ãXÍ‚1_¯î_
+Å8…NÝZ½pé:Ú¡V‰LH°U9¹•ª;gaTUoXñ¿j»ðëÜ7ñÒ™äO1űªIüaA¯V¯íq4ýÿììÎZŽó>›>†endstream
+endobj
+126 0 obj <<
+/Type /Page
+/Contents 128 0 R
+/Resources 127 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 140 0 R
+>> endobj
+129 0 obj <<
+/D [126 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+136 0 obj <<
+/D [126 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+127 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F52 139 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+143 0 obj <<
+/Length 2501      
+/Filter /FlateDecode
+>>
+stream
+xÚí\]sÛ6}÷¯à£5³Æâûc_vê¤é´³dcwúÐíƒ,ÓŽ6’¨RrÒý÷’ 
+ä…ª8Év–“IäXG¸÷žà^’"¶H!$’†šB”$¬X¬/pñhßûî‚8Ì•]ŨëÛ‹¿¾¸0ÈH*‹Û‡BR$…Æ
+1CUq{ÿËåÍÇåÃ~vE¾|QUïïìßÙ¯·?؏’BۏJÖ|”‰ˆÀ¬¸"!hûÙ岁^|{¨x&ÊÄÕ
+‘ß.~ù÷–öq£IñÑþ#Ê
+)Ö‚Ø™¤þ7«‹›‹FôïRŽ8ÖbÄY³dÈ´ BD3ÀK$ˆí4^T›}¹ÙïF'cýÅq¦›wêGy;…ßqPQ’Q
+dvE0Æ—¯?̾,ëæßËòã1%bçÂ4SGœŽÜPY*6˜\éc.#~Ê a{ªbü¸ª±M"U^ÏwËEB)ÒŒ“#RÇŽð¨,爙Ċ ɤ¥lá’3žq„‡_Åø4-“Q[G Vvþßovûùj5ß/«Mâfl )9btìÊ!\#Í…î3A³+a#2½|Ê7æ} É@¯O(Ε‰s:ÚHÚ»E4Ê•]k”nd¦aÝ’$…áHˆFŠœ!E°¦èPäR¢M
+j=ô¦.ëò·§ån¹/ÓµA)¤El#Í
+ÊP!Z"ŠÉL²~<ÄHò`ÓÑ2’‡Œr#5”zÉ«“÷j'J™Ì>àQè©ÛnÊý~¹yì6ŧm÷º¯º×úiÓýÐmœÇ	¡bÔÈ"&&„GexÃì9RõyN‚~¶|M(xQ"€ÁKGË$dôìµß7íAƒÀk¿¹4kÿ·›oNÇuµYÛc»Ó}¹·9q4Š™-),­Ø`2‹€Êð¢X#I±ê3›”û	/£R‡âIŒW:ZFêÑc©«¥.´%D(¥@^êÔI½·æïëùf÷PÕë®h·˜ÛÚ zL„ÏÂJñ"6Ÿ
+ߣ2,©`ÈúE÷yN>YÎ`r†£ŽÖÌcrž»r{H1ÊÀ§ö òrfCrÞJüEµùÆôñ©¬r)£Ha"‹ØzªfÊ¤L#õÍI¿çjŠI¤m0&éhmCFÏ^ªG˜KkÛƒ¼¶ù ¶›²ý¾^%'qC‘–$gð$îQNÛŠ˜kÝg5Éõ3ª
+[¤v0léhµCF‹Q}j1*˜D„p£Õ靹bôÕ²Þí£ŠófQ/·iÝ)q³$ë"¶•ªÝ£2”ˆ´5¹6¢Ïi’ëéRŽ&Ù(!ÀȦ£5‘eã	=»;cO¸ˆh’éÒT—Ü%Ä®´‡˜û|F(Œ°‘ªˆ
+´&*É(c¬OjÒògJ…Ñ€bå Ët´L@FÏßpsVËLxT—Âw(ãKÉëõ|s¿ZnÊÍÉ~—vh"¬ˆÍôgZL†%Òæ}r“˜Ÿõô…):¨t´ŒÐ!£g/ö\ÛÃ™V|@uB—Nè?¿›;/â¶{ûã»ùæqà’”-(¦Elw`Ýw¨½°î÷øMÒýÂë>ËC:À±LGƒÓ4zöºÏ%oîÉÕ¥ƒréð¶Ü=­Cí;w%ð¾ÚnKw"ªj×è©ç»wå}’3oŸÒ¦´Õ5Dzˆ©¥{ƒGef@¥FÌÙŸÂ$yHݐß#uƒ~OGküÎÇÕ
+=±çq3'û€êÔ­ºß̈¸œïv»Þû¼®çÿé_†m{šO›>)%Eóhú8T†nhúôøNRþŒ™ …-Ê0léhMØÄx&@FÏmßsª‘ 
+nߐ˃páõǹ]ÑëôlcgF
+fE<ú@—Ç¡2$B—§GcÒçWíò€‘2 Œl:Z&@£þ¶à+ÚÜÆ%ø©7¥r[NHj7ð¦Ô€êcÝM©/ªùn?” ØDZE<vš •¥àÝsPc÷¢2{”M¾œ¸Æøñ½0 Úù‡{Q_5{¡?Ì}sÿaFíÖ¸YøÝO»!ï([˜s®˜&¥Ce†Ò§ÇpJì/\ú€±<,p,ÓÑšXšÑ4zvéÃì‘S	©2	áQ]Bø›òÜ’ÐÉ[WM~|XÞÛ4øÛìŠ|¹ªóÕ_Üép÷Îý´½K;aÔÿ‹,
+Ö;•¡MA˜IÖç=éüÓ‚`h"Õƒ¡IG˨4zî6Șl.13x¨®jKžÍð·!½\¶¬tÏ®ì\Ë÷û̓-÷÷õÓbÿTψ¾,Ú¿v5W¤ˆÙô;P–³÷kLÚŒî›D[ÿú¶â	ËD„–	jöÍërþ¸*‡ža¡$á2ðK‹ÊP viàÓ>‡)Ÿ¿ÞC'.*Pð£E~:ZfQŒž¿•Ú«1BgrÄ£º¡¡Ïbèå7/oÒGÞÂFë"}à‘7‡Ê8dIÌbÒ÷ÿj–؝ÈH)ààT&øéhíÁx<M «g·#©fË\³= º4ñwÞ¼¾ù.ÍŽxóÐb<ð@†8TÆ>i–¡yŸÀ¤í¯ž§%
+¨C¢ÀHGË$
+hõìý„JÃ,“(Õ%Š¿#çzYm–ë»Å—OiS‚i„µbElbàÁY‡Ê0!œ ¦xŸÉ$ù¯—1£ÉE;J0Úéh¹ä ­ž[ÁQ¦ì¹+¸€êz­]÷²ìÒâñ1\Ô~nS„	eEl+͏ÊQ
+~‹9‘ѯhîûaÌœüµ1pˆG5Æ¥sÈ?*ç†7m¡Z-Êîz_²j»~	zD-Y5*Ç(ø#¦DèXÅJAË“WÏ?¾zTëP±þ8ßVó½kúwÍW1t?®ª¹kúnW•ë<ÔÕÚßþå:åÝÿ¶OþCÎÍÍ}ai3À؃·ÛD¢ÇÝ Ê̏a”àº?Áÿ¿Þ•èÔÃÒ;5mX²aé­ž{“(fO²ð#uãT]ÄuýïêÎ?“´Þ®ÊÓvÏ&sf™)JXM#qM Á“eÛ7ïM÷O©NÀ‘8!_$cå¤	˜<÷""|ìû—¼4=Èk“ž¨ÍëUµxïÞ\5þˆ:£gô©%âœÑ"žL*PÊÌÙnkˆu4ë?‰(!DªŽ–Ó%dõìRŠØ3—t_Ÿ<ª“fhÍÕÕݪt²z[n«z?t:RÉvǍl
+>ÛТ2”Â…Þ§©*úBzƒj¡XF9 Æ2­Íñ›\a«¡b"¸­»O¸`Hh)Ÿñè®#zkÿwjÅendstream
+endobj
+142 0 obj <<
+/Type /Page
+/Contents 143 0 R
+/Resources 141 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 140 0 R
+/Annots [ 145 0 R 149 0 R 150 0 R 151 0 R 152 0 R 153 0 R 154 0 R 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R 163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R 170 0 R 171 0 R 172 0 R 173 0 R 174 0 R 175 0 R 176 0 R 177 0 R ]
+>> endobj
+145 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 706.3558 113.3799 715.332]
+/Subtype /Link
+/A << /S /GoTo /D (section.1) >>
+>> endobj
+149 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 678.4604 123.8304 687.4366]
+/Subtype /Link
+/A << /S /GoTo /D (section.2) >>
+>> endobj
+150 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 660.5476 140.3783 669.3942]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.1) >>
+>> endobj
+151 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 640.5575 178.8938 651.4615]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.1.1) >>
+>> endobj
+152 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 622.6248 186.3259 633.5287]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.2) >>
+>> endobj
+153 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 604.692 204.239 615.596]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.1) >>
+>> endobj
+154 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 586.7593 248.0736 597.6632]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.2) >>
+>> endobj
+155 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 568.8265 233.6979 579.7305]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.3) >>
+>> endobj
+156 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 550.8938 193.8574 561.7977]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.2.4) >>
+>> endobj
+157 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 532.961 161.698 543.865]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.3) >>
+>> endobj
+158 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 515.0283 171.093 525.9322]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.4) >>
+>> endobj
+159 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 497.0955 210.1262 507.9995]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.5) >>
+>> endobj
+160 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 479.1628 175.5165 490.0667]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.6) >>
+>> endobj
+161 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 461.23 263.2368 472.134]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.7) >>
+>> endobj
+162 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 443.2973 197.7727 454.2012]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.2.8) >>
+>> endobj
+163 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 425.3645 162.2866 436.2685]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.2.8.1) >>
+>> endobj
+164 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 399.5065 109.7037 408.4827]
+/Subtype /Link
+/A << /S /GoTo /D (section.3) >>
+>> endobj
+165 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 381.4741 177.0411 390.4403]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.1) >>
+>> endobj
+166 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 361.6036 227.7101 372.5076]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.2) >>
+>> endobj
+167 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 335.7456 209.7673 344.7218]
+/Subtype /Link
+/A << /S /GoTo /D (section.4) >>
+>> endobj
+168 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 315.7755 123.2131 326.6794]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.1) >>
+>> endobj
+169 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 299.9 120.0951 308.7467]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+170 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 281.9673 115.4724 290.8139]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.3) >>
+>> endobj
+171 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 264.0345 139.0835 272.8812]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.4) >>
+>> endobj
+172 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 234.2163 143.0086 245.0954]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+173 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 206.3209 136.9314 217.2]
+/Subtype /Link
+/A << /S /GoTo /D (section.6) >>
+>> endobj
+174 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 188.2537 299.9385 199.1576]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.1) >>
+>> endobj
+175 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 170.3209 374.7175 181.2249]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.1) >>
+>> endobj
+176 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 152.3882 387.4395 163.2921]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.6.1.2) >>
+>> endobj
+177 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 134.4554 171.6511 145.3594]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.6.2) >>
+>> endobj
+144 0 obj <<
+/D [142 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+141 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F52 139 0 R /F57 148 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+181 0 obj <<
+/Length 4471      
+/Filter /FlateDecode
+>>
+stream
+xÚí]ùoä¶þÝÅ ] 3H†KR%(Ð͹»íæ²Ñ HŠ@öȶºãÑDš±×ýëûxŠ%R»vš 0‚ìèxzß{<?ž&ÿ‘EÂËi¾ÈH‚RF¢ÅÅÍ	^\Á»¯Nˆ’Yk¡µ-õéÙÉó/¼ÈQÎ([œ].E,ÅÉ"Ã)Šrš.Î6?.OïªËÃjM¼ü¬®ßžÃÿ«Ÿ½†OÉ"ƒOYÄ?Ó ²Åš”'	Ÿø,Í–Ïå‰øw'_œ»´YiNP”ÐŒ[õËɏÿÆ‹
+øðú£8ÏÈân0¢qN7'	ËˆQýd{rzò]§Q¿¥1Šq–Œ§†Z³”$™?ÍÒ˜¡„$I—ftA(Ê	I¸çÆ	-&=¸š2”fYØÊH-‚t”qÈonËfµ&xy[•+’,ïT.Ù¼¦áƒç4C˜0™Ãg×UYÄÈòBg0Üa¸ãznù?e£$nW4YMUÕƒ¦¼¨ö¥º©v«s¼¬··ÕîJ*jËÃAݐåq/‹ÝF¾mŽ»y«KÜm¸GürSqXmI©ÍÛý„1½:6Å¡ªwÊ„ó¢-7ò²ÞIÁÃu© ÷ûmuQ¬yÊ@Š«²JD"p s~9VMySî\'8$M…WR<¶mï¥Ù1wü²)ÚCs¼8›²E«u„SHX%®½Éö¾=”7òñE}³oªV¤¼ª/-éÓ‹¦Ú«o¶ÅîêX\•òNY£ýŠ»D‹Ebª›²ï¡¬™›…äKž–u#ëuµ;4õl¯›{ùä¦8”MUl?–·Ôíq«¢€„M°GøäåÝe
+é3¬¥(¡PQX£$ÓuS¾~»ÐW廙ùbmâ†-W3w÷ºlJdž(GŒ@߆A54R!\GÇESQŽ%)ÂQˆ6¶”'Ú1I§¢ÒD› ¤£Ìn ®Z´ÕE;é5eã<xmI0J“œõ¼ÖbÂkäDÙŒò¨Oü Z(ê(ã ¯ví¡ØnEÄ
+°Ð¾’„ØÅÇV€"‘ðB~s(Þ® *–â]²¼¯êùuS¯®õM)/*Y|ÀãEODeŠ Ra†_ky häxŽPÃWIå²![þ°ÊÀ)xWm·JÍ¡h”Æ»êÐ7)Yî›R˶:”ÊÁ¢=¢Az·ßÕNgsѤ=ž· ¢®º—I5Y†‰ò@u²¥tw¬ÅÑ¥ÊÕHÉJóC
+‰ ^_û¶—„²@¥½_ã”良>»./ÞÊ6íž·Œ"c)£Ë×<¡ÕXBÃ5RDÓj1ËÁh»óÆ»•:
+yûºà͸lïÕÙ|Ê\YGq¼|£J°|ßBÓ§ŒâEY|¢ŸX<uTÓ´ËFDÕ„+¿®««kS\9ò¿V€5ÌE±“ò7!ƒ®4‡%u­Ó£W`ZåUV"~õìÛUN—/À²<{)Ÿý„¬[Õg/¿yóÅsÔÖº‘äle«Jû¦Ü—»L¸=îkG)ÉTÕÔ;ÎE at 51u‹¡<M%{“-ùv[scïŒF™òvÛ×m[kîDù¸o•P­Í:@µSvªªBÞÉ;U>qêe„R“Pvh/rQG Ay5á?_qüœ!J¢lÍK–e‹¦\\Zä]½Ä´=B”&òÓÔÕïôüj€*#–䣆ÊOÆÕCòƒ‚,UQ kW—¿{.©wöï¥Ûø2ªÝ¼ý`ý`ûdc
+‚ÍÕB^|?£¡‡I»˜™c3c;F)^èŸ
+Kt]q
+=H[×вEižíb)ŠèüìÒb=»®šrï4ðMJéc˜<úÉ$dšë™öŸâ¶še)aa¡Q荆Œ3rýåÁÒ1/ÎIpî5om¤BÀŽ6üÜ!$o&Ê´ãZ>„/å%F4C2ŒâÓ€ßÀKShÜD$Õ÷)’=r$c@›HÊKäQIì	QRJfìŸ?rb”ŽZln²ä=qÈ«ì&õà‡,V	@]t=D4qhžÃ]tób;ZE5:îÜàÆÇIêwØHP»PÙËd*%‹H<×g#‚wôrø¯ªÛ²uãW„’g^¿EPÏÂA½‹m~óLl³Íã¬{h\š àÈQظ-Ž“!ãL8µ{=RE(†>@œŠŒ‘
+àR>ŒNóA‘I&‰3D’8!Mß7¦óÃlú!aüCô?‚í¾0n%±'Œk)ž]M2M;»<Q\‰°­“Q*wN£ü0Š+¡ ¨‹û k‚ÂÓLqžÛF>`‚«—Ûð3væŠH)Dõ;n¤B°R.¸î‚ò‰0Bf{­åƒðBŽöáÇÚ0˽^k©¬£mÜkC€gzÝ5xÝHØð3ÖFà5ƒpJŽW{(ý}Š›Ö‘‡¦Ð’ù£«òwã;MîÅûŒ2äÙ2ê¸ž¤²6,ÏQÑ€]JÈ6k´ÿnúÒÓfñ”Hâ4~ª'ÿ~§ð1
+Õ -%Æ&«€¥k¿ðb;Z§Æ¿èÁOò/¨á^‡M_ržÃ]Տ=Ô:=¦»‰>­n¢VÉ
+z‚SÅ¥)™ë¸Y0Ô*!Ó­¼×ï®m÷£š¶½ç·Û´Çˆæ8™í³–ÁK96(ß#„Êô½^w=K?¬£mÜëHîü|–ÒAh.…ù<B¦r†¾2Ëï°–
+¡:ÚF«t׏žç²Õ£ö»z9üyåd3%ÂYcF*+åBŒò)Zˆð³½Öò!x)…cc99Èl`
+YÌžÁï‡9GEŸŸ8h)?w¶t=˜<{í2ìÙ¶Ë;ôì1Íjؽ †‰Û îг"Ð=À0'÷#trà[µharàÀëq„TÖ§jø»©†*‹£@5ÔRSÅ=…Îá¼×R÷5±cÚ^ÓÓ¶M›*›¦Óè1ÏžÎõ"w6ôŸÆ	¯¡œ=ä9K~ù´mã¼föÁ뺖
+Á:Ú„ë“ãû„¯IOâ§jþ›Ws+'<Õ\KMÍ™jng¬³ÊV	@¥XÒå«É&ûç=ÐñÃoâ‡
+öfrÌçq7ë…tt)ÝJ‹DïRÏsÙÈPrƒŒ>ýbzêÃãõû/’ñÛfb´mÛ÷Ýâþñ°úvn¿¦ÃmøÅÎ,WœîùÊŽÕ%òÂSš¡Œoÿ	ց¡vmôÉ”x¨UôCÕÖÙö@Az[¿µT—AÿgQx´±¥9$%†@:×s-2ÁÑ;ÑØF8çÏ‘ßs#€uµò~`"(§)ëµ‘Á;zEŽ»ó”QDf,x­¥B°Ž¶©(iX†ì‰YòÄ2~s–a儇eh© Ë°3ö¡	¯i†ئ½¬§ûú0Ý™ð˜g7{^dWÛTXïº=Ü9ë¬õŽ3¡®ƒïõ»[àG5ë~“Õša¼d±g$}ft
+»ßÓ°Û¦|Zy©†
+æŒefzÈÛošò¶M;-¾óur øáÕÆ"%^ûºqZÛ¾¾™¤$¾¢Ó?&߃Ž†kL76<¯ÀùR.ë[0Î…R‚@2PiŒT8MeÙ 8h0]V€cDX:;Zù€	®^á;aîæWŒ"¾Ë빑
+Á:Ú8ìÇÓTd¦×)ñÃK¹A™»©Þ•î¦ß$åŸÑǨ†‹P³pêh¹¾yõÆÝœÅ(c	䊖
+áJ¹t$ˆOpµ(OI½Rø›¤ô9
+}DH?C€Ä/)ðuÜgX.GŠø‘}¿FLîϤãû~¶¶‰m¿AÈ¡*ÙÄèóÒLž_ ¿bËüÊÝqp!·RNî	&£{‚q´Ô¿mu³ß–hµŽSÜmÇ…j;.Ž—çêɱæðËBþì›rÍwõV[¾Á–Ëö¶Tr±]~õ.a¸<\)-vPòGb#÷î¶u±‘*£åeSß“>ŽˆÂ<Å %‚+
+në7_¬íOÜíõ®æ©mý1㙵°oà ©®£Mnëùò¹•,*vêâ¸;LM¾çRl.….ä}”ôϚ؇²U»,!ãº|ãú[aù>ÌVŸª 7y¶“›/# =”1ö+ï¾Ìg÷%{ê¤þ֝Ôà“<4n¤¼϶®‡N<ûíÒb=»xí›,ËÌì´ß2-Ö³ìÝåÄôtЮ]'3Úí7ÌŒv÷,ku›5ºÔÞgžµÔ> ¬—Ú÷€×P‚ùA“3t}ìi÷Í\]À
+GïD‘á‹cH–ççµT–Ë
+ÒM.Ñšë³Y¬rø«ÿº«µÔ>%¿ËÐÆ0šðSqMÇÿ´5åGjQ?må]Ô4#Īˆ‘R¬uôT‘„ïo°õ,"„¨Ž.9!£ÎGrɉIVËÃq?JVÅy#C®ÊHsuŽKÁy*'%@QïÊF½ã”Fp¸–gÅð«ÁAِ߀Ÿ½ Ú”göq"ð\ÞWòôøvSË»ú /ŠmS›{yÓ;ÛCÈ›SŠry~‡ÔÕÈ«ÞñH~ðêÒF„‹M͏ÀÊÒeSÞXÇ¡)‡ÇŽÓ€8ŸˆC5ø:e룶;AKô7ëÙ¶Ú•šüqê=<€dxÀÈàä‘ó¢½þyßÔö¹#òZùª8榞¤”jDŒÓü‰R>QÊY”’NnX꧔FJœ‚ôâìåÔ¼‡­nzu…T¯®èþuŠ-öó)~l=›ÒÃ~6æ±Ùcàu¹Û‰àÇ5;zÀŸ<ŸœÁ™év7—Àwôrü}q¸žÚáw[ï~ u®Ô6GÌõÙ1Bê,³ž\±áwÙ, êåo§õÐ\§ÍŒQ ^ÏõàÇ{š6ûý6ä: ,ÉuÀkM–çzmÈu\‘ëüèV(‘8OBy#Ìç÷ÿÀìÚj"p†â(eãpZŒä1ŠãL¦ì×õS˜<Qƒ–òJ=•&ÊaS~u.Äâ妺äDô8«’®Ô˜*¿Ô´.ïÊÅa‡çœ_«­z·©ÚCSɇêøXxÊçÞĐ\ç”Ó¹â±8Y;ÐwoùÈb+’
+‡ÇÊÁ£V³õáÁŠw†Áióùɉƒìh£€²Ž~«[5àx^¾ÿ8#I¡{%O¤ð‰Î#…„ñ¹û8pÆ›‘
+‘B[Ý4)ôƒjR؝$…}Ä0)ôckRØÃö“B¯Ë)ôãRØöÂ™nw¤0€ïè
+‘B¿ÛšP‡ºü¤p®Ï††Ð‡z¤Ðï²!…TM
+Nk’7×iC
+ðšöàý¤Ðï·!…`I
+^k’7×kC
+CàŠöà9O˜\ŸäuºÛ êÇ5Týn›…L3Ýî>àõ§pfÁ@Ë…ÜH…€m£‹‚i’ èÊl¿µ|~¨Wø}»›\øä÷Ú,|
+ÀJ9Êm¹>j¶ÓJ<®V]õÀÇú=z¸ßç:E8bè~OÄÙ
+_yÉø¹F¬Ç³²ÐYŒ“(ZDüO±dÔý‹(QåMþE’CÕ¼9á.g9t¦Ô“þ_Dát‡L˜¶ø…KA[˜È`]¤î+ñàù«²ø¼u‹ï¬IÚ„Û(ö­‚µQœOḦB–Èƈ,)?ðžZшÃÀÝ?#3èÞ|ÎÇûiºüúþÕ™¼Î¿È–§?¼úòìgqp¬x!†¿á÷³¼8=ývE _öBü+ºQðBÌÀ‡÷b6ä¨Ä¡EûGxxÜm˶•×J\Þ\·Û{©Füö {sð꺖wEÜ@ßTü¡¸TQø¢¸¼\Ex)Ø†7¢£ù—ﳍ›ÂïäÇÑÃðeVd‹jQ,×4=¬¸@1N™8K7âó`ùxa‡w™ìU=ÒŸëYw5Úÿ þ	endstream
+endobj
+180 0 obj <<
+/Type /Page
+/Contents 181 0 R
+/Resources 179 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 140 0 R
+/Annots [ 184 0 R 202 0 R ]
+>> endobj
+178 0 obj <<
+/Type /XObject
+/Subtype /Form
+/FormType 1
+/PTEX.FileName (/autonfs/home/davidk/dblatex-0.3/latex/graphics/warning.pdf)
+/PTEX.PageNumber 1
+/PTEX.InfoDict 210 0 R 
+/Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000]
+/BBox [0.00000000 0.00000000 160.00000000 183.00000000]
+/Resources <<
+/ProcSet [ /PDF ]
+/ExtGState <<
+/R7 211 0 R
+>>>>
+/Length 212 0 R
+/Filter /FlateDecode
+>>
+stream
+xœÝR;N1í}
+×ÆùÙÉ	¶f÷,ÅlÁRp}ìL2Ä@™‘_^òžm9oȐ}ÍØoðxV¼¾C¦‚0Îð|‚ûrf"ïÏp€¾îWÆþ~üòð+}™¦¦ª‰©rÀ<ãí`’
+)¡ÖB"SbTû=vÍ”R;‰Bk‡bí—§Ý^LÊÒp©K
+$‡ïÂVÆÅ5NõÏš»÷ù?yµÙ('YckဘEÖ}+>Ì"´MÕ«3¨\ý¶!Ñ4K)ö~ÜУÕVvfmî³ó5~é»[G#Å6ážy	GIî7À˜ÆŸïÁñŸ›²)endstream
+endobj
+210 0 obj
+<<
+/Producer (GPL Ghostscript SVN PRE-RELEASE 8.61)
+/CreationDate (D:20100125210321Z)
+/ModDate (D:20100125210321Z)
+>>
+endobj
+211 0 obj
+<<
+/Type /ExtGState
+/OPM 1
+>>
+endobj
+212 0 obj
+252
+endobj
+184 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [321.5267 691.4354 340.6647 702.3393]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/tutorial.php)>>
+>> endobj
+202 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [444.2645 336.0762 463.4026 346.9802]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/downloads/index.php)>>
+>> endobj
+182 0 obj <<
+/D [180 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+6 0 obj <<
+/D [180 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+183 0 obj <<
+/D [180 0 R /XYZ 56.6929 731.2722 null]
+>> endobj
+10 0 obj <<
+/D [180 0 R /XYZ 56.6929 677.8333 null]
+>> endobj
+185 0 obj <<
+/D [180 0 R /XYZ 56.6929 641.7915 null]
+>> endobj
+14 0 obj <<
+/D [180 0 R /XYZ 56.6929 641.7915 null]
+>> endobj
+186 0 obj <<
+/D [180 0 R /XYZ 56.6929 615.3924 null]
+>> endobj
+18 0 obj <<
+/D [180 0 R /XYZ 56.6929 574.9607 null]
+>> endobj
+187 0 obj <<
+/D [180 0 R /XYZ 56.6929 550.1206 null]
+>> endobj
+188 0 obj <<
+/D [180 0 R /XYZ 56.6929 500.6172 null]
+>> endobj
+189 0 obj <<
+/D [180 0 R /XYZ 56.6929 502.0767 null]
+>> endobj
+193 0 obj <<
+/D [180 0 R /XYZ 56.6929 491.1178 null]
+>> endobj
+194 0 obj <<
+/D [180 0 R /XYZ 56.6929 480.1588 null]
+>> endobj
+195 0 obj <<
+/D [180 0 R /XYZ 56.6929 469.1999 null]
+>> endobj
+196 0 obj <<
+/D [180 0 R /XYZ 56.6929 458.241 null]
+>> endobj
+197 0 obj <<
+/D [180 0 R /XYZ 56.6929 447.2821 null]
+>> endobj
+198 0 obj <<
+/D [180 0 R /XYZ 56.6929 436.3232 null]
+>> endobj
+199 0 obj <<
+/D [180 0 R /XYZ 56.6929 425.3643 null]
+>> endobj
+200 0 obj <<
+/D [180 0 R /XYZ 56.6929 414.4054 null]
+>> endobj
+22 0 obj <<
+/D [180 0 R /XYZ 56.6929 378.6212 null]
+>> endobj
+201 0 obj <<
+/D [180 0 R /XYZ 56.6929 352.0227 null]
+>> endobj
+203 0 obj <<
+/D [180 0 R /XYZ 56.6929 320.0948 null]
+>> endobj
+204 0 obj <<
+/D [180 0 R /XYZ 56.6929 321.5543 null]
+>> endobj
+26 0 obj <<
+/D [180 0 R /XYZ 56.6929 285.77 null]
+>> endobj
+205 0 obj <<
+/D [180 0 R /XYZ 56.6929 261.7619 null]
+>> endobj
+206 0 obj <<
+/D [180 0 R /XYZ 56.6929 229.2362 null]
+>> endobj
+207 0 obj <<
+/D [180 0 R /XYZ 56.6929 230.6956 null]
+>> endobj
+208 0 obj <<
+/D [180 0 R /XYZ 56.6929 175.3142 null]
+>> endobj
+209 0 obj <<
+/D [180 0 R /XYZ 56.6929 176.7737 null]
+>> endobj
+179 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F52 139 0 R /F57 148 0 R /F90 192 0 R >>
+/XObject << /Im1 178 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+215 0 obj <<
+/Length 4909      
+/Filter /FlateDecode
+>>
+stream
+xÚí]moä¶þî_±¸~±,ÍW‰:4š6
+’^S´ç ’|ÐíÊgõvW­Çýõ%ÅQ¢HÊî]ïÐn’Öòîhž’3r†4ZAñ/Z±d.V1gˆ¬6û¸z+¾ûúišµ!Z»T_Þ\\ÿ‘ÁUŠg«›ÛU†A–C¶â0¤ÀùêfûÃåë‡ú¶»Zc/ß4ïÞˆÿ]ýtó­x­¸x5#òUšç‚¯Ö‚1Ü¿ŠÅk9¿¼V?‘ï]|ucå2bå„a.¥úù⇟àj+tøöZp´z¿@€iVû†Ä#É°ùdwñúâ¯Gó-¦€Bέ‘‹RÍaÅ£@©æ¸¹âð²QíQ]!vù«ü¿jsßUêÃÇæ¾UON˝6m}ÔÏÍAý,Տ]ó¶ÖŸÜ5'Mó#d°Ñl^ìšM¹“ß½#õáýIÃuwúá¶Ùíš+Ì.êÃ[õѦÙïËÃö¥×îä"¡ˆ Ô·’è6ÙPòÇײÁE[f #ÂWœóU[­n†Ö_Âù&F`ÌÌ«¯¿âlÖ‚,ËæÄT/Ì3‡«µxç¹â
+4HÒñb¬þÎ}áI¼­&³Üí·Ïæÿd6/4 pÕ¾]©‡¿Í¹œ@YQX{) òtd/†JÚË©7‚É ä°“•ËÏ“Î%P¹xÌ1£®§ˆ•Mƒò¶ÇUbw›)¸p !ÄãúZª¨¦›´3ð@‘tŸ(_ª²¥OÁ+:>†¿­w•'Á "„£j3 at rñMj""§$”ìM‡“]B9@ïE6áOéŽ3tciö•ž&2b9
+ã"‹K•@÷¹ÍŒ°˜„¿X8l,}
+Þãô˜ ƒ¼H˜g €T´º˜‰òŒ}¸Iþó—	G†ypB¥üEÎIàKœHò,ÖeE.FsæÄ1؉Í™¥êc3 þõü2.·p(gý²&J z¼ú`²ê:žˆ€°kËÃéö
+‹¨Ý—]ÝFâóMÙ•"*ÒQ¦‘­±à…‹ÂX˜fNUDf" ÅÏá%C ÍK…Zõ©;©Ç‡»ªÕ¯•Çã®Þ8ïŒÃºòÍ®Ò/•æ‘uÕvϵվ1Aà©îªSo[²E”YPªâÇ/E/·Õí,ïwÝgWk‘Žä
+õ²z¤¿ÔRŠ]žº¦í±ågõ³ê6×Ýl=¸ZS‚D«(zxy,»;õæ¦Ôäo4ÿF*ùK¯iÛÖÛm¥¿¨Í+V(ÁýGñÎHÖä¯oï[Óp‚øØ6Ǫí¯2vÙ+%œªÖ
+kÄY$Ø Ö	—}î}L¬áe›·ã¶·LtÈkúûPÍvÂÍ4ËÑ¢žë“áY
+¯«§cÕ††Æ„@öÝgzˆ©FÔ’W»­æªŽe;Ÿ7Z…òÍi¬ÜéXn£èµ˜4\‰ÊýшRº¶®NÁ ?ó DìóŸcþE1¿pâ€PÂ#1?YY"98íz5»<§
+msVðtÔ%ìç(KIhéF2V›»ÆWuŒωD¸L<#1Yp¯=ÐŒáÙ4¬¶¡OÁ+º‰Úo”	ÀE<O Nhm¨R°·y­EtÀÑbuZRA”îh
+ÇTÝœ±%Ç!¦TšbžOÓñ±xß|÷úæw¯^}õOÆBľ0Ïß‹Œ„  ³Œ§dÔtÅTÆ›¯^/X$9Ž7âÚ¥€§¼$îKoË1 at 9Ë—KŸ‚Wt“¾yõÍwßÿc*… œ¡÷âÃ(±1¥I/«èØX¼ÃýnçIG¸˜4)Mt
+C1ƒ¤Ÿcû©å<Ë~ìY–s1¬hbgÍRõAì×ßÿ~Úÿ9¦+—ݼÓÀO™`£Â
+¬+]×Üoîü]òEÅ[¢¬_]ØÈü:Â\2¿ÆáíüêÂߟÚðüUz˜_ã°·èüºPg3¿& ÍüêBÏDŠå-ò¸Æ–*ës›Õx˜Ó—é<l›¥à§|ƒ£1$\+
+ÎùS¢Š¸x6ªpÅ[U$Ä“¢Š¨ŒCT1–1UÄÆÎUā§¼RQŲ¡ãDqxU¸ø‰¨"¢öÂíhŠû¡	é4ÙÄœ¿~õ—/¿í‰'F¤”Ä{ÅR¥Mõep¹e±°_,}
+ßã+ñ÷å¯ån×ÕûJí<ØyGx{ƸœÐ%폐BM”9D9 9Ö$ëÐþË>ol¼ï‹
+׆‹ÁµN¾ÎE…¸œ_‡ö÷‡†¢"¶“dO~þ—â?_„û‰ø¼øŸÌA81j&V!Y¼V‚	ÛÂp²1?Þÿ,Ûê¥6îŸ@ 9ÕÖÓoûûÿ¢18ÉsMôÙ9"¢	ºVnŽºIõ¡ÜÏ1"F0^ʸ’I‹_Íðºßa÷™fb®%ˆ¥˜ëéHÉ)»ûÓS1ÒŠŒó¥L‚ŸÔ~†“ˆV†'Õ9‡íKŒ€œÇ4ËöŠ²ËFoÇû|1Q£¶ÞŽV»ØkRˆ/‘LÓíxT¬yŽYbDˆyÛa£šÞ>¿kîÍó¦iÛêtlLf kF58:ã"žúña“Ef¾ž¦úüÎ(ÃdŠà3ô{ÂXÍÄØôÆ-»X†lÐøþ4Õ·t23¯¦òxÔy¶ÙTÛûV§YúyºþMJpÅÖN]ÝOÇjSß>zÙ=«û±l»zs¿+©“šÍñuw&[$G€Vš™ˆÎŸ®óB‹§2	nÞ™7Pa<ÏòF/bc{™¦7M7Œpµ#ZfnmƒîíðR ¹+	f Ësã)åJ䪀—v527
+1¥äÙT¹1Ë‘rzÝðò¥
+¤§ö’ûóŠ\DµéjY§2»>?©ûN¬¥E,:8$ë<®l{Æ
+ÎõÁ ³×ÄÉ0pÅsŸ‹•Ÿõ
+,z«?ûý½þ©¾ÕŸèo„ÕÙd¨øU»Xõ‹êDÉæ
+]6i#½ [éî¬R6Í¡+{À±6Ÿ¦›Ñ”pªmL&‡tº)›­öõ¦Ù5‡•ƒRYöQð"¸TášKejH¨æ!Šjkâ¨/¯æá$‡ NtËR‡I¢{aÉß˃ä#½%3ÙrJL.^õQO¤:˜êá@͈£T˜¹’O|¦ú[<˜l|ˆ¿Ò9@~ùwY«_|¨ûaK‰v#=§ÎÀâìÕSiÈëƒùª>7Pƒœ*¯ÂŒÑˆ°5ë³ë¬öJ}ýnežþäóÆÚ}e&žõ8Ëvï§oÔêjâ±Ášã®·¤Ž1SÝ}k*¶•°ÌÝI»äoì¤TÛÒ‚Í0±?T¦¡oá>>÷ƒ 
+Éâ‹¡°ÁN®{[¹ü¦<Õè!B'R é¬ù¹áÿ4O’‰¡òBæ¤`fñˆ¥’fñ›é¨ëSÊp¾ryEö‹yÛã*±çe^°Xš
+cÏlॳ‚&‰“K‘±±\²þIÌÍ~1°ÎÑÄÄ[gXcìœüdÒ‚D+–¡<Z|c‰ä xhÅâ¬juýälA¸ËÔODÙ2ð8¶Ï-P…nÞtAÒ1?åÛ¯våã)XëWÜP¥=nóŠ›b壘Û"ò¼ÇWíÈ…}å'‹LÆà<¡º¡Ja{ÜúýÑ`þo¡êC&0ïóUªß{1Æ"þ”P[L>}äìï>—!A/6´Df_p[·¡ó>.CO<{Ê'ëñš5x°çO ÃŒu
+yÂS¿«ª£gæÌÄš"ª®¥J úÜfÍaÑÑ¥*[ú$ü”oÈÌWœèeJe–úl埊•3±˜¢¤ˆ[¹!êw‡ûa½C2[RìòŒ­‹CÛ£u#ððѺ1è‚£u	xs´nßVj«-8ø£šQMÚãÖÛ<
+.Üå-ÎζôÑmièˆÈ²YõÕùå¿Ceƒn¯z	t»*!ÚE©ƒBÇGpAUí9à(°¢¢#àªm›ö^’D´uÖ!1TW`¦4ê"…y:Š=åž&UAeL_^¨­ó$ùÉ6î‹×P²
+UÛâÈÚôy—¡ßÿš(ëñš…MÀ<BL¶c{\ûª­f[…
+<¦±cáQXŸ[ÂÆ—)íyÞã«’Í/õvf½oª—ªCÀ¸à¶öOÆÚQò,Ç	k7TªÖ¼šß„f+—›?‘k¢¦ÝÐv1A0r!.ØÚŽc›(ÂÅŽyk!1­{‹BûÜæ— v‘ºLqgñ›€ŸòÕŽý­LÑ­=ª¹=ѐ€6'Fо£Ë
+yKÔrÍ
+}¾P·Oàgã™4äE‘P›äªúúìä>'3À!'ñu¿!ŠÙ|¿1&×éGãG%pÍ&›‹Âû#Äð¨v¢àÃŽƒ²wÈÇ´¶Ç§ÀS^ójÛm…jÛ
+	ô)ß¾·gN'[ÕypqqXëââZ[·PëÁÅ%à‹u¶¬´‘÷'ÂiŒ˜ò–*îs›Ïވȑ˛õ*oé“ðS¾}iK¹óÃÌÈ…ïNè
+±:Frv🊃Ç“}L£Þõõ
+»ûSWµsÎÎlšºL#éê8¶Ï-ž®ƒ.HW§à{º	|ueÇÛ`ê8®¹M' =nóa:N»\sCŸ„×ÇtGð³f¯¡Æµ&XÞÅyÞ¨ú„ŒžSÀ˜0zC´Ôè¦1£bûÜF?]bô	ø)_	ÿó}Þ¢«m"»ì”W<²[ª´ìRèS¾~[íJ/ë€r ƒ$¡µ¡J{ÜT†RX8'  èœÃúøÄ鉰1DK=ˆÛ½Åö¹%<Èt‰IÀOùö{Þ3Ë$sÕj\kC•‚Ut$¥µ¹	k©Öö欼¾ÃuofÏ-Qµ‡P%ŽkC÷sžQv"–‘seøÇw"NO„ˆ!ÒÇ*ªÒ¿ÆÃä™F],‹Ãz¼b¥ccÀdéXyÂS_qö\1mõ¹6ÏõûB‡½û¼ÇW]0*ºy{
+ûŽ¨æƒïˆC[ßáB‹è#ì9˜t²$?{Žî9œž{Cd¶¥Åâý°©Âá‡Û½‘ð#ŠísK„#Ð%áG~ÊW]ïù6~Dµ8¬
+?\ØÏÃáÇB­‡ð#oÂ~6e]HTmÈ †òBžóEåXþÁy‡XôЮ¥2‡vièЮË/|h7Žêñòíö·yÿºß-=Ÿ;¼ š…9ç®å9ÍŒšsœêÛæV}¨SJr}¹„xÔ÷
+ˆoÍy\ñ¡ºÆ[<´÷õ¥:#ËèååÙÎÉ‚„µÆ5/Ž/vd(ÃW#]èpT²9tí£zTGTÅ÷B¦ƒ^–
+7}£é_2ÇJû«‚ͽÕW^þR·ÍAž`Þ_ry…9Ÿý?1Š2&ó»<^2c©äüí±iÄpË ¼¼+Û]:Ô@V.wù秘VúǙڒÉÖvŒdzœLÇ"èÖIˆb§Ø„(fŠ‰¾¸ÛÜ:ù‘ìÍ–	‘<ŒùÖQI‚9A¼û,S€ú>ËàA¿Ã(Ès|N8|@‹vš8bцª·è>qþxêäuÒ®MÅH¸niÔ‘‰±kûqÑ|Þóc×lQEXfFv<!Š‡a-;xNóâg6ãâø³-coYeæÎÖ¨ù[C#Ðë°iSä•igËþ`–=´pÄ°5Qo×ɯ”YëÒ·SVmª…¢byœçmÚš¾‹¿Ì¤ï—CW
+¹rÌ´=ŸýYìð¸,S„€5£÷å˜ó 1ÄÁ38ˆS
+—Ž³-0[vš8b̆ª·æ‡¦}·­ÛjÓ5rÅ(-ú‹ë`JzÔ‰KRÒq‘|¾R¦_Êð鉱 Ábì)6Á^‡ÈB­¯‘€7nÃ…ïöÇPDÕÙDÔqHQ:ÿzÔûaÓ•·Œ>›î‡3]§‰#¦k¨Ô’¹mú?îÙ­¼,´ÿ³dáú±Q7&&›\‰f“+#É^„Íw$¹Øu\kÔ®(ïʶügþCÏÈ™£ù‰ {F”¹ ;jìQ+TŸ‡þ&ÂF…y%%Ôó¼Þæo‰>§Ì»II¦R”6onîÚ¦ëü?Œ‹rž?k ÚwSB)º,Ñ>Ry獏K• Õt“qñ€ùo¯µ	»éóHNÎîÿù§‰#îßP=Ïý»Ý¸ØýGÜ¿+YÄýDxªû‹bÝ¿+JÒý?] ÇýGò1îF”QIy†ÙùÀÿ‚-…L¦&vDQhv5Çif‰qeàFñÍù[ÿEèø¢Ámoôˆ
+anôp…¨uW—»×›¦
+ßõt†•dT"aÞ™3r̜ވ#Nyõó)‚òŸô”*/õ@ŹÀùÃY±ÓÂa+6Dj1,Sáq5%ÿ£"†Š|þ["o¤èÓå?_üð\mÍ·²ü‰£ÕCoÀXžÜ_‚ªOv¯/þ꫱8´µFÐIendstream
+endobj
+214 0 obj <<
+/Type /Page
+/Contents 215 0 R
+/Resources 213 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 140 0 R
+/Annots [ 233 0 R ]
+>> endobj
+233 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [548.7873 407.9685 567.9254 418.8724]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#engineconfiguration)>>
+>> endobj
+216 0 obj <<
+/D [214 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+217 0 obj <<
+/D [214 0 R /XYZ 56.6929 742.9593 null]
+>> endobj
+218 0 obj <<
+/D [214 0 R /XYZ 56.6929 744.4188 null]
+>> endobj
+30 0 obj <<
+/D [214 0 R /XYZ 56.6929 710.1122 null]
+>> endobj
+219 0 obj <<
+/D [214 0 R /XYZ 56.6929 687.1371 null]
+>> endobj
+220 0 obj <<
+/D [214 0 R /XYZ 56.6929 608.8432 null]
+>> endobj
+221 0 obj <<
+/D [214 0 R /XYZ 56.6929 610.3027 null]
+>> endobj
+222 0 obj <<
+/D [214 0 R /XYZ 56.6929 599.3438 null]
+>> endobj
+34 0 obj <<
+/D [214 0 R /XYZ 56.6929 449.3441 null]
+>> endobj
+232 0 obj <<
+/D [214 0 R /XYZ 56.6929 423.4797 null]
+>> endobj
+234 0 obj <<
+/D [214 0 R /XYZ 56.6929 393.02 null]
+>> endobj
+235 0 obj <<
+/D [214 0 R /XYZ 56.6929 394.4795 null]
+>> endobj
+236 0 obj <<
+/D [214 0 R /XYZ 56.6929 383.5206 null]
+>> endobj
+237 0 obj <<
+/D [214 0 R /XYZ 56.6929 372.5617 null]
+>> endobj
+238 0 obj <<
+/D [214 0 R /XYZ 56.6929 361.6028 null]
+>> endobj
+239 0 obj <<
+/D [214 0 R /XYZ 56.6929 350.6439 null]
+>> endobj
+240 0 obj <<
+/D [214 0 R /XYZ 56.6929 339.685 null]
+>> endobj
+241 0 obj <<
+/D [214 0 R /XYZ 56.6929 328.7261 null]
+>> endobj
+242 0 obj <<
+/D [214 0 R /XYZ 56.6929 317.7672 null]
+>> endobj
+243 0 obj <<
+/D [214 0 R /XYZ 56.6929 306.8083 null]
+>> endobj
+244 0 obj <<
+/D [214 0 R /XYZ 56.6929 295.8494 null]
+>> endobj
+245 0 obj <<
+/D [214 0 R /XYZ 56.6929 284.8904 null]
+>> endobj
+246 0 obj <<
+/D [214 0 R /XYZ 56.6929 273.9315 null]
+>> endobj
+247 0 obj <<
+/D [214 0 R /XYZ 56.6929 262.9726 null]
+>> endobj
+38 0 obj <<
+/D [214 0 R /XYZ 56.6929 228.666 null]
+>> endobj
+248 0 obj <<
+/D [214 0 R /XYZ 56.6929 205.6909 null]
+>> endobj
+249 0 obj <<
+/D [214 0 R /XYZ 56.6929 177.2885 null]
+>> endobj
+250 0 obj <<
+/D [214 0 R /XYZ 56.6929 176.6907 null]
+>> endobj
+251 0 obj <<
+/D [214 0 R /XYZ 56.6929 165.7318 null]
+>> endobj
+252 0 obj <<
+/D [214 0 R /XYZ 56.6929 154.7729 null]
+>> endobj
+253 0 obj <<
+/D [214 0 R /XYZ 56.6929 143.814 null]
+>> endobj
+254 0 obj <<
+/D [214 0 R /XYZ 56.6929 132.8551 null]
+>> endobj
+255 0 obj <<
+/D [214 0 R /XYZ 56.6929 121.8962 null]
+>> endobj
+256 0 obj <<
+/D [214 0 R /XYZ 56.6929 110.9373 null]
+>> endobj
+257 0 obj <<
+/D [214 0 R /XYZ 56.6929 99.9784 null]
+>> endobj
+213 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F90 192 0 R /F52 139 0 R /F92 225 0 R /F96 228 0 R /F98 231 0 R /F57 148 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+260 0 obj <<
+/Length 4318      
+/Filter /FlateDecode
+>>
+stream
+xÚí]mÛ¸þ¾¿Â=8/pfø*J¹öÐ×k{ýpm/Å¡È…ÏÖ®Õxm×–³—ýï%E‘¦D‘£8›/‰öÚÃyž_‡ŽÉ«d&2”´˜åD ™6[=ÜàÙ½úî7¤•YX¡…/õ›7ϾxV "£ÙìÅÝ,£(“XÌr,+¨œ½X¿œ÷XÝÕ·*ðü·ûýëÕÿÛW/¾QEÉ,WE3¦‹r)D>[‚
+!hS”©b2Ÿ?3/„ér7¿áxYZ² ˆ	škVÿ¾yù
+ÏÖʆon0âENfêŒ(/ÈìáFõ–eÔ~²½ùî母ö[Êǹ~Vh‘)Bdég&yòòÌèLi¢hš3ŠiË)
+ŒÍ©f4󵘭ÙW¥¿®Ž·DÌOµyØM­}·:V‡º­-¿¢Um"IT.(E¹$¼Qñ[Bð|>šÚþcz<µUïëk>øc¹Ýî½ïßßæªðq»þ™Tö,H†8Ë‹F÷¯èý~¿6ïNË]U¿5ïW›rõÚ¼­7KѼ­Nm™²ýà|0¯Ë]«íxÞíªÝ½ùãÛ?›×í~µÜnßvuÔ›êô<hˆIÌÉLbÕif*Gµc]?ú庪ƕ!JX>£¨Èó|v,gw^Ëk¿Ä‘6Ç¥Â
+ô
+8­f¡Ä²lˆ¦)0¬\Õ‰*žË¶ñaˆh9UQƒÚïüï¤ÛY2¨Ý}{µþ'à}¼Ø‚àÙñ~fÞümhlÈ
+¦Gá:jÍ Èý¡ÁIéžðó~ãS£.–jðóuõ™	ÄdQ€¼2‰¸Pã6ÀËŠux=nªÕ¦Ï­àz`&OÁ­(d¢ÖJu˜š‘ ÇŒPõp™¹RÔRµ*YÓ_šf2õ˜§î1í°7=áõ„35o©ITçl¬”î:Ï¢ƒ§+5 ´â v Ucoöe°bH”õàû« V 5b08W$¥c
+¶âv_k3‚VÛu`1Q+nµÂÊÒ&;) 7Ô6h4¡QAÄX«<荏Ï<GDà°ÛJAÀ¶a»ÕBN0<ºy;y>ÐÛØ}\TgU.¬¶Rl mØj)˜¶ÚÊCðÞÆêzùã6hæT»Œ´ š¹“Cmƒ†SBÕº½Ý̝<èÕð«ý}@€æ(×^hÚj+ÁÚ†­f\-R‹ÑF·âx_«Æ~دÏÛò0P2j.ƒÌ¶R²‘£ÙR"šîÚVoÄȈaŽH&¾í¤ àPÛ ÕHp9ºo;y¾¯Wï«Sh6#gÁƒï›m¥ Ü@Û°Ù,Cœ+G|¬ÙV„ïëWwÆãÐȝhÓÀ‹4G’f£ÍnÅAðžÖÆè7» =ç(Ï0ˆ;)ÕÈI¨ª½“'FâN‚ôjø«ÀjŽ3ÄrT´“`[9h4ãD}›6ÚŠCàFlÌhÆYŽT)×u‘áɁžèOhS('EøÙV*½©çézïM½$/·©çó*W›}Ô#NPóüà$¨ÛôA?vÛM½ ¼Q˜FîéÔÀõq¹*ã…){ jÓÀ?(7é³ ˜éS4BÆÚíä!
+F®g»9	ÜQµ¨/° l·R°‘˺À_ÄÝÑ‘v_ÜÑ4| ÷r<x£¼OÑý<Ÿ5Iïâ³úôõ‰XÔƒKÕÊÅoKÃöuiÔŸ}¦Z$ùòóÛE†ñü«¸ÿ6®†<O.ÍÅyr>™ÍPˤ…Z’æh™N
+6r½gâÜ8»=_.	ßʉ.ü°WáüŸ¤ÝÊ+Uó¨œÓ²ëÓYvQ‰
+¬ée—•J/»<]ï½ìJòrË.Ÿ×`×wk¥÷çæ–HIjv‰ä3Œ/‹š5‰”„
+µ
+Æ„©º"„ö@Ë£V‚7rlD¡Š½ Iڍ¢8ÓP1
+ÆŸÎ`¬}‘sÆV*ºw¾ž¾+½‹KšäæÜ[ŸÛÀf§îÖ„ü)¨¢C‰„¸µryÜàØä¼Ç=ßgLÚ·Ÿ	§HÊ>fÜìV7b=ð#£˜ÆÏOŸ R.~ešžó+}z§}¤ ˆäET‰•‚`µ\UH‘!¡ãjÇÖˆ•Á¹ü‘f9
+Ï8⪷V«Škvž§!|š$?•IRä\;ó@ô§“Ò]ìoçÝŸ~›$}}ñ¨¨4j K£>7A¬–ÆB-å9^dэ».lšR¨WsúióŸŸÎÿaјŽäà ¢@>u†i¸ùt†›Œ"ÂóTü§êcVH÷±¿÷÷Çòt<Q‹_cÀÏ
+¸í.C7zÁBˆfq”Oiê®}wåÚ\¤»«rôåÒÖ`±¯õZÇÈEû¦):¹ÉáCVŸ›¢çEûÀ¶ÁAÅmßuAѾ­<oäd~ø€5WÕB «ÚHaÒý"ꎵÙ9„ ¼uÃuŸ )^BcÓôœ\‡ÞðáªHò\¤+ÅIAÀ¶æ|5:¿ÑQI§ÁwšÞ>úéäˆ×9)sGy·ÜF_OßûY±·S½¬Ï§èEš;BM‡ÚÒ‹eQ"ø4šL£ÉG?špµþ`… ΛœTòðß×n£!–åú FÍÓíæÒ¹èß㎿ÍaqÉГQu(—T¤3W¨uʘ ÃÙ>ÜC•Êsבí6O+lžõî’BýQŸëý±RcxóWµ3¯ç“I½ ÞÚ¤
+úÛ“y]ÖÏÃ=>‰”/Ã/Ѝæë×3ûîÏþÍ­¶ÄÂ/Újn‚êúðüÙ³ÇÇÇÛLÌѪBçÕ¦Z-ï÷¨\ŸŸ5çoÏîÏÕº<=³&¢ÃæÄÌë0&Dwÿ¦€•¸†ÚLœÄ‚álþµNæ±×óÇöéoJóæT—‡“WÏë[27©3ôjª¯Eõz©f®o‹ø9Z¶åò¸3©16LçÉØ»Ìm®
+órWzB§êá°-Û÷ßÚfÙØïl¶ÒæⸯÌ©F±T0\-ônç¼xÃö¤)Yœ˜IɇS²4¨‚@eͪ¢\í›%cS²ÐnJ–n3pNl2“¶NöÇö1«g¬êÿÍ-UU°}£—ë Š©)[v°B"Õ…È”eš»GÍÝ,/×ï’s·“j6‘Þ‚=$™«¶CùÌWw­#`ÏÊÒÔlµ»*¼ÝìbERÜN
+€måzäËhTF0>µóÉøèG’L"!°§à¤t·Y‚ešZNåLÁúÚ†25B ¦”DS_÷‰mctAGŒPIx7Bùðé*aô;G³¥É9¹»}ôè"Y—(h_[[#$Õ<²J.ñÍ ƒ@o/¶¬cÑti»m jDÀ†èr•Œ5Ûå@z£mÑÆ{<E[ÌUc˜‚ì¬\‡]5|^ƒ¡:±R h_[¬-º¹\a$›¶ô>\–,ÿ'æ+¥kì¿ÑêâeB²©ºž¸ºÔ´¡ž°€—Ö)X´UAiÚJE†d{Ç×682åãîàèð˜4³6<¦CìWá¸ä¦RˆØ˜éÛͤIf—™Ôçvª×ûs<›WŠŸw¾ Ú4ò/ã3YtÌL–†ô6•¿=6ÚÝžPííéjÜëc\'Tž†ž8Sx81SX)]]ÿ‹VUoX1yé“—þñ{é:D;Ç@Ø»“Š¹	n¿ÏS÷Þû}IjΛö©
+ÌvvjO1óæÿ$¦ÿ}È—¯~w’;˜c&ù$|+'»̹Í?–‡CyŒÄ´%·1m ¸ó|ð/£1mcmw1m ¼iëÀë¬ðuµß…I9
+”á¨u'`‡Ú—8”sÝkeßt$œñÍÛNÌœ-Q0ry—Âga¼ÖGâÙ Ý[¢bädÐóÖUÐühNQÆeq[â`?š<G˜ÊhV
+íkŒðt9OFö†KŽ ÞæHéÀŽå]õS4KIÒðKÎÇ4r¨m°/¸ÜŒïÐ.y!
+}݃Î8A9Í®ê®,D%Àh&ȐŠ4Y®¢Ò–©ô1†ÓæŠDž±«¨Ø²#Ç¡
+R¡@ôR ¨4?`“î‘.wçÈyÉ	
+Àz›¹ù|7Ô#å4RÁí„hì‘}ËŽ½Kte 
+¡îÁ
+wi7¯h{—”•6egºØœ×0±é;"6}'´@mB‡0—Wq±e!2Æp1ípp‘n˜N
+5r½Áñ«ø.	Öƒ)™‚@&·û£w»iQ®“Â¥î“9¡fQ±?–Ëøúø
+ßw<M®u‚;äþ=Ây½Ëvš˜KÈÒ¡æˆv‘û)nÞ=  Õž wP_’ç±ä.*œ€·ùX:ð¿ª÷Õ®Žžå¦
+w™  ä@[ôÛžçŽ5ݝ½íËã}4‡hÒr'à†Úb–»<¢=Ë“~¯ËQ
+±èëö{m†!Ó!*î76 *†¦îÊå4绎J[¤ÒÈqè©Ø{éa¥ P#×ë
+_Daä]Zƒ»T	Qè붻Í0{M
+ض ‘>‚æA¢tW±Ûv“>Æð#±[pé¦à6ê P»Q׈þÿÊän‰Æ(PY¨u:›R*LKà?
+„fªÛp^¤£@œTìèÉ.[}u×®4]Ðwš›úî[/ëe$n‘%Ù-œ„ëÖš>î/¢ÙX» ÉAõ’‘ `3²v(ÄóåÙ
+R±y!*mî|¸l²ˆkظD ›h¢ÃEãP®¡â¢S *6:¥C¥þ©Ž/̯ sY¤§ÉÃ
+ÆB¦»I{P	¶•Àø¶ÕÇù´ë4M¹ŸÀ”Ë¥>¶îG8©XH…Ýsò´…!­€èjvO"?:Ó3ªÈ=À>VÊVoݐ„¼¬|ÐÖ)øeôÎÃH³/w ^àÎCÚv·O•íëŠnÙxÒ±V»8Uˆ@_otµ`ó§ív¿û
+àÚ¬CŸ‘X†p–O>\¸¨ÿˆãaoN*.J©IôþôG˜ë5Nfyúž%	t‰ß‰™KübøÿÌ×¹ÃBöU]R 5ø»xXîÖÛjWš¾=è@²Sü6?±·ù…K®!ð|]šø•Í’°¿îèw±Ô–~ªp¦*§Q»=ííõÿÕö¬Ôw²Œ«v‡³Íݰܵ)Ô4®?æjPó>j&ªÙ“JU³3՜Ū9…éª9
+ÙW¥¿7É3T¥Vw^ºóv³Üݏ¯åoMžÆL
+ýZégËh1ßT÷›í[óáÃy[WõæX.×:Iƒþhy\mªº\ÕgÐÁ”l_[û»ºÜµÊ7­Ìjy*íGËÚÿR8ïÖåqûÖQú×R'‡x£óI,Í'oªc}ÖÉBRKÅ`ת»/-ïjgMY+ºÛýêµkˆM.‘6‡V¥™fº ïæU=Ê[2ož¦úË<ÍæíåjyÖäé»öUqo
+’ùjÿpØV+_g“ED¿Öí—'¨Kìåш£ÛgÙüïÚ~óÝé¼Ú˜2¢_èt+ô’èPê¹Ÿ£E5O®›D2Šúb¥ÓjlÊ•~Ž¯o	ž›Ú~ÛpE;éVÔÓ=œ\®Žn;–'›´ãÔKŸâG;£šv(crx at f:¶ªqWÿ}óòž­•Ì77úèSñ{lÜvªn.sƒùd{óÝÍ_ÙcqÑhÑþÅM¬®endstream
+endobj
+259 0 obj <<
+/Type /Page
+/Contents 260 0 R
+/Resources 258 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 140 0 R
+/Annots [ 283 0 R ]
+>> endobj
+283 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [216.7201 469.032 428.9318 479.9359]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/tutorial.php)>>
+>> endobj
+261 0 obj <<
+/D [259 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+42 0 obj <<
+/D [259 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+262 0 obj <<
+/D [259 0 R /XYZ 56.6929 738.4887 null]
+>> endobj
+263 0 obj <<
+/D [259 0 R /XYZ 56.6929 703.155 null]
+>> endobj
+264 0 obj <<
+/D [259 0 R /XYZ 56.6929 704.6144 null]
+>> endobj
+265 0 obj <<
+/D [259 0 R /XYZ 56.6929 693.6555 null]
+>> endobj
+266 0 obj <<
+/D [259 0 R /XYZ 56.6929 682.6966 null]
+>> endobj
+267 0 obj <<
+/D [259 0 R /XYZ 56.6929 671.7377 null]
+>> endobj
+268 0 obj <<
+/D [259 0 R /XYZ 56.6929 660.7788 null]
+>> endobj
+269 0 obj <<
+/D [259 0 R /XYZ 56.6929 649.8199 null]
+>> endobj
+270 0 obj <<
+/D [259 0 R /XYZ 56.6929 638.861 null]
+>> endobj
+271 0 obj <<
+/D [259 0 R /XYZ 56.6929 627.9021 null]
+>> endobj
+272 0 obj <<
+/D [259 0 R /XYZ 56.6929 616.9432 null]
+>> endobj
+273 0 obj <<
+/D [259 0 R /XYZ 56.6929 605.9843 null]
+>> endobj
+274 0 obj <<
+/D [259 0 R /XYZ 56.6929 595.0254 null]
+>> endobj
+275 0 obj <<
+/D [259 0 R /XYZ 56.6929 584.0665 null]
+>> endobj
+276 0 obj <<
+/D [259 0 R /XYZ 56.6929 573.1076 null]
+>> endobj
+277 0 obj <<
+/D [259 0 R /XYZ 56.6929 562.1487 null]
+>> endobj
+278 0 obj <<
+/D [259 0 R /XYZ 56.6929 551.1898 null]
+>> endobj
+279 0 obj <<
+/D [259 0 R /XYZ 56.6929 540.2309 null]
+>> endobj
+280 0 obj <<
+/D [259 0 R /XYZ 56.6929 529.272 null]
+>> endobj
+281 0 obj <<
+/D [259 0 R /XYZ 56.6929 518.3131 null]
+>> endobj
+282 0 obj <<
+/D [259 0 R /XYZ 56.6929 507.3542 null]
+>> endobj
+46 0 obj <<
+/D [259 0 R /XYZ 56.6929 444.7788 null]
+>> endobj
+284 0 obj <<
+/D [259 0 R /XYZ 56.6929 417.8872 null]
+>> endobj
+285 0 obj <<
+/D [259 0 R /XYZ 56.6929 398.9923 null]
+>> endobj
+286 0 obj <<
+/D [259 0 R /XYZ 56.6929 400.4518 null]
+>> endobj
+287 0 obj <<
+/D [259 0 R /XYZ 56.6929 389.4929 null]
+>> endobj
+288 0 obj <<
+/D [259 0 R /XYZ 56.6929 378.534 null]
+>> endobj
+289 0 obj <<
+/D [259 0 R /XYZ 56.6929 367.5751 null]
+>> endobj
+290 0 obj <<
+/D [259 0 R /XYZ 56.6929 356.6162 null]
+>> endobj
+291 0 obj <<
+/D [259 0 R /XYZ 56.6929 345.6572 null]
+>> endobj
+292 0 obj <<
+/D [259 0 R /XYZ 56.6929 334.6983 null]
+>> endobj
+293 0 obj <<
+/D [259 0 R /XYZ 56.6929 323.7394 null]
+>> endobj
+294 0 obj <<
+/D [259 0 R /XYZ 56.6929 312.7805 null]
+>> endobj
+295 0 obj <<
+/D [259 0 R /XYZ 56.6929 301.8216 null]
+>> endobj
+296 0 obj <<
+/D [259 0 R /XYZ 56.6929 290.8627 null]
+>> endobj
+297 0 obj <<
+/D [259 0 R /XYZ 56.6929 279.9038 null]
+>> endobj
+298 0 obj <<
+/D [259 0 R /XYZ 56.6929 268.9449 null]
+>> endobj
+299 0 obj <<
+/D [259 0 R /XYZ 56.6929 257.986 null]
+>> endobj
+300 0 obj <<
+/D [259 0 R /XYZ 56.6929 247.0271 null]
+>> endobj
+50 0 obj <<
+/D [259 0 R /XYZ 56.6929 212.0137 null]
+>> endobj
+301 0 obj <<
+/D [259 0 R /XYZ 56.6929 185.9542 null]
+>> endobj
+54 0 obj <<
+/D [259 0 R /XYZ 56.6929 141.8097 null]
+>> endobj
+302 0 obj <<
+/D [259 0 R /XYZ 56.6929 114.9182 null]
+>> endobj
+258 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F52 139 0 R /F90 192 0 R /F98 231 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+305 0 obj <<
+/Length 7113      
+/Filter /FlateDecode
+>>
+stream
+xÚí]]w#7r}ׯàC4'V»ôç<l²±³^ûœM²ö$/¶(²¥aL‘2?fì}Ø߀ 
+@£QhK'˳Ç+ŽT¬{«@ßBh6+åÿجnŠ¦çý¬cuÑ6LÌWåì^þí«+fln¬Ñoõoï®>ÿS]Îú¢ox3{w7kxÑ´e=ëʶ=ogï–ß_÷quwxsÃëòú‹íö§[ùß›ß}#¿Êfüj#ÔW«¶•Ý솱¢¯k~új%¿ÖvןëL¨ï]ýû;àeiµ=+DÍ;Åêç«ï,gKÃ7WeQõ›}”ÿ(^õlöpU3ùQ4Üþf}õÝÕ_GûW^UÙÕÓWÃÝ4’@]7ø5k«¾`eÝ&®™üc%}•
+œãP[éužÙ¤5" ;VÔ}_‡ï·ox}ýQ'ê°Õ?ûÁüâ½ù°ÚÜmwóÃj»	MWËasXÝýªÿ5ß,õ‡Åv·‡‘—å0_®·‹ŸŠdF¹¤Ö•qe=+äÊZ+&O_YÒ]Y®¬ùg{eYß_/Ö[uMYߝ®œúÕ骨¦§¨ûíq·0v‹íÒ,æýá£ùÅÃü§7¬¼¶­£÷óÍýÍâý°ÐÝãa¿ŸßûÏdJa¿5?ŒˆÈ´ïÄîz7¬çó畵7<ÞwÇÍBµ
+	"/³¼v¦?³Ó•Þ°úú—ǝ$¢m¶"›Ð|½6-È^݈–æÓzµöÿ’j5M/ǼɀIº½hÅW$K	Z
+‚d›‰Czg{Æâ(ûËÆô—?Ë<š‘ÓO¦úÅöxx<³ÕÞ\ÈÅáxº€zxm=DÖöEÕÔBrTp´+késã¬à¥l¹Úp³²9€,ÉÆqw\›_®w²'ÿú6Jˆ(Ú²b³FŠ¦å§+%ہºXêÇWjD–ƒmSp&º/ú®ëf»avçÄæebçµýjä?Ðq77Ò¬i¦hê/L;—Í[~½kÍh\Z6LÙu}ù›ÿ…'ù†H&½Ã_?Ùÿ¸'/oiAÊÙî~¦?|;Ù=[&?5ÐmúRk„J5Í“•˜YÕ>¿îWûð–ã&Șºû³væ¹ó«Ñö=ÉŽIÑÓµ¬!聙Oðîx8Êñ.b'{H-ÊcwFîØ—ÂMwɦ,ZѲK[ñ¶îe"ÝØ­Ñ©µUk§¶¯”ú¥vLÏ°‘/…ûýéÞ`"]ÈØðÆ®ñwÇǸ	^”Œq4jé­­ûŽîá/Ú–¼8Æltu¾P’.Úº(ëRàY+
+9ò¦¥€jÊòšEØ}SÔªšÊÍŽµ§Xh»>d1¬‡)Y¢qÑMÙõø +;öæ]2ÂnXÁxWå^°§XD~‹µºm†]t	DÙuՍ€×òÆQ	~R!§é26¿ôØ,Kã¶í8>6[#Õþg¾[é²xÜ˺`L
+ižÏOV"0Œ¢Ý0êSü0ß!Ã(Âî¬(\¡&~|o
+÷&­º‚Õe?E†gcOÁG~‘ñ¹“—H”TàÖŠBŽ¼éÑ)˜åðÑõù[{
+^ٍÂÞl£A±”µxÕ·çh‰\Mññ¾¡˜]À-9`ª¡°­ºÏ
+/es¬ªê2`¾žStEÇz˜j‚ÆZ&†ï_®Æ- “ßj9Ÿù?±:É‹’Éë“ÛoÓš¡æÑ(ª«}Øx¨äòÒ	V@Ó#†µ§à#¿
+þ?‡Mz°FÃvC4ŽyC…lÓ«'
+ùÑ[{Š…¶«CéQ‰u…”ž‚¸lH]}‘q¯hTâmÑ5Þlýô¨d­Nÿ°[mî“£’çðÙ£JF¥€Üê0ÄÃ’HnÙ…°>Pvnøðé%”V-¿ÇJœà
+XQÈÚ®
+‘?KhÎȁÃÃÈáÃÇZË	BªÅd$¥“&Œ¶*G-&=¦‰Jö¥žHŠŒ¢æUÒ^ϐƚ¢/YW¦Ö(³2õ|ÆmÀZÐÆ®Á'¦Õ¦Zþ9DE†$cOáG~“5¯™íÃÂÎ0Ý=Î&é}v©ÒôÔßñ¬Ø1G…1ÁG5j«å±Î‘¦ì³SöØ/:o5 vÀŠÂŽ¼¡ó†m[ð¦Ë¾ Æœâ ÍFiHÏòºhº¦'. at +«ùŽ+ð‚·MýÛ=c-ŸñxÕ.§qiG6r”5jú¢”êFtøSýº²G÷€¬æ¦7¾Ð3½¤TW‹~f¾·ÓØPcWúaåþø°:=Òo»ë¹þ±?l‡¥þÇv§.vóý{ûK»€J~üö¸™xd/ûBѲZµ	)›Zßù¿–_©øõûùR˜ëÅn½½×(K¾ôç»Ýö!°³¨òãî¸ÑôR‘Ó¯ææWÛ£ùÍöÎؼa׫‡¡x#3×Y?­ÌêÃeå¾ÄëkóÍã^_›¡u³S×l ¾BzŸ£å°_ìV·àÓ0Ú³:IþC5ð?ëZ¬RÑ“Sÿ½·‹,¾:®–ãå+³èâÑI-‹xÔ??¾vChºì8¯º8ò«ïÞfÕ×úÇO«õzáÜ‹9,Ã2vð|s°¶v
+–[tZJ¢–
+û‘‰]^#+	ó'ÝŠÔãZ
+Ī7ñ²†ãO¡ÊŠ§g­eY¯f?8^Mƒ•êK…¾ÏT+;U„ˆKò^º¼ð3‘,/ÀH¥ø¿vÛ{µ¢/Z•Ð­å@ÛhU‚1"pOf<Ä}›œ	3–õààÆ®
+á¿“òUÞhâ©"5
+Èû²FÏ}Þ³E;+Pœœ-²O”д¸çN®~îæE^¯XWsi¡–[gæì	±ßSnóû!YVœ!/n¹ AÏÚôV›¸ì`…ìßÏ
+XQ¨ÚnÜ_ê:‚í»¢íÚ:;+Öž" íšÀewù¥EV”¬¡ÐÐÁŠ@6vã&í5/ꮹ‘ƒ=…¯íF	?­Þ*D/=^Wçh’U)#/k’!Ø…CÅa~8FCx%Ô
+§Â»Ì
+XQÈÚ®)QPõ­ª~«‹(xiQàg"-üÀ*9w¢¨{.ÂÌ~Zs·dnÖ,à¦jÖÔT(FÍ›
+ÅQa*4€}+Úäê›6­`A@Û‰ÀŸV›ÕiZ!µTñyqf†Ö.`ßA‰œƒ,s$¸ÙeŽ·ÇÝðaµ=¦—9’éÙd^UªO·Cc×…wÇMr$Ú®œ!`#o§vÍ«†'¥EfËvÒ‚ `¥EVË•TB¼iÎÑzDÕ¼lH†`0ÜY$ÝÍþœà6ËXÑ65ž#kD 36JQß$ï²]Sô¯/wÙ¿Ëz™H–Þ`”Sz¹M–Þ8®)½Üté"f”Þ88”Þ<]zc?¹ô&(ÚÒ; ˆ–ÞhZ\éMàêÒ;ÌZzgæÆ•Þ8Ø/]zŸ!/Þ½
+§÷*ŸRz£Yq¥7jKï0/H靛wÄ	ÀýÑ'@”Þhè®ôÆ‘¡ôCçÉÒ;3rWzø¶ôðÉÒûMÒ•Þ8C°‡
+¼ôFsãJoÙ–Þ£á")
+dEÐwâò0ååE—	¤ô¶Vtéígö¹¥7Ê
+JoŸZz#ÔüÒEu¥·ûVtéÒ;€Í)½qPzûèÒûùyñJoœ!”Þ>C¬ô>7WzãÜ ôö¹Ñ¥7ÅðI¥7ÊЕÞ>C´ôÆÚµ'gpØÈ[Fé×²=iS i‘Ó²]éýüÖã•Þ(CWzû³Jo,G®ôFÑ]é¤)½ÙùyÕ^î²/~—õ2‘.½­‘^¹9Ì7ºJo?·Ÿ8fº[JÏÝò|‚ÇÇt‘ŽpóKs5òvZïQ$×xTu%냺»´öoí^&ҭݝ$åûãဵv?·Ïní(=×Ú}‚ËíÇMbëœ8;§þpv þ|vûa÷A¤”Ú£r‚pA§Op~H¬A?37¡…33Z>¯÷‡Ãcz7Fî¬XcW…Ào?ÿœõ¼×@¶¡·uÕM>hǵJ¬l.[c^~\ó2ÔÊÖJåù«mÔò[^tBÂyý´¦ßvg¼¢˜i³:d¦Vïn†uú&þ|zng
+Îì‚ó/$¡ÂDHúõ*yÓÏ ô–aÞQweÏô¿oþ×a²¤,;1"ƒL0{‚Vì÷´PVƒN1¼íðË¡6ä	.ÚË^»ß~%s%oӬꈁ©´þó8§M[T5ogž'¤MYkxìS¹Ý©ÍÈöxÖ¾Ö;Ž.éÕܝøIá¢ÛØœ*Ìùf1¬§žr„©óøìó„PvpœÏï··iŝfvF&(iS^ȶHî/P‘›v£9Žo÷™ûøû‹ô.³Sç(æØ—ÞB‘¼»æÅën³(öØëiâu¾Ü'OÂ#4ò50œ!”°;šˆÀy=©®UºÚÀÂuÅ
+	µ.E%ÇŒÜp­9­Í¶u\¼_-æ÷Û´f‚vB	ûšÃçížÇ£Øð8ÞÖǴBÃâöÿwíw»*¥•¨§°¶V¢Eß3}
+â¨-†}y-‹9I^þÃì6íK·Û´·÷úÃÃê ·2ÊܾáåõiOioö@ÊŸË•ùënXlï7«¿7z/§üðhB™_ÏÍõæWåv8mµìÕÉåð™Úœê}½oÌçûŸ"Š·yÄqú÷þèž&œ~1¿ÝªsÍ?¨ÿ¦6”ÂÞQ½™ÕüÃ츕Ÿx]wf—¦!Pû°ÉU!KÕR-κìÌü¯gD£^WAlÌ´F§c9¢zF5%ÞÍ<OX=c¬q`mon‡ýá_å °ÚðäYg‰O;2ækQ† 2}Šw«õԁÝF5"Ü<i‰£Zié£þ˜\̘—0'°µY`ÿSrfšÊÄS&¦q^ÖÌçõøq™\”€æAÈJº«»Kõû;=ònTU‚cµRiý<9øx¾²F;òª_só\Ïý0F¨6«ˆ€íNfÀ°âŠÀ{…79‹Œ†ì㸱·É a93j7=MÀG~üíê~9?ÌÓã8¹ÈqhÉñÈa(ό܍å8<æ>üôýÆM4îËÀùû
+œ—׺¢D›µÂU›ç+kàD±A·ùØyÂ-àñ\冒tÒÍgIh7„žßçq`èó>0"ßòrãõyú¼(84f9rŸÞÀwéï¿}¬¨yMœ
+V*«OöwÏWVG±#¯
+ûãj½L>y
+ñÇJ	Ô
+Šùš¼uÚcp3#†ÃuqìÈëirß6-Z°=©‚âÆÞJÉŽ§yQ»S{)ø±ßSÜ»Eê„L<hûÒtìk:d{.xnÈpÞ8…>ököÜÜ®‡äƒ<lxžB Gަ׭rÃ6Ç~RÐæØÏ z±½O>ËA#vspØØÛdÄðà%3f÷<‡‚ûUðÛåqBÀr<rØ@@ÛMDäuYˆ¦ËÜÚSðÚ®ÍÏ쉥xØöXSvìk:èŽMÕf÷l°§Ð#¿§… «¸ÚeU°¦­ð ÁŠÀ½M†
+¯~ÊìIø±ßd®…hd©×m¬(àÈÛä+`ßGnÜÖž‚üêò›xi«¾DŒâ`EÁj;Ae»…¨šìqì)øȯžÛˆ£V/xíj*×ÖŠ‚ÕvT×]UtMŸkkOÁk»œñÌîÍAÆ
+<8lÅÚ‚UÕhDù‰*ùŽ—Em¥^ʦߤlò.1R6Y+•±?˜¥ ©•½A֐ջƜ  ÍšÂa‘œdÀ““Ì(däkrIXyẲ
+Ç{µÓ.É×%a?ù
+¼897'ÃBX6¼²
+G…©(5~•“~9ËMØ“ðæ¥{¼>à99)…Æí¦¢p`˜ŠBÛ¡›ŠÊŒN^¡àÍÉ+tS„Éï34EØÉL°³;™v·ûäKÐœ¸W-à°±·éåVvÁZfNÜ7
+Þ¬pàyX§^?ƒmŒ(P»
+< ý;R~eíÊ/ʯ .v«Ç‰·[Ø¥fxäÖŠ‚Ž¼M×`½(ª²m³#·ö|ä÷Tr/–ŒÿÌ’ÇÍ ‘»ãfpèØÛdCwUK^ä^5DÀý¦Ë0ÐðhÜ®"À›®hÇr#®ÂZY¤–uŸ¶µ§Ð#¿§ÓôKÆÒ¼lÔûð¨¸kYÆ_6*ü.RºTãd[RÚZi)Ø÷âûÊÙø‚cG^‘a¶?„’çÅàÈ°8€VSže)X©G67©9Û¼k s¶8˜³õ‰<~Ø/l™<Ô
+½î(7;övKË"=kšº7Š€ùSŸÀiípje:¸TA]Y]^Åùz¶?©Ócšª#²«Ó©SwS[ûúþž{ÎÍšÜ&&aÈ95·1ç;³Br“O2m9‰ÑóŠN8ò–xÓ»~øb"OõÌ#E\›Àw‚Çç,B1‰G
+%'lW©À?”ñ©›ðô/7rxªH0ˆü¦õØçagh®üÄé]@ïa»\Ý­â3¢à\Ðs0„ƒ´†Ö.`¸Þ.æÇCÁÑXhëqhÐö ­qëaɇG™­Ç=<ÂÄ~†á„hà`EÁžìZb¬€Š.7h¨	t{0i8Zð–‹ä³#<lxvD Û’Ž-lQ—¹1'ñG^SɶeÎÐ
+E/ÕJU“}ÁØ5yœsŠç¥•­»S£øEõ½Õ×µ²ç÷øÁj`„ŒÄvÅ–ï0>ÒÜ®þÂa#_©aØ>æãmS´êå½—öôÒíÉËREX«Ó[W›¯¿LV~f“OãpÔÈ—w<™G`rDâ­Z´–˜JyS	8!˜J-æwå<ñð¡Â/«{sÀõe`}-¡©U	„'F9/‹ð=¦_ãš—E¸o“£j-e»¼óóåÛ’KDº)›¬–ä%6ݐ0PÛŽ<Ðô;G¸Œ%(2¼qÄÇ>nV›Õa5_¯þ6q„·Á‘ aØF‘aÔö£N.=â•(ººb—îóâÝÇËDºÿX£¬äç6݃P\Û…|\¤ˆ9w½È‡§ßÛƒþä÷öíê‘€"úÞ4-î˜SWsæ¥iYò ÌÔ¸c€p|8(`ðµß&²kΐ·°€`iíÈìV=où9Ø©Õ¢<Í?£ìÀ.d÷~¾›8ß¾¾æüÜÄÎÏ.Zø-W;Ùý¶»_“êÑV¸±=Q¯¸zA]Õæ6p°§ð#¿Øk
+ªVÞ*ѱ³VÞ©Ô”KôZ]_Û§Ájú'v݁ïì÷-Ãjaœ˜]-K½ßÄÝž)~O9ì'vÉ÷›¸'€9ÿy"k±°oYפ°dÚ‹æR@¾|_ԙึFY
+Øóˆ(`×*`QÀbŽFÁöá³
+I,t¨$qp(%ƒØYú	q^ðn'&ŽûEå¿{Œ„þôÇÀ8ExìSœ˜°ÏMŒÛµHàFÞô"Û&-ló’öƒØoò¥q°çî‰qïp"èY»€Þ*½ÍM‹§˜qTPÌAZâw7¹g¥™Y-o»å- T­ q©ÄÐÂŽCgï$SUUQV• ÓËJßvQÔ¯æ.®àÛ–˜¶F˜n…»¸çñÙ¯ÂéÁ:Þ€à”l}‹óÕ2y£ekY%ë.{F_¾Á{™H7xk”%[ýܦe+Ške«‹ÈÖ 1G¶¢àN¶úð·HàOŸ¸Å)ÂÄ­OŸ¸ÅÒâMÜâ¸fâ6ÈúÂõÌܸUú8Ø/ýÂõ3äÅSÔ8=PÔ>=ä…ëhVÜïª=á=ÌK_¥—rffÅ-êÄ	À¢Î +Ç[uªùÔ‹Ça>ß½ôG‡—ž‡áóä~°ÌèÝ~0?ò‹ÊV{ÀšeÅeä¼ê(†`G4K·ÄÍËe‰ák»‹Ë±»-°Fïâ`”#[}Ï–­8=­AL¶bä<ÙJÀFÞô°¡^D­¬ídO//§ø¿|ƒ÷2‘nðÖ(G¶¹MÊV×ÈÖ 7-[CÄÙŠƒƒl
+àiÙŠþdÙJP´²5 ˆÊV4-N¶¸Z¶†yAekfnœlÅ	Ä~iÙz†¼8ÙJгv=D¶¢Yq²•@µ²5Ì"[s³²• `ek˜-['V1ØYY4z7Ç‹ƒÇÞªÕl`ÉŒ¶Åèc¯¸dÕG‡¡E‚ú%øi»šj0LR{Ê0AÍÎÜRzªjõ¬o4J 7¬¯/’úõ(ŒFµ@Öâk+À*!YíŠß[Ä
+–Mà˜vÙD€‰ëUI“uü²gçå[“—‰´^µFYzÕÏmZ¯¢¸V¯ú¸ˆ^
+sô*
+îôªŸ¡W‘ÀŸ®WqŠ W}Š¸^ÅÒâéU×èÕ /¸^Íˍ§WQ±ß½úü¼xz§zÕ§‡éU,+ž^ÅQA¯yéEZ¯ffÅéUœ èÕ +ô4+¾›fÅÑašuÔ,“Ó¬™Ñ»iV?ò‹ªu˜óDƒw3¨8xìmZ­Ã·ªå
+B\tÜËßy½L¤ï¼Ö+ƒàÎëçöÙS£(=75êŒ:w>77ŠsƒùSŸ[r/ܾÏÀÐݾq†pûöNM,ë…5XuH@ÚU‡$.ÒÕŸÓoR¾Œ¿ëHá‘(ŒM–B÷›è¨Õç("Ï}¸uŽ!;qîaghótÈOïÛ(?èÚ?\˜#Ùðt9
+jd¹Ÿ\•g¥Äåzä5C’?;ž"G¹ ÷¸azI†'ÇQHPã~:ú2-Æó’á´8ŠRÜOF†G÷„8ítxÐÓ2<+nO…£àc¯™	Û“àräK¯OÞU¹(DÙ\¶†¿ümÕËDú¾j²¸ŸÛgp”žà>AL€Ÿ›à87à>7Z€Ÿ¡»Iãá.í3D8BÍ	p¸‰pÆQµü2T¼øPáe"=TX£,
+îç6-ÂQ\«Â}\D†ˆ9:wB܇ÏPâHàOïå8Eèå>E\ŒciñÔ8Žkäx\çåÆä(Øo†$~^<MŽÓQîÓÃT9–O–㨠˃¼`Â<3+N™ã@šY¡Wu`Ñ{«:PðØÛ´L…õy±»U8úØ«ÿ£(>L¼˜‚éãìаÁŠ Ž½¥Î»°">/n¯6Àñ#¿èz–¦.êFtDìL6äZ½ñõ²&ãµèÙÌDׯ+ü¼ßÙsÏ»À‰ÁÂ
+ŸyÞÉïI•JÐU>C켌œwÞkÏ»`Q­Þ›²m¢+ª>ÐœÉ~m䨘?–“œÃ¶8Ù' ¥<˜?ô	Ù«ä=¹SçpOþU¨‰Ó
+±Ÿ¯¾ÿ±œ-¥Í7Wêíò¾ûQÅXp¥7®ý›õÕwW™Þ8íÿ ñÜFCendstream
+endobj
+304 0 obj <<
+/Type /Page
+/Contents 305 0 R
+/Resources 303 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 140 0 R
+>> endobj
+306 0 obj <<
+/D [304 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+307 0 obj <<
+/D [304 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+308 0 obj <<
+/D [304 0 R /XYZ 56.6929 742.9638 null]
+>> endobj
+309 0 obj <<
+/D [304 0 R /XYZ 56.6929 711.0834 null]
+>> endobj
+310 0 obj <<
+/D [304 0 R /XYZ 56.6929 681.1955 null]
+>> endobj
+311 0 obj <<
+/D [304 0 R /XYZ 56.6929 682.6549 null]
+>> endobj
+312 0 obj <<
+/D [304 0 R /XYZ 56.6929 671.696 null]
+>> endobj
+313 0 obj <<
+/D [304 0 R /XYZ 56.6929 660.7371 null]
+>> endobj
+314 0 obj <<
+/D [304 0 R /XYZ 56.6929 649.7782 null]
+>> endobj
+315 0 obj <<
+/D [304 0 R /XYZ 56.6929 638.8193 null]
+>> endobj
+316 0 obj <<
+/D [304 0 R /XYZ 56.6929 627.8604 null]
+>> endobj
+58 0 obj <<
+/D [304 0 R /XYZ 56.6929 590.7101 null]
+>> endobj
+317 0 obj <<
+/D [304 0 R /XYZ 56.6929 563.1566 null]
+>> endobj
+318 0 obj <<
+/D [304 0 R /XYZ 56.6929 529.3186 null]
+>> endobj
+319 0 obj <<
+/D [304 0 R /XYZ 56.6929 530.7781 null]
+>> endobj
+320 0 obj <<
+/D [304 0 R /XYZ 56.6929 519.8192 null]
+>> endobj
+321 0 obj <<
+/D [304 0 R /XYZ 56.6929 508.8603 null]
+>> endobj
+322 0 obj <<
+/D [304 0 R /XYZ 56.6929 497.9014 null]
+>> endobj
+323 0 obj <<
+/D [304 0 R /XYZ 56.6929 486.9425 null]
+>> endobj
+324 0 obj <<
+/D [304 0 R /XYZ 56.6929 475.9836 null]
+>> endobj
+325 0 obj <<
+/D [304 0 R /XYZ 56.6929 465.0247 null]
+>> endobj
+326 0 obj <<
+/D [304 0 R /XYZ 56.6929 454.0658 null]
+>> endobj
+327 0 obj <<
+/D [304 0 R /XYZ 56.6929 443.1069 null]
+>> endobj
+328 0 obj <<
+/D [304 0 R /XYZ 56.6929 432.148 null]
+>> endobj
+329 0 obj <<
+/D [304 0 R /XYZ 56.6929 375.9587 null]
+>> endobj
+330 0 obj <<
+/D [304 0 R /XYZ 56.6929 375.3609 null]
+>> endobj
+331 0 obj <<
+/D [304 0 R /XYZ 56.6929 364.402 null]
+>> endobj
+332 0 obj <<
+/D [304 0 R /XYZ 56.6929 353.4431 null]
+>> endobj
+333 0 obj <<
+/D [304 0 R /XYZ 56.6929 342.4842 null]
+>> endobj
+334 0 obj <<
+/D [304 0 R /XYZ 56.6929 331.5253 null]
+>> endobj
+335 0 obj <<
+/D [304 0 R /XYZ 56.6929 320.5664 null]
+>> endobj
+336 0 obj <<
+/D [304 0 R /XYZ 56.6929 309.6075 null]
+>> endobj
+337 0 obj <<
+/D [304 0 R /XYZ 56.6929 298.6486 null]
+>> endobj
+338 0 obj <<
+/D [304 0 R /XYZ 56.6929 287.6897 null]
+>> endobj
+339 0 obj <<
+/D [304 0 R /XYZ 56.6929 276.7308 null]
+>> endobj
+340 0 obj <<
+/D [304 0 R /XYZ 56.6929 265.7719 null]
+>> endobj
+341 0 obj <<
+/D [304 0 R /XYZ 56.6929 254.813 null]
+>> endobj
+342 0 obj <<
+/D [304 0 R /XYZ 56.6929 243.8541 null]
+>> endobj
+343 0 obj <<
+/D [304 0 R /XYZ 56.6929 232.8952 null]
+>> endobj
+344 0 obj <<
+/D [304 0 R /XYZ 56.6929 221.9362 null]
+>> endobj
+345 0 obj <<
+/D [304 0 R /XYZ 56.6929 210.9773 null]
+>> endobj
+346 0 obj <<
+/D [304 0 R /XYZ 56.6929 200.0184 null]
+>> endobj
+347 0 obj <<
+/D [304 0 R /XYZ 56.6929 189.0595 null]
+>> endobj
+348 0 obj <<
+/D [304 0 R /XYZ 56.6929 178.1006 null]
+>> endobj
+349 0 obj <<
+/D [304 0 R /XYZ 56.6929 167.1417 null]
+>> endobj
+350 0 obj <<
+/D [304 0 R /XYZ 56.6929 156.1828 null]
+>> endobj
+351 0 obj <<
+/D [304 0 R /XYZ 56.6929 145.2239 null]
+>> endobj
+352 0 obj <<
+/D [304 0 R /XYZ 56.6929 134.265 null]
+>> endobj
+353 0 obj <<
+/D [304 0 R /XYZ 56.6929 123.3061 null]
+>> endobj
+354 0 obj <<
+/D [304 0 R /XYZ 56.6929 112.3472 null]
+>> endobj
+303 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F57 148 0 R /F90 192 0 R /F52 139 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+357 0 obj <<
+/Length 4253      
+/Filter /FlateDecode
+>>
+stream
+xÚí]ëã¶ÿ¾…q(/pfIêÝ¢¸´y!’¦ÉEq¹Z[ÞΖ\IÎfQôï_¢^¤o³Á¶À"HD‰Ãù
+9ORZ‡­(üÃVQLâŒg«”E$‰Y°Ú¯èêú¾ºbŠf£‰66Õ_Þ^ýþˈ®2’Å<^½Ý¯bNâ„F«”&$Èx²z»{·þñ¾Üw×Ñõguýáþ½~ÿöÊV)&	@¤«
+c$‹".†F0,I׿—ห/Þ¹´XIÆHñ¥ú×Õ»÷tµƒ9|sEI˜¥lu7”ð0c«ãUÄ Ä\?9\ýxõ·ž£îå!	iͯ†&2ëâ\³$ʍÓp~ÍÌÂŒ0É5û²©¸d|ý]Qþp½	X¸þ³|²­Ç¢+¬ó›úÜÉçÝ]®Zm±íʺ’7õ^w²qn‹F¶nÏå®PÌ¿Öcó‡V²~õµæÐìôˆ®–צh»¼QCöFØ|¦÷PßÊÆO”òCñZ27Òl€ø|,­¤BEÃ*Œ!o®Y
+2«É‡l½ÍQ®o
+ù ¦¶“­|ß	™¡)¡€JâÛ¦<uo`Ò4YŸšú¶É’N!Ò*?ä•bUí£J¶N箕„Š9³æ7ý<ÑTò›b_7Å@>¶n·×lÒ
+ä¬+!¤CµÑõן¥kµgÁ/Ò"AÃ荮wuÑVŸ Êy×éΛkN×çn4z[W]“ïJcJt]¶¦knËê–é’f,Ò}Ww…"”æ°ÛÉÆO4¢Ú\èúÛòÃ5Ì¡€§ìK¾§ŒD<ôÄ%›jÙÇÊùçÑ4¦„%…œ šÈG„ÅŒ
+A‹k­9òR¬i¸¾W^®óö~ÛÊ鵡ô¨MlC†ÑEY	s¹†ò®TO•æ7Êá"eÅ°ÜÞÍ æâQ՝5íŒë/nŸR	öPŸ-ÁéT4Š‹tI!Awnª9ëÝ­÷E#Ý!HÖ»¼ËeK,FÏuå±h_KR«„wˆ^µÂ¡ãõ?Ôód]ƒ!7²YÕÕfW€¹˪-»­xSÜåhø?—µ¢»Ç…¬Ï‡¼ÝæNdó\š]A/hÁ3¥KXÂb÷z.bÕÊÁÎÕ®h˦PN0BFOU&bÈ	îÍ¢;	IxæI96•Ã4•×\ ½;8A;Ø #w,wØÞåÕm¡rX›lû²í>Xëá*z…Š1þ§ØžuÖÀC\ø¦®úŠAIÐß*'ª¶M‘c|“ýRKhgwÞš§Ÿ}ÿweó2ÊAÿY¡ÔJF=°»kê®;HëEáº-†¼?ÎÙFý_Ð-Q¾7 pS*&TOEÞüŒÎ’7ºOÛø†!V‹6E#ß4öØ”Eå°)Måµ)hoSNPcS6(Ä/“	óÎr,õô¾<ÔòÜ^ê•ÆùºæA6÷hZyyÐëˆF‚JS0?Z•‚¿èí—ªðh¥Q‹ë¶>WJ^U’¬Ñô~¦ÚÕ3YÔY”Æ„Ò8të̦ZÖ™¡òéÌ	jtæÕ:€â@¤ë»-úo2á`øPkÛªÀÃîãùЕ§ƒêкƒz¨U¤˜úPŽWO7òRLqQ"3R岃4¢r4­ì¹-ª¢É»b'×JÖ"Ç„* θ[Se%Y!{Û;™\ð!´ïï‹ÈD”Õ"­eëÏkùH†Ah¨"ŒF>Éåe{W—[õHÔpLeH	c]­ã
+Ç?‰Áp"ɦºðMtP¸"ÛÊ›r?’궖7ùöƒH¦y³S´]m0%ÜAÖ¦Z¼Ù:WVÀ‹©0
+9áŒyR¡MåpMåuhïNPã6(,òézÃ2Ú/2ÞÜ‹M¶Ä2cãƒ`ز3— .»;µ·¦+Ø‚'\ì­Y˜°ðt˜)û¬f*½€ñV&ñ´ý¦½5;&Üo´£øÖ–·U~ÐQñ|{ש„£
+ÎA(샰Ùa at nJØŒ¨ ZëHލƒø©.+-Ç_çXáuu«†àb}grÃ6oUK‡nSS«À†ÇíÌòìuˆ—6YWíñ)ÔáZ
+–­±Da¬6¶d帉cNÀ¢¡˜­YÀâ>üA×O4UÙš·ò9ʦÓ$BÙ¾¹y€M™T9ÞːˆôRÏȧU1WqªjE
+–-xÝÕb9TJëÑTà~ÝéÁ¨Zò8Õ¢
+îÇô³9¨6Ôè]‘ïäÜIÀöC%e=Hë—zIBm,I wBðdIw'›"cŸpñ2¬l@©¿?d·±Sx‰ºSMa'‚ó›7oÔR¦Ìo!±
+ðØÞŠ¼Á‰ã‹‹–÷j­…g¦kqï­¹´Îd!
+mÙeK¤ñe¶ñmRÆ)_	I’LŸÒ~Li~7ûnWo?lÞ•»÷„ªDˆÏbAø7‡ò
+¯ÂñQü’oUžR‰©àÍ¡¬4g‘}°UVeWbäÀp.äý~)Ô‡aL’8àîPoSɨËWŒ’$ʱސáp’ŽASŽGnLEンBÄï¯ôWµ¿HR™ñÚ4"­?È[‘2áÚ¢‰£¢ÞÌÄ¡NÑR)	ô)߁Ӄ>¬É+½íTa°ua«h¬3Z¥·DTEXq|_ÒýL<”1è¡]<Å	2hDYäV M5“63˜÷¼pªlR!'ÐËRî†ÔDH<ºÉ s ùÏk&
+Fë‹©h|‡*}…M I•|¶ôÕÊÇçÖ,;Ònö‡xu^Ò=Õâ&"€eH’ȳ‰°©ZÑTÒ«µâ‚ìµâ„4Z±!?/›ƒµþqlÖžAíPËV.ûŒà.Ý©Ÿ¼9(r•#âX’'ëWwE£¨!8Š³ÜWŠT@«ö1 Ðv I"%Q5W¬°"¨dK):Í [ÄR‘YGZÌÙÜ õ?ܶjë85õ¶hU€(u¡#gÜ›¨&àý¹Ú:Ï©‚0$Y3iYTÓÒT8³`Ù´\½i9!iِÖä§m×´§ƒ^H}š—ëm?dBåÅÅ)WHÓ£}_æH4Äë‚I­ë`yNÙ|Pú»/tµkªR|=°¤»;^,*Öúwu^*‘6I¥.§UyP'¼õ[qøŒ^×ÎfGN“arü±<ž…8^¥€$4d+È»$M2iJàU(2^¾Â7‰PÈÇ°oÒ'Yš¦«¦Xí­7ˆª“.¼;l/åÐdÊò"ÒÍfd˜²9Aåyö7!<M”F¨ž
+Cº4NIõÙ>Š·™Ë,wÓûhþO ûâS
+BWÍíJ6~˜sž0ÂiÒoù¡üÆÚ.c¨Ð79dà„&<]ټƒE°­}ûäŠF<ñÉ¥ÉrmónâÈ8žB²ÐÎ}’I²`(™(ƒÀs!Kd!‡Z€9Üh"ô„B“)"¼ˆf#ÈÅyz/ú˜o¿U‹DÒrà™5g$À<ºÈ”ÄÑoÔ诈gú»‰>CCq›ñhþ¥¬SÌžüÆq;}š¸?6j'ù’Ë£jò˜¨ýþO ûDm¨ó‚Œy‚¶"B?ìNŤ MÁrx¸²˜=66ª0ë–KR…¹~ø²<Lƒ²•„K\’m‘tÂQÿ¸X@	Î^,üÙ-ÜÒ„ÃÄ5•°ñ&ß‹€­ÙI)oì׉:á%ßöDtªj…!(%‘™¶hΗnÆœQ„Wcü,Äï
+Ùì¤=rè¡9&(Ç]9ñdÆXúI†¡ç"Ù­à¾	¶ôl†"ØM±ø1ËhÆzEcÌ*k!±ÈmƆÊ:á¦™-FÎI˜¨Så—ÀøœÑÒ„#0j*ñâétšä~NÒ ëB[¯“Ã'EäÁ”uD4Äœ
+‹:~@/¨*œð¦¬°á=u…cÖ–<–ƒ;¥ëÜßZºå­™K+ֆ̍<ᦽ|‚Á(FãKcè}Hºd¤šsõÃD‚4P¦òᦰæŒ2¿E²Œ–fÙÅ3×ô>	.»À$9K	M³à)L’sˆæàý>á]02Iü8l"^DI§±[/†Ê<á¶d‘&í0F"¦>h~I;O˜vâ\3AC¶–Ø‘O4jìß‹ê¢P	Eê-Ù‹ºžP]&ŽøGœŸZªpœŸjª¥Àlö¶fžú…S4³³°Eût6:1Ö°Ð/]êÏç'”1îOÑcùæ:xYžápc¨|ÐnγÈSPÍŸ›¾8ã“ÄN{‰—c§¡BuýgQ]PFÇAòr¸úì;,[­j*ïÑÓ@³‹GOnÔ	/ßÑÓô²£'cÎΣ§¹I_zôä–c‚à9zúxI~ÕÑ“[xC7ž/==bû©O”1†ûèÉiÆýÑ“tÂÍ{ôÄ X‰“4y	ŒÏ-M8£¦ZÜôš`fköW¾•wËfb—-›¨)Ûe{wHgÛ»xÊ
+‘ß½—ß/Û<,f²ôÅæŸÝæ-M8l^SùmÞÖ쯵y§lÆæmÙä>¥]ØI¹ÅÛ*²Ù—
+ ýFâtÐìÅèŸÝè-M8Œ^Sù+`[³Ë°uÂË[@/¬€Ý"Œ9»+à™I_\;å˜ ˆ/­Äo—,&³ÆJqNi¦u¤
+.c0T^Ð17„$¥/o0Ÿ?ºôŠX.QjsÿVyÉÏ,½>îì/ËH0Ÿd‚Š$Û.o:—…Ú"7ž"ˈ¯—wŠ6â¯-ÝØc®ˆ].G
+.xÚû½S.ãö¶\ÕD° È‹±§L{ë–KR±\ûýñ«ÓD4‘V¿µaßÎ04^>n{þ·3¶*–ßΪÅËÄ@[µcñúªÂ‰:áµT`é@8Àt×5r„O€ßù2ÂDØ™)û*š>ð:é#¯-Êvñs’LjҟºE‘t©oUL¼v‚ü= cnó©Ç„ÿ¡%,ÇxSPºá'|²ÎÎ9÷‰Å:æ6?gýšðÒ9›×ŠxýZq ÿévéïEÜs69ˍ9æå/¡'i¾ÔÐÿÄR…#ƒh*±U»œAœ¨^¾2À¼,ƒ¸ñõd™)_žAœ‚ôÄ¥YÎ ¥Ï nQLq¯Š‰ù.C°2ˆtÌÍ“A†–pAqÃOøz2ˆsÎ}ñ€Ž¹y2È…sî3ˆÞdþÓ=þ”M~,¿¸tÏÝ|qéŸp[üâR|›yñä%µ]}ï9ô¶ù£nó•¤sâý·”nè)7qÔ=M!ÅfÏÛÐ{áÇ|g
+ÃöóÌ3eEäƒóBÄ÷X6¸KÊú¿‚|)žµt°Tá(4•ëµ‘I¥¶vç]Nä>iÚÐï–“æ Ôqäe¥Þ$J¾\N”Î9÷‰Ò:æ&ÜI¾)ûÓò¹Ö…S×ô>)$J1û¡¾þôß={ó\ýÜÙ´CÔÉhtñÌ5½OI7Zÿí⇜îi›9} cnޝWFåè—èù[}Ëi­ðò+OMäü’3
+IœÎÿ¶ÉÿÑïð…ΐ“ˆeÉ|o@¢Tþ>Àýÿ,6=Gö_9[]qendstream
+endobj
+356 0 obj <<
+/Type /Page
+/Contents 357 0 R
+/Resources 355 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 382 0 R
+>> endobj
+358 0 obj <<
+/D [356 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+62 0 obj <<
+/D [356 0 R /XYZ 56.6929 465.1132 null]
+>> endobj
+359 0 obj <<
+/D [356 0 R /XYZ 56.6929 436.1462 null]
+>> endobj
+360 0 obj <<
+/D [356 0 R /XYZ 56.6929 410.4223 null]
+>> endobj
+361 0 obj <<
+/D [356 0 R /XYZ 56.6929 390.5382 null]
+>> endobj
+362 0 obj <<
+/D [356 0 R /XYZ 56.6929 358.6989 null]
+>> endobj
+66 0 obj <<
+/D [356 0 R /XYZ 56.6929 328.8596 null]
+>> endobj
+363 0 obj <<
+/D [356 0 R /XYZ 56.6929 303.1056 null]
+>> endobj
+364 0 obj <<
+/D [356 0 R /XYZ 56.6929 280.7073 null]
+>> endobj
+365 0 obj <<
+/D [356 0 R /XYZ 56.6929 282.1668 null]
+>> endobj
+366 0 obj <<
+/D [356 0 R /XYZ 56.6929 253.0585 null]
+>> endobj
+367 0 obj <<
+/D [356 0 R /XYZ 56.6929 255.3499 null]
+>> endobj
+368 0 obj <<
+/D [356 0 R /XYZ 56.6929 244.391 null]
+>> endobj
+369 0 obj <<
+/D [356 0 R /XYZ 56.6929 233.4321 null]
+>> endobj
+370 0 obj <<
+/D [356 0 R /XYZ 56.6929 222.4732 null]
+>> endobj
+371 0 obj <<
+/D [356 0 R /XYZ 56.6929 211.5143 null]
+>> endobj
+372 0 obj <<
+/D [356 0 R /XYZ 56.6929 200.5554 null]
+>> endobj
+373 0 obj <<
+/D [356 0 R /XYZ 56.6929 189.5965 null]
+>> endobj
+374 0 obj <<
+/D [356 0 R /XYZ 56.6929 178.6376 null]
+>> endobj
+375 0 obj <<
+/D [356 0 R /XYZ 56.6929 167.6787 null]
+>> endobj
+376 0 obj <<
+/D [356 0 R /XYZ 56.6929 156.7198 null]
+>> endobj
+377 0 obj <<
+/D [356 0 R /XYZ 56.6929 145.7609 null]
+>> endobj
+378 0 obj <<
+/D [356 0 R /XYZ 56.6929 134.802 null]
+>> endobj
+379 0 obj <<
+/D [356 0 R /XYZ 56.6929 123.8431 null]
+>> endobj
+380 0 obj <<
+/D [356 0 R /XYZ 56.6929 112.8842 null]
+>> endobj
+381 0 obj <<
+/D [356 0 R /XYZ 56.6929 101.9253 null]
+>> endobj
+355 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F90 192 0 R /F52 139 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+385 0 obj <<
+/Length 5016      
+/Filter /FlateDecode
+>>
+stream
+xÚí]{oܸÿߟbaÚu‘¥ù)éšú¸Ëáèõš¤@4(Ö^­³¸}øö'ß¾¤ø%ŠC%vaã*ÁÊÚÑüf8äpDgÉËdÂ%-'á(„M®7gxr#¿ûþŒš™%šùTysvù’ãI‰JAÅäÍr"(9æ“爕4Ÿ¼Y¼¾¾[-3Êñô¯»Ý/WòÿÅ»7?ÊGɤ
+¦Íò\B“!¨äœÖ
+ùX^L/õaê¹³ïÞ8¹¬XyIã´PRýzööž,¤?ža”•™ÜÉ?0¢YI&›3Nä%ÔÞYŸ½>ûGÃÑ~K3”á‚÷·aˆR>™	‰Ï¹¨‰¤ÔŠN}|¯ð$+(aÅ„¢²(ŠÉ¾š,=ó%Ì£ÿ@\˜ÍL’‰^1õýÌñd&/ò\óÆV¢èŠ²­ùÎà³x;Mz¹»o¿˜ÿÈm^lAðd3ѯúFOž”±Œ»ÑSb=25\o¶Tj|ÕíórŒá\vuŸWW2ŽX^–I¹DŽ2.GiB.KÖ’k}è
+–²GÓì!+â%e)Á4YÖìz¾^/Vû®t„D9áiñŠ¤x„JK1’”ÏÐuÜW‡>ù¸|Ž`Ê'Ç1G=¢ëŽ<ŽéÇÓLÎ2¹ž"cšMÐCËLÍadâ3ijD	Ø€—Âý:˜>Êq&©H‰ä„”éÑ;“g	`‚°Tµ;QÝ©kYë@[–íJ×xYÕyYôß匔̨Ζ<^“Ñ6ø«Åü8¼qʐÎÒº9âá™
+`	IIgèè “‘!ZÊà´‰£Jk:ѱ
+
+¬B
+é¦CÍâèS|£–¡êm€–b€eò¤e().Êd¯5tÙ ËÐ,Sã;‡-ã¨RÀš®èX†–¡‚ B‹l¨e}J€€oÜ2…l$ùjõ0–)”y²ë:1À2Œr$
+Q–qT	`M—w“†a2+¨C
+ãèSøߨa˜mDEBoù.Ž©r¡c0øTæo\ Îó"1[ªø뀘eNéÄgNà†(ðƒAQær¾;Óãw&ßñÎä¨Lg:­±ÎÔ2m´3Á°¯H4¨ÞT	!E4wXú¾¡ëèÝ2Š0!°ÞW$š€0!ž
+˜…ˆR-—f°]U
+YÓñŽeú"BŽ
+2Ø.š:^Sa2À*”PéhJž¶JñÁ ,žX…rŒäô+`«8ª²¦Ë;Vé‹â¸`CíâèS|ã–)Êpž?ˆe\0˜Ïƒ,ÃAXˆ¶Œ£J ºŽ#é
+s½æ6Ð2Ž>%@À7æ’Ž¯LhNå+V.tŒŸÊ^È«,1kp±¿áÎÛÚ¿Ì¢¹àÿ»­(|](»§Öìfuh°Ò£np÷QÈqÀ
+^öï>ºå%Ê2½ƒøÓîXêXWa•Œê øýî‚òéÝ…|*¦Ç÷•¾@9žþþ‚óéAßØ̏×ïõåí¾ú7Æô£þk¾]è‹Ãi©8¹¯òéb·=šïnç[}%c|Ãqµ=Vû„O«íj{cxϏò®¡Ýœæù«Ê>}³:œ¬‡žÛWÕõnSiœ:óý~þÉÂ.Vו!®üÇ™koÏõv=_m5›VÝÎ)îýÕ|!ïÝè?î.žîö¿æ¿3OWëÛƒ¾ü7æxµ½^ŸžÂš–ßK…éÍiot؝Ž­†ÎÐž|‹UÝòËj_mjWÕñ®ªÅaµ¹]WÿÙÌoo«½‘\²k©Mjµøº:|:4Ä4›¾üá_ûîk}ýϺÕ)3­+ïœw:×÷µÄòBGQ®w×óãj·}q®yÜÎ÷óMu´8ǝþ”lÌ
+‹±ÚÞÖ
+!/뙡~z¹ßmô½Ë÷Òè—w«õ¢º¼ZÝôZT=wù‡öÐk¾º’Í-›ðê–î ·é—»½¾x--´®^®ÖÕßL£¨»ñ1u·:¾WÆ¡™˜>ÿF~ڝôÅõÜ|³Û®?é«÷óŠ§z,è;sõ‘O×+Ù4óµ¾w8îënSПÅØ`+[óü›gúéíîh¨
+•é92¬8H-‘l:\N_Ë6$Ój1ÿ¤Ÿº3"ÈÆ4ÀfH«K©—AV¦RŸ›ù/ªÛWmmç××Õ­Eï3ÆMµ5šqÜ#—ä¨L~«L^œTÏSj”=¨1¥ïêd®°T¾úZsº]Ÿ$Tóu-ºü¼=­ ;=€ôsý±^Žî[ÃÖ¡¢¾nt·—æúVö2…_Ãõô
+­ë\GÍõ½¶±E®š¬ÌÊ1³b´ZËÈ€²ÄÆ™£ƒ-Ÿ×}3+`¹,YK.9QĶó@2·ÌK¦ÉX[²zœ÷¯´˜ÕH at o
+Ævk(-ðp#£(Ï»˜ñ…Cž×d¤
+~¨sØbë7°Ö„ë$·ßr„nž“*–9+F¯=zíA^[%}f2T‚½¶£R#ñø鶊ežùìî›y‹fs"Z¢-eœ]‡dó¿aX·øÝÂýc,ŠÊ„@™àc^ÏÃwtã­Æ•¶'ãJ8G‹ÄΫ£ŠWçJ<v÷v% h–¬-Zl’«‰í`D›ØB|Þ›ÎÕĈ;uëË £+Þá«ÀÏãn³Gß„ž3iœi·SÄw¿DûlJMÇR-cƒh°'4¡v
+Ô„Ú-Ðoâ3J–!žå£¿{|çYðw–*éï|ÃÞ×߁¢¹ÐÉm»ŒeCC‚5ÙÐ0¤u9>âó¸Ëi!u5  «ñEÇ6Q–HÞ«tJûlJMW„]£^ß‹Kø‘ì³)‘4]žj›v‰&6jh[ €çc²ßŽÞp|µ!RYQŽªß»Ø…7ŸY š[ă!sŠ
+FEòEl	¯8À™‚ØΙúØn9>Æ@j{ˆÝ,>x½-Y†)ïE/		lôâKð§e¸RX Âq™ÐÛR¥PnFowT
+ª¦Ùqío\ûý¸öãX^eê…ÝR;6>¯ûîØÀr¹‰Ã—«wwÀ°÷—ͽXƒ¢Ù(×—,¾c㜠žïAè[ÿŽô‡œá®½âó€¥OÁ|ã{6öج7êø×÷žŒ»`%—Ý'Â>GÕžˆÄa>¿ûn¥Â²Y²–l‡ÛèèˆÖ¼
+²¹·Á¶p½#Çex^è– ¸)àYl·™ÞãM€Û=Þø^ñYtÖÚåè'€sŽd|ÌÚÀ½!³õSC5wÇ6|£wÇ6 ?º¤ÿ„xŽ®%Þf·X-WÕ"LÕ—DYÁDBwº2!¡¥kI¨ÒûÖëOaF½É‚{O“+Ÿ€¶¹òÝÞC‚|q\ª5
+6´÷8ú„!ß:aew=¸	*ÞÜLÀšƒ›°¯p‰ÿC•vèö @Û[PyˆÀsõM¨m©RÀ‚!–	’öö¸èPÍ
+y¿Ã5fì"C…àâ(X©Ê2ñäX0tb˜£PoêrÌ&Æ¡P¾Ï+/>F}O%ê“]+Ï)X[ÅÒ ~ؾ‹yìâ{	 f—SÌÛ•–3TFÆ®ôè]ɳða©ê³X§íßF_ |ËFK«À¨/}2{&0žRL0f¤œQŒé,—¶ÄˆÇ‡M„
+JäN‘¶D:”nw8L¼jÂ5¨1/Æ|ô«Oh0Š
+ž%«%R]àçýîFSˆUýñ9†¾ÕÖúqÍ
+V7Z§€q‚Š’³±3=zgò,xVK¥¬úrµG‹Vµ,{ߥP6·4ãËv8Ώ§C´~ $ÝÌQ%€Cnp_Ϥ±˜Èƾþè}ݳÐ×-¸kѲê=w-`¹,YK.àœÉHÖŒ@P2{Τ%Y<Å­ªà«>=FOeÐÐRZ9O”½uT.
+ó«X¬Ï°gyQQ—,ù?8ÏHŽäøÉàñ«ïR®×ÇýéúxÚW‹Wõ™Ìs
+Õñ•rMøIþüê"ÃÓ¿ÿê»×¯õ7õAXuµñè룪ê¢>°.?O‡j¡¯ê£Í‚L¯æó>Ûl92¾¡ŸªOËyw:ê“Ðêž9Ö®no¦=Ǻ-)qBÝPêSA¨Oݫñ>n\S	>E3*ÿ^Ï·‹ú4nýx-‘9þö¾ùüàš÷?ûVûš3├žv§ýuõ¢>ÞmX¨Ó˘N›£âèRCœ?««¼8WkH-7üá¸Zž?ë;_|ÜÏ·‡ån¿‘Ô„eê?‘&;Êè}¾9×ùmÝó»ÿ´ç‹kËÔ'Ž·‹ÝõiSmªñԝó”^çí3ƪ™;L­;GŠõ
+Õ=ÔnÛyÐœï<×{ý¥’É_÷ŽGC+ÊRŸcÚÊ8—
+™Ë$1bL[aG¤×$oV[úUlMÒgø…Å–Üë5,œy½nwˆ&!C‚yÌ0¦:ýZäD´Q/£oWmP »}ÏJÀ|ué—MÛi†µ¶ûË	Ô.¯~mÒÌP]2N
+½ËW—æX/B¥í~4¬µ¥JÜúõ¶[ÐCõv[Û	ø€¯‚¿ZÝôW¡3•ã@Í›úr0´«/kN)C™t#C5wô)xM×iø^µmcXmWê8kK'Ô¶µò†ªíjë%àmm½üA—	*S$T–?¬8•Ü³ñ\çSšoI†2’ÊûrTµ{'äÎbïŽ>Ãø	J6àÕ›îèføb|·0vÀµVÙFøÑi
+ÐzpQ|—Ž	KèèB«ðH1RÐ(¶iÕ– …BJ‚HQ–C­âèSðŠ®hÊJ$ä„1À,ê®7î”°q—m³ÐžÁÒ¸KÈ0Ž*…pë5«F?Ð4Ž>	ßå‡1²Lä2fšb °ŒŽ®-#“Æ)Âj %Ê
+8sT)dMW$Œã’|Çѧà5]>Ð8.“'©û˜Éó´æqÌÔDb7Dfñ†0‰C˜]NðîÃ
+˜Á!à.ÏzÕnµŒ¿‡ÇUͬ$Ÿ3sC’5w×Ñy0ƒ›¶AH7kCfh&íAvðælÛLÙ°\tÒŸ3SCr5uËð<
+›¦AØ.¯Ä$=ÈÞ
+cw¸FŒÁp†ˆÈ³‡ÞÔ‰ÖÌ̾53`
+o^aÝ´Y£™•YÛ”Al7'ÃÖÈ0Q‰]ÖW¶Ãê8ñ8?‘¹˜”TN-`*$›8¢kØ>Ã@¼K·2.©ŒÅÈþXŽÏ9œ^鈆0á}7‰`áÌ&QK¸žL!·¯“”lÀaE·™‹æèZÂí«›êã-®ôJÔ$ m‰š4Š–¨iƒYÙ¶XMÞ«iÁ÷Ó´±/¬7Ëut1úŒ'ã3x‰‰,ZG•ª…ê³»oA/X4[ƒ¦-Z-ZIæy)Óz)2Z}EmˆÊhvÌž}ü>îYèã–*ÙÇ}ÃÞ·ƒ¢¹>ùÔ'\33ÒÍU8äwué×EY𱫏AöoÞ™¨"-¬LwT‘YIWoãŸÛ—nö4ÎÍ9_´Õf~Ó“ðî†? žïL@à›B~ûîy´P\(ØfKÆ%°%ãZ¨\obë¯`8ª„!7ØŸÊË<VPüÑîY"þJm‰ìYp•GC}ÛÆãP×Æ¡>î‹óËø0naå{Ü€áC¾ÑôF{rÔº©Þ“Àµ…[¸—±ä“¡ZÛìʸ­ÞÓïÏo´§ža­ÝÙèpÀ­_k›9Tm—^™€ø‚ùæd6¨yS–†¹õ'úÙtɁš7é•)x“^Ù‚ïUÛ&ÖÀj[ªnÀ­_m›.9Tm—^™€·é•-øH~cž«SO	½
+Q
+·Ë«.Çü,úsÁCÕ¶ô)ø€oý³”ûj¹ú­3êÝÔ‚‘m¡Ž;&
+TÜѧྵ7˜ ‚
+‘ÐÙR¥@nýÖvE‹†*íŠ%ð5]Ç«NË>kÛâ@°æ®„P9à¦ÍÂmN¡~uvð<æèºÎ,Ú·ÏJ)â4KŒnG•‚
+¸Õ—>'8“]„c<.*üÖ_3äÜSšÈ6·DñE@›\æ±ûÒÚ¿6§”ÌRù’í–Ñ
+£€XÞoZ€ˆî'-|HuVÕ.
+äÛ¶`$k#;‚†<!C—«.ßáSU[ƒ±u[<jGðê]T³,â¸`Á‘'°»\ëF¨OGËQ‚*»j”0¬-Féþˆæk
+SÙ‘Ã؆¬ÝÜýh.¦‚Tn4¶ËKÁ†’ͨ²ËBƒ±»\õávõÛôAšlÌKXcK”@íòÒRo	JM
+TÛi° ]®ýq)ãvÊ3XeK”Bìðª7úã1á0u›w¡þ!À&åÅ–&§©HGYUa |°á`!'c<n¦>z¨ÒØ!ºjHZu!¢Ag×xL ºÀƒ}q]õñ¬„‚Èžuø£«MÄ]CÚºƒÖ f‡SÿZ Í¨¦¬KӁ;<uÚûã³:RÕäèƒx6EßÃC®¶Š®<R¹Y„DèòŒÞnm
+PºY1íꛇÙ÷’lKìÈW9Öÿàx¢~'Hïøõìí;<YHšÏÔùÙøwõï¨Ñ¬$“ÍYS
+DßYŸ½>ûGè¹f
+G‹ö_¿Wž¿endstream
+endobj
+384 0 obj <<
+/Type /Page
+/Contents 385 0 R
+/Resources 383 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 382 0 R
+>> endobj
+386 0 obj <<
+/D [384 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+387 0 obj <<
+/D [384 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+388 0 obj <<
+/D [384 0 R /XYZ 56.6929 752.3934 null]
+>> endobj
+389 0 obj <<
+/D [384 0 R /XYZ 56.6929 741.4345 null]
+>> endobj
+390 0 obj <<
+/D [384 0 R /XYZ 56.6929 730.4756 null]
+>> endobj
+391 0 obj <<
+/D [384 0 R /XYZ 56.6929 719.5167 null]
+>> endobj
+392 0 obj <<
+/D [384 0 R /XYZ 56.6929 708.5578 null]
+>> endobj
+393 0 obj <<
+/D [384 0 R /XYZ 56.6929 697.5989 null]
+>> endobj
+394 0 obj <<
+/D [384 0 R /XYZ 56.6929 513.8231 null]
+>> endobj
+395 0 obj <<
+/D [384 0 R /XYZ 56.6929 515.2826 null]
+>> endobj
+396 0 obj <<
+/D [384 0 R /XYZ 56.6929 486.092 null]
+>> endobj
+397 0 obj <<
+/D [384 0 R /XYZ 56.6929 488.3835 null]
+>> endobj
+398 0 obj <<
+/D [384 0 R /XYZ 56.6929 477.4246 null]
+>> endobj
+399 0 obj <<
+/D [384 0 R /XYZ 56.6929 466.4657 null]
+>> endobj
+400 0 obj <<
+/D [384 0 R /XYZ 56.6929 455.5068 null]
+>> endobj
+401 0 obj <<
+/D [384 0 R /XYZ 56.6929 444.5479 null]
+>> endobj
+402 0 obj <<
+/D [384 0 R /XYZ 56.6929 415.3573 null]
+>> endobj
+403 0 obj <<
+/D [384 0 R /XYZ 56.6929 417.6487 null]
+>> endobj
+404 0 obj <<
+/D [384 0 R /XYZ 56.6929 406.6898 null]
+>> endobj
+405 0 obj <<
+/D [384 0 R /XYZ 56.6929 395.7309 null]
+>> endobj
+406 0 obj <<
+/D [384 0 R /XYZ 56.6929 384.772 null]
+>> endobj
+407 0 obj <<
+/D [384 0 R /XYZ 56.6929 373.8131 null]
+>> endobj
+408 0 obj <<
+/D [384 0 R /XYZ 56.6929 362.8542 null]
+>> endobj
+409 0 obj <<
+/D [384 0 R /XYZ 56.6929 351.8953 null]
+>> endobj
+410 0 obj <<
+/D [384 0 R /XYZ 56.6929 340.9364 null]
+>> endobj
+411 0 obj <<
+/D [384 0 R /XYZ 56.6929 234.8692 null]
+>> endobj
+412 0 obj <<
+/D [384 0 R /XYZ 56.6929 236.3287 null]
+>> endobj
+413 0 obj <<
+/D [384 0 R /XYZ 56.6929 225.3698 null]
+>> endobj
+414 0 obj <<
+/D [384 0 R /XYZ 56.6929 214.4109 null]
+>> endobj
+415 0 obj <<
+/D [384 0 R /XYZ 56.6929 203.452 null]
+>> endobj
+416 0 obj <<
+/D [384 0 R /XYZ 56.6929 192.4931 null]
+>> endobj
+417 0 obj <<
+/D [384 0 R /XYZ 56.6929 181.5342 null]
+>> endobj
+418 0 obj <<
+/D [384 0 R /XYZ 56.6929 170.5752 null]
+>> endobj
+419 0 obj <<
+/D [384 0 R /XYZ 56.6929 159.6163 null]
+>> endobj
+420 0 obj <<
+/D [384 0 R /XYZ 56.6929 148.6574 null]
+>> endobj
+421 0 obj <<
+/D [384 0 R /XYZ 56.6929 137.6985 null]
+>> endobj
+422 0 obj <<
+/D [384 0 R /XYZ 56.6929 126.7396 null]
+>> endobj
+423 0 obj <<
+/D [384 0 R /XYZ 56.6929 115.7807 null]
+>> endobj
+424 0 obj <<
+/D [384 0 R /XYZ 56.6929 104.8218 null]
+>> endobj
+425 0 obj <<
+/D [384 0 R /XYZ 56.6929 93.8629 null]
+>> endobj
+383 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F90 192 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+428 0 obj <<
+/Length 6847      
+/Filter /FlateDecode
+>>
+stream
+xÚí][s#7v~ׯ`6yÐT,€¾;±+»ÞØe§jãõÌ›×Õ’¸C‘2/#«Rùïºqm4Î9b¬Iz·vÅ!OŸï; ú\ tƒÍ¨ø/›%)ÞÌjVªdÙlñpAgwâ·ï.˜’¹ÒBW®ÔŸÞ_¼ý¶ ³†4%/gïog%'eE‹YM+’5¼š½¿ùùòÝÓòvÿæŠôò›Íæõøß›_Þÿ .e³Z\ZfòÒ¼ªD=»bŒ4EÁ»K+qYU_¾íÿ°L^wñïï
+/M«jÉ
+^KV¿^üüÝ~¸ $oj6{ÿ „ç
+›=\L|ÌJ®¿Y]¼»ø«Õ¨å9Éi]Œ·ËçÅìªøEQvB‚µ”“¾3—øßjtv%ÔUÕk§3Nšº®gLÊÕÍlÛÎn°úͽà(ÝÆ¢Qíæדõ¿ ÷‘.	g™
+JíÔÂ/ÝÂý¦„ζw³þÃOc7~•Õ„åemnü†öwo.ïÞN,›!yóÞn¶í|q?¼g›\Þªlæ*Ò+HV	_€‘kRe%׉qŸÜòa~ש1.ÌÈXr»2R¬’Ë}à/ÐLúJ6l¨ÑFƒôvvð9'U•Ð
+Ú,*
+Šö‡‘ó™­j…¸†ÑòE¸•9áM·^®-»€_S’BÆ,x¸h)™Søò¦ò‘ÿ+y©h.ú‹W„ÕÕä_Ú3Š. "ðç萪8©3™¸]ök/VÚ“ݺß΁ûÑîÌëÚ!=ëó@Tíó\птc˜„1V@ã÷‘–GðC½ãއɍU°ÍF
+
+´{\‘ÃÖ+“mÖò(|'7€ÿ·Ûåª]ÏÂh£]l»u\0¸q\h——ÌÒódóµ<ʠ鳿ËG]§uvíF
+Aµ)Û™üß¿D]¨Ì2ùäA_µ=8P%„ûO§_ãî‚ÔÞÓA„§‹˜â;!ð@+â9kÇ	"u!n3ÍZë5alí4ìŸ	Ym]&ˆl<&ÖÍÆa¦ný%¯Ý¥¿¹
+ÀkÑ7å°ÅZ꒐?‡ˆ¢GXª±½0†+…(CFtÄónàû×!ˆR¬ñð~Áへñx%hNá…'ÄPîEvšÓÄ‘Y9§¥d¿ýw¬»J9“ÀŸºë÷žr{":7d„d§®6wË5ÿ§Øܐ׵AzAI™OSƒÓäëÿ£LäÀY“åð
+¦…Ì
+Æâ7˜£ðS'_ar*•öÈíº¡Øä+Ê-a¶/ã„JÿSrƒ¶Û¶wío<šBì´Ih€V)é°Uâ–ky>ÐíS]Ãvç5áyQN^ãõx’‰t?/àdËHÙµÚÁ ¨3R4<›¹úN¼1k_qŽqÓb·ÝÇu´ j¶V†¹)¹z at nÔ¥é%ˆž³ ƒ Ú$ðUlAÇÇmzq¼€o3^q?	Zmý$l•<Z¦ëê6ÕrS4#½€«]Ä›ò%Æ#g¢ÅiS`ôŒœGïas³¼]¶7â U^/ÂP¨`¼F»ÐÈyW›Å|µz65©ê
+&xe¤0è^®Fâf´!E^e©£ÇÈ#B½’Ábsà)벁
+7Rl'W!¾"Ë¡eY'­å1ô^n\¶¼âÁž¬¨äe1[KaÀeF²¼d¸·ÈJ12x™l¹GñZc]ç¤.‹qY#w2è½ äÊ4G‘g2AÉ‘ûP$E-½ø”õ½–¬¯áªê7¥ÅkE-xbS+:
+Ãõ%„ÀºbnØLîeb`±²šÆÓ4»óþŽå5)ŠªFê4-%oŸëïÿ­Ó};-„ º$ê—o®JJ/9e”fŒÊ’©¸ÊãS”)R¨·[1û0ßþJë 4Y1Ô¬h¥Å¾^ÑÍÀ*1òê_ZHŽ€·›»m»ÛŶ¸ãû`\=‹éâ~]T°Ì§¡ô»%ÓñÔ‹˜©¯w‹íòqÝùàô쉓Lœ^°&g¤z£;^ÌNÚ81gW.9Ðä¸{öEÜÃ;°)þ"0ÐÙùöÃþñ L²Ä62 æP“Ä|$)Æ:³6ð@gWˆ=ËM/zžËÛ¥Õ20f/U»˜$œ¢DÔ°e¢±Zî¥*øž±4ÈxÍ…@g#c4[ׄòªN4VK#À¾Î¾g÷Ϗm8ß#š…V4V>`$ïœ)=y%1¥hä¼c`T1B©qÅÕúÉ‘¦hä<’ptè9ñ´¹%E<Æøà	Q¡èíüÑfd¯¡~p6ß<ށàÚÆ£^lM4Ûn‘†áC½þi¹º	CŽ¨˜jùd$h·‘€mãvgy·S/Õl%ŽµJìëåÝÍ|?TŒ‚™­¥0ä^ŽcfWáel¶GÁ;±A›­×Q`£Íj‚«W[`£3šVVyªÕFWr׶›?<†yU–•$ÏË
+6ÜHaȁ¶qÃs1(DLO6\Ëcð^“c«³Y%‰ˆS7Rr m4Ó’Ëy]${5#Âwr§º_»¨3ù;/rÄjÑŽ
+gS¾õŠò­:'çðÖR#”œo9Z?=ß)Ú|Ë%‰ä[ =7ß‚mN¾•ù–ž’oÁ4½x¾šoó-7Іä[if;ùêMÈ· »|´ÁùV¢Ù&ß‚Á‡Z“ò-Ðl›oÁÈ&ß‚ÍÖùV¢Ù&ßBÀu¾å‚Ãùh´Í·`\“oFÛ|+Íj'ßám¾åÂcùd¸“oÁȁ6$ßJ4Üæ[0| ·Ï·øÈœ–͐@Ãm¾#ڐ|+Ñp›o!ð:ßò‚”oVOùÖ«Ë·ªŒTe–Áù–Jη­Ÿžom¾å’Dò-€ž›oÁÀ6'ߢ@¾å§ä[0@oÂJ
+Ø v-FµÁë)‰†Û>Л°ªnÖUd½²â!Ç×VR
+7«+¼^_ñàï3êè
+l¸YcAmð:Kªáf¥ƒêMXm
+ŸÖ[^[<*9©i¯â¡äxähýôxR´ñÈ%‰Ä#€ž`à@[b<òÀSâL#Ћ×ÿ ù¶þ‡qmHýŸf¶Sÿƒð¡Þ„ú²Û©ÿaà@\ÿ'šmê|¨5©þͶõ?ŒlêØl]ÿ'šmê\×ÿ.8\ÿƒFÛúÆ5õ?h´­ÿÓ¬vêÞÖÿ.<VÿC†;õ?ŒhCêÿDÃmýÃzã—­ØAÃmý#ڐú?Ñp[ÿ#ðºþ÷‚TÿƒVOõÿ«Ë·
+1´åÃD`¾¥…’ó-Gë§ç[ E›o¹$‘| çæ[0p -q½ÅOÉ·`Þ”új §þ‘CmHýŸf¸SÿÃðÞ”ú4ÜÖÿ0²©ÿ]d þO4ÜÖÿ0¼©ÿ]øñÙh[±ƒ†ÛúF´!õ¢á¶þGà‡zSêÐð©þmñ(§"¯/‘x¤…’ã‘£õÓãHÑÆ#—$ zn<‚mi{ú}ð”xÓôâõ?h¾­ÿaÜ@Rÿ§™íÔÿ |¨7¡þ‡ìvê8Ð×ÿ‰f›újMªÿA³mý#›ú6[×ÿ‰f›ú×õ¿×ÿ Ñ¶þ‡qMýmëÿ4«ú„·õ¿ÕÿáNý#ڐú?Ñp[ÿÃðÞø3-¶b
+·õ?ŒhCêÿDÃmýÀëúßfPýZ=Õÿ¯.ßâè’
+~{„Jη­Ÿžom¾å’Dò-€ž›oÁÀ¶Äç[<ð”|¦èM©ÿ¡pê9Ô†Ôÿi†;õ?èM©ÿAÃmý#›úßEêÿDÃmýÛúß…ßýo+vÐp[ÿÃȁ6¤þO4ÜÖÿüPoJý>Õÿ¯-1Ùßu¿ÅHÉðír=_ÅލâêûÔwXÂÜ´˜Çm·ŸïáAR&fì܇ÚÀ·UTÜE´©§±þ»u§'â¹—Jx˳׵±×¨—DxÃb¬÷e³«—E©6´ºú‘‚‡dÒPuÐo1
+ú,Î}DFt¤j¡ñ³‚4ƒ4Í‹FTs¹½›
+1̤È^]cÄdï1¬JQ‰$WY ©…0È@™„üf3ßíÛíV\îÔù©îÑ«"M#´‘o3åÒñ0ï¢ÝÑõåS»må§ær¹Þo77‡E{Óÿ²\÷ÕY­Rä£ý—suù|ÝÿÒJ¿=¶ÛåC»Þ_ÛýzÛ
+׶m‰Hx³âò{¥ðA\$¤Ÿû+珏«åb¾_nÖ»7ìòñm]ZÐúR(½ÝlÅEEt1WŠ®ÛþïÝVàô/«“ìžÛ®ïå…¤œÓËëçþïþ¾•Øåa×ößlnû¿ßl¾ë?,T+	îµ¾ïÿõ¸ÝHS>.o”Âyÿýjó†—OWý¯òÿÚí};W4þ¾¹î?ì×ËÝN˜®®^+‰¿QÊWŠš¨SÖ»[ÑËÝ¿Ú…°h¹{ð­Uϵ–û®ûj&Ú””±ò›¾:2‹Ã¾•_KÓåßÝýf»ï/wý—ò5™ZP)µ½i·þÅsÚvv÷b»v±Yßìä+ýD+V4»ücÿÃM»Ÿ‹\]®»îu­{1ÛÔòÛ¾×ŇkÅâvsX+ó}ì଑yx¥æú_?Ìô§ÿ¹õÝ+ÂÓŒ½]^½ß?~ùöíÓÓÓ›²¸$‹%9,îŘ¾Ûöæð¶{-ðÛ»ƒ$»·bĉûUŒYùOòxÿøÆÌaz*œ¥|-¢oÂpºD	!´]&)—5EEh™uõ¤ðŒê„æoå8Ù¬Ô@^®ïúÓš—»þï¼ÿc»Hþk×îê‡ù®½Úí7Ïý¿»Ñè\øãŸÞõD¶ÛÕ³pî(uÅÓ}ç¢: 1¼wä·‡•‡nÀ÷B‹¢"ÝZ4½ÉJaqÃÙùœN‹rê0i!VNGIŸïì!NHΑ£‡´¼-þµýÍ8O9‰#†k7T¿ŠžJæ@ÈÇ“òuÇÏ£iš%¯?D߸îá«æÁxè×°#<Ôae.}KÆf•Žgc§š@6Âh«˜	¡#³K0¢(¥hÝ䢈œ"S™ßŒ½p”> ÌRÌc wÜp=-sB˜™˜F'æÓèÞ"üåãõ.ú’ñãéØ÷ƒt„Ñf1‹FÐx°+Pâ@W7Õùu4å5ÉK>,wFïî41àÞµTçß…Cïf‡;ï.›Ü=ÎíWÑsȽnDüª¾!¦ä*ŸÙâÆ£èâM¨©èó0=*w«Íõ!~ôù)|Ì„O€1îíôN‹1*#û6`PZ\ÐíóWÑmGŒ
+»‰aè7]m·8¡̆„ÈAò·ÍßÛÅ>º¡ã:f›ÂGoó@F‡IpH˜ˆ‹@ªÍä×ñ ë‡ø"‡‰´0| ·›×ù>ÜY’‘œVØm ¥0Ô@Ûèù!f£JªÑfc¯6¶øFóÿaá"¹è"Z°íF
+µuÁâ­Šñ ŸU¤ ÙtétdÁgœFqtóœ#i”–êîŒÞeEò‚W3WÓ^^A‹#àÖÎ%>©ªÅ`á¹î<FÂ_ûäí)
+0å^,÷)ÿe³o£ٝ•µ=â¦mŽ¸óxïïç#'Ü©ƒ6ÏËÛœ‡ðîåøwØÜÂg=©¹ëtÚ¶€i›À¥}+'d»ÉØèüÊ9É«‰‘#ogY\òË]˜.‹ŒB8óŽ'Á†Y›Ûe}·kn}bÞy‰›³ôâZÎâ›x2~VÖ&…†I›Ú%}ÝF7
+—´ÍaÖ&vYß´·‡uXüØ)¨sRwf§@êvzÊ»)×ñÄùœ®$+8)ꍖJ.GÝ·>eï¼mm¶d#¬µœÇzÝ>…{¢Õ9}ŸN»ÿE•Xlp ÚyÑÖríí¶[¡ŽxÖϳšv(u%79rõZä·Ù?+—W¥ˆ™Ù™‡L^3³5@ËyÈ
+CÚM%ÂTvf/.ŠVÂñdV‰
+¼ø¶}\Íýù‘âî™IrVK?Ñ÷ON•P鉤¾âJä*ZZ³Bx†"›
+¿.ürãxÓT©cåØ2‰‘¦éfõœ)“”˜‘êÒƒð@J‘iʓܼÑÌò4„Y5Íüomk„¦uíFš‹hÆ%§´Ôè¤n)JÍŠ×3WWâô²¾áÑ‹
+xü¨Výÿ¸ßo—ׇ}»‹¯ÏÌ©Aj¶FÛÈ®Py¹zÜn€I›].éísxt{Ajvfҍ¨œêŒÜ`Œ„f[…Ÿ“´³=$m«p—öÃü9¾juVÚfu	f­W—\ÒëÍ>úäÌyIëBcm&\ÚO›í‡è2ÔYiÛ…$˜¶YHri‡5¡-{g}Äô’]	‚Y›• —õXMÈrù\?oc›ÇˆÚFΣ}{;¤æº<>/ó¢’ì8ʼ—Ë|æýíØ!öç%nŽ·Gˆ›òÚ%®
+Ú]¼¢=Šû•¹a£äã6\­ÈóœÐ<‡:_¢j)µ—Ë}Ô芥¼Õ˲*¦yZ±ülW,e\«h]Â¥…‘‚W,]e)+–0x ^±t•…Ï)!²+ö¦nt«)É3ÊLàF_ƒu0}%0Ö(‘îJ”†”¢Ì§1¾ÉMmúÍNac®Eø˜Åp³˜Õ3pŒ)Tèè&7y1"ìsë‹@÷¸é:Ý>¥LJQbtûÜ×ÑeµSȘ=n½Ç
+iU\À#B/ÐajÎƒŒïqKt“¶4AཞçÑÒ$n3²â‡ðôwON/¶óç/…Ãü]>ûÀî;ƒÑCm𾳜2Bi‘¥ö†‘Gx„z#©+c¤ÂŒ×Bf/†
+@“¸Š[¤’»y§´jJ\?Ûĵ¤¤jh$®Zê¤'\Œä™h˜˜™‰ö˜Åg¢}
+G>±€PÑO,xT'NácžX@øðcTFžX€AÍD´
+>±pĨ°ªnð‰…:ÁÌ)#D†ê‰d
+Çìß9™}J
+¦bÀÏ©ÃÃnÂ@‡ÚàÈš7¤ÎØä÷÷·Á¸=„-Õ
+óðáËŠ‹Ÿå|€Û¯ÁÜ‚B0{±ÒÇ$ÑÙ1j¯×€±õ¼†‹=ÜÖÑ­Ô ÉSÁ”ç¼–ñž‰ReÈpWBØh·º€Áš±î Ƈº—0ÒA`=Ðà‡ÇÇØ+ž Kµ8Ô$ƒÔ¡iH•ñDC•0ëkì_Òyh£¯Fƒ-+Räò}ÅÓÍ|ö¢…WâSŽ<fm¤Òžœã¢êìÞâ4õÛTζw†È;š¦Ä˜–:­œw0ÒËy˜-ç]f at 9ïQ8¶œ‡©˜rÞ¥‚•ó'ð±å<Ì'À@Êù*cå<jËy.çÓG…SÎÃ,Ýp9|'Ør&2DÐ{­ÚíîÇvû—MxžFF™d§°2×"´BŒñR^oJ‡†‘Â@m])Ïs<²¦ 4«òÉÿŸÍÿ»M÷ÿFê$ÿïucªÿ‡‰ÿï1‹ûŸÂ‘þ¡¢ý¿Gñÿ§ð1þá`ÀþŒÊˆÿ‡Aÿ÷@AÿĨ°þaèýÿ	`ü?BdˆÐïkþíý2<@Ê,°ŸBÇ,Î#|ôâ<Ò0jÝzqƒT‹óä×L¾…&¸þ:'´ª§M~Sqõ×*#Løc$¸j©Ó‚«ƒ‘\Ab6¸ºÌ€àêQ86¸ÂTLpu©`Áõ>6¸Â|$¸ŽP® ¨
+®.(\ÓG…\an8¸ß	6¸ÂD†ý{<Ÿþóc»¯ä=÷#ƒg¼ e]žDÌ\‹0ëå°ûÆ,¨‚ƒÃ.Ï"˜½Ü 9dœM²%'¬¤Ó†¤3† §‰ ¥Nn7&‡ ˜
+.3 xŽ
+0\*X8
+0Ÿ 	#TÆB jC€
+‡€ôQá„ ˜E Çw‚
+0‘!BwÆÁòî‰ÆóÏÌñÇ µÞ.»]j;"Œˆa8¤4UZŸq˜Íåc”Ùvd¤N³Fz˜‰Ù0ë2¬GáØ0S1aÖ¥‚…ÙøØ0ó	00;Be,Ì‚ 6̺ p˜MN˜…Yºá0{|'Ø0"t'8­6ûð¡3ý‚¿SȘ—"lŒñf)ÅÀ¡u†Œ-…‚µõ«W)•7òaêÉëŸÏëÛœ¾:Íç;}˜ìò!VÖã;´ ‡ïâëïAÆÝ;<0o<ëìA2CÄÕ‡<Æ<=„h½ƒûùä‘à¸yÂP3ìän{ëãAýý»lnÚï¶óõa5ß.÷ÏÑíÇs²{@RÂx	¥ßVûêq¨«óòE‚“gµHÅtFν¼ÓÄ€›×R§ùy·“=HÌzz—àê=
+Çúz˜Šqö.ÌÛŸÀǺ{˜O€8ü*cµ.ß…}~ú¨pœ>Ì"Ð
+»ýã;Áú}˜ÈAmQ{Óvэ'Ð1Û`:CøŒ8xD˜øÌ@[²×—cI¾–jòúgóúN^_KæõÝnLöú 1ëõ]f€×÷(ëõa*Æë»T>Ì·ó¿Ï×q_{<!ǃ„BŒˆÛ׎z„ÊÈ¡›¨~Ǥß
+cn_{ÄôQa}-Ìa¨9âóRÒº9©ôµ(“!†:ôýýv³ß¯ÚèYY§2oKDHé·%Âí#ßÇÊ*‡Ç…‘B@•Ü`\|-Ï£O˜Û	LN«éÍÞçóÿNÇÝ¿:Éû»}˜êüAVÆ÷»´â®ßÃ?ÒóÃ<´ãwy`~ÿx6ÖíƒlØéðñù0¢vùžý€ÇO	ÆáÃzawBËoÐ ô¯Î]î—óÕ»Åf䝮ÚwOɺ]R€ñôê9h0؇^ā.»
+9ÁÍSÂ2:º4.ý«ZßUÎnà^Տ4ò ¿ûœù¨¿5:¦Aý¬ÐGd„ÇVí0þc.wm"¿fòí¾Ýž³_/~þ…În„Ìò„µšÍžºáÀeûpa‰ö߬.Þ]ü54ãÊjÔhÿ¹0_Âendstream
+endobj
+427 0 obj <<
+/Type /Page
+/Contents 428 0 R
+/Resources 426 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 382 0 R
+/Annots [ 454 0 R ]
+>> endobj
+454 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [55.6967 391.8345 314.7523 402.7384]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#coasters)>>
+>> endobj
+429 0 obj <<
+/D [427 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+430 0 obj <<
+/D [427 0 R /XYZ 56.6929 760.0646 null]
+>> endobj
+431 0 obj <<
+/D [427 0 R /XYZ 56.6929 749.1057 null]
+>> endobj
+432 0 obj <<
+/D [427 0 R /XYZ 56.6929 738.1468 null]
+>> endobj
+433 0 obj <<
+/D [427 0 R /XYZ 56.6929 727.1879 null]
+>> endobj
+434 0 obj <<
+/D [427 0 R /XYZ 56.6929 716.229 null]
+>> endobj
+435 0 obj <<
+/D [427 0 R /XYZ 56.6929 705.2701 null]
+>> endobj
+436 0 obj <<
+/D [427 0 R /XYZ 56.6929 694.3112 null]
+>> endobj
+437 0 obj <<
+/D [427 0 R /XYZ 56.6929 683.3523 null]
+>> endobj
+438 0 obj <<
+/D [427 0 R /XYZ 56.6929 672.3934 null]
+>> endobj
+439 0 obj <<
+/D [427 0 R /XYZ 56.6929 661.4345 null]
+>> endobj
+440 0 obj <<
+/D [427 0 R /XYZ 56.6929 650.4756 null]
+>> endobj
+441 0 obj <<
+/D [427 0 R /XYZ 56.6929 639.5167 null]
+>> endobj
+442 0 obj <<
+/D [427 0 R /XYZ 56.6929 628.5578 null]
+>> endobj
+443 0 obj <<
+/D [427 0 R /XYZ 56.6929 617.5989 null]
+>> endobj
+444 0 obj <<
+/D [427 0 R /XYZ 56.6929 606.64 null]
+>> endobj
+445 0 obj <<
+/D [427 0 R /XYZ 56.6929 595.6811 null]
+>> endobj
+446 0 obj <<
+/D [427 0 R /XYZ 56.6929 584.7222 null]
+>> endobj
+447 0 obj <<
+/D [427 0 R /XYZ 56.6929 573.7633 null]
+>> endobj
+448 0 obj <<
+/D [427 0 R /XYZ 56.6929 562.8044 null]
+>> endobj
+449 0 obj <<
+/D [427 0 R /XYZ 56.6929 551.8455 null]
+>> endobj
+450 0 obj <<
+/D [427 0 R /XYZ 56.6929 540.8865 null]
+>> endobj
+451 0 obj <<
+/D [427 0 R /XYZ 56.6929 529.9276 null]
+>> endobj
+452 0 obj <<
+/D [427 0 R /XYZ 56.6929 518.9687 null]
+>> endobj
+70 0 obj <<
+/D [427 0 R /XYZ 56.6929 480.7463 null]
+>> endobj
+453 0 obj <<
+/D [427 0 R /XYZ 56.6929 444.5815 null]
+>> endobj
+455 0 obj <<
+/D [427 0 R /XYZ 56.6929 368.9204 null]
+>> endobj
+456 0 obj <<
+/D [427 0 R /XYZ 56.6929 370.3799 null]
+>> endobj
+457 0 obj <<
+/D [427 0 R /XYZ 56.6929 359.421 null]
+>> endobj
+458 0 obj <<
+/D [427 0 R /XYZ 56.6929 348.4621 null]
+>> endobj
+459 0 obj <<
+/D [427 0 R /XYZ 56.6929 337.5031 null]
+>> endobj
+460 0 obj <<
+/D [427 0 R /XYZ 56.6929 315.5853 null]
+>> endobj
+461 0 obj <<
+/D [427 0 R /XYZ 56.6929 304.6264 null]
+>> endobj
+462 0 obj <<
+/D [427 0 R /XYZ 56.6929 293.6675 null]
+>> endobj
+463 0 obj <<
+/D [427 0 R /XYZ 56.6929 282.7086 null]
+>> endobj
+464 0 obj <<
+/D [427 0 R /XYZ 56.6929 271.7497 null]
+>> endobj
+465 0 obj <<
+/D [427 0 R /XYZ 56.6929 260.7908 null]
+>> endobj
+466 0 obj <<
+/D [427 0 R /XYZ 56.6929 249.8319 null]
+>> endobj
+467 0 obj <<
+/D [427 0 R /XYZ 56.6929 238.873 null]
+>> endobj
+468 0 obj <<
+/D [427 0 R /XYZ 56.6929 227.9141 null]
+>> endobj
+469 0 obj <<
+/D [427 0 R /XYZ 56.6929 216.9552 null]
+>> endobj
+470 0 obj <<
+/D [427 0 R /XYZ 56.6929 205.9963 null]
+>> endobj
+471 0 obj <<
+/D [427 0 R /XYZ 56.6929 195.0374 null]
+>> endobj
+472 0 obj <<
+/D [427 0 R /XYZ 56.6929 184.0785 null]
+>> endobj
+473 0 obj <<
+/D [427 0 R /XYZ 56.6929 173.1196 null]
+>> endobj
+474 0 obj <<
+/D [427 0 R /XYZ 56.6929 162.1607 null]
+>> endobj
+475 0 obj <<
+/D [427 0 R /XYZ 56.6929 151.2018 null]
+>> endobj
+476 0 obj <<
+/D [427 0 R /XYZ 56.6929 140.2429 null]
+>> endobj
+477 0 obj <<
+/D [427 0 R /XYZ 56.6929 129.284 null]
+>> endobj
+478 0 obj <<
+/D [427 0 R /XYZ 56.6929 118.3251 null]
+>> endobj
+479 0 obj <<
+/D [427 0 R /XYZ 56.6929 107.3662 null]
+>> endobj
+426 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F90 192 0 R /F52 139 0 R /F92 225 0 R /F96 228 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+482 0 obj <<
+/Length 308       
+/Filter /FlateDecode
+>>
+stream
+xÚ­P=OÃ0Ýý+nL‡¸wv|¶A€Ô
+5[éдn‰Hh‚*þ=.IZ„Z± ˲ïÞ{÷ñ0Ã’½òàÈHˤa¹›ˆ=
+ê9é@J²ns1~0^zVùXI¶hÀ¡•Ú+ùj–L庥Ê`rWׯE¼£y>‰R¥¬ÒÌÚØÂAJ$½1ê[ê¢ÌºdÜ=¤:qŸŸæƲž¤6ʧz³9Â*î0(3ï1@©2O°†âW³2•˜Š§sÅU™ÌЙ+n°Œmé/;Nãe^šÎŽü%tf¬ëªªGÊ$‡r·éRí¢¨z´Ø—áQvá*4Ë}Y„¦'EB¶a×öéz÷^Ö‹¦
+ûnBûñvsÍDÍqsm/mŒ ¥qÌÿèoz®8tû¦ø‘Õendstream
+endobj
+481 0 obj <<
+/Type /Page
+/Contents 482 0 R
+/Resources 480 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 382 0 R
+>> endobj
+483 0 obj <<
+/D [481 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+480 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+486 0 obj <<
+/Length 3502      
+/Filter /FlateDecode
+>>
+stream
+xÚå[K“㶾ϯÐ!UÑT­0ˆéªì‰íØqìdw|HÙ>P5b–"e>vvòëӍHŠ"5k[©ÄµvÙñèn4¾~¾à_¾PšéXÄ‹ˆ+f4›ÃM°x„±/o¸›³ò“VÃYŸ=ÜÜ}¡‚EÌb-ôâa·Ð‚i¨EÆÂ,¶?,ß<e»æv%T°¼/Ë·køïö§‡¯a)_D°T‡¸T,¢ÅŠs+%ìÒ–™hyG?<Äu7Ÿ?try±LÌY¨D„Rý|óÃOÁb{øú&`2Žøâ	&ḋšjá{ò›77ÿè)úQ!™"5©
+)"#A/†1—ç|ÃÖ_Çø†R3Å#í{ˆï¯[å%	zuÍJ@ë åš~Å)©#¦7‹•ž†KÓŸ±œ1W13ÚF“  €'u¬ny´,‘§tØooy°LŸÇg&„b¡Ðj1dóÛDïH¾ º93P§¢¯«,Ý‘ÈÛ´ÞTÙ±ÉÊb,¶Œ$`›GWÏ–‹ Zní (2Œ›0œ†C7ø!”œc(•œ&µò´`JisU€…’«i'lÀ4
+@GÜžR—M=¥Å«a颔=–†Rþ¥¼jùDh:$Å-WËgÿô>;´zøæõߨñ¯r]ß=¡¥”LEë¼Ü¼­©TΤ’<'évŸWSÅÇ‹O!XÈ™ Çe!04#40	b{ò§gXÿ=­¾-·é<`,®Ø‹b÷€Š}°›2©ÇÑö¨³)é·jjýôé¼Çÿ¥›ÖºSÛ]L¨¤îÕTòû ®!²óèlVÄ<ç	‹b9‡ÛÒ!ν˜Ud€Gòe•mžTY3­¤›´=^/JÛÃu(íçÉf?ȁϤf[§Þy:赇µŸWîz8z(ï—£f§ëmÞdÇÜÂv˜o¡4žN³÷‹—9ˆ_M‰/dqš9ˆ+& y×qÀ” ñ”\ÈüîuGÆÐM2•âõX0¹Ø/
+Þ¡ýDòÞ9K3tÎ2Z6ÙÁBÀp1÷~´è†g€rá[)͆,ƒz¬Õ€p9õÔû²Í·4-¡.kF¼UjYŸ¢ž÷‘®§vç~³]—¦ôÙÍ(…á®#/‹Çy;¹Ú|¼†¢8 œ3P0ÔÔ­¡„æîd÷Ùãþ—˜É€ÅÕÌä¢Ø½™Åþ3q3É
+,¥‹¬Ióç1˜«ÅïÃ`BÅä/ÊùaA¤•º`/BG`âr~- PF¿&ç²ømbìå¢Ø½½Åþäü´$­ÓŠÜË”Á\«N7e±K0 çlæ$sÚg¿Ÿ‹Ü•ÕT„«›¤j²âñ®Þ·Í–Är´KØ®õŠõ¼-^í˜?Ú\!
+0<mŒÖ‡q¸ÐfQ|É{ÊçgÍo@ôZ%÷eA{ó
+ú°O'n„^¨O†7?³`Ÿ‡äÕ¶þÑæSÊ k1w'¤%ú×…Š%‹"É="­«™ääµò§Ëbv€<‘óÃyîAÏp‰.u˜cwjГg›ù»¡ë©ê£õ©@Ž…‘á3 ¦·:4°Ø„ôêÓ‡}U6M~ź×r«—eíQ<”µñ(ž.¤›¶ªÒ¢9Ë¸Ç .Ok
+)ø<,¯¶÷_ËÿÆÅUÄY¤¢$
+!'¡1ÿ:XÁ,>°Á _?؃òÓü,<&hÕ	|ÕºÐ:c覼ÀoDÙ}aÝ‘‰–Ÿn1S|w+àd‹=lèýö×îôfpüÌ`	Õµ»“ù®Hi©…üî qHlL†V•&uYøa{±ˆüJÊ«©œ„Çª¼`øL-ßeIã¦ïªò@­ÞeÚy;ëÛ¼©=¡æ–/K'MY¥~Õï/mrn;Že™Sì¡ÊR¿Üý6Žxò#áÌ…'|9Öª¸K©Pˆ’ZuIų¶6´ÊDz¶z‡1°Çº©@a
+»]…A´üå³gei@^lÜê„:›çc¶IrG»]²º¦"OWÊkWŒ@²‘ªhü²ŸÛ´M©Y¥?·YE—Šxh¼5®N	â´´v{kãíS 
+ÏÒµ.
+¶ÅÖû"N?û²­°(ÁÃù=twÇuÚ´GﮃKƒd³Ï¶âq£OY³?qW›¤Jw­»WhÚª˜±'`ùbî˜TÉ!Åg6÷i…Tàc#ó‚κàºiä	ÄŒ'¸ÈÓ»‚XŽI!Çû¡ý+ô%þï]¶unà8)—xõ•¿¢yu½w­ãúÃÝÄ›´Á
+Ò™b;¬‘4È1R¶Ùw—öQê$E:V¥õ`(«[{H7û¤ÈêÃüñAtÂX)/ßpV§KùWÃãë¦á嘥ÑÌD!¿ÌÒOz‰å±á—DÖ™Òwî蜫úªØU µªÝ4mu^
+v[Q
+óÔÒOº j?Ë*e.ºñ‹ýœ8ŽI!ÇÏÒÃÀ#ehÓØ#l:5F!ùüH‚ëòw/؉î7Ï­1«jèNöÛh'n]B‡rÛæ)x4	¢tä%¸é㱬l|ÂEôã¬ÐQX'ÐÀba#U‹1Œ¼Œ¦Å­Dû¬Êâ@fÈd`”$rl?¥ÁmÚ$YNßGŒÃÔàK´m¹imdè/ª¼Æ84
+ïcøá,÷
+¸Œ!áD¸ƒ:
+¿]øÖ_©­_±.™HmÏ(Û{yð	çù·`\CÉy*ÃXݬ—øžQC¾?ùuKwëö˜:
+ÚK²ó84бWlëî|¾í_¦ž\ztP¶MÞ«ºŸ8€¿èZqmo‚¡fà†Å¡û䉹 Ë&Ì"˜4avò7e²	3ØA{~CI=ÞXíOê+°Ý8â±ãé©ê /ö‘?¶jËvb—‚CFE¡ße4Ü¥‘K1¹KŤŽÇ{HJ)£”.Hà |<ºNJûȤahÉѦ)«gê}²´ÍgL`ìœÎKÈ“ò„Ѐ“ýűõ”Ù÷Аy¾Õ”ú€©þ¨ ¦žW*C(j4]§²· Ò@O«<YOì:‚E:ô»FÇ
+'u;_ϲUp":r$+GLDœ.Š/¢BfâÈӁ½ò©“õ³&6är¤©ƒLˆDÙ'N·Æ‰Î8Ñ|É8±;q£™­l{‘PGÕ6kœÂ°aê€ß­³ân“4S{‡¤‹?±qÒ·NŽ‚$Ë
+ô÷¶Ë}9zÎ
+§×ã6iÖ¼Ÿgêáb1Ž„Ÿ*¬àm“	{ŽŽæeþ+H¦¤»•ébÉŽEÁ€Â‹GTXòÑ,žéɹ‰Ðt˜^3Áߦbå}·‡ªêî-¹âpWãÔÅ„<”,œ²p|¡âYS:Ù½?‘“w6*ÈF'„Š¤Üµ9’]®œ}…$ùl÷–W¡†ü&ÖúÔ°F‹aàyÊVÆ97½­Z>s*‘†E¢ÓZ$›2ÉØZ¢œôµ:†o:¢ÄÊ;÷¯
+šIº†Ö¿55	fS¸x/ÝÚ†˜•« ØûC>uÆbC«ÐÀËzc‡£^ˆ^¥”]¡€ä¨ébA=e¹äLÈÈÛ38³SqXlŒ÷K]ljâ˜Ø<ZPN`]3¥Œ×Á„“Ø‘à	•0#ìX¨C6éâ´ŽP§Ue¡óe÷aƒôQÈ>P}?ö{¡†œÈx{¾Ë[¨/Ò;:¢»?|ÿæó×w]$ s²OH-t)^8„!ñFu®{û*£ó%bNõ3?ëÞ«w´O½Ê*]8ïÀ¥Ò§>­HðÆ&T1yJ9b_n»ç¼‚`‘–Þßµº¿À?ô‡#‘
+g&ä'Z@>àwt¨è>û\b ”Tà„Mi³uz˜x³1jЄ.OÁnÚ%¬²_b¿W˜œèeÊ­(Hr<ÒG}˜oJtÇâTqôWõ+—Ê>ƒÍük:¨Vn¯|Äœñ½ E¢zÊS©-ƒ¥šrDÓ÷Ø{„×ø’çZ`ã$ÜcG[[w€Í‘‡À.¨È $¦ãԁ'ŸäuéW´¸lfŽhÕ{<Ï)''ð¯|í}%¼;àwÙ£óà;×ÙlØ.ó‰r³q½ÖŸÒ€=”ü`À5?=”	Ú‡6d]üiʦ“Fx£²•bùÏ[nooáÜ„ZèE„^îÚ
+t\¹^o0@öïP³IÞºþIÿ‡Ÿ™@2âÉj2°K&¸†u Þ-¤“j5UbSwëÞ‡ 4n>}½aÅKœKM‰–!ûô;Œ^­Ll
+¨Ô=ûlñ´ˆó³fŠ8ýrw¿Oý§¿]çÓ»áëònð1-ðKŽt;ãðu¤½’Î´+Ç¿üPÝ´aŤ‚9	¡ÔáO8¯	‚³,(•£*!0('ãÓ,åÛ²Iñ
+²€×.‡úGøWЪÁš×å{zpŸæ@‹nT¸¿îîrúÙS(…Öè
+0Ò.ݐ½·­°'_»eTB‹îp¥T»§c••¨gÿ¦['~îÉñš'ÐË/ËrÛ3žúxçÐ}W^¢™¿ÔL„ô‰éøÚ$X@Ѝ´¾âŸ®zŠžÛ ‘Àxendstream
+endobj
+485 0 obj <<
+/Type /Page
+/Contents 486 0 R
+/Resources 484 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 382 0 R
+/Annots [ 492 0 R ]
+>> endobj
+492 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [204.0186 316.2483 223.1566 327.1523]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/docs/index.php])>>
+>> endobj
+487 0 obj <<
+/D [485 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+74 0 obj <<
+/D [485 0 R /XYZ 56.6929 553.0513 null]
+>> endobj
+488 0 obj <<
+/D [485 0 R /XYZ 56.6929 522.509 null]
+>> endobj
+78 0 obj <<
+/D [485 0 R /XYZ 56.6929 468.7561 null]
+>> endobj
+489 0 obj <<
+/D [485 0 R /XYZ 56.6929 440.3707 null]
+>> endobj
+82 0 obj <<
+/D [485 0 R /XYZ 56.6929 409.4559 null]
+>> endobj
+490 0 obj <<
+/D [485 0 R /XYZ 56.6929 372.4592 null]
+>> endobj
+86 0 obj <<
+/D [485 0 R /XYZ 56.6929 372.4592 null]
+>> endobj
+491 0 obj <<
+/D [485 0 R /XYZ 56.6929 345.105 null]
+>> endobj
+484 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F57 148 0 R /F52 139 0 R /F90 192 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+495 0 obj <<
+/Length 4141      
+/Filter /FlateDecode
+>>
+stream
+xÚí]_sã¶÷§ÐäÉž©p d¦w3MšÞ4/I{žéCšZ¦må$Ñ¡¤ó¹Ÿ¾âA‚ h5žÜ4ºÌå$r¹¿],°» Y`ø,xŽò’–‹‚p$r’-VÛ¼¸‡{ï/ˆ¦Y¢¥KõÍõÅ›¿q¼(Q™Ó|q}·È)Êæ‹”•T,®oºüð´¾;\-)Ç—ß6ÍÇø{õóõ÷ð(YðhžÉG™ HZ,–„ ’sÚ=K0<(ŠË7ê’É'/¾»¶’ÁDIPÆáqë׋Ÿ~Æ‹[ÐâûŒXYÅ|Áˆ²’,¶œÀÇ,§æÊæâÃÅ?zŽæ.eˆá‚O·‡!Zæ  çy¼Õ+Á\ô­FÀAð²k6«„!“ª3DÇÊTJ´p¹y˜š&9f%¼"_þ寴y\Ë‚ùÀ<`±%4K–s66m³SÿþxUÒŽG÷íúª€[ês}Eøågù¿zu<ÔêâsslÕ'‡×~Õ®G|õÀjsÜjÍⸯ
+ñz¯ï7Ûmµ»ýÚë7˜‘… 	øÓµ%ô;ÙœòŸ÷²Ã@_È%Y± ¨,ŠbÑÖ‹;§£è›8ÐE2D)7zü½þg³²<ŸS=0Í/–ðx¡õƒ¯Z"éŠr¨¾ç>ð"ÞV“IîöîÉüك͋
+^´÷õ៓C\Á9·ãªÄÊ‹±ÁH6Tr”컞=Ëâ%Í.?0k¢j¥CÔå±dÒC’bPcCžÀö¸JìÃjNBŠ¸¾–*ªéFíŒ<P"Ý?sU¶ô)xEWáïÖ›Ú“ £B£js”‰²LvA’É J’Ñt4iV Âq™0‰¡J¡‚Gå.pxnÏ6‰¡OÂwtb4òÖ‡zï‰PpT„ÖŠ&ÚQa’ꆐ›¢,gëlèSð’®LwBJ µÂàÿ’°HvBJ
+„‹2é’4J÷xãYƒfèÐD'4D)Ð1¯IsЬD9È6×–>‰>æ+á?o7ž r)VðßÂ)Ðú -XR8C7nÛÜ®}‹@8Ám'Lb¨RÀ·i£”$¤b¶«¶ô)xo0"g£‹„g 2áÇÐÿ!ùšæUòFü?¤ŒfÓ§ž#È­tEç-9D÷‚S6=Û3d¹€kr¦$›öé¡nëQʾjv‡zwÐ)ys§þ­t²¿Þ>n4!ø$Œ¾!w÷ñßӍevÜܪ7u0¯Ïs‰ñâœ×ÿAózi"dÎ)ŒT–ÇvK%ûðŸ¡ÃÞ­ïß;'(#\œ­özVsšØ·Z.ãTô†è¬öØ4à:rŒ/`Ê¿©ßúٸΠi¸
+3ÝÇé¬;.’Ï[Êô•ŸtC.&ÆèÆIH¢M	¢ÈF‚Ld^6µ>E›–'„1iy¢UrHÜJÌ'EéA
+U
+TÑåCÐðhf÷y^œGóëf§‰}{‰â-„BKՍæú³\&\Ëõ?9¤ÛæÓú¶nߦs+&:¯žÜÅ¥²“»X_'wCæ";ÑKˆ¢&zA¦¦Rr՝–ù)¢Øg¢ø“­b§œS¢8“IM•5“Éè±Ý¼
+Îí^Ðúù]B
+÷´êŒÉñ"N²‚y6%Š¢+†¢ìš?÷‡é
+ÇEv’4æÙ”4ÆtÂ@f’è†*ªèèôMØËÓâ38£³—5/ï4qÄË*•³µM·dÕùø]µ­÷Õj"s+0b¦C3¦Ü¼~&!˜Ï{ÚÑë83`ž›7ñ&!†‰7®÷›ææè{z³
+w‚4ý
+^\žÞéF›…Ò1˜BMŠÒƒª(-P!ßÉ@?ÖϾ§ç0ìó"I°Ï¤¤ðxO«nÖñN±‚y6)ÊCŠòë±>ú®¾ (g at qŠ8æÙ”8Æt˘E¿x§°Kˆ)Ð1·É|Þ.õzDz	1ïñíÚ«½¿‚H ,S‘–*ësë<æí2Ñ.Ë΁î]ß‘8§‰NsŽ
+gG¹˜TçhŒsÑ_ââ2˜çȐ
+p/ʼno1aúðk>ºùrL·(¢mb<´ÍîNd‹Š0月k/oü>¬ÅåèȆrl«ÏOÕfsXoë°c}±DŽ·Iä!L¶Œ}Eë–(8æÕ5Œ=Ì,GŒåbÔBQÍ’'ÐÇ\%úט=!@^ Aó¸Îš&:â43žaXnãÐ^- 9M‰h†ê´æšqvL‹
+æóŽFµ /k	1L\sÅøXµÕ/Õ.Q^.Žh¢ùàfÒ„(¨¦JêÍÃF˜o&¼ÌïN\‰áñžÖÜì†8ÅvÇEBCŠ²Þ­ëjóaÕ´~”£Ap.O‘Ê>›JщDûdA8Ï‹xÏ°T)LE7êï†?i÷ÏËqð?g÷ÿjîßmâ°û·T'¹ÿçºÿ¸`>ï˜û
+ð"÷ŸC»ÿ)÷‚8½ûäcÄÝÿ”(î?ªÝÿ°bîÿ=¢wÿ	!<Þq÷Š¬ûOˆâaHQ~in®ÚæpØÔÁ¹Å	BõSŽ¸P>F`š£ƒI´gô!'ªBÎ ó"s|?-žÓììû_Ï÷;Mñý†ªóýÒfûçý¡Þ¦ÞÍ›ÜCÎ})Íçx?½./‹‘3ßÏëg“¢tt#Q6ͪڄýÿËÅqüT#áÿ'D™òÿ	Ð1·øûX.˜ÜGËÎCûõ†¶ÓÄ‘¡m¨º¡ýÔ´o×m½:4í³ÝïÞøÛµJyΓ
+9Ð`è"iº‘L¿ Øþã
+c½+‰ãªý5Ô7aG2SéÞy$Àóp៛cpOMTç~OMÖç6©µ]MŸ©u¿úž‚×Ëïøn_¾ì‚Ám,qÝ톕¸ÇM­D:ØsåÊãgÏõzžËiâðî_K¥×‘›f6§„òóFûW4šÓÄáö–J-±Óž³1\’ÿÇc6Ò<"+â‡p8.ç"U<@“åºx@(`ÉbÅ\¢pñ€âÞÏ.p­Žçåå|m·Å—–øò¶–ÿoj}¢üòIÝ;4êâ}}PL¹ ¸Öw»õî^]ï˜ÁEuø.HÁº+ïÛõ-ºZ2Z^þK–%¨Õå§õf£(Uù ¸T©ïÛjw¬6êÒª©t¸±¯ÇG
+Ó¨KJ.¸`ä‚k½\p½é–‚¤ÑU}bZ
+éfN³I*ÊŒª]ßZpÞƒ;µ¦Û¾7I2ÌT›ëóSwÍf£ZVɦWÝͱ­½nx}öªÒ ÕÍþÐV+[¢á¡ÞZŽíèÀ—m¹î¼V'ü>&½wè6$_0*dW½ðöZ9ó ôLI)b¤K*JTpS(ɲ[1}´¸K°ƒ´éÒJ –†¬F¨%Ž¿+WL´<°{ÜÿI}~ÒdºC§ûÆph›ãýÈ̺Wõ~t¨NµüæÙÊxX¢)0 Q.ÏvGýKñ?–Lùð?QLãcVñp#ëíÍ•ãø¥žˆfŽ'‚/ªTÉã¦ZïôíJS½Ô§ÙÄ”:W:{ܪa_
+¯{mƒî‹ñð±÷±2.|ªÓ]Zmš£t`&½ƒëº¿€,ʁi6]Àô£oH•&03Çz¿…¤”Y÷F ÏL5ž}tP‚·v•n»©‚-cUºª-*ǧœl\‚&‚Q	Æ,´&ß6»]m<Ó¡áß_ñËêP«`
+VÏÆëq¼ß?„ˆ>£MµBÇõ
+Q–Lˆ»4rܵ”š¦¥þp¨ÚÃà(ì§u{°~s[­Ö»º—µ>®ª%ôš%tÊCµ[™Ã±KÝàDÕ<·í·•q%õv
+2~÷
+!ÏT¦7Aö"eœc¿ªSá—ûºý´^ÕÃ.2aÕk]]Opbâ˜fÚ3”KËÇF¢Ë¤,˜¾Ø-Àõw2.x¦oíïSm@„\;Ü·(;­º¿t+ݵÍvf=îm¤Ø5íÖt
+§T’®o´Yïꉶ˜T=Þ5„ʿ՗՝¾xX¡þÝÞa¥¯v籝ê{w\[~••œ”šÈ¨«¶Ú¾-Ë2ç€ y ·#ÄôKàóqîs™&/i¡˜!™‰fEÑ•,h«ÇǺÝ4÷ÁB–¿ÆhkE G|ÅŠ8L!çu°"•Š4quÀQ¢V›§êy¬QÓ–ŠùL«iêÍRÓGQ‡»bGmµÛßAè	­áFµË¶1È!	é¿çƐ)±RÌRÔÇPG•¢ç@Ì럈’y‰DλŠ[j”žÖïì°H™!ÂHÜgY"SÜêv݆ʼ¹=ñlq·8¬ÇkrH—Й2:וSÔ)äOµ›¤~ôF4%ˆrÂãêZªªÏmrh
+æÈ›«²¥Où†Æ¸õ´)+3&÷çGù—2ÊŠà/rC$­ß—AUTtyF**Æ¡mEÅx¸¢âtFEż©¨8€oëC»®ÃéJ\s›±$ =nݘ'¡©à#hvÞ“ôû&ÇáN–ªÛ“SýçylXµ‚
+
+;Î%@ͦŠ(
+Õ~"¶U`ãØŠŒ
+±ë¶mÚ}p®Õ¹Ÿdā}n¨i‚ë<µ ‡÷ø†£¦ª Õº(ÕfõsÐübÆyjäŒ%ƹ¡RvÕÁ?Ujê$»}ûk¢¬Çk:56	ô 1]s9ŽíqÕµ<ëð8iìŒó(¬Ï-1Îç)íŒó8¼Ç·«ƒ¤÷žKŠ%TLj9;ö/g´³e˜'
+¬[ª®ÔÞëù‚ª÷·.7?¨k¢¦"ˇ˜(˜Fƒúö	EÛ$.v°ÏÛÓÚoQhŸÛô”ÀNZç)îL†ðc¾Ú±ßO¼ÑîG{Ts[@0m
+ ß·ÁÎÕÜnƒMÁëm°øÉ„Ælp«Écwü¼ð9¹¬@Ëóø:€!Šùn¡LÎÛŽþB&JàšE7…׈á^߯@DÁû>4ÞM&ÓÚLM yM«m—	fªÝ/?$ÐÇ|;k¯waÕ¹wqqXëââZ[7SëÞÅ%à‹[¾7îßiD•ïÈÄÑ}nÓopÌ‘–™Ê÷GeRðc¾ª ÔÆOcìÆ¸Þ˜"ÌØ9‹ý‚<(+„ˆ;xCÔÙ¿iëjõœA:#¯s¢°¯èëœ`úuNyÄS×û	ÏWcÚ:óÕ(¨Ï-Àš<wžÆNþ‡÷øviܘù6\Œ;®¹-»€6e·Ðo‰_ÜÇ®j“1Zœ‹`ÿþžCY"á9‘I
+ëÜ~]ã0la‰cûÜâY† 3ö²¤àÇ|Õ)Ûûànŵ6T)XE7jóðoÌÕÚþ®@
+^ÿš× ~r2h]HTmH³©üq›?ÄعF0g—¿˜ø›¢8\~'­ßàTY@šL.#æ¿á¯.{Ží¿*%zãendstream
+endobj
+494 0 obj <<
+/Type /Page
+/Contents 495 0 R
+/Resources 493 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 382 0 R
+>> endobj
+496 0 obj <<
+/D [494 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+90 0 obj <<
+/D [494 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+497 0 obj <<
+/D [494 0 R /XYZ 56.6929 738.4887 null]
+>> endobj
+498 0 obj <<
+/D [494 0 R /XYZ 56.6929 716.6059 null]
+>> endobj
+499 0 obj <<
+/D [494 0 R /XYZ 56.6929 718.0654 null]
+>> endobj
+500 0 obj <<
+/D [494 0 R /XYZ 56.6929 671.774 null]
+>> endobj
+501 0 obj <<
+/D [494 0 R /XYZ 56.6929 673.2335 null]
+>> endobj
+502 0 obj <<
+/D [494 0 R /XYZ 56.6929 662.2746 null]
+>> endobj
+503 0 obj <<
+/D [494 0 R /XYZ 56.6929 651.3157 null]
+>> endobj
+504 0 obj <<
+/D [494 0 R /XYZ 56.6929 640.3568 null]
+>> endobj
+505 0 obj <<
+/D [494 0 R /XYZ 56.6929 629.3979 null]
+>> endobj
+506 0 obj <<
+/D [494 0 R /XYZ 56.6929 618.439 null]
+>> endobj
+507 0 obj <<
+/D [494 0 R /XYZ 56.6929 607.4801 null]
+>> endobj
+508 0 obj <<
+/D [494 0 R /XYZ 56.6929 596.5212 null]
+>> endobj
+509 0 obj <<
+/D [494 0 R /XYZ 56.6929 585.5623 null]
+>> endobj
+510 0 obj <<
+/D [494 0 R /XYZ 56.6929 574.6034 null]
+>> endobj
+511 0 obj <<
+/D [494 0 R /XYZ 56.6929 563.6445 null]
+>> endobj
+94 0 obj <<
+/D [494 0 R /XYZ 56.6929 526.4941 null]
+>> endobj
+512 0 obj <<
+/D [494 0 R /XYZ 56.6929 498.9406 null]
+>> endobj
+98 0 obj <<
+/D [494 0 R /XYZ 56.6929 383.4193 null]
+>> endobj
+513 0 obj <<
+/D [494 0 R /XYZ 56.6929 355.0339 null]
+>> endobj
+514 0 obj <<
+/D [494 0 R /XYZ 56.6929 215.6368 null]
+>> endobj
+515 0 obj <<
+/D [494 0 R /XYZ 56.6929 215.0589 null]
+>> endobj
+516 0 obj <<
+/D [494 0 R /XYZ 56.6929 204.1 null]
+>> endobj
+517 0 obj <<
+/D [494 0 R /XYZ 56.6929 193.1411 null]
+>> endobj
+518 0 obj <<
+/D [494 0 R /XYZ 56.6929 182.1822 null]
+>> endobj
+519 0 obj <<
+/D [494 0 R /XYZ 56.6929 171.2233 null]
+>> endobj
+520 0 obj <<
+/D [494 0 R /XYZ 56.6929 160.2644 null]
+>> endobj
+521 0 obj <<
+/D [494 0 R /XYZ 56.6929 149.3055 null]
+>> endobj
+522 0 obj <<
+/D [494 0 R /XYZ 56.6929 138.3466 null]
+>> endobj
+523 0 obj <<
+/D [494 0 R /XYZ 56.6929 127.3877 null]
+>> endobj
+493 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F52 139 0 R /F90 192 0 R /F57 148 0 R /F98 231 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+526 0 obj <<
+/Length 5323      
+/Filter /FlateDecode
+>>
+stream
+xÚí]]—Û¶µ}Ÿ_¡åöaìUa‚Ÿ^×^·iÇiR·ñ´}Hó ‘èÕ’¨P”Çóï{@|$@Š±^îU>–8Ò!öp°Ï	tÀ¿t'$ÉÃ|–ј¤	e³åö*˜ÝÃoo¯¨´™+£¹iõÍíÕÍ·q0ËIž„Éìöã,	I’ñ,RÂò0Ý®~¾þð¸þX?Ÿ‡qpý§²ütÿ?ÿåö{8•Î285aüÔ(
+IJÃl6§”äq6çR
+'¦Ùõø ŒŸyõæV3SÄÒœÃéÀë׫Ÿ	f+¨Å÷W‰òŒÎᏀ„QNgÛ«˜Â!KBõÍæêÃÕßÛÕ¯aD¢ ‹ÝíA	Ãx6O ?Ž“Æhs;þñ–ãAQ		)Ëf!ɳ,›UÅ죁#¼òT«|‹®¿˜9˜%NšâwáÁl§gi*ÊÊí²¼[!ù›yÂIeëš8K׿N.ÿ+plÞ@³ê~&~rŸ4¢$bQ¬ÇOˆAñAИ±™6âC`S.›‡òP÷]Ÿ1¡”f3³Ì>Ø°4ÏQ~”òBSŒ ´Ëº·åêc½*—Ÿ,Š1œJƒÄKq®­0ð$"aòÒ¿±@“œ«PÔ®»²Gás¡nø‡r[X@ŒhÍ²Âp¹]ŽU:OHœäÙèJ+{¼±ëÁ*êÅ®O!‰ÀËýµÖV°]š³Þa˜‘Œ‹øÈzk{¾_.‡?4¡¬O!†e1Roe…[¥q๚€S„Ùh'×ö¼Un£A‹»ƒÅ ƒ`¥ˆ“k+×*ÍÝÝYFÈFW[Ù£ðýr9üݺܭ·wG«îŒ%$Š’Ô_wm…€Û¥9»œÁ¯Y˜$cë®í1x«\¿,‡º¨,iNÀ;±š++ZØeXͳˆdI<¾æʃvéÈh1žDÈ@×V¸´KX‰[4z k{¾±ëéÌb¿·ÄÐHAD‘Z++Ö*Í]ë$€ØÈòѵVö|cìð8€6
+BDâ´–ÜY¥qpbBJ™gáh‰Óö¼UnÑ,|˜÷¤Qˆx¹¶r †&*‹I„½œößAˆ9`žÆ)Y ”‘´q)h_æ2_{.åpJž§èd!…Y
+Íxgt…ípÊL[ñnÝ7›~Ïæ¡¨vzvâ<&`$¦i‚qÓv(9Æ$`)ý*ìxÍ$ËONšu¸½ýáý7ÿø`Ïu mÊæe7×V°UG~ùÒBM!7“èpµ¥9†.Ìh}»øò¸Ølêµ=Í
+Ðe‘ßqæÚ
+—vYþÕ3ú2à¿gƒzJHs˜)œíPð®þ¨kYíU¤ž
+H‹lïu¿”fÀ…Æîë~ú*«0M)òqð¡(Ä•¿»bS>ãëGñçDzñqXl÷izXף|Ùnz¦õÃú Žªã
+§ò*bj	¸·‘œA˜k¢[]ìc"íLÂaJRg2Öü©Ü튥¼Fy·€D@ –âóþy|½¨AŸç'ɬ*·âè󺪏Ix»X>¬w…äz<¬w÷’vSÄçç4¾.ªƒª-D`vm¼8¨êodË^:*<W5‘õ—\¿­žÓìZ±«$Ö=ÔâQ±ßK›}-#±Ù>\/aŒÉjH&Ap=ÿ‰ÏøŒ!b|hCÀDLÑü“œ÷¿ñýË8€¤¯b5ÚS€KÁO“r ŠÁ4?š©£¿˜“yÆÜ<Eê¶"vÉœSU–õÿÂØ Tò;éÎ	£iÜãceúÒ
+áE1Ö˜v96E±­šç¹ÃGaÓ$ŒaקÿõÝ›ŸÞ¼}øâÕ®¨Ÿ,+é´ëÌÚ>6nº,þ }ì¡<nVÊ	·‹õ®ç0üäQ)ÉËÅ¡hæ¿íØJ»×%_µþ50P¸ÕIT:p¢ÚÜm¸¢üðæÛ[°Œèõûoŧ&Â5A’¯÷eU‹£Ýq{WT⸩Ÿy’ø³êüë5HÆ®ûÝ‹·ß½û Žÿõî‡ÄÑg^ËEõ$þZûb·ƒþ<îÎãÃzùÐ'ôTå¯M+íZªâÍ-á'š’P$OÓüôîíw·Â°iøtµ
+û‚ŠÑßõ¢‘ƒû¢n»LõÌB	Úp`Ð6d„ZüP­†îÒÄILÒœáÃ[ÇóŒá¸£­Ænæ$Œ‚´Ç¦Ÿ3)+„‚]Z“6ˆ¦ÎÓëõ^|–ŧþáŸÏ­*näÙõ"nHóøüF\‚zòH"¾ZnÊã
+†ráÛÇu3báÈðLøëÆïª[æ£èQ€TäDρè8QWüTÙ„¹ÎӐÄQšuݵ­E#F‡z±[:ôïÞs:Gâñéñ¡¨øiY(b_Æi3 ŒoöUɍ?¯WÒT4'ü²,«JÄpþÈ—Œã`s¬Ö —,e×
+‚ªóÂëgu½ysC£€'8$'”/£æñ3aº>ôN1K§¼tñuÓÃ
+Gç×åñàÐåN*žº$©䍱ŒÌ`àB¥i.%”è€ \÷øw"Wé˜é¤…ÿ!“W*ÀTIã=B¹EEöÖ<‰Àfú³8HH ¹<ÂÕsóG·JnnkóŠ¦Ë\<ˆSÚcå䍄ò€EI—I½•aüFýN|H—懚묙šwº¹—qæ{øÐè^1úWuy¶ùãPTŸ×Kù‹*Hč&$5g–½DOz=Qú~>Ν»ÍÉåH_Ü•ÜÝ>7>§³ô¡9S”$„B6t¹mþÿô¶yÞFù]¡(ÎHƒÀs?⻶âþø?Ër÷q}ÿzй"ÐvéµsöšÑÄv¯ñYNâ¡­š^Û—åF(ÏÃb·Ú¯¬¼ŒñEC´×À&Ö–šÃî5yBÉ.›s²®éÐ($iÚg a"Oň³‘á5jÀFz}BI¬/@ZF­pq¬*À 媂èðˆf`ž¦éeDŸoDM츔ŸAÌ…p¨­š]|)–ÇzͧMÂR•</¯ìÅ$ëõ"âºâ„•°
+h—Ö³á1Ô!pêòS‘cÈ$2p]¯,™@§]½â§cc¸‘°²œI
+£Nňô8=¤MrZ.ï˜ÂH/õ@(YN¯	sF`ZŸ:©´ Ê
+Í3’fiÒ=Vk°°0 0ã9i¸èsvÙΪ³0&I–Lò}.J…Û¥]&ÍœÎb‡$Î6‰:c#ì¢.kYƒ¹0Ìÿ&]}.ÆEØ…].í<—æY4¸Hd¯vÁˆŸ—^0âwž(ŠHEÌ?n´å$
+£^cü§¼Û.v‹{G¬Ñ‹,N>í?»lݽU¤Ó¸¹“þ[W;D|œP×Lö’úü¶Õ)Ez OQ+æf·ØŽ"̲¶óô÷ÁìeÒ0;¡\~ÌÞ™¡¨sN6†;YRK \T
+P«´FW‡}‘$†tëâígKô&ö$úÊJLÝ«òãz#¯îÛâ°_,ø, ƒ!ÕéF,Ó—ç Äì²Ýî+§ãÆ‘šr 4Ԕäq¿)‹„C
+‰f–³)lô¹i!Í¢Ó»¨8–æ# zva‚~*ž^ÙKã!á„tðÐç`,¬²ÝUWëé§ô‚^³QiìzTÄöE¢2œcŸNËȱ½´tŽím Æ(	’$óû†¶Â0…]Þ}=¸€¾çƒ+ºõRz¾±ËºðûÅá°þ\ØkÙ#Bƒ8Gj®¬0h«´F;o¤xǼ€ÐKÈûêæÉEsU쥅ϕT°<ä«Á©?©ÐV“’
+ctRá'f—íK*ºNJ*02©èÐ@’Š	lÚ¤ÂÏG'þfÑé‚‹Š#©@@URÑõ&'xD›T ,¬²ýIÅ”^ÐIFE&*ò®ýߊê¯åªŒåxµÞÏËÆH+dÄözG×1Ð~iMZáá•e|žÏ‹úŸOý&ö¨¿²š¦þf7ŽV/1»l¯úwœ¦þ
+¥þ&
+LýOgc¨¿—O«þÞfiÕßAÅ¥þ~P­þ&¨_ýÇ{„¡þ~VÙˆúOè…Vý*JýM*ÛÅ—[׃0ê.ÔBúBȸmÖÜ芷PV(¨¼mÖ}Møg„ô§Ɉ]¤ÿ|Òo4±Gú•Õ4é7»q´ô{‰Ùe{¥¿Cà4éGh(é7i`Ò:Cú½|Zé÷6K+ý*.é÷ƒjé7AýÒ?Þ#é÷³°ÊF¤B/´ÒPQÒoRÙ”ï?Õ7üR³èÆz†*%aL¢¦ÏE¨ÙîÜ_Ýv÷:H{sU7ç; <ŒqÎßð]BÀùB€ÑÄž ¬¦… ³G‡ /1»loè8- 4T0i`!àt6FðòiC€·YÚà â
+~PLPïFð³°ÊFBÀ„^hC BE… “ÊÃúþ‰ZxOçfȱ—[+ÇÞfbqÊOA<D[¡ ©xSdtdˆ ´.1àl1ÀhbOPVÓb€Ù£c€—˜]¶7tœ*˜4°p:#xù´1ÀÛ,mpPqÅ ?¨Ž&¨?Œ÷#øYXe#1`B/´1 ¡ÒÇo
+(ëáWñM¡£_Їб0Ü-£VWûB¯ÕÆ@û¥ ûBF”^;£ìMì‘}e5MöÍn-û^bvÙ^Ùï8MöJöM˜ìŸÎƐ}/ŸVö½ÍÒʾƒŠKöý ZöMP¿ì÷Cöý,¬²ÙŸÐ­ì#TTêoRÙ•«âmµØ7‹j]?
+ßl=˜qÖKÌÆpçýêm¢^÷hßMŠ€Z¥‰ 0BþÄëÛå™Á3Ê¿ÑÄùWVÓäßìÆÑòï%f—í•ÿÓä¡¡äߤÉÿélù÷òiåßÛ,­ü;¨¸äߪåßõËÿx0äßÏÂ*‘ÿ	½ÐÊ?BEÉ¿Ie»ø—û†ï¶N`ÔÞƒõ3Ò÷`½Ã‚ˆÐ$ü~¡­Pi×SHüG?M`ΐ_ž˜:£ðMì~e5MøÍn-ü^bvÙ^áï8MøJøMŸÕâ?žM&Ð1DØKÈÆP~¥Õ*ŽGÔPùdx·œÂ¯Tw¼Gjë'a•í®¹ÚaJ'è*†|Òõö¡*ëzS>(>TûÀ¸Ÿ”á`Üëíc+¨xl¥ƒùš¿†yŒú`——ÅþgT£‰=꯬¦©¿Ù£ÕßKÌ.Û«þ§©?BC©¿IUÿÓéêï%dc êï âR?¨RÿN#xÕ¼Gêï'a•¨ÿ„NhÕßOÅÂhÞ	¸[×ëÅæò¬ŠaÍ=•¡Ä^VZ‰½íÓ>àóãñ?¦z€°:vÉg˜Ã¼^ûŸOýe4IûÍ>+ý^VVÉ>áï Ÿ¤û)û&÷vb4_Îã	Lô©~.‚[öÔu#ÇÅ%?¢ˆ1¬ƒè”û(ÓýñN OA(³©´º4¡ñõÅ&?a–v¡^ܯw÷?õC¹LôOçÔæù^N‚?Ë÷9DZDYLÀ׃¥ëÃψ«ã‡VÆčúò4¸„É[a½‚ɏª0u¤g#4f—§ÃÏÐŒ&öD4eÕôï³ÃÓ¡.¶Ø«Õû;9öƒ~jvÙþ7wv)Œ|ý¡zŸ'FE¾Ï³CÅù®#=ݘ@
 §ÒøéØþ)‹ŠcJƒöKó¿ë(LCBóè’«žqhMìÚʪÚüëÕšo%PVO¯›Ë=ˆ;ÝçÛ\XÚ#d¤]ÒeãÜ\Xæ©üþû¹TJêÇÔ9©‰y3¬a#«Üê—^¼3µîÞXXg¢¾:©¨Ö.m`ca¥!ãjmh“^§Â&üÀÆÂ*õÖ»Í;ýÀViîwª‹"cë­/¶`ðýr7NSò¬Ï[ki„¡öËØUX®m[g½fA·ÊEvVù®¯æFšë·Ksï­«–õŒ¬{»\ƒï—ëÝUX¾;É_sý&&Ú*Í]sµIñØšëM1x¹©q~xWáfA”úë®­p»´]…å&Å#ëÞnjŒÀ«MquÓ[öúë­7öE€åƾ\bcƐ§²ltµ•=ŠÞØõ<N¦ö+jùÞ"H4SF°U–˜Vº^I›Êòä+¼’–_«Y|y¬þŒ‰«ÑÄï—ÕV†³É¼u°ï 	Óäò<ìûÎhâá½Q´•¼T–›áNSûL^:ílf4ñð6DÚJt²Q±þܘ÷NL†¶NÔ›763<¶C!÷ HJc³YµY³™e¿9Ó„¿ù…ÎÌÂ,He„AZ…qÈ?bÅ{¾yÙ½ØÄ3Í®?¨¬¥¿/k oî:A¥T¬MÖÍÆgEU••Ü¾wQj'Îûûb¥¶E”{š«íƒ÷›Å²8¼ÚB“B^Æi†´¼aeïY	nOùÚŠW€GË7¸{!õfð~ÈŒ’8í@þQm2[¼
+¾Ôý}•ùî‘+¾Ÿ¨Ø«ôXïÒ¾w™4M¯ö7.WÇ¥jò»'½)ÝNï±Ün:ÛvÞ²ÜnyáCÍC“±0Fšß°ò4¿²âm7¿²m~/¤n~òVl•^pN±í¿ƒ ÜÈoe7ðiÅ.£ð4á;¦×ï䦵rßQøíNn¼Ëoñ®ÄWM»–Õz_“ãnýë±x÷çLíø	†ÏËgâW©7ô݉MŠ#¹Ó¦ØG·ß¼ ªákQŒkëÍœ°”}.ªú‡ž;)–r :»”ËýHµ™4’§ª­~…SVµ<÷q]?ôÜmÅ7Iîâ6ûÛwwÙ­;ÔMɐŸfÏ3}6Œ†½TñöcƒNêÃÓ>êÅS.jâýþ»÷?¾¹!ü¡±€ ÛV'¼ÝÍŒ«b[ªîîÆ®,Œ¾Òí­¥º£p ¡¹ž1–º£$ãoJhmúõêç_‚Ù
+l¾‡å=6·;B~Ë`{ÕlñÍæêÃÕßíp>oKThÿ±çendstream
+endobj
+525 0 obj <<
+/Type /Page
+/Contents 526 0 R
+/Resources 524 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 557 0 R
+/Annots [ 530 0 R 531 0 R 532 0 R ]
+>> endobj
+530 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [342.6799 664.3934 440.3138 675.2726]
+/Subtype/Link/A<</Type/Action/S/URI/URI(mailto:root at 10.101.8.50)>>
+>> endobj
+531 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [55.6967 562.6401 130.2369 573.544]
+/Subtype/Link/A<</Type/Action/S/URI/URI(mailto:root at 10.101.8.50)>>
+>> endobj
+532 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [306.5539 502.9987 440.0533 513.8778]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://localhost:42195)>>
+>> endobj
+527 0 obj <<
+/D [525 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+528 0 obj <<
+/D [525 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+529 0 obj <<
+/D [525 0 R /XYZ 56.6929 752.3934 null]
+>> endobj
+533 0 obj <<
+/D [525 0 R /XYZ 56.6929 470.0323 null]
+>> endobj
+534 0 obj <<
+/D [525 0 R /XYZ 56.6929 469.4545 null]
+>> endobj
+535 0 obj <<
+/D [525 0 R /XYZ 56.6929 458.4955 null]
+>> endobj
+536 0 obj <<
+/D [525 0 R /XYZ 56.6929 447.5366 null]
+>> endobj
+537 0 obj <<
+/D [525 0 R /XYZ 56.6929 425.6188 null]
+>> endobj
+538 0 obj <<
+/D [525 0 R /XYZ 56.6929 414.6599 null]
+>> endobj
+539 0 obj <<
+/D [525 0 R /XYZ 56.6929 403.701 null]
+>> endobj
+540 0 obj <<
+/D [525 0 R /XYZ 56.6929 392.7421 null]
+>> endobj
+541 0 obj <<
+/D [525 0 R /XYZ 56.6929 381.7832 null]
+>> endobj
+542 0 obj <<
+/D [525 0 R /XYZ 56.6929 370.8243 null]
+>> endobj
+543 0 obj <<
+/D [525 0 R /XYZ 56.6929 359.8654 null]
+>> endobj
+544 0 obj <<
+/D [525 0 R /XYZ 56.6929 348.9065 null]
+>> endobj
+545 0 obj <<
+/D [525 0 R /XYZ 56.6929 337.9476 null]
+>> endobj
+546 0 obj <<
+/D [525 0 R /XYZ 56.6929 326.9887 null]
+>> endobj
+547 0 obj <<
+/D [525 0 R /XYZ 56.6929 316.0298 null]
+>> endobj
+548 0 obj <<
+/D [525 0 R /XYZ 56.6929 305.0709 null]
+>> endobj
+549 0 obj <<
+/D [525 0 R /XYZ 56.6929 294.112 null]
+>> endobj
+550 0 obj <<
+/D [525 0 R /XYZ 56.6929 283.1531 null]
+>> endobj
+551 0 obj <<
+/D [525 0 R /XYZ 56.6929 261.2353 null]
+>> endobj
+552 0 obj <<
+/D [525 0 R /XYZ 56.6929 250.2764 null]
+>> endobj
+102 0 obj <<
+/D [525 0 R /XYZ 56.6929 212.0539 null]
+>> endobj
+553 0 obj <<
+/D [525 0 R /XYZ 56.6929 175.8891 null]
+>> endobj
+554 0 obj <<
+/D [525 0 R /XYZ 56.6929 150.0412 null]
+>> endobj
+555 0 obj <<
+/D [525 0 R /XYZ 56.6929 130.1159 null]
+>> endobj
+556 0 obj <<
+/D [525 0 R /XYZ 56.6929 98.2355 null]
+>> endobj
+524 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F90 192 0 R /F92 225 0 R /F96 228 0 R /F57 148 0 R /F52 139 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+560 0 obj <<
+/Length 4741      
+/Filter /FlateDecode
+>>
+stream
+xÚí]]sܶ}ׯ؇>H3L€àW'qfì&nÓ¤Ik·/i¨-m¼êre7íô¿ xA÷®3™©4™ŒW»—÷àXðàðËW™ú¯Š’•hV5/XUò|µÞe«õÙË3>Æ\BÐå<êù볧_ÙªaM)ÊÕë7«R°²ÊŠUU,oDµz}ýÃù«÷›7§‹KQdç/‡·Wêÿ‹_­å«ZZæúPY	VqQ¯.9gMQˆáX.ԁU}þÔüÃs}äÙ—¯mË aUÃY^¨ÃU»þqöÏÙêZ±øú,c²©ùê½ú#cB6|µ;+¸z™—ÞÙž½:ûó”>’ɬ.Âç‚.KÕ€¢(ñ³VɆñ¬¨"gM}(U.¥™KæR­T6^ÏÂBD@ÖœMS,!óûï¾ýò)»Ù®.Dv~ß?í×ÇÍÝ©¿¸Ì³æüzsìÖ§Ãñgýg}~Ø›·O·yq{èOˏÞßnÖ·æ­Ÿ÷æ½ãýò¸Ƈ~o}ØíÚýõõ—ÈÕáÝÛO!›ÞÕß_í6§Óf3¦;˜[óñö°n·úªÓ²Qýú¶»¾ßvG3"ÿžÙ‹Ãþúp¼Ùùóæ÷Ï_¯^½üò	Ý«v{Rá<:¹Íy!‰¡0‹B†Dé&ñ¡€ANC…´Caé…/¾øBYž
+«OȱÛNyÝÿÜŸº]oþ8ݶã×}ètý¢]¯»~üøݦ5/^Úä±3ZÖ‚É’7øGzbÅk8/4?/™æWÎhU燄 
+ÒK¦!¿9ܘIìû£f}ÐgD^3Î{äRd,k2Õs¢b¢Ô9Õñ¯/ju”9uwÇÃ]wÜþlþºéöݱ…¾Ø8:h{8õOœžØÝ÷cçtûöj;ó·ß}óôí±ý©ÝÛ$7ªqÌtù·íÛõtöýq‚’Ì´å´éÆþ]ö§v³ïëõjΪLª³"KÖÈa¦ÎÔ÷RŸdýÏK=E«Ù·d‚çõJÍº®WÇnõf65f‘I9gBp¨—ß›áñ4—*¬,CÍ4„“«éF^WãôœAk¸Ž«›%¡ñ³ù”Û2	f·Ÿ~tþOÐöèéÍ $[oVæÅ_‚ßï¼a¢*kûek2£äâë
+Qú»¢æOîø«s5щ|5Ï終T/—Fõ¦éZP	á FC8…ífߨkšÓ .8…š@PÎ6Š ö³Ys¡º$ç2•¶'áݼÃõ|nÔ\S(@ð†(
+Ø˦?÷AÕ!<+“yC<	?ÄUKøß}ùü¯/½&ÔSjg-ùša~¾Ö3ܯ=Éšå¼jˆ¢èn–™áPT/>Ã-f8ÛÍš2Ãaœg3
+ìg#f¸4Ú³Ž€wójøÃñÆk€T‹åŠ¤Ç 
+Ôͦ,kÆ‹¬I¦ñ$º›WÃëu‡¿,àµZÍç™ hC…ìe§ÔDÚ&š„ÖQ™sÎׯŸE¦V®²©pÆ6Š€õ³mÞˆ¦LålãIx7¯†o¯úÓ±]Ÿ6j]é6¤,Y‘ÕÄ|f£(x/[˜}Å™šõ“{ÜÆSð&N¸}Þª•³7«åYÃ
+YÌmíg2WkD•<™Ûx
+ÞË;è¶îøn³î¼F‚uI1‡(
+ÚÄIŠyQéCÒ™C<	_sÿÓáÊk@%&ÃYCëe³®&ë¢Jf
+ñ$üW/áwí¾
+\¿%¯—’`n£h?[¹jXY§2·ñ¼—Wÿ¸»÷×L#	ÖEÁš8Gµxë)%ˤ̓YC<oâœ/Yp}"+¥™e^ѽ-òá‚¢—1Å/çeÿƒIw	&³É‰Qk
+Å£P1áÕ)¢*psS-JX.Í9°Ncƪ¢)çk6˜›Ì󨵩°ólþÂÀÄPn*ømû¶3æfkþ¹jûÍÚ¼ÜÚkóJ’æÕcîÌ_/Æ‹ /Îûñ»{8x4M·›}׏^iµðJVñB_ˆ…¾“íy¹pD‡;
+kT»þ»v´Oûî4Ù™?±qÁ³ìœ
+æÂçøÓWß™ˆ7¢PzÒnFËó°ïàÆ€c劲QâZµ8Ú¥qÛ¾¿ß
+·-Âmƒ¤§ÍiÛ]MÔí¸<ÞïuëfPË3X—zðý®ž}”®’Ùù»ÁÀ=žb¨§ÍÜÓh2ÿu¿ùçôaÌÍ-ÔòAðq?Ú¹ÏìP£®Ñ3ùe‘K%3ÜÄ€ áºüÔTeÅd!ªÕ,r‚hÙÍ©‘7ý!æ, cÖ	
+h¢äð2fœ¤1µ¾	ìäÔÀ'h£f‰\ <ÇÍÉd©T(ãœ×‰4m8Ž<†-Sß­û¨Oƒ‘Ì4,ã<_€~3fù‚Cƒ#›(¾¤´½Õw±T³2΂T7W¸ƒ«‚©kZžJÂ	l7«ÆÖ….zï›çA¦sæ'¯dj¾KÎN!aKìmÀâjdjÆØÚ Sðšeu³ìÝg¢’¨µ®IãkÃ	l7kt<‹B‰;µ”ÄCêæ
+ŽgQªQ j™ÊÂ	l7kd<‹Jßï¯qºcèd
+[]JÊ—²jRÉB8íf.C™g’ñ²’DïfL–yþÿ¼œ­ö„ZJ««Ì´ôš+|«¡ôj¬¬rXzÍj3¬°ïO­ûú܏˞Ll»i	4­` hÃÉÒµÇí¦ëg‰TÞÝ]°
+
+Ö™`,ïx¼ù™xóS6R]ò_7Ø(ã%¾õf“ªVcG©îy:·qË+u¥šfe>Þ4Ðù‹¦}óÝË àæ
+Ú²K"0Gѽ€ü<ªº—ˆ	²·º{V¢F-œ´¢€A{/€}1šëªc5{¦ò†x~ˆsN{HB¡ÎÚ–°^¶°(…2’Tֶ섂ËNð]jÕú'øêM7o‰ÆAÜr(½ØíL´S¦›˜8°Ÿ-¬#A†'vÊ$Û	x/oL]	%ª„ f¢PÝ\a9™«£ZT$s†xÝÍ;pÞÝE—DOs»âA(JY«®kšÈc öêZq–•ԛĴ,«y^<j»Gm—¦íÔ7’K‘Ú¢ôèëþ9”ƒx"JêÇ{øjžÑQcëå
+Ná µ€QÊ`™ÈNÎèEËš’(ßɺÄaýlý¢-óL¾áðV¾ÍáC­Iò ´)QÓRbÒ9xë¬ÎYôJPÕšê.¼OÆ
+0*Àˆï2µG¬×IÀ³sò£¬ØÁϤ
+êgË+qÒ8Ϥïåù¬àO⬭ÙIÀ‚vš£úN«”zN®’IC<…nâê„)Dzá´m¹ånø Ÿ2•6˜ŸøÆé	G45«êª HC…kâ¨nÏDÖ6ž€ãœʹÈXžUTWëG[³â¼ê"¦¢©%î¼Êœ³¼”fò§Ãq×n7ÿr­W¥_öýf(h•VÄ$µÈ™º„þÒåÕ§‘ÔEóÑO‹Ô*LëtÑ[Œ¨þ˜üŸ íH…ä“’byÂ(f©R
+(Pd7§FÞ›±ßû
+NÕ/—-p5áÀ^®°F‚g6Ò8O‚àØnÖamò®ÛŸ¢OF Œíã8ª›+Ìتä4Ɠ߈b»Yã‹k¾aŒ''Eus…Â;/(pø7¨¬jEÈÎ$0:IÐèg¾þÌ™TßõDº6œÀ6aù²{ÃwÝ•:(k‚1¨n®°
+´Æ]c{ÇŸÀv²FﺃðÅøNºÅ´²w>MGUo]+zqdмԀ¶’£;)^tRœ3ÐgÑKÒøNÏ•àØnÖè€Î¥ê¥fQÆ6ˆ@ust.Ugdeꀶᶓ52 ó2×¥Ùø€¶A¦›+¼¢)Õpe*Ý1šB^æÙáa7zŸÏy^²Bò‡bú«¯e=÷üCk™¼á¬,s³+ÎóûÍv¬5¿¿÷l
+ñvüàº=µó:’èy­.5ÚQ{¼MðÀKÂóJ]‚õ“<è’ÆFákšy²”E
+îeÇôÕ‚b%z¬0Ç„Š‘f´4<‘¯­
+'°Ý¬‘Gm1Jx*ÁQmÉN™s½OOîcOÁ›¸z	?Li±{8m{ǃÀ…;Ë¡-XI¥mV(ø±`e·.]qÒvíJ Ârê—È—úŽtV$“†x
+ÞÄ•Køð}¸M‚ó¶7S`s3…áPžÊÚÖŽSàcñø>´Êµ'Êyº™‚ÃúÙ"÷r†2ó<•µ'áÇòõ|HÚ✶-E!pávÊ÷Yt=›JÛ.h	x/ol:ƒ5#Ζª›/&Oål«É	t/¯†´hì¶
+NúA”祺þ6µ(¸zoܧð{ó”®’ùï7§[çÞÆ×_/x}Þu/nÛãéòªíáUýpï	vÕÜŒ·>îûîx:¶ýÓñãøšAê|\3<–%•é}–ׂXZ@Ô0QÂ3äA}?ˇè{Õ˅DLÐ÷8¶›Ucÿ«¿ë{„pjµî$ÃѶM2|ѨǺc&Ãq\+ÃÑ™dxZÌd82|¿~s½¡Cöɇ”=ƒ²'ºOà
+Þ'ö~ëeöÝJí‘ñ–=ÞóY at ww}tÛ­Oð™n
+፳qdØÊ#´?¦ú$×Ë)î6eL‰bË	p7kLÛMÊåü J»õÆ1¥úûƈ¦aYÑäóM\¦Íö!ÌFÛÆ6Ž)ôîà³Èàåq"P½\ÔÖ1Úž^¬»»m7–Ôüb;ɨ–ªùpÜHÆŒÅW-<;ÙŽÏF¶Wý¼¥ÙOeÜ]Ûlc~ZüóÓG*݇šêjƸù¡›ê¢TWÐ:“¸òµQ¸©>O–bªãà^VÂT_¢ÇD7Ž	¦ú3jª'òµ¢›Àv³R¦:Jx2ÕqTkªã”­:Oä<©yÔü²—í¼{>çne+²u9¾£&s*wk2ð`2/àÎ:<‰“¶Û¡¨ ™¨ŸEmíTÒÖà&àÁ½ W}‹²žL^Öš¼ø0·õO‰¬§z)
+¦ð!gÌcœµµ˜	X/[XÃ ©¬í<8Üø ³ûéâ´íî¼.N-pŸE]æTÚÖe&à‡¸Ô)-Ïõã’%1Û(ÛÏ®±Q+)Ëä·ñ$¼›7j°Ã¶·8íLM‘¥~
+ï!ìB*Y–Ï7Ëì
+K©øñ÷Ð~ƒ]¯óe‘=îÓøh°§ìBd¬¢~“‚H{}–
+ú¤›	õÖp	*vrRÆ:Bõƒ}u´a“Ÿµ,A‡#]1“á(²UáXgL"<©7fŶ|Î:`ª[ÑLôG‚§>ÚËx»À]Nê
+p>±Î°&*ŠëfÂ÷æH늙XÅ¡¬1?ÜÛÿý«1í¸‡·Â’:Ãþ@ÖÓ¯- È^.ü·Òúc*‰Ç±Ý¬Q%g56ü”&®¤(Ýt5ä¬Î2Ž»é6
+ÜtsÓçùân:Žêå¢ÜôçÛÃZ[ÓoÇ€­þÔñԝDAg=ûHg½ÐÎzá:ë¿
+øõÙrŸóxû•jîÛñ9çqß¹ú”ºïQ=?p÷ëÁÜÔ®‹mî¾Ï“¥¸ï8¸—Uƒ›ÑÙMg‰ÛMGõra»é$†Ýtd'ç°éÞuÛèn:(ßi7ÖÏ©*‹T9OE-<µ,àCÅÝfsqœ3ì@N`B	øó³è#•²]mð°ÜXÀc[ôà¤G9O€‚žÇ¶5ÑS9[ӝ€7¦ûÛ¢e<¡à ~6|‹žDÎSU9ï南u›EÎÖO*¬b¨Ï¢E§’¶OHð&.4m÷QûçmMoÙË©ì®Y¦ô]2qˆ'áݼñÊîqM…ÓV«ÌZêËÆC0ž9×~®¬qãY›RBð_ÑwnJÕ¨º|ÜßæÁîoó¡ÆsÝ0ÑTDy‘Æó,[ÜxF!ÝL¨ñ¼€£gØÉIÏÕ6žÑ†YãyÞ²ð&Ö
+V„â ð38‹~øw´–:­'¦Íqpp7kÌt†_ÍAùÚ_àÁ1Ý\óI´Ò$‘¯-9Á±Ý¬gתY”¯•¼8¦Q¼8[x,2‘­}Š’@¢œcː¡t£;Õ·  ¶¼eúŸØeTMB™ÈšÿSVêßiªð§¹þ	ßA@üã쇳յŠùúLÏ@j÷^Ÿ &tûîlj¨yg{öêìÏ>Ë)# ýÅZtendstream
+endobj
+559 0 obj <<
+/Type /Page
+/Contents 560 0 R
+/Resources 558 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 557 0 R
+>> endobj
+561 0 obj <<
+/D [559 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+562 0 obj <<
+/D [559 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+563 0 obj <<
+/D [559 0 R /XYZ 56.6929 732.2374 null]
+>> endobj
+106 0 obj <<
+/D [559 0 R /XYZ 56.6929 702.5053 null]
+>> endobj
+564 0 obj <<
+/D [559 0 R /XYZ 56.6929 667.2187 null]
+>> endobj
+565 0 obj <<
+/D [559 0 R /XYZ 56.6929 648.7762 null]
+>> endobj
+566 0 obj <<
+/D [559 0 R /XYZ 56.6929 650.2357 null]
+>> endobj
+567 0 obj <<
+/D [559 0 R /XYZ 56.6929 639.2768 null]
+>> endobj
+110 0 obj <<
+/D [559 0 R /XYZ 56.6929 604.5727 null]
+>> endobj
+568 0 obj <<
+/D [559 0 R /XYZ 56.6929 578.7294 null]
+>> endobj
+569 0 obj <<
+/D [559 0 R /XYZ 56.6929 544.1788 null]
+>> endobj
+570 0 obj <<
+/D [559 0 R /XYZ 56.6929 545.5039 null]
+>> endobj
+571 0 obj <<
+/D [559 0 R /XYZ 56.6929 504.4775 null]
+>> endobj
+572 0 obj <<
+/D [559 0 R /XYZ 56.6929 505.8025 null]
+>> endobj
+573 0 obj <<
+/D [559 0 R /XYZ 56.6929 466.699 null]
+>> endobj
+574 0 obj <<
+/D [559 0 R /XYZ 56.6929 466.1012 null]
+>> endobj
+575 0 obj <<
+/D [559 0 R /XYZ 56.6929 426.9777 null]
+>> endobj
+576 0 obj <<
+/D [559 0 R /XYZ 56.6929 426.3998 null]
+>> endobj
+577 0 obj <<
+/D [559 0 R /XYZ 56.6929 385.3734 null]
+>> endobj
+578 0 obj <<
+/D [559 0 R /XYZ 56.6929 386.6985 null]
+>> endobj
+579 0 obj <<
+/D [559 0 R /XYZ 56.6929 345.6721 null]
+>> endobj
+580 0 obj <<
+/D [559 0 R /XYZ 56.6929 346.9971 null]
+>> endobj
+114 0 obj <<
+/D [559 0 R /XYZ 56.6929 312.2931 null]
+>> endobj
+581 0 obj <<
+/D [559 0 R /XYZ 56.6929 289.04 null]
+>> endobj
+582 0 obj <<
+/D [559 0 R /XYZ 56.6929 270.1143 null]
+>> endobj
+583 0 obj <<
+/D [559 0 R /XYZ 56.6929 271.4393 null]
+>> endobj
+584 0 obj <<
+/D [559 0 R /XYZ 56.6929 230.4129 null]
+>> endobj
+585 0 obj <<
+/D [559 0 R /XYZ 56.6929 231.7379 null]
+>> endobj
+118 0 obj <<
+/D [559 0 R /XYZ 56.6929 197.0339 null]
+>> endobj
+586 0 obj <<
+/D [559 0 R /XYZ 56.6929 173.7809 null]
+>> endobj
+587 0 obj <<
+/D [559 0 R /XYZ 56.6929 138.6325 null]
+>> endobj
+588 0 obj <<
+/D [559 0 R /XYZ 56.6929 139.9576 null]
+>> endobj
+589 0 obj <<
+/D [559 0 R /XYZ 56.6929 98.9312 null]
+>> endobj
+590 0 obj <<
+/D [559 0 R /XYZ 56.6929 100.2562 null]
+>> endobj
+558 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F52 139 0 R /F90 192 0 R /F57 148 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+593 0 obj <<
+/Length 1322      
+/Filter /FlateDecode
+>>
+stream
+xÚ­˜YÛ6Çßý)„ rQqIJÔѾôJÛ¤(zÄ@Ò<Ð2×V‡£#Î~ûÅC²¼¢_ŠÅb)j8ÿáÃ¹ÄÃðC<£8£™—†’˜„^^m°w„w¿nˆ¶	ŒQ0·úq·yø…a/CYLco÷èÅÅ	f^Šf4ñv‡þ»KñØoÊ°ÿSÓ<íáwûq÷†/…¡q(‡F	E	¡©‚2Æè8–„00IýõaäæõÎFfK2‚BÃ!®O›±w€Y¼Ý`e)ñ.ð€2âUF ÆÔô”›w›¿'æ-P„Sö2cÄ c±›Zeˆ`–LÔ¨–Øì$Œ™œzŒèr²)•yso7šÚæžäÒ•Tü«ÝRì7û-Á~)*…üqnZhb¿/ê£^¸ùšÃÂÂÂÁZ ,ŒY4úzµZóV:ÇŽç¶ÙƒóN=õÍrŽ$!(Řz	¸K"¬óQ½~òLë÷iÆvD0r›œ·že ÌÎ`èDû}^ !?9?6H†ed4
+QádÙ‚¿µºÍ­7Í7R)x'T›÷=ÏO×Iw>6eÙl)ó/ì¿0µRh®¼>¨FQ?6mÅû¢©¿]Û;q–¢4L˜;‡çV/ì|È£öƒµw/ZJ&à¤Ô-iŒîH¦±,c×’}Ž¼ç
+]Ñ‹}©JƒŠá1©¡}9ñ^H’Ÿ·„ùB÷>7ƒjÔ¼߬‰f
+~È*Ôj¡ôÔ™•ª±’3¤ëP]’T§¤…:—šê¦bÞAo~dA×éóíÈ«T-tgQÉ:Ñ­òdPgwxά<•œ\¸ÎÓ%9ñtJZžsÉ+0B¶¿ô¢­¹NÏŠŸÏ&»¼-νF•ó²4Ù¸¶™úÒÚŒÃVY†Â1¹óÑš[9X+9±h¥Krbé”´,ç’€DoO
+Rȶ©4Š’·[3ôç¡_–‡+Ѷ¦8ÀÇê0äKäíP׶ìÚ’<£Ÿ7U%¯á'À.Œ£;øgVüÆJ²`ëø]’~§¤Å?—ܙ飲9ÞÖ‚iúSÑY|h„pÈx£y]
+³ˆ{qSvG®*ŸÑPŸñæçQl….Ĉ(!ÄMwnµN×Z©Ù]§¤¥ë–4t¯$/'ÑJ"Yâ¿[â¯TïÈ4‹uB‡§ºšGÕ£´¾¶^ë
+1¾èÀ±)æð¨Ž"!Nõ&^Ã^
+W‰ÏÕcÙŒûÁši#=ô‡ª“–íyÛë±—¢?Má[ vuú?ÈOóõVí‹J,>Ñ-¯ïnE´š-1ÜTB|§έÙb¬dìÉz¶¸$§lqJÚl™Kî¥h|(‹z	¯¨·†³<ø?Ƀ¿X-[,JàÎÀî\çVTÆJƝ®£rIN¨œ’Õ\òó&™Æ… ÖÃW·/ä¹DöŠºoíÃÈK69ÎZ _¡^ÉSåW¿ýùÇëµÏ–~åáS?È›Zn±#2•RŽæí–¤þq¨@Wõ,²ÛR:áó	ä'^Ew½…T–ú¨õùñz]¡§“Ä,Eörªƒ¼D¸Ž¼Œ0ÄàF}'AfVŽ1VrÙz‚¸$§qJÚ™K¾×%ËMc±™x+^8!ȼhÅx£ûN{ülïÆãÍ£èÀW§_6PÆô:”Mn΄f‰¯+.CQé¨zN7=?è–9Õu^qp­e#†/þ‹{!biÿÿj	&Fí?–JXendstream
+endobj
+592 0 obj <<
+/Type /Page
+/Contents 593 0 R
+/Resources 591 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 557 0 R
+/Annots [ 596 0 R ]
+>> endobj
+596 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [170.804 721.5872 284.337 732.4912]
+/Subtype/Link/A<</Type/Action/S/URI/URI(mailto:swift-user at ci.uchicago.edu)>>
+>> endobj
+594 0 obj <<
+/D [592 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+122 0 obj <<
+/D [592 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+595 0 obj <<
+/D [592 0 R /XYZ 56.6929 738.4887 null]
+>> endobj
+597 0 obj <<
+/D [592 0 R /XYZ 56.6929 712.6209 null]
+>> endobj
+598 0 obj <<
+/D [592 0 R /XYZ 56.6929 692.6956 null]
+>> endobj
+599 0 obj <<
+/D [592 0 R /XYZ 56.6929 672.7703 null]
+>> endobj
+600 0 obj <<
+/D [592 0 R /XYZ 56.6929 652.845 null]
+>> endobj
+601 0 obj <<
+/D [592 0 R /XYZ 56.6929 632.9197 null]
+>> endobj
+602 0 obj <<
+/D [592 0 R /XYZ 56.6929 612.9945 null]
+>> endobj
+603 0 obj <<
+/D [592 0 R /XYZ 56.6929 581.114 null]
+>> endobj
+604 0 obj <<
+/D [592 0 R /XYZ 56.6929 561.1887 null]
+>> endobj
+605 0 obj <<
+/D [592 0 R /XYZ 56.6929 529.3083 null]
+>> endobj
+591 0 obj <<
+/Font << /F50 132 0 R /F51 135 0 R /F52 139 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+606 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl/notequal/infinity/lessequal/greaterequal/partialdiff/summation/product/pi/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 128/Euro/integral/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/Omega/radical/approxequal 144/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/Delta/lozeng
 e/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
+>> endobj
+230 0 obj <<
+/Length1 1647
+/Length2 8562
+/Length3 532
+/Length 9439      
+/Filter /FlateDecode
+>>
+stream
+xÚíweTœÝ’.Á-8$@€Fƒ»»œàÐ
+4Ð44nA‚C  ¸»»‡@ÐàîîîÁ†ä›sάïÞù3s~Ýu{­îõîýT=UµŸÚµÞ¦¥TUg‘ BMA²P[GVvA€2bêä …(CYÔ@NòŽ&6€'Œ–V
+2qCm¥MA‚ m 
+2pr8ÐiRP;7ØÂÒ@¯©¦ÍÀÄÄü¯ß& S· Ož`[ ÝÓƒ3ÈjÙ:>QüÕA €£%`¶¤TTuå•ß èß(kÞ€lA°§"TLmÀf E°ÈÖÄ 0‡Â 6- fP[ øwi¬O\ €ƒÈüär5Ùý†˜v ìàðô ; ,`&¶ŽOgà€mÍlœ€¿xÚ7‡þIÈ}²€<aOdªPG3ØÎðUUZö¯<-MÇv ?Á ¨ù“%jæô»¤?ØÍêh¶u 8‚\Ç2€`;·§ØOdv0ðŸ4œÀ¶ÿÊ€ Y˜À€6 ‡'š'îߧó¯:ÿ¥z;;·?ÞÐ?VÿÌìè ²1gEçà|ŠiæøÛl‹Îö»_ämÍ¡ ö¿öNvÿÀœA°?Dÿ»gž’0BmmÜ @9:›2Ôñ)$€þ¦2ë¿OäƒÄÿÿ-òþïÄý»Fÿåÿoïóß©ell”M O
+ðל<
+[ÀÓ¬(~à÷À›ý®&°ÛçüwkmÐ_Yÿ'çßá¿BHØZ<)ÄÂÁÃÊó×6ØAì
+ª‚Í,æ&6O‡÷g_Ó‚Ù€mAO"ÿ9ß''vö¿a–`3kÛßjðül¯áI·?°©ËÈkêª2ý7Óö±êSW8j¸Ù ÿI[	
+üçâ7•¤$ÔàÁÂÁ+ `áäcºŒO×Q€“ÛëÿöÇ¿ÖJ&Ž0°+@•ðôûï¿V£‘±5ƒ÷‘º£‰-ð©õþ¹ñ6s‚Ážÿ3
+ž*ÿÇúÏ% \Afè3“P3!«ø¤ÇòiÝÒzmÝvyUÙ™>¥ÐVïøàe"㻲 ÖꟂ
+n»v÷ë
+Œ=mD6¯[ã@‡¯¼¨Ú3qèù˜6üØóž'ìi‡{+.!¾çe×ÚXx§f˜{‡Lö³‘†ztÅàCíœéC at si‡õÁìke$aN5^yÖîÝ—í«Ë×ß{twµž µ¯“2¥F¢Ñ
+9#>§ó±O%{¯Y䁯¤XSôs,±›gŽ<»=>ï¦á Ž>ß0q‘riz7«Qè­âºàµÇÄK´¥`4¸ŠÃJÞâ|´Ë½Í†˜\ô‹IÏÉf-}nÛên¦yòSÖe¯Âú¥:nÍã¨3Ô {ƒãKÁSwûPB[1[[V_Uái–¹sMwá¡óR÷«£›.Ê̏’RÖ±¢²ª5nLÛ†™7!{x0R.EVXÜJc{4˜»¼&>/æÞgÕU!æP ÊÌ­µqäȃe+´(–°§{T2/³`ØŽ…ŒÐ{)GrUò‹nÆßvM˜¤„¢í‹’R°ÃÓ”:Äè2wçµhígý«¢”È|*^w?¾AþhÝÈLJ¿\sÜá&«Ão?
+kUüòßNq4ØjÌ@û[¾`?P¾	|+l÷a&Ž^’‡
+Ý®o•<€äöHïÓ
+Þ É3Ñ×ÜnA6–¥Š(G¡#'vQ¦8Šæ
+)_I-oïp9Ö¼Û]÷¾¶W¦_8”ÌLµµÆ(ƒ”®óŽ4äô²øô;±R9C¤„›y˜Úõ{ônâ$£~0b•úß>Ã&¥Æ3ªo‡k‘]7ºç-<ÄÊ—Õa’‡HJ§-J$ÐG¯aÃ;©Œrÿ¬êJdDl³.r_ÇŠ\ìBÒ­çvöxå„äâ¡öÝ“ÈŠe'ý°ìx*î‘ï=9ùqéiß÷ó€»Ò•Ð}’Ÿó—öÙFGä¥~]!/ã=ö”R¹õ_ÿHÛ4”S¯F⛦ZS9Yn¦'%¿D‰ÇÓÝNÃÏœB’å×)T÷uJüžr¾°X‰–éú`ÜL‹Zœ~nE“ˆT«¶þ£•Ô,5øݬÒÀjèÌXæW·¤°þ™ºµÎ|üI0FÙC]«ÿ¡Â\h‚9aŽ‹N>-’9†oô™£Ùá–×ÀuxgûÂ<^ê•ßEÐ’!<Æëöãv
+d@ì ¾:V›FüëSmùg¡äíÉ„	ñÙ…Êl|Trç¯Dq¨]÷72ÖÄÕ/³§–."ß\,¼ùùîÓ(ÎI¶6b{:ÐT1d´¶øN¤ÅuÌê º½~pûÌNs at t"³Ip£C=LEÑï“÷Ås™´Ú^üFµ‡³Üq‡UË5ŸŸ&XbXY=(öµ(±pÀQVó`þ¶ˆN`èá($Aþ™Bé+KÓ7\ꢀöø¯
+ÂWÞhrÆ
+³-R
+ù²p„çÔ‰Jú a[	@…Ïö¬’»vZÈ“g
+½œ¨ËÀå{d·Cç“Zœø]¥æYˆ'ZRõõ«ýé>⟋ÇÁk蓬(ªzy*Ò\Ï%¬å„_²Re•e…<xŠ„Â,äx¸·ØVLñ›^»Æ	k¹Ê¯\þÊ؍—Àÿ@b9·%ÐFáµÄ£c8ëfB¹éi}SÂ|û%}^ŠOÃaëô›éØe¢›Å£^L×Ä héé•å<U³xœ™È°÷^
+(Ç“Þ«ð‹Rÿô ŽC»äÑH€Š©ç™}`L‡Yã
+ŸÁí(Hü†êP´¶'¡B×&? ™2©6ϳXÌoáƒSÿ0DšÓñ	M’*šUúÁ‹O/G¶dšÜèaëô€ÙGfxs™Ô1º™6 at béy¯ŠŠl9s)W¼åhÑrÇn˜–cý™›žaÊOæg$ÓN‰G#ž¶ÀOÜ.`0ÕY‚4o8R©/칬…D›?«8°Ëy;ljÉÄ€5Dp€-ÎÄGçÇÒí×ýì:¼hÁvu÷·\?]§Ýóضn<$PbÃvƒømz^­H~˜°¬¡”¢ûbÈc©×ãP5¬Xm37ƒŸ¿Ö3ÄÁ0Д(,’"â®ûÔd—õ\¾~Wصì%ßC%ÍsÕŠoçðAñ
+©%'ÂÎxLi<ê¡St8¤²…#Ƴ
+¡kƒè$Ò>…ȹÖy|Ñ(eãÒþ‰‹c`2j@º±—¾*…¼bî¤~NÊŠ•NHEÞr‚ÿÓÎîÔ=›®B&ãM½Ÿ¥Â#w,iè—bÉ»iÜ«qJ¼¹D€IÐpÒ{°«õ®ëg²kkf=;gd"Dü5Ø\›Áç±5ŸNâÌÌÆoc Dé…wãɬ5.Eò²j6äÅ,AœOȘ³’ŸiUnÓ¶2·z²q*¦‰uZ¡’£>¾aì!ñS‘ý챝Õ^ÁË/ºîPú$§Únê…¶U’˜%Çᆋ]r6‚pȨÖºª¤:ß÷Pãt,5Œ
+@ŸÂ}u
+£“³×ªô1~ $2Ÿ®f¨ÅªNH»H¿2ÿò3Ûöüã¢-IÚæѯ×}á©÷ÁXïRØõð¯Èú6jSn4É´–i]DãrÝã„菆>ƒ´¡jâBmí Ѹ…m(<•ñÝnÚ¸ÛLý±qx\*4>‡	þ%_ÃÎæx@ÞÈŠÝw÷u¤´mý¢Fd°|:³2Ÿ =æ‰ÿ¦+·Vë÷È.Ü€).•	ù„Œ2ĵÎc,c·¼”¤â8]Ÿ1U[â^ŠÍ ¬Ó=âyŽá0!Uh¸/"Háâ,¯®Vy\ûÒ»:ë•qÓcIø-«œøoYLäÅœ-9¥[åE}{³è&[á´ÎN(åÖAúÜ1–üïÏŒÔ]{ÞXsÀgÄœ÷Gƒ™¢î®l¢Ë0ú­
+÷á·¹ì]¹ŽÁ¬,u/¨úØ·ò_ÔÃôê¤QY)‡{5à«5Q¦Ên#Ý»ÏÆððä÷H5kÍxžþL‚Q1¬†ôqE0ûÚÐI"˜­«Ó	~8F9"°‹Œ·UPðÜVe=Ÿ¤ÏÎIœ®D^4›^,öØYZgÖçS[gÛ‘9f3ž’ʱ8Tü ¹î=|vŸÓµXW–í­«ØèõêöÛ;­ô‰ÚŽÛÄ¥272³ÂïþýÑöñl-=¼”wþñ¯fJÍ-ò<eq¦S8¨uŸ9£ÚD®?
+¼I&P¸ïü --pñÕyÒ’ª\B£_0Tª'~óùþC|À€5
+ajSZtM§½:I`ݺ>J¸;Ô7¨F ‡ÚË[¾Ö…µŸ_lš¸š['Y±-9‘ÎàäwCA†ÔéFbçC¥º\ßM‰ä	»0ÄÔ ãr¶Ä½éä²Ä`·¸gOp.…èØ–¯`,Ìþ„Òá!b-hߎx(1W”ß)çàqàĬ¦5†Ô˜U¤Sýje at Q¹dXUy›´ûÅ4ƒ¤ jD¹²(¦˜¬µÙ{j"s‘¢J¸v£f¿ylℤ`8,Â,/xQ#h^‘çyÄæã,3Á硯%	³7F	Ï¡|ñªòR_ÚŽýÛ¦I¢XG’ýwwâŸ-t5øñÙzb¾K³\Ç]w§‰¼ŸJ!ƒ+tŽàDð9&ÿºøK)6ÍÒÝÌéÀh ÒÆçbLЏ©èê4õÒy'
+'óç$§3Ã^“¯tŒéI&DHjŒÔ‹×±ß–€UîTf„zÕ•7ìx<Ý«3»™¨—9‘k
+5ÃUßi°î|*n at a8—Ï=xù¾??¬lÄBn—4P_£b^®Súc•tºà×RuIWߊàcø×Öüžl ºaÎ$^ºd»GÝƪÐ8ÛÌ™SÃå	~†WuÅú±èhŽ?ºÙ¢g³Üó1“ÂpÓ¿“r/Â7žç4CÆ
+Úìz¾ oÏãüêp£PاB‘6‹Ko
+}3üÃGXCaR܉ôiã#ÐÕ¾¿Ü·Ùd„ë
+*ã
+¹©T £,h3V8LfÛjcÁ8wž²çÏì%ê™è‰ò¤a†Ïâ8¤ÇÜ/Í{øŠe=ŸZq•Æj‘À2Œ¿¥®#Àx_e€z3´u+5-™0Æë°Ü’
+´Û•°/—H¸¡f°}yáäSËj­ˆj¹|"š|2…Dd¯ÉþÒ7jèxâ\´X#º"öÁ/ѵµ¢@¼§s‰Ao𳤃ñvÌ|C‡ŽÖ¸BÒK,ö†Í9˜¼Ç¾dîÖ®dÔzÕÿ‹íaÑîÅtøÒµF=QB¾§ÓBù„	:ïÖô{k+*,
+æµvJâa³º¨Fù!•1saÊÑ<¨‡49ÞÕëù>×C.i$QdÈ‹Á–—q¡{¥{§‘Ķs?ïÿ+Ë[­nm#ð ð16)èôÓ
+ƒ×ˆS{µÞø%djéÒÂn2HT›K…%Ovp¨{&’B“øÈÎ~‹W›F™Ï»m<Zï_µ‘·•Ÿ¶EP|òÚËMO+daKyÜÿ^@"A.îJu.)°{ÚuÞoI Ž€ÊÇ.«‚–ˤ ƒ'¦,Ú\„kï=Ó'viUQ?:¼ ¸áÆG1w¡E’¼½]»¹ÈuóÈWÛg´!já—tµåÀâ³ÂWÐzmUÞR³hz½R­†±V½S•¦•ÑxÁ»¿ÇqU³S€À¨	p0â	©çÏÑíä!S ¨î>~4D.“¡QkØ5Ü™YŒê 
+¼W	¢hïÏLcñHO™­ñh‹þ•FŒ‰ ÞR9Îçê\œÿÙ*v§•4ì¡yXÔVÊ]O9 †÷÷u;=‰h	ž‰³6·
+¼­±0.ô“ 9§)°OCŒ>žkôâAK35ÎÈÓÂ%<æ«O!¡«ëÒþjP²N(¢^ëõ¸È&¢5ÂPªqϽ&yMœêaÁ~ü¬*æÙ”JˆÙhøìD†Ò…tæ8XQÇ?hàï^qé®/ž(fµr¢œÝ`•(`ÁZµL£VgÇdÄ3ñVÉ©DyωYf‘€ä¶[}XŸ>§ÊèjÅ´~ÇŽ›*(©XêÉ])µ˜ÿªP;¤w91ä¨Hê‰Àá²Ûô6.ÒËú®¿£C›ñvËgÂNmðÉæû;—Ö¹¶‰Åò[¿õdÏô%¼#4q!
+ò“&èò®v–R>m=,ÐÑ$Q´+Þ&i9H0¢ SUó{ëÔ½<¶)÷
+c|˜·ÒL7€Ûž#¿ÿÐoE`ìáXL”y•4äèçvõ`‘™1sFVí{<ÇíÀBž[e$Òô’ÆѺ–:¥”ºg§]%×'• LåóL¤uaùN$ìUßNÁ”ò<46ò˜<*2)LtÙ^7ñ­¥9‰¯MeU\lçô¶u¯tO6BkÞé³J¤oRƁ2ôÑ›AÿÓ~4îbƒ£ôhŒN,Ø>R9÷å‰Gƒ
+\/¼ÏùTV÷Rô²8³•Çëùç†Z”öoPÝ&80¤óJ–ä꘯ {\Ϧø£µ¾5½Ì· ¾®5`-¢1ˆó«¢‰ùÞ[ …ð@Xç{ä—g,ÜA‹”ûQ:ÜûBã—A—:*¤¹H'­îÑw‘1°¼[7ħÅ
+ñëùô&ˆ%°HÃøkgrŸ,’´™ïV©2¨‡^(°\ªÿšâœ.4ó ˆ¬èCÓÒÇìµ€nåY«šr³hâ(4¸Åk­ï"ôœoˆ˜X¨Ws·²}·k"ÙVÒ¼ìßOX\hµÊû÷MsZ“÷‚q 9¡î'²¨èÃu]xÔ¬X¸¸7]£g&‘§ä›üÊ}âˆ;²b8Bù9´‘›W½Ò}€n0i”¾±ž.v	ßÕ‡7ëòÔ“/Bó ÒÝùDòh~…},,FpƒÂ,c£:]úJzbÃhEçFµÃ7\pNNf)‡¹æ¯Zy*T¦æ0÷Á™Ö­H¸¬yÍCû–óÅ|½[o,Eß;LD¼qAò×îŽãȶÜÍ8'-ñ»z– 
+A>H|
+ÜôiÕ5$S›¾þ4žºQDJåÑ©l<ü:ÞD³öL‘Õm/NS¯˜{÷~¥p¼•ø¢'SAùðY at P·9«º,èc`‘866RË0öÒâMl$Ö:0F”xPFš@ ªÒ[üc+ at K‚VûÐrvpÚ©÷xt'’ÄK¯-”žA¨rýlö#ìÀœ°¯.&Ntwþm¡ ÌðåòMG|2
+äý˜ªoËΫuÉw…W3­ñ¬iÒ>‡¥õ/,
+k—ÌÃ
+&Â>™ãaèù¾¤ eÅ
+‹ ŒõiÒ\üâµ#ˆ®•U«ôì¦t„s'2Z_øÉ
+QÞËI|øº_µúö•Ê‡²qA\2÷N§#'ßOn¢±ÂU§(zÉh;\í‰p°ŽÐÌ<̉V#{ÿŒ+Ýó6_S‰ñ¹\ ‘¬Ø4¯¼›ž÷[.rŸ÷•¸‚Ù®NŒ ½¤J‰o6ÕäÇšÏG°&=‰™eûSœåÖ@\ƒ÷Mê^õB7<öI ¨O¢=3ð—Öª;MÖ>îvëÂGª6»õÞ¬
+¶úgSªT8a/ÇO•n…}”Ï•&¾Ù÷®ºnN—Lé‹?Ò#fMâ·ÐŽ^Î\`î39$â$5+žÕÿ8JB@*øʯÎ$Ø;É4ŽÓ"Ì™Yž7’h{AÂBß,Ï<¹X²'}´%yÉõC9X«§çì×~…F4R;ÿXl,ŠÓÕ£ÁÞúrò6ӏ(©ÐyLlÇ/ÆxÊMÕ¼B¤ át	ûR[ÓE"D¢‚’Sø{Oæ¥Ûoùö¹ÒY Ø¢†ùPµáÊš…go…1AõA÷ãÜþ¹3_Ä”þy܎Ĺ¯x<G2ø}É_1.2«=4:>lÖûIŸ1 ¿%Ÿ¥$<´72òþ6qªt‚QÀÀ%XõöB\±I}l©s@ÐNdu{OágäõA$eÉŒÆcäxgé¯9ˆ¶¿Äf'Öà‘6¤Ò®Û¼›K¡ã.™=¡__ã]'Õí/=É™vo®þ¦ÿã+¼×ˆ8ëv|y»Âøž®z$fPz%³¡:‰…?Ÿ\é§(±»W›všì7ä|æw¶Nio=K_|êãàš»ô»,¿¶7Eb·èÕfs£üþÉ÷1÷Î(Ôÿ)tµ{¥÷@åó2s:HÄ5}±7©üÒ”1wtBÞ™Kñã´û$!Ó&©5}/~Ú¢’ôm„«ªÎ£(¼D_½ÂGOnQŸÈMg%Äbná ?ÓBH˜îMÉþ¬ÄsÈ3c¹E/JôŽ»Ñ´Ë)SiI{дʂТ¡Æ·V¨¾çd	›
+J=Z#rÝ{©ÝOšØ¢vÇœñÆv	²²z8¸ƒ2|wJ¾ßÍ‚qRÒ|%QËytù°§”§‡Â®‹^	ÛÂã…kHgƒ	”‹°­¼^ÓoÂ_Ú>ú¶)žyÞ B£Ä«çüëKNÊ¥äÇÃÂwKŠŽýµ¦ô¢ÄÈ:¥ôo92¾q%oÍÐO1RÞÅïsÌÔVÃÌ«3Pß®ØóÆ¥Óýr×PJ=)ãÙŠÍ£ü2ÏŠ»A^¸
+y`}ì]K,à·à}ÕÇ&êkäiæ†Øã
 #ðó:]Å¢ß)wÖ/Ê]È¢?½ç ™\ïƵ¢«ˆ^9l¨åIдdp—¢ºÏF)‡±f[g¼’´Yïã_³PîÓ‚D‚Áâs'?ÂæUBlŒÍ`EÒ¨°þ¨/U.Íôp“rB»ì$»¨½“û§Ï;HeŸmäÆœÍÂÝ
+
+,®
+ì+:³õs~ªÏâZo!9º`°D~fbÃâbìxx>f;åŒô2òÓw/p>~öBÝLR_±h¿R/ÔçÍç÷ ·Ú÷rQÊ°»7V"âÄÃá´ñÕYt(³«µûµÓI¡¡Ê%¬¦^oéŸcFã˜Z¸P«
+j
+ˆ<ÿZÔÂÊø~g’$9Ñ~>]a¤Xâ»=ø–ñÒ½Ý„‡³E¾qÂ=gžÞ0ûåUiÙ¬.æ㢥­e–ð*æ×BîJ
+ß1*™HçƒhÓˆKMÌÚºËÆÙt‡]¹L®”Gú¿à~ñ.§rq}Ð'óÄ£óp
+ò¯Ö)±­º6îçűá‹Ì±Ù‘ÌÄ>‡AªJ²ü··oœó—“
+Ý‘zMÎ*Å_ëwf²ÖáÞu	­zn€“ѻ萱‘ˆ|_zÏs9Áîãs	©G9â4"˜Â)çdk×°»Ú®EO%{ÉÌ›6ƒsHÉø.l*½'ÉQýêE{_ú’Èx½ÛžöÀ aW˜¨gcVc§ƒO„„ý´ç5UynMŒaÇçz½Êê•*¯uU+½ƒü5Qæs7#›j°Ìä¡øáNò5aìò³Ü P£i¦‚ÞàðÖ¼Ébh–¶è@@ò Œí
+f¥vcm ])Ã×¢9Ì™×}úØ@¢Söõ”Ê'ìÎH»‡X7´.Woì¥1¢ùÃ[Q¾,wÆ2y4‹D¢nóÚ"íÚ3XÒüDÄåýMÚ´?&»óx¿y¹5’cý®îé¸	¡(ÒE›Û¨»FM7˜©è çúmY=P˜ó Á©ì¾#x07š|zÖ9"“U} ˆf4[ä݇/ˆgË‹ÚæÐøžjØÄ/£ŠËšJ5¹¼
+~‘u)!„2ûÉEÚ˜æAe¼ýÔÒ±@³jš»Å™x†½`8O¨ØiÌj½fˆÛµÁþd=¡e$Öód˜ˆ3r߯²„oúîºfg˜E*§	8
+G³ÙšŠ€_Þ8Ú`÷ò¶bwKrü="1·|žÄ¢Y^wó-¢£%…Ú©ÛÆÕ¨”Vv¤¿e³èg+•e¼:üêc:üGç¹è¸Šñú	-÷£ú/v‡{²¡ä0IZ/ªfQ²VÄÓˆ»cLꪖ~u‘ ö»qæœfõý5³“îÀµûÍåºgÀGÓ“~kdßù ý®ò&ÜïWËUß_ð-j[¦Rc/Ê¿ofäúŠü:C‘ìü|uÔó^Wõ›
+t¶­N(TýÈ\z_ûñº ïNéæ}ç!ʦkyÛ7lßš‹
+ÃQ¼EÉD#¶‰€¡Æëö§M‚ÑÓé}šKUḵ:YýJ†<[F¸LïƒP¸Ó^0]ŸÚ_`›(Mtz`ÈJ°$§‡‡³ò´=2"ïr—óôº³–[u±}Ö©»•R.¯È?¤zö2ýŠšéҐÿùñË”¥Íõ®ŒæÐívë’LMÕp‚\¼ØÝ|t¼aÞñeXN«OÚÇ*wÜW|­:±Õ7ý¤E>'ç[íúú>à´÷­AVOlÁCq‹wÒŠÛé»Ø¾l'‚§§„¾*IQèB2üÖw³ÞÁj‰XBÀö]¿fi™.÷Ïì"|NDZjë½|кåKÜ©L¿-9¯ h„½äföŠ qÖFhóR&眑­`4\cï<ö=^10 žW·*ÞûÉBËÏñË—Ø.eübÙÐŽ¿‚‚Z^””Þe–`²Û©b²´…†{yÊ‘7ÇâÕèÃ2/±çÔÜK1¦ˆ²æCN¸PmH¥œªùÊ’,SiÂÐY«ŽøC$Å,>Ô~§£·sºælfñüÿEÄ!©Òiÿ®¿N+ã÷sŠ`/”Úçäˆß•O™ýx³Ó.˜ˆže@ð~á`e'“¬›ÓÙ´7óGDdÕOøécYup/{qC lÇ3R1Þ¬>8(Ï#.«Y󷸻¼ŠÅ.g$u(•ÅQt$Š°ÃZÇ•ésÕ$.íÉIsÒtÆxp?ç—ˆ§ÈWrÚæ+ŽG\Ž¹'»×ÎpÂ1,‹ÏÝŽ¾Ó`Žïo=à2"Øžoá§Í8Û{ó¼Ÿ:õfTØÉjõ]0þäù£ÎÇ@;Å}
+¹„"fÏ÷:$w;Åþ¥H0ÿÏ>\
+ûØÌ˱¤SúÐÉN¦{Q]ÈÔñ~<A¡XÞÆøB¶ÙøËþ1õ"gl{Ê%¢å˜×rÄ묬â„è&½+4i¹1i”0̏G-êtýÍyʸtçßCÆÇ–’*Ø»”êšóDøÂQóINíü~Üj݆-U6Nî&‘®K¤*,h¾ùFÚ—gÅÇx_h#-èwõ‚$+Ø0,õÇ[”§q¢D4®#§>›ò+aX÷黼pî#®L2I¤.’¡P¹‚I›ŠXkÜÌ-Ú—Š®,•mf}HWS×8N7T´ù™5¯ó…û%á8Æ2k©úÀÛEoŒ¿Ç<†ó’-'Z?yezº¯kPSÃ…~cã°•ÒNQŒj¾s{”3\!Ù7‘r<˜›Åp‹€Ù
 ^§¼èüózr“ÏÇÆP_fâ2àñùüÛCîí"uÆÐÂ8H³XeG#­|Ž@å¦ßæîœ7Í”©ì-¯§ÏQ­àvÉyåè¾Þ ¹§[ûF·æNlµÕº3úŽ¢ßì[>­NkâjrA”ìña2íëçrjÞ
+³kMÈÈ·¾%8w³»Ãe¢»Öô÷ö¶Ö@	8À°”Çl¯Ý©¬—†‚ÍR/§RWgû•¡Ó}7{ï¼³P\í6‡\ÚgM‡I%íª„½w«êGÁ²Üœåƒ>ߍñ$†KˆÏºƒ™Ši‹~š,W?«ÔÅ_®rÓ^W/n´–2UÎIJÇ'r5ÖËWpz"vî€xx¹Å¸ãu£Yº4˜I  POœÿLQB›ÙÇм÷`p~kxP©”%WO\e"ôñój$A °¿JË6—àUDœÖÞv¯Wó¼îIœj|È°iQêBYÑ^sK†›²¦½Nì‡ú¥ãë1¦
+MâŽËšêÑÖî“­¾K^1Q£íá75¾çÉ.6÷òMŒ‡ŸŒÉëøXío}Pt›ì°î¤«Tʾ›²N@%u–óÿ¹.'n’²ÙœQIUŠˆÙœëÝO ~f¨_=}!è†p¥ÂØ;¨å‘ìR«°u(lôÄR™ãy®‘Ì	uˆ¤o¹©(kÙW‡'®¯(I÷Ÿ%*2,_-zIÑ:bzˆxá„Yâs#«9F¤Úø‡Ç¡GPÑ7U8R·”G’0ÔËûÉ9Ú&"¥;ÍÜ_“”c^’x2Ú%çá óId&,¥L*0ú›«´œ9­Ñˆ÷^ìvÌ‘º7¹¢Élv6Í*ð—`93ê½’[‰?!£ÏÈ‹pkÆ«CqcrŒ”ÜF÷æYBJVºØÿ—ôÿOðÿ™
+Èæ…˜À¬ÑÿÎäCèendstream
+endobj
+231 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 606 0 R
+/FirstChar 2
+/LastChar 120
+/Widths 607 0 R
+/BaseFont /SEIUYP+NimbusRomNo9L-ReguItal
+/FontDescriptor 229 0 R
+>> endobj
+229 0 obj <<
+/Ascent 669
+/CapHeight 669
+/Descent -193
+/FontName /SEIUYP+NimbusRomNo9L-ReguItal
+/ItalicAngle -15.5
+/StemV 78
+/XHeight 441
+/FontBBox [-169 -270 1010 924]
+/Flags 4
+/CharSet (/fi/hyphen/a/b/c/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/x)
+/FontFile 230 0 R
+>> endobj
+607 0 obj
+[500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 444 0 444 278 500 500 278 0 444 278 722 500 500 500 0 389 389 278 500 0 0 444 ]
+endobj
+227 0 obj <<
+/Length1 761
+/Length2 1025
+/Length3 532
+/Length 1574      
+/Filter /FlateDecode
+>>
+stream
+xÚíRiTW…S
+­ŠP%.õ!F‰H6P–€D#DQEA3/0&™‰Ã„ƒhÝ•º*¡€TQYTZ ‚(ZƒÖ7ҺѠ֊ VPkÔã)þlõtÞŸwïýîw¿ùîc9‡G¸KPb”8åÎçðÅ X.—ñy€¾óx+˜„…ød„‚bÀ‰¼À4< Ï[,ô½,LhSI,1‰®Áì7h ‰)È*	jh¢„ƒT*HÔj0«§#̂ɐL(‡ÁçSP`LÄp·G“WÀûMÕiß•R ™L‹®½2Ù€‰¸: PÉàN'èiÖòoÈêK.Õ©ÕÓM}¯SÔ
+¦N}‹ 4ZI 'PHâ}¡Ñð89D1¦oUF!jL!ÁÕ¸ó=9<Ï7y,YŠé!ŽQŠ$ DÔÉ°7q´¯Ú¿^\YXHTp¬ÛÛÕöÃ§"SµðÞ£{cþû˜6‰Äô`.Ããñi }ÞÝâûÁŠá‰@ ôI"©úÑ‘ø ÃQ¨PO+ærp‚¢[ íÌ $HFÏ^=…€Kw_$„êÍÎè:ãÃ
+
+"ôwpé<Oà-ä-ùP¡#IˆS½†¶å]¬Äh'!ÔCÃ|•Pø®\˜}huIzHÑ…R[vò¨œ]+ÏYu Ç—óà¦ïÐËdåùHøÙûUö±²!Ƈ¡{¸¨Rx›yH’f2DpW5Ù›>qdäF|Ô®x7¯_ö“õƒ5ùëî™Ç´h+ÝÚv鸕rÄv_Ø}¾w!óáz›’kW_ý‘®Zzö¶ÙîÔ厑¿ípXŒúíÖ柺[§E„¹¸ax\n‡ÃŸffýFÕõOrDÛäý¯äø½Ècë•Ígü<ÕsÌ·¢i⣼.GmÏV#üœsbü««Båm,Ù"‹sÎǍ²åKŒS£e³Ÿ,-ª(©ö›RÌ´†õsê4þø±5-3—UU\ømák+³X³º^±žŒÛ`ó4þÅ‹›Ï_g0ëÚg+§½ý¢Ý|òR\Ý°Ï𘶗֚œc‘¤¯ïQ’€©7í3NjÎ4§UwÊAŒèÊ2Ç«»×º˜Œûâ.MööIò9nßW™2ãBôV¢ØøçÍ…~?Q—‘'˜'
+ž{3¡&òš[CùÁ£E“Ê×ØÄ›ª¤Ò¢qUˆ&KÐpg‡Q¾Ÿ‘ĵD‚¤æcúÍ­IµiC…Ý]£ËÄ^ù/}ïœ7Î6U>Üå5:ÝöΊ‘ªœÖȉŸ¶þGBËR/ø”ï76!LsŸ™­*+	-Y­I},˜U*ªxÄï¿=­ö©¤êGå6r3Ø纴c"û$kþéòÇԐÍá/
+8dl at M]=Nâ-{»)‚šó…¾q‰6úïšµ£Ø°iiûãkž£×Ígˆíš›,"¦6d±1ýõÊgMStvö!Ugæšñ{¥97NÝÆD–µ;ìu.~1{Æû×1÷ýµ3p¦»À^ià©cÝÖ[7w³ÐêBM¹#uliB]ÍN&¹ÃqÙS'ÜT­ÍX-¥X;_í/2FqÓ[šx9Sa…b<b¼ìz¢U¿6Z:È/ó/Mõ>¸}#p½ |γ‚n¿[»uËN?\ö—Ãr¥üõ܈¬„áÊ”²Ê‘µƒî¨ÂNd…ÂǦµ.±³n*·X;×Dßçƺì¶mw°²u&;ÚY§ÇA›à×Ìé3‹?Ÿ=§4?7ßÁò<?¤sõõµÃ·lxl[Q˜+°R47ˆ‹ôã< â¸‹ÄíL²íÁQŽµ;ÞwŸ­øjD®çNçÖ˝ŒŒw³µM[
+“OÅßõ²+Ké/áëe÷Ùòê‚_¤]W²¦.ÂNÛtÄÖx&ê–mðü®cDý Å\©Ï#'¿“i#ÚŠ\ë¢_Tс;+„³'!ÆÊÝÕƒ[u?lüó½†5™ÑAiÞñs›æ'·Yš™Äâû<ɘO:–-ÊŒ9tÞß8–÷?Æÿÿ	…"$EhRÅø‹hL}endstream
+endobj
+228 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 608 0 R
+/FirstChar 45
+/LastChar 45
+/Widths 609 0 R
+/BaseFont /ILEVCY+CMMI10
+/FontDescriptor 226 0 R
+>> endobj
+226 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /ILEVCY+CMMI10
+/ItalicAngle -14.04
+/StemV 72
+/XHeight 431
+/FontBBox [-32 -250 1048 750]
+/Flags 4
+/CharSet (/arrowhookright)
+/FontFile 227 0 R
+>> endobj
+609 0 obj
+[278 ]
+endobj
+608 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 45/arrowhookright 46/.notdef]
+>> endobj
+224 0 obj <<
+/Length1 753
+/Length2 637
+/Length3 532
+/Length 1177      
+/Filter /FlateDecode
+>>
+stream
+xÚíR{PTU.‘Θ+ zÔ!TÚÇ]\–Gæì®BËk#1çrïÙåÂî½x¹»ÈkPÑ2J"|ñpJ³B°XŒgE‘0Á¢Š˜C]PÇ	ÿ¬¿œÎùçüÎ÷ý¾óïÏÕ*¾Œ ãaM±|T€ …RµT B<=ÄX’¦¶`, ¨¿?
+dz
+@%@$
+‹$RÄ(èd#CjX°N±~Ž$2dH£€c ŽÓÀ1-PÑ8	Y£ È´Z5ב¢`
+dR!!@P$΂x¨!)D8ç(„RÓ@úp›Ð'?†R!“™ë8“ëg‘ )­PÃhî,È9ù/L-Òkµa˜nN~>¥§pLGj´.YÏB(i2ÔBêvøÐœ¤^·
+a1-‰Ë(>ºQ ò‘<È” Ò ‰’Å€Ó¦Àù}H­pñÍ*#¶Ç(C½½ë<‘û–1Ñö|>©¹”Ò vŠ"ʹùx»à°­N$¥b‰/À3"Üâ*	؃’" @çX( h–k\4™@M3Èܳúˆë¢Ó´PÍÎAÈÓw‘ËiþØðý}9mõR©$óD\Ï0bç¿—ÈãZMr)Bh€8ÒÛCãû‹/½Wµõtç9;¡ÃLûg¿õÚ7ÆÔe ‰L•¤,rµ†=3zÒZSÐÄKêZ¾
+<æÌ|åj
+;7uÊùÓšüòŠ˜¢‰Ep]Å3îÍ?¾dÖÛk4¤i÷Û%¥û­îfð£ƒk_íZ›ÝîTFŒÈß9Ý0=Ðã¸lCÔ‘
+kܤ½UöýÏ»ðŒý¿þ¸ê÷ºìâ¶MøÄ}¡!¼” |¯.õëŽñSØÝ!$VÚÕå9,»Ò=bM[N<X~زÓ0î‘·æ€çd³ªÂp'?Ë}ÏÏß%Ûó®å™NÞÉw@,ò–þΦ}mVaaNpƒGèŠöAŸ„?Ýڽο¤
+øØ|1\çú}âPôÅ聿FìÝÎfÝ«À’JkzlOß]iÞ4Í3e
+Þ¼T²ãÖs“cùeÔysw¯¢p懰ŽEùb¥¾æîñº„‚1!ïÆ͍=ÁgstÏ9¹~œ[‹˜Â± ÙE¦+7µ$K_ìsxaÙ×›‘ÅͪV‡V¯ªú’Þ‘Wffåó/ÅyåÕWÞ°ëÝ[*/¬º\Äå<²²ï½h™r¢oòš·us°%î÷Ä@Òé n—•èklÀÙzóO¶îqÕÙr—ý•žIKŠ£o6tFõYVl²DçƸ¼–‹^_Såb>»ëâä¶N8ïç1½·zôêÈùw—û¥í²ú9ö¯
+xÐñ­nÿÁ‡'¢*J#/äÖõˆí¾ô_ŠnìklŽSpÔ&ÕÖýó¬ú˵ëGn-™84q_í>Å›­¶±šÆåÔØÞ¾#\YØr5ýSóPvQaßØ)?¯êt¤Rv.mñ´y¶õ>ÙžØ-ú—ù_à™ÀµcXZ‡1IÈßmZ—endstream
+endobj
+225 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 610 0 R
+/FirstChar 32
+/LastChar 32
+/Widths 611 0 R
+/BaseFont /MPWXML+CMSY10
+/FontDescriptor 223 0 R
+>> endobj
+223 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /MPWXML+CMSY10
+/ItalicAngle -14.035
+/StemV 85
+/XHeight 431
+/FontBBox [-29 -960 1116 775]
+/Flags 4
+/CharSet (/arrowleft)
+/FontFile 224 0 R
+>> endobj
+611 0 obj
+[1000 ]
+endobj
+610 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 32/arrowleft 33/.notdef]
+>> endobj
+191 0 obj <<
+/Length1 1612
+/Length2 17846
+/Length3 532
+/Length 18762     
+/Filter /FlateDecode
+>>
+stream
+xÚ¬µc”¥ÝÒ%šv¥QiÛ¶mÛØiÛ¶m[•¶mÛÎJ³Ò¼õžÓÝ_sûþéûýØc<+0cFÌXk“*(Ó
+šØÄìlié¸ä,lŒ\œdíleh• f.¬0¤¤ÂŽ Cg;[Cg :À„@`LÀÄDÀÈÉÉ	CJ lgïáhafîL@¡ª¤NIMMó_–BŒ<þ§ço¦“…™-ÙßW€µ½
+ÀÖù/Äÿu¢2 @àl 0µ°Ë+hJʉPˆË©ˆlŽ†Ö
+.FÖÆ2Æ [' %©#õ¿Æv¶&ÿ´æD÷KЉÀÀÉ`lñ7
+àn°ÿÇEC`p´±prúûM`áD`æhhëüwÎv¶ÆÖ.&ÿøk7µû!{G»¿6}Á윜Œ-ì	þVUû7OgsCçj;YüuØ™þ4±3vù§¥ùþÂüõ:ZØ:8ܝÿ©e 0±p²·6ôø[û/˜½£Å¿h¸8YØšýG€™¡£‰5ÀÉé/Ì_ì¦ó_}üoÝÚÛ[{ü+Ûî_Qÿ‹ƒ…³ÀÚ”†‘éoMc翵Í,laèÿYI[S;F†ÛM\ìÿ§Ïàø¯Qü³3”IšØÙZ{˜ Laèåìœÿ–$ ø¿S™î¿Oäÿ‰ÿ[þo‘÷ÿŸ¸ÿ©Ñÿv‰ÿÿÞçÿ„s±¶–3´ù» ÿ~`þ¾0v2ÿ¼1Ö†Žÿ¯pCkÿCªþMòÿGÒÙðï0mÍþ
+Â@Çðo£…“˜…;ÀDÁÂÙØœÀÔÐúï¤þeWµ58Z[Øþ*ú¯aÐ220ü‡OÅÜÂØÊöŸÑ³þÛ°5ùOòEúuzEQ59Eêÿ|Sÿ¥ðW{gû¿ÄþG+²v&ÿëð†;íßHËÄÌNÀö· #£Ïÿ¡Ú¿`ÿë,kèìháN ý·eÆ5þ?~ÿuÒýQ[c;“vEÙÙÐÖäïzý/Ã?ncGÇ¿ªþëÆÿmøžÿµè €;Àf}ÅΘ;Ø2=+ù#odJD{ t$ľ¬Q¥¸Ð¿Æ®×/=|³Êà£6„®i†ë«ÝcùÜþóHŠêx¬Ýš¼7p]€ãCLÙ_ˆ´MÖÉN}H¯Wö#ãB=ÚëfIfL‹AíxJQI¯ôw¦“Ùêæ™ÒŸØµÐ•äÉÞ×8­!­±	¹®èü‚,éôù‰|h|td¸÷¼ÿ›:7š”ÛìY”¿C.6¿–j•W%DF3ö]Ç;z—^>)	I¤Ì›‚YÁ†m‡ÌG2xF?O’¬£DÛQµúíÂL`Òç|Þ÷¦©¨O3ÎtÐÀýœIÐldÞÈ#È-Å€S¸WM
+Õ[?|Þâè¬bWYƒ[+Ä)íh„K5¼p›½©§Îª´9à£<'Ü6.eèiI݈·³oÞªöBÆ$O×±.ë§ÝyKØÚY3[‘aӝÈà´ÌHPó­–ܤqÉ…¢G§ïu”ë 6IB…;Ôc”†6ì¯ôú¦2Õ®V™E•ç䱞’v„vsìåàQ_Î$¸p’xbxt£Åì‰0íïóÁ“L÷[äôª³ ϳP—!t"˜¹Å"€ÿ5=Fe‰µ Fñ0}'Y埖g
+æÚX®ŠT˜Ú‡÷щuø™ìpž Þ8ôh½ÐÎ7F[VÚ£‰ü—E"?Çap«wí	«×xPOx3˜ž®LÌ?1°øŠ‘Ñ.„X£pb×µFE~ÄQsÝÈ+ L¿FN‚/ŠîOð2’Ú}#9^$’|SâpÖ>lM%TYÕÚßðŸÚMR pÀThŸ¿nCvF0·¢ƒ§ÔÍy	)PrP#‹È‰÷çõ©^nYˆfk7"§ñ÷f³Zìã0¾¿8Íö~Y&Æô§|ÓhuK¾Š"9NátYÀ
+ïÐe„®-2#­ô©ókLgÂÃÂa-6gÝX¢ÐmÅÒ§^˜Ê¢A0MTCÒ¸Fݹ¦ZòY÷šE}MЦÞÐÒiÙüŽ®åNˆÚ3ÍçR 	!ÜN>¼ÉÌmƒbSÒíg‚.P‚+_ë#S‰&ùmÆ-aƒyh¶q;!lâ%nüäáøŒ¡9Þê°[C­^Ûµ‡°»Ñœæ©ù¸ä»ªŠì¶(®{bÖÄ‹ü-m?K&Guûuà͝Žçíʾ¦'C××_eÓ4΁A"<*ÑâLán7À("§·ïÄÚȾŠì–9£¸½ÿ¹¦öv0f‰*b_l„Ž‰HVÑ£c•™?vÅY]ÙÙδü;Ÿ?ÅËÛä4«9[j®b”÷vôAñf€l’{[P1ðAæë@LÁ*G†tý]jpANwýËkѦe6
+ÂòµŒá`\f‘?©µ¼2jó-°;ÏàCߏï
+·§iCÊëĘjdጠÒSG±Ñƒýuh'!Çê’-ÖëŒðWÓø™9Ã5rÿ<úscSö
+¹ŸNs<Exø†´‹Ù®^q7]«T€?ܵó‰aL2oÀE@ä¡q#8\f)ª*å’Ã÷>kþûLNÏÅÄ+²èI­¯Ï!ÄXÁk½yÂb¹+<WÁPétsRÜá2›³½&"g LjqFwNžFLGî|â½;[­0ñÃVùšÚø¡‰û§“ã8r}Ç8@Ò\ù0‚Édv~*x# UX&͘§"æîÃiJ@Öþbpö¦~5(o_@ÍÉɶ{Oh$"/#~s{þ~N8l­WÙUXáz l¹è7J†¦oˆi‡x[õ‹(ÁتWúõµž…®BúlE|EhWÚêpcuØ7Œ?¯yã0S:©:n@¯!øxÍ1ÈxT.C6ü¯—\Ôª¥i¿á/s%Ã7%Õ·ñ(l†ßàVΧmK8¾bðÔ羯†I.\±Uq¾ó„1Šyqøãテ„œt{_ìÂòTòsûˆ¹Å¤F‡›ËßobÀÁúŒö¼/kµœé¹¿”ó¯`Æ<äj"EhÆL¢(‘mÇ“,Åâ‡1Ï-ð+Æ€ß(EɵÊg'¹?^Ïzr^wžú ?ŒÂ>..Ô¾…ÃnÔ“\ÁOú¡Ô,´v¾#H»7.@Á÷C¤–ئ¤¯×ƒ¼A/gx{Tà}eÈ
+W7 cÃDxíö,\{i¤NÔ&›ÅYwº4+wU×(€j¿Á
 –F¯–zcLèè¯o?`2]_V7’Fэ2Ò/¸g<<ú/ºATÞÊDWwÎÀ9,¿RýXá¿ÜD^59º°Ç$Ù¬oÇ*òQ—˜‰·5âJ¨’ºaì+ý œ*úÔc©MÃ/夵—¥wNò¿Æ'S®ûá+!^(ñ‰ñ
+ï	©¥*Ÿ{›_LêøñmQÒó?‰€aÈš(O1™
+s0ÌŒJÑïçBÏê?ªû|G×-Ó£jb+Ueú“UwÛ¡²M‚Zµ™âiy‚ Çt¼“õ„œ{‘~_VGìi‹¦7òx€RU|Å×°ó
+ «Ä{ÃÂo¸ýÒº¼ÍNCÐÜ+‚ƒ‹D¼uHÄôXðÇBÄî9Cçu/W®¨JÚ<°2ü#å]멘ÞÝk
+äCÓì›}Õ/餈›Ùž§
+aŒ/Ó*?ƽ¿yhô®Ü•óIhݯ’5jA¶Ð°Ü[$xýŸBØŽQ·óLS¥p²w—Fýa
+ß:w¸Ñ™¾Õšõ:­*jž=°¿…?îƒb at A·Üš8ZbÁ ûšnÃæC˜iëúšA¡™"î_cÙ×ãJJ·Ë 	 †õö°"³Ç(†4N{UÛq‰å:ˆl
+ijˆÊwßÝfÓñÍZS¶+š`.ó˜OÃ’O•“J`è^›…‚'žÅTA(²¯i¶¸Ü;µëÔ,¨.nÄ׈MË3ÜLi_ðµ.âsN‡Á~3 xGίçžêtl£5lœÞîø_¶ÒŽ…mˆÎc•²žD-û´ôLS€D¤³„׋\½%™«AÝ!îd€U\mÅú\Ó¹$±‚K‘—åx‹f†ÀIà¦Y !²Á™Wb%[›£ü8êÞëׄ/~Þ¸æ®K‹—NA`
+€Xªë­Ðì4ý
+¹7ºDÚÀöò<§0D# IM§TŒõ®’/É>y÷@+'PBÒ%|Aé"¯WÛ¦ß)!¦~DtY¢i¢¾y/ÓÊò÷÷KÈÌ ¸ó7Èòq„¥Uã˜Èhçaûu
+f:<ltºxÄÈáÛ¾jí²º‡¯ë«¹P–[ ¶
+5Âi»µ®‰‚ÏbƼÐÊSfÄhµ´™Óˆû¾;Umëdzc^_{¤£<ÔÆðùÕNa6jÂmV©sñ»èw† 	eµ„Ø©*A2±0ZØÖÍv#œXFfˆ´¨šF8tÕ¦Fbºüþ„|}µ~•ð!RVx%‰á
+êáo¨vä\‡*&¦Ž¸è~E7#òèý6<¾wÌŽ±ËêýbÐÄÅ+‡;Œßt^: 1.\/.Ú¯•oҍ¥¬‚Û5Å„Íf&à#dj²Ë˜QÓ?Pß]~C,Œ@±©Œ(xKjÌAãÏ!6‹Ü>G
+Ì›¥L×ø›q¿
+—qº»±h–<†åÅJoÖY’én™AÇ
+Üe§î¢<&’d³-	¸˜—É…SsW>>B@ø3<Èo ðäK×cŠ½ºB>KÝ@Î#Æ?õ‰kê—@qn
+°×HXr |W¶Ëº"âØàÄÀ4uì†7N7>ŒÝÝ¥
+(_å¶g’½ë
+½Œ ì|>s>§hÈhõÌ…Tà£@‰ãlWr–ì©B˜pl¦•ôˆåÁ±&Ø®™kc—>„)ä“û†ñ¸
+Uðg??)Œ‰72ˆ]{m7 at AÎ̘ðû
+^ÿÙÊt¹µÞCL0'ÍoH[dâÌ:²×ÍUïF-÷ÁF?Ó¯†	ü
+•­€Ü—45É<ÔÚ…TÎmŸ¸uçUìh8C¤Ý·Cg=¼Dû‡æ‘x@Åפ6Ø…¯ÁølÅ!¿A"uv­HšêÚŠÊî‡G¤	_Z®8϶¾€=Ñ>~çyŠÎœ|KÅþŸºë	¥Nè2>,S€Äot1ÕÕþMôKU\,Te\‹£•÷“‡çó´ƒm§^[ÅWzgí…¨|
+ßÅñ'.¬àê*c†°ù¶ù¾ÒþHo -ð^èâå,DëšD֝êD‚1 
+Qc9&µªPi¯ n,‚¨u1…BkË[vhÑ‘ï*ãÐ@â Ê"ÆOº:I±?xl>wú¸+©X–°ö­™Qž_h‰#–,0ª%]9üœîó¨PÙ,+~ oÒØZF‘pÀÓèôSÁ"Š¶º(
+ n ±Pv`!žß*åœÞvíªlO‘Ð9å]ž}D½õ v¢qƒÇ}-ȃ(¦¢‡OÉÈq{-†894wATqÏK\Ç4ƒt“Fw¨o0ñîGŠS¦wn<Dz¯¸ oî*¢ø,šÂ@»-:xÄÕÍÒ‘Äyê¼5eþÝÑeŽöÝ—"¾<¨üH¥6¸!Ðʳh‰z™«6ñãÐ")f“ʨzm>B†£}Q4;k¸
+hx’A»Òi`¥¯\—ÉÌfw<È5/–txL‚ÜuSð~iëh….[¾dé!ÔÕ5µ«ÿÃàV¢m˜0§·Å¤DÚÖ'y8	,̮扑2M\Hð1	ãAÊàÊi£•Š«seLÑ^DϽp¸ÍÓ-•Í.Su‚µa9ܐž‘´ÄtT¦ap=AH!Á ‡ñƒüΉ¡0û« FŽ?ýXæðYã`,x%hÿß™§¤Rþ`´䎸$m؏|¤Ú´¯N.L6ƒ¡}OE¦´J;l.PNJ.@ÉÏ:/WÖ06ª×ûw3(Õ¼¤öU8ÙlûÂʱô³ºeÊ ]×}2áFà[é60R»õ(’ó8&¡§øÅ)ìÖ£pÁ
+ò.Ç"O©Ð,S‚±ÈþzØ÷””ùñAaú*=pÿp¼è?P€"ä[¤L»:§VáÊ[Š,‹ „j„ŸÞûy뇔I\Ñ𼝸`žÙXÞYÆrëOÔsoÊ6‚ óë茒™ÇM?•Çd«P,’U¥kRï"Lí?œÿ<¸Ö…Mè`L“·×H¬‹}¾Û€÷@kxM^·-_4ß2K¯º3[÷ž+¨pçfhˆî<{‰PXÉødvmtفå¾ßoîåž)u'ô›—Äê›0v®Ù#w¼¦|-ÅPâ#ì<KíihŽ¸|«åàaÙ–*û
+x·â͸“¼BiN/ÐȺ·ÔjQwÀ$’a 3¦.‹¡^<YA¬ Ó"ÆN3S"9„ÜoMŠË˜3ßõ),ê՜Ѱ^s¢¦mÛ}ÅDÅö°¤}èá01±=#IU-®Äm<¿¸X››Ã”E
+u¢êضê¦w6i'ìQüݍ‹ Ï_„ý	ƒû9åîþyö鎁ª£ “¬”Ø7t™9Z¡ÅtÕ0N}½Š—’´ˆèX\™†ù3!tzÀù£Ü"ÕßéWZºÛÖ† ½±:ÇÏ'÷)k±k^<Ç ˆæéƒß]Ç.§î¾î²Ämç6¨>dr¿38?b²{dìweõ¿:ø
+µNò„nÇäÚŪä=ýNÁA¬ÜxÁ/9l&ÿD:†B€<çFµb“¥
+©
+êΗÕ:]]+ÌZ¡aŸÆµVU1ØِéNš¯%ÔˆWñm Âo SQՏ.ÇJÿSæ9Û3øf_dkGw÷mº0`ò;N·9ÚŠ-ú¹®½LP:ßhùZÍªœø|B=]üEEu'#Â\Bmcg”Þæ’ÑZ#ÝlÎ(O×Å•Â,~é¼vëÚƒÛ+#àè¨ÃÅ°$œlÌ>d‰õÛWöý…-Vÿ#GY•˜®Þh|ö²‹S{ÎÅxÿfoüÛ|ÜdШíjŽ¢gÃ7Ÿ8FýÑL÷w\<4<jÕUüÑ•º¶1çnÅ&ÝFZ²
+™‡0{<²[¬µÌŸ¥Íð³þ~ˆ·ÞpÕ~Êf±¯(réàN%;óW¦
+K¤AZªýâSb—°Be3ìQŒ<ý\Å’à®t
+#3$Â^†ñ£‰üþ^ÀUwóu~9úì‘6	S)cQRÂS6×KttÍVê²:x—¸Œ)‘¥™™v"¢[%!KÌê†q‡Ú…™Ùô åGjc˜VªzJÑ7;­£Â¾2!b†dù‡Á$æY\ŽÊÌ®C¯N=_ˆ5›i‘ >ßES.uM_ú®·¤vJ‰¾†áóaèÏëÕž[4­žËú‡ëÚ=ñ—>Ø´œ]tv—ÕÆÇ ‚£A)GCm)Æ;&²ï‡øü1µ:ÉPi—'Uh?è69zh´Æ‚täJe¬¤øØsdU-óÑÄ×òã<†4U7ãdË+mÿqµ&Œ>"ob‹ÔçV{]@6«.ÛL¥§øðŸ¹QQ2êðí[=_ôÀÓs–i7ìÄ(ï#p¹i‹<¡–³y†î…x@‰×ÆqßS1
+áëÇt(ÔI¯á=Åöä°{?ÔÇ¢`£Í'øskg@Jío<N•¢èæ 2!Âc“Ĭ*ŒVntt¹¡ç_ƒíLöapÏL Â–ú ³j§ÔµÂ'U ]6åÉQ}ÙBց¾ôCý\%ozç`+ªAg„-è³Y ²T¿Š5”}U†eíøÕEÉÜ?·Ñÿ§¬ºrî•¥³=†ýüœîHtÅm‡;O9ìÖ!êîcãPiåƒà#gµÅì|ܤM·ÔµIˆ2^WmF×Vº|uø2;h•8P˜ß!—C‚ SAcuàt®©YI—éï"÷;Räe<!	BÒ•7Äö:ãïàâ´qê	ïªà›i‹óôE›øì/gh»Ú·³vJª
+ÎWö¬‡~ÚB˜¸­ß5V;¤Íu	X‚¼h)™7Ÿˆd7n–®øÃ3¥ŽMu'n¢~–˜ÅÊpÃËc1ÆÖúšä5ÇûÔ$½à–Q»}.u€ú6YtZzªiD‚×”¤yŒôóÒïâ¥.½†… )¥¢1l€üÙt(%„¬¹”í×®Üëo«‚ŸíÏ|6ÊM»û¢GeªÍôZ´XŸ}Fš?uAÆáãÞá³®ÿˆMõ’%
+öm˜÷ô	ThÔK7®¢!ŽÕ«$éiÆ9oÙª»Ç0ÜÑ>ÛñMkŽ£UñÄÛµâ('ò÷‘PR½Õ¯xÏê.…‰x6W¡i¸T«•=nÿ22Å0l‡ÖíRäØ‘žÌÜ´÷é°mudÅ®PÓ+¹cØ°n LÖŠtdq2:ŒˆtÌ~R|ÎäzK¯8t½ó«qú €‚*BÂ1c"–ZàôjÑEä×ý¯òÌ
+U¨ ªÉ¾
+¥>ãër‹üý¤„åB7åi„XU4Os
+˜'¹[©štýó X»À‡ ZÓ(ð¥¡hõ­ø†¾f&¶úP2É6•ßëžµð+»<׆zRUz›FýÈUôût%ލî¯@/¼ð6´Ë¹G’„? ^=(÷›b{C¨+$NoåáÂüŸ›—êdž”Ð}×BFx†Ö½ÏB›m³ƒH6¶b$O\Gc]
+¶ñ’e:œÿl>Ži°õª¹Sn0Ý«$ù²¾Ò©nd1 iÿˆ®<ç)„cÓÀÔ{wµUb	¿¸)ú3t†ìGÿ  ’6,ü Ì‹yQÌKcƒ«û>H´–²»wçf´’ÇâðëièNa·sö˜æõ†4ýÞ>õ³·î ~&õÆÆa³²¬Ñîì
+èý"@ë×7(žtÄÖ˜[&oáÏ^*Öé4JžuGílÛñäglÃ4‡ãÒ ²±æT ^Hé"î:Ы¢«çþðã?Þ§Çæ<(|°&	²ÄÓ!	_|¬!,m¤=Èî¾—©ÙµrßÑù`B¿<«˜ÈÄÑ%ÛBÌ<W‡Ý™éÔ	)ú:M1 FûNàg|ÓÐH–ÙF=ÜꢆÁq·äŠˆ”{h«5h>ŠépFÇYçÇ<!Q=`÷yëq(b-¼B®´‹6öŽ=°Lùa镾ڱHÊÉnó~5ãFñ]—$$0Ý>'¶ç¦üƒæ+©š3&»ôêï´	xbñUù[/GL¾BçΠÙÿ×sªúÃÃPûeºÏrðrù’œ
+ÎŽ:¯k8Zsû” ´ÂG´;lÊ)Œ)`ä•ïµÐˆ$ÿºå‘Œ¸Äº!+ÖHšÕ_m“ïZ„¶…É5lÌJ…Kµµz.l=iÄ~_ÐW,"kjzÈ‹6~‚”ÊaÀûÎr͵޷WàÍ‘%–Ìà™¡ß`~»)[³/íN+ÏN/ÐdõûØlØZ(Ùé捕±û‰ëLŸ®¯²^I`Íqi€4ûªGl`:(©E´øÂü0_ˆZ­¬6g™¬¹Jc}ê8÷ZÕâN†ù}¤Š×"ƒµèNóí÷*Ù 'JÈIöS´Xx 6ó'å`èî%½ô5œèW¤ë³ãW½þÓ´ß*¡/à{4ü"±Í-•„[æéR‰›}iÀ$`Ý/U¾`èÒ¸5På5–	ï\?™âkø…Áj2FGØ\³†ž¨Â³È®xs?ºLfwfïÑA	¸,n¹ÇÆO. ûù@1ò M{6AyìH”3^Ÿ¾Êjü
+Ôzá`1ÙPÚÕ){ì³6™‰bwB äD	Î^ÄZ/¸ÙCÐÓ
+êNµf¼K,uxÀX7r©wBBãÔ¹ŠbsÀ[¢Ì3+ôæü¹ ײˆB=?ê¦+”èo•Ñf1]ç9··ú
+JíhŽ9„—(Mèv¼fM‰Ÿ·ƒŽiñ£¤ë+õ#fDUs«2Ù”RÌ
+t—j—ÛoÚ¨[½£Ø(]f÷'Ø…¯ýJ2èò”ÝÈm2èñÈkHB’ˆROš:)HdŠ{ôy€sŠË0Ÿ"Í#{Ò_fë”3Q'	a;ÏC¿AÝUÓ<`Ó»ÔiWX'a½ôª
+è"5”ô!Í Fçä~W—RíN*×IÕ0p™{<£É–„ ‡™2Ê¿Gµ‰4µÀioP)ï_€È“<½ûmÉ”Aš‘hAëG'Pf1vØ”ü&Q‹¶µQœ`Z–›øcýÐïêZ]tÞæJÂÁ¿Åv)Ž02¦¨®¡(å‰é1FbáÖ(vr_«‘ˆ|½æ}àœ•kçú
+3ý‰°¶nþ8öæ:¹®ûb>Ù¢Þ¥Æ,´æÌv·x\ŸJñÐ\™³´êmD{Û¬ƒü™81?ÝŸ5 ÃÆ5j*iþ¢–¥—õÁw8§]†:8¯Ï1æˆ=ź¹lfäïβ‰ÈÌ“©ë÷îê*ñ¢û͍(ic€ïŽ®ç
+ÜB¾S•w„ôÞÙÑtv@¾[cNU–1ž{B¤,Ñœ§ñTÕ²r˜³ t½êæï_ö
+âäŽC[)¢þB8öZ
+_J1 ¿z(µˆpÌg"íøQCAÄÍ©ÿk‹^RÐ;¦eQ+É_^myxjA|¼Ûç,–JG[ˆDqqÓ ³j0%!‰Nȝ„zBs»té9¿–ïWpOnñ‹sve3«×Iïn¾¦Ì@'üòáA\ì%Ä€ˆÛe»­U„#á5%Ú€äÈ;\'mÌ0`é’ÄfÇ9ö ¯@D°½ëÂqe1öÛéš4D|]t½C2öðÒ¼è/´fÃÑò¹ã{´€ÄTyϳôÚÓ f‹ÕÏè(¬×JœÝ°<ý)“íUûdÝÜ­–´ZvêÂãhŽnÒ
+àÇšÏÂ#áØ$ƒ-õ˜_¬»^fG¤J‚^7eÇ™û•M§ˆ†yK¨Ö5’¸¥¿vàþ‚}s¢Ê³Q-E7<$šÆÏTeåãà6iz0¬ÙEaŸÃa2ÁM—÷§3N«p<GH:’›¸×\>²—ª!ñéÏ)v|ü,ñÐÝ/ɧ9Ì…sçC¾0ko1rùj~UMuç
+àe(/VÅi«YÄÎ[*[ìm½)›TÏd+“ü‹„ $~f*a‘‡ßîâ¯ë2ÓùM¬!)ñt+WðÓ›˜&Ôž/Ë{jK')vZ£eLDùjøŽTerY|Î^wàˆb¥ƒ‚ê£A×ñG­V>â4²i¥‘]+ê_ù¼
+/•úMZUùFE~	Þn•ÝˆÛu]¤ƒ@‰Rn¾bŒAia¶Påƒðù‡CîEíìñÛ9™?­{*ʶ{™(ðÁGô1^™û\þ^×¢öéB™
+‰åÊl
+‰³'<+ØŸJSØlÔ`
+QT„4\rë¥s°È†Épû’yºl4»1ú‘Éj¶}(T¼,E3Zs•&¸Ý÷.é%BÚ›ýɧ&PYa¬…wý½˜…!”ÅT“˜•ºÞoàá.:¢3…§î\ÓO³Áo^Šýcù;»$Нî¸,”©ì-ü-*°èç1>¬¢^»MÜ6X_"K܉ÔqÛÌüîï¦G3•N®Å¡S»OûL´*%¢YÿØC)A8u°•2Ä2ÄŠrªç#BøkËáãÏ-).œ ‰§Â53óÊ_T£Ó÷}H£‚¦á½JÝ7—)ŠŒ®}¬Ì~³ªÉÙÔähKu"VÕgXAô¯^AàïSÑ™²_½P¶å¬¯X?´9¤Ï!)†æJ2æªr§}ƒàNÜœÖÆūѼmO#ßÍጱèš? ÀɆU&¼B–ŸûcXŸóké&Ì+ˆúÚýy*n8©‚em‰~ÂÂ?Ä…¼}|KT€cOÃsÅŸY$Ú'¦ê	3&KóÖ2_SöK.h%•QÌÒL$ÿÊÅD½EP“Å ñ¢}]“j	+S˜Àƒeu)Èþî&øý«wÈ‚­Ý£¨¿MEpßb–‹}|–þCXh09ËÎ;Ç"t  Þ3gê±­ê^°2HpZ_æŸOÊ´¶6e¯ =\ÉÅā ÕB$fñÃځuÿîèž­LúÜ8'¯û-kZQöÈÐq÷‰òt–Áú:œÆÊ&¹Ï
+Î	ŒÛ..4[þ¾6Ïèp¿!uf¯ÎN—ÿrKÉ·Ví˜Óæ»Ü #x„.Œ%$$ý8%<æ>Fæm{GTô£Zî	ÿ:
+:uå%Xz7X^
+øÆâ?ŒÇ5Ò¤ q¼a¢5‡Ü’à±/k#“£.ü~˜Š©$t[¡}$B§ÞÁÔBx‰Äœ{ó1É)Šwc“¶/zfè–ÄËnp{•;Q¹ÛYÙÊ^ØÄ-Êe}nÈpõ
+OK%RƒûI§ñîñ¬·@G‡Qá'ý–*w™!4’´Œ` t|œc&…«ä÷€qßéJúP—Ia0xé˜ì2o¯8í³Ïµ+ÆÉîJ*W,SïÏǃ÷@›Ô÷¢Zž‹Vèë¬T§½Šä]€ÙuËü“HEÏÜÓ2‚‹ïÚoëmÏ"M‡LƒˆDÉtñTŠl™â—ΙK…}L5	)¨ KŽÆ„Bç$C›ªÜ±PS=æY5SdQa^lg3ÉÅŠÂ¤
+à?±ßGɃgÅ0vE´ç‹UŸ%ç$8ùM=FZ-6x¶Àá4ˆ"gê›êö)áEKúl%RÎ4æ¤h•Ã?ÊåHM²MÞj”ÍuD{=ßÛç"*1`ƒ,?åµê?:©Tús/×0	ɏBný†½GHÏ\üÝXw	o-”òò¶çU
+L±sI ¿ÉEãn:îf­Ž3•÷Ý54aø[Ø„¥C¥Ÿnˆ}!fÛk«3æ¸9òâA¦]Ù¼€€¤¯SØ7-ÿ¢	ëqbÅìbÊí7¾ÂЖë”ÌIŠ{7°µNœNô	p÷ýÒ²lV‚\IB2qf7AGá/y![M™F=FrÄ¥ÈEkN6¢L…½k	Dqû´•RUß¹lZ¶,ŠMÓîD	›þ·¢xûªÈM¹Ž¯
+K¹â
+k›¹ß´XÎŒ<r°ä¹äX+¨(KÌÈ^J|­¼+>û]	k”ÚExB›Ó=SB];-„Š<+@·JA6,å2ù¦{
+õ®dûËæâ7Û 'èˆ7Ÿµ¤é/·Øãk„PåuD´çužžã~%]›íô`K§¨Ø?6ŠVFo<½¶¶Cà§æÉ#t?ùª">¹Ö¯É9GË€£z~^˜·I{{›)ó÷ďmç=` µjC _+vÌ}¶Ú:“è‡é„…—U’/¦÷äžÔ[y‡ ÑÎûrnŒ˜.IÊ=G&µŠâ”š·ùgß+±˜¾¤à&Q̨ŽŸáñ±›ú‰“n&'—ÃnâOòMõ´£‚Tˆ•%xx¶ˆýXÓá¿Bâ‡$W¾ü¸-IJדo›ŸëâÜzok´B¼Ù8à•…f‰-bDȼÁ]XÝÜjîÏrý‰§»á-ŽN®¢/Õ·†;M¦<b_;ßM8-™ÍÅNâApÍ’>ù.s¦k~8ªb{o.Þ;ÿ:Ô¦IÕ›ªp?ïÝÜòy…Gåï`C6h©1	"ó.“]œÂnXê#ÿBL/Õ÷J;‹¸HGŸw°7¹’Q_º¨Ç
+”)Äl<Wò|Ö†ä[î‚8qNäUÒ‘jµØ3x7ŸJiRŽÅáY«éÐÜ–ä.¬X7Ýu»gc·…±­Ã4FÝj„-aê™,9ºò}£$¿«½BêV”“^8°àTã•sçÝ­k¹½ô2Ìñ1Õ¼aÞ¯üÎ>e=¥h E}9ô
+o-k±Ø€±¢ž©QÅlØK^“ÈÌ^»Àý“ܵ"²\öѼ
+ô[øeªäŠ#º1ýËr?”œ„Æåô¡<Žê§CÖúÏŸ;û "#ÐpJ$P
+xÙ¹Ÿ^ÓWjÄ`àýªïò,åÞX©HÐ9R×4Ü6Ký-¬âK2\xÄ>=®ªFt/%z™	Ú~H	«¡±ZÁ×:lÎPÀçÔ¬h­QVÄÛn<©ö¡úO‘úŽýQžßÆ:O¨lO0læ„Øé°ÑÐÊo¶xÖ—¸wÝøó”DÀªPÈÖD¨háe¸?GâkÞ£zÙò€RîzÆhƒei3eîKËšZ³8Ÿ¿»õl «Ž9Ä‹†ýq
+÷ü6u§6y³M·‹›Ô@@•¹ÐøƒN©¶R›šy±[DãÆ_Ãq'¼|ðm|$§ùǽý@Àd¯&¤ž<ðZ
+„…ï~£1ÓýÁB}á‘9¤[:W·•’–®6Ö(‘ _{ô	“øPzH©ðiÏX=É,“ÉÏ|陥yKö¨Iò¾aÓ.ì©`D„ÌžQ½Êí2ÿž²ˆGYIú)ZMT·³ëÄÒ:dR¶=nbÇÉNB¨¯¥|1å‘^£k%R_ýPo
+W´Š°ZËô.UÃGEÒÆ~UºÖ«2ÌÈ¥Äî(ØëØåÎjMÝL3X½lv¬¸ÝÏͺŠÓ%çöŠ¶Ðz1ª·H¯S³TKYøuA.	’G½Q`¡ÅlÅ&³Èïjë³Gšaò@b	b@Þ7¶‡6VR¿c'F>IÓC¡gÆ„¬Ô ê]Ö9NŽíEoÚ-
+œ$§¥„ŠVóÑ!ѹ$—v÷êѬ6õyqóz.´~’F“Áiÿö]²šoŸ*òv2ãÜPI§‡
+		áā@F?¬6d…?’Ê· Ì8F`:<ôÛ!/ yöç™ÑÛ\mÐÑæ´àêSR#«¨Y
+9KÌÛB‹çã[Xv™	gšSÝsðúëï¥ÐOœ\Wnq6%Ãí}ÔñoðzUظÌZÍèð™{Ô¥]~ÙŒŽ÷¥K§Áþ´Ò×ûp2IfÊBQ%ü׎žQ•'¼ë©¡…—Òw4mõXñ׬lÀF+¶Å{Óv£àe_¬×ÂœŸh§^>@(ÊݯŽŠ©TïZ¸ ñMJ1Wq?Å­u×ãË·ËÎL¬Ó@´KœÖnð2j:‚B” È¡ÉXAU‘¿"xãN¥{ÔŸïÌvé2²Ûb±72MýúeÎ+šæo	 Г³¢7DôÆæ‘ùÄNÅëÆ7e³rñx·×hxØë´©8Å–y‚¿4u	Bo[âêÓEL28²¯l?ç—Û(Ù`¾¶Ê#ûºÝä‰xZýR°™ªÀñîÅ«û£)ŸÑñ-[Ãtè@lßA9€Ê­*‹ýçç³l¼bíi¾›fìÍ"6NÈð‹²ÉÁEƒGX¥>@©)ÌEȈ'™‚œùœÀâa2À@òn5ÌõGò;Û«¢’öÆƉôÞBŽaØñ#3”;w@‹^Ýw{^¹¨%ÚQ\9iQ!=GÙ(°ïabû†¥Åc2"A“³ïJÖÔlB÷ô‚¦À)¯ÂR¸sÅ¡…ѯ'¥[¾ñ;¸B“…_„è¥ùN|™z3P
+ƒózÜAܲ{mŽL:}°ë¼7¶7çÁS¤S„ü½ÇËÐóI7ˆ´4ýsl`ÆýñçÔÐu˵\RôÎÛŸIÂu0ƒS¹%Í}§_í¢z‘ I“¿Jm~ˆÝt‚ÃðJÐLé.3 	<Š·f;¤^«šÄšÒ1L”ˆYoÙH]©©q	hÅN¦	¥µ¼%[Ït.–Úq¨?¤4ŸrÙ¦Ê;¦6±ŸtU®?(fmÄŽèõ\Ú6æ¬K›óÒ¹M<V°±Ò$6ÞEÊVr[ú§o¾‹V}x7ºÈä«'ìÛ2G]A±Â Œ	~há.Ðüªúó!ÂÏÜêÔG]Sn$^B.æÝNôv¡½3ì&¡h7’ŠQ|“a•üÛö'ò=ŽÆPh¤~ãÎÂîÌ_ä?ˆn
+±Yõêæ[,¡Š$åÈ|I!tí—A½uµ!z62âò{%F­Ç\¦¯Œ³ƒ!jÛð`‘{v´®Š€‚,>>BYÄN,œg¡ç¶0'KGϘ8•Ðo}o†ca†Ë›*é¾ÇÛ †6“D€€—ä¾\äœ{ºàf‘ü”C×ï1~'"ªo» Ñ á*è“jM.J
+Ù¨':E:‚ïÅæŽHäÄà_óŠƒ,E1jOÑSwºuJiGI˶à5vÕtþâœ\'1º½Í/¹	û_^À¼kGÖÖX,u¶î~¡õÍíù­°Ú©½[é¼éf:¬Ï	Öî	ÚÝYcÍc ÅRszMu§òÙ¾Ñ ü,,ûã£]¾b”rG"°p«©Cwz¢Â%?	¿*£99‚R—1àuH_ûÄ9Àò·¨˜¹ÚýÝ€D<nh¹!qJPÃe0ÏÅ]ÒÌ2¤«ZOú¬¡×|;h;oîÚ˜ú揓•<}0r(Ò}aÌq÷aD[ªÔH}TuS»ílÖ3˜æè¿.#ùË›"_öÎìr9åôj “è•Q;ÃMGÀßÄ]á2i†^ü^Yc÷›!«d²Fë»ítLjÍpÅ·¸¿µ»°#ÕÂNG§={ÁîÑ¿³ŒEvìÎÔš§&·ÂFÜn{DØ@ì«kŽ¢Íä^CçË¢Ò: â§^·»0n¾¼ÂDÕSZ”µHé:s…gÀØþjs‚4
+)ŽúӼɏSõ¬“¢üp¼ä¤rðV"/~·á’£>oCûʦÙ>¡ ì< ´x”4¸áÏâ&ÕªÓ7ß‹.5NƒV¶ vGÿâþ§åIdÞþ¬2^ÁEü¤h®—Í`÷†	§½ãFZ©+yí&{p-‡”·ÕâÃŒJ”'1+KyÁÁ,:›Ðmc:é;LÏКp°7ÜÄFGïú´¥¯ûÉô¡”ÝÇb¡¾$h×Õ¥]ÿk•	Ù<YUö­õ®ˆ’‚ýŠÀ÷Ô“þ@3r‰P®Ô/ïz-û$)_Ôm¶Â¼.ž=fpºº8¡ƒçó‰GBÃJZáÈCtt+'Jæw¹Ô¶gÝ›¯þæ%½;AsFŸ-yðñÈîÖ–µ‘~œ»ß÷ÆòþbLí¾d\rRŒìHõÑ	ð8óW¿´¦‚%g¦x„žœ nÔÝåUY~rM;T(ØW|e	ëŠ0Ñ¿þ!7}h˽pr1œ~±ŒÓÿ¼Éá;	95>ÎR¸0˜s„Æ!î‘G¤>DU‘
 çîÀs¿òÀ—Ô:GXJÓäƒÒ=€¥I,·ÓÖO´®*ÙÕL ÔnÚê~îŠNª!y†|Žé¦8‡·ü
+ºÙ˜¾Ü£ÁF8x¾ÇbýTSl°téÆ;Ê¹?Úþ„(h)!ëœîø*5Bd¯*æwYËrF¬@ÜФyV¦ññ <œíÈ_e8r)¹j¡#»à~¡TÉйѤ¦¡`ʲ0WbÚ§Òd'È’^ÍN¾5ޜ԰9GÏãHW~™3 þ™ùÜ«‡ыǼ?<,âš(A‡PJË^M'KŠt{2KÖžÚÕ	Ó@CÌ yþ,¼Û¿‡d/4q©Ü_T-ÆcÄUÈ[-=wŽ EÅOh‹	Sƒ2Ô‹çñ§zU6©X›•<Ãhà|JT–°7há0c󋈯¸ÔŒ#ØÝ©˜]å³xtÊ0ïiäbékϳ3òÑ[·¦õQò‡É$$ÖÙÃm§ÉrxL·”hÅvƒãDuûÕå<&'‹]›‹wì	rqlû7ØDYšül†H*´
+~gØØIZÑîî•OgÌÛɲNËс:ÑõPZ»œá µ\£T Áa÷]O'"ŽÁýsTCÕª!WÙ0f×~	[n^Õ!¡¨„zÚ¬^‘-5‹Í"Ï8¢çÚóeWt“Æ~Ü+säÎýQ@=`ør· ÿÒ#‡"g-ÎZȽ³:uMÜ‘S⏾>PˆùQ¬}ÿ®êÞA¹ýî’¤bÃ<&_ ¡v<ôÑ€mÑé¼ÿR¸°*Ã0m½û
+Û¥44k€ˆ~å{åÝ	‘Áq\`8õŠ¯ñÂêè(m¡Z½e\¬$n¸F×
+n\0cý´èsÏÇ(W›qÔ€ÈÂrl5÷”M£ãðq
+­†ÒSPÂïáߺ;ôŸ™•õø½ûAìªPè=’èá×RÍŸú±ŽÅZ9°:‰b` *–Ë=`áæB‚±¨çB™ýµ×êÇ®n³¤¦¶û-
+éBå) ,‹Ô–¿Ækc±oש9—%çðqãóaÐn
+“‡-«2nˆéb%7½àç­Ý×X—î)ß
+yµ„?ƒd{ìˆÎ{Vý´×Ÿ¢ä¬%¼*›Ÿ+Š6sDõÞKÂ&E<SÁ7 ^ "ûÀ’üzê¼WÊ¥âܼÖ4ÞîC˜ã½«PØÊC¯¸Õ*â.¤ãÅ<¼tÑži	g’½àǐIŠ®Ú¿;wØ„«K–Çà?#””Ï›ÃNz?$aR5ÿ€«§ìŽ-¤…5A:bwàÀÐj”í›é¹Žáîºâ¿¹Ï«¿8s^¾Z:Æ€ëñê7L®ª“Å¡å·ˆÿ£Sxhô>±8H»)u„vbêæ‚ëwWT5Pzã}ÿk³ÜH«½ðŽ
+É=:®ßeËn=Ú£·Æ>ì³Jd‰Cf
+‚k›ÁÀzoSñ÷ÏnG.È!jP0aý#.àS£%æD-WÃj8¨~eÞ¾7Ã=hpfx_ÎýcõôO÷Lë1ä«_$ø­sAÂï‹gÍí’SÀ5(Ó¨‰1wj—ž{Cî.û£äU®}îGE+*YN Î¤8GšÈOF¯dò¢Di‚{¢á~RŸ&—B%‚¯âRñÕ ˜àîQ…ñ^Âù°5K1µbÍ‚ƒ8£ïñ¤‘doÞ@ˆ!¨·Î¾§óMñŠȽÀ	cDäLO8“½±´6GÆ»,…²êÉeX‘@:ïâc’“›GnCî÷¨hòò¿	1@Ðâª7ŠœôÐ6ZÕLÜ‹ÆÚßU§z+F+µß"ûÿ÷V•C4 åo ïÜ{€/”]4:‰ˆèk}SjTºÔ܁‹’„¹	h:6í Á\ÈoÌÚ?Eqõ\—ƒ/EõNÀH×ÛÉßÅ…(	òr1t7Z8°÷Á.ULt!9 –BÛ {FÖÝ	(AM!p”Q5Ò‘CÂOnÚ­:ÂÓKaÒ‡_i¾®hAÚœdòB?‰hAC2Þ/£Š}b-Y’S¸¼qìØOÞfé ý<Ãà ÿHºÁ‰šÑKaŠÉ/îü0È÷ôšº‘„–®úaÌÃL(¢Ê_ýÕ gNÃðF½*Óä¸Ù\¹S»s´Ò?’ÒØ>,è
+&ŒYÑcû̃ƒË›±?MùCÃ|'W	W†( q~O?º3'Ì©Ho¼¼ëÝÊG«5A›ìrÁÇËA$”±¬ŸhCÙDâOœ©å/Øp)g&ùï˜Wz|Í·¤\Â<'~ç	 ê¼Vy¨eö-­|ì/êyG(rH7YQ#AÌ‹þAÐô{‡ar‚4¾_80lšAö¬å
 )?½%ícÚûYhˆ(rÔ°­\WË.¹t© O¹H¸Gí»ÎUÞè&M¨³—óÏ“~P³ŠÄóÏl¦#¬ÝspÞè9f<iO4Jõ5Ïë‹¡ßÈÉC¨¤]2£3Ž	hŧJ‚ Ýœ­”DÁú’ñ¸­/ué؍®ÜÑ"7k+g?Wd	É‘Ó°©#6Eù8!µ°›*BÛºUÖ«…öJ‰V$g^J^	{Ç¿5e§,ëÀÒÍrÏ+·6§ÍÀ[@ùx9Û.Ò¼-ÐPÈÀR0¬[kpmÝ…Ó‰VÁܱ/M›ÕµÏ@©_Wý¦Ú¬·±$©KÎReè€!Ü7ûÅç[–A©Æ›16tzxÍ!³Yiâͱ_„óN#t"â«ëùìýÈCËY¤«ÛV›Ö]Œíž{•邧WƒYöû‚$]í–%ÆôÖûót@!¦dÛe­U[®²Ãú¦cQ/3ÍúG6epܺ:aí|à4œ.á@>û=b¸rPÎæcL8hhÿ`¥Âb
+xÿ3CÂÉéBkf¾x%Èê̤ñ¸#£Žcã	ÚÞe4¿Ÿ*®ÿ&°ä/Å–…6ï 9ÍÃþ’ݍ¸0gæÉ/AjlA‹ÛQž³ÑÛ§+ŒX¨_·Ä@óól¹é+n½#QïòËa~òËÉ˧Àgè¹v|àaʈA®7<­ôŒê¾™UFÁWÅ)Ý,—yQæ’øËÞÃ×Làç?7HspTs ³Ø2Ÿ¹ÅÁםëG?²Õöøg~ˆ”åÀFzÏò\Ì°ÙH;g»E–¯A*Z3cØ•ü‰qØùE`0ý«LAO‹—lü´Ö(d…Ê]Ç_ Jz	bƒ®Óh÷L#a|x ž@;@ôÛýö	UEÒwÆ
+çãP(IcÜ F ·4UãUwJ¾A²¸ãYL,x¥I	’ÈË©èãµÕ.ÇVú–ºF!•/RÄ&_ņ®ær Ù['°¤8 SK
+ü‘Þ030¥Ï<V];×åµa'±¼÷~@Y b­¿8_›¶«ejï¡I«iEßVºÒ[<ËÆkš‡û.ÁÑ Ô²4±¤.5ÁÉÐvV~—¸Æ‰0YŒÛzNæÉ oÆMú±lÊã'ú£>%ôõ}+ãlå@õe!,í«‰)@{<ÿ‡xlòÓÝYRý^–ÉfÚ´H;ý—&¹O8`b –+¼ö€VjBñ„€N÷yáÃËŸ_îË[å%”´XÙeù’J?MJRµdæD,$uÔÕc
+)+Ä6|âXÝ>3VGhËÄ€0¸9m¡
+ø±ƒ¢µ®WÐÏéIŠª
+w_}§Þ…¨é
+ǸŠ"ïn\ÚNÛSc«óʹî¹;Tkê&)Êÿb’‡ø¸sSƒä‚®‚ õë ‰>Q–Ú-»™'m£+Á
+
+ؐ”ðÏk¸î$1ÊÄlI”¡žw÷EhA'8s’OóŽ¢
+€Ô/I(šê<óªn:UÏo¦tˆq¾eU@ãnðˆ‚þFäŠ7[/P%ÂS°|Q&uèø¬ÓVåà©
+~Ñ–†“sæv / úÁj]È*=k¶{såÑȤ햆+)¶0@)±Bˆƒ6èÕGm.Žð£û|X\‘ßj±÷£€Ëµ<uVÞê~¬ýmíÕž‹CA1êhj–ù|\i7Þ†B óhðl™®xtxï—8®â°“fY#µð¡åUX»cÑå/#áªÄú¦Sò{yF%AÏl>æ'_ýˆù¯NÐAí°'ýL¾ôÊ:7Šw,p*Ð.]~áß„Ìõr9ý$g…„i¦5Ö@î­ÚLªÃ(¢G?6òeT¯»áøöA¾eI¯nÚÙkÐÏ7yFå_×&ˆrQÂñâq!Œfô7LÊ7
+ÅQL؍ivŠŒx=ð*¾&`¸ÂŽÇßQ’¿ÌÉ•ÒPLMµzhZ¶sÌé$:¸FÈ¥‰”†Ÿ[‰p5.´ï8&Ï“"v¢¬Ìç1#âúä·ésð5ÿÚ<‡äðB¡ÔmŸæ“_”@ç =j°ÑyúWþ?íÒg?Š€q5¢1kVìÖ(‚صª¶ V9µŽàDhl¢åµªF5'V£ÚØǨ$”Vƒim5ŠP«¨ „ê¹ßá¾»¿û|€ÿ«'iy7©U¬$™>wVs©ê¥&ø%ýÖ?i_!ÚX§ÇwKÓôž®û‚òÍ·`…oËBz‰õçý•û"ǹe‡÷×ÍpýãG@ó=•TiS“O’æQ*òz
+f,B`ÿŠuu*±ïà2T1êÅšWÁzX>“°%5—«ú†
+KÄQځò´ÚWãIBKÊvY<L©ˆ€%†Dz{µÊß«LˆpÃó´Èä§bç=_žŠÍÍ&2%”Ø>•$9P$ ž	dÞ—‘¯Ò§ÝZ|®ô0%©D¢¦¸Ä빌$óÙ£]×£™i3w±ºŸhi½±Ò…ƒÕ(rÎʪ´ÛàÃ|­a„$Æ…>¸Ø÷]˜%5Ôý<ò¼U¾”Ïá‰TÔÉ«à=ȉød¤I„%7V*}.ˆ±Nì4ÆdŸŸkïš°kf[KÝ®Zu  Ž/qIüª&4‰”uÌ“d&V‘ʱ©õ¼HV„Qúëõ7-#Kt"²Ínψõ"*	:ä|·ÅÙ‘4×ë-TÊáî¼Å+¸£`i$Ç7¶ëØ^83*G˳Ÿ:ë—Œ¼éÈ6ÄWíl
+ø¾ftdýz"âs<ĸÇm§éª*P&‡Š¾:6dÛoŸ×M%ÕÒ5§ØƒÁ
+37FpÅ„ÕND‰@Se¬Üªú"„9l<æ*%%?keYSæ]™D‹¥­Å¿Ö4ÏÚCÓ¦û_À0{!5¡EªyÏÑb¡¾Óº¨7GÂÕ¥O(ï\íä }ýŒˆü?z²¥½ùƒ[dc#£Ý”³ÂkYš6EΖb¹¢¼F_S´/2í¼(šûùˆ—G».Þ¢Õú£º.g»j dÊmËâ@#{þ³¥çy•‰}c½È˜oã‹9
+,}BõÈÔ¡O¡êúU3¡SÅ Bûµ*7ÆÄŠ‚™r&‰ ¹bK¡ËšSëwN¤7òD8ö?-àêrnn£ò‡¸ßƒsd*ÙÜâç–J¿pò°4^±‡p¯Stsá
+Ä¸‘_š$ï]?ž«8:Ö³•q4gú8µ˜é.~ò¶›uÅ»”C¨XÀ â•Ö"d‹	þ¤×LöÂ_ãËÞÞ7tjšì¬ºOÂûRhø›Î†ŸçQP-e©:{ëBåúPÑMAô`qA•ê?Í÷t	i!àÝ7ñŒÛ=…ñ–HHã¡Yz ”~îóàÛ…éâ:Ë·kYvÒ:ŸÈÜÑù  Î[nR»ª£Bù‚õòž“à>exX~=|:<ñý
+JÍõ=0å¸iã¹0B*4lÅvú‚îÊâÉ"hÀ[ùu#rŽÌ$S¯N“% ㋃¯)u:=†ë²¡Æ£úˆFwÙ8’ƒÞ!™—ùö¼š‰°/5¶¡+#„š05ã©ÀFç%¼ð¸–^üØï¦bПfylµ×\¸ÿ´“d½«rlå7ñ@?¤Ýš°Öq¼ò°lˆ"ÅE?{ßÍó5K”eÂÆn³XýÀ³µ(SV,M5Žû8J­=æ ÷ɯ¦ÎŽ ïCãn"=²ý7–8í1F³À;øA<[@ׯàîF«xÂeƒmžá>`CÐ;;„²â$§âíÓ(vÏösP#ÊòÞkBI¤†¤¯çöÅÝýäÂRw¿K’ʘ’2Û4šIæEÐàWñ'"Û"‰¹á¯Þ>´ÖcòVê…“p×;¶PI¬œ?D±%:ÅYDiYP+Ž/H”ïs:‰%@(£L6ë¢'•ëlõ â‡h3Ã
+&K†Á"þ	þì|ß<2¡Úæj¹+ºÅ{ˆ	'—O|ãvÐò?ºvª¸ôÌ€ìK±$^vieŽúApgÖ¬øÂ?í¿ÀÙIÓ>æÄžû’<bþUc±˜–2ªÜ¢À•\…÷¥žÕ°)/¸†Q<š=·ÑEVÅê¡@FS7¹‰¾­%½“Qõg šžÖåŸ}§â/VGÐŒÛ e,)¬É–V»	\	e¢ünsÞÐCEH¢e¢ÿ¾8õ©5€‰¦·ß*f——]Õ»¤~¥$ʍÀh±i‰¶#¿²QÊÄþY¦4î8¼ù£´•NI›,ão9g_«¢WêlG¿±,[I·³û²Ka Î$–Wj)¸¹›ff
+ã¸ér¬ö6 ¯í%¸ ù¨´Å¢î¶¨ÖJ,“Úð‡$ö¥»v8ŸÙÌâ¿Q÷ÅÈf=aÓÔ‹ßüò«^	h$¨íê±&&/e2	ZŒ»ð÷ªktÿ°˜c*“Šäz~œ+‹‰Ó?7æclWj{PÿÎj£núˆ·íêÑëž½Üò òxÉ!î;ÌNž™ž,j9›ýMMƒláæ
+_áÀ2ÎäßËÃ&g…ºyí©Öú;d
+9,¡iÉ𹘘AhB0¥‘«ñ8x}¤^\ºR“;ØÊßÅÿ¬Án:»º9.A+Tržèg Ÿ?.©=cŒÂk€ã¬/iZÇ.ò;"ðÙµ®†HõUHÙÙ¦¼;ÉD/ß6·YôÂü¯!Äø|m×>Ð’¦„ÿ¢ÕÖB.;mô`–Ò:Ãxº:ò¢
+KË™æß!ð禖ŸŽgµÎÕÁ‡G	sc§î–ÐäaÁ/
+ÒÙöj‰Ñ%–ÍÈÅ%;{€êý²^3]¢AÁáåˆü-½·Rþ»jÿeÿþ' x0Â72*,Ä72ˆã_ãPºendstream
+endobj
+192 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 606 0 R
+/FirstChar 33
+/LastChar 126
+/Widths 612 0 R
+/BaseFont /QTEVNQ+NimbusMonL-Regu
+/FontDescriptor 190 0 R
+>> endobj
+190 0 obj <<
+/Ascent 625
+/CapHeight 557
+/Descent -147
+/FontName /QTEVNQ+NimbusMonL-Regu
+/ItalicAngle 0
+/StemV 41
+/XHeight 426
+/FontBBox [-12 -237 650 811]
+/Flags 4
+/CharSet (/exclam/quotedbl/numbersign/dollar/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/at/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/R/S/T/U/V/X/bracketleft/backslash/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/braceright/asciitilde)
+/FontFile 191 0 R
+>> endobj
+612 0 obj
+[600 600 600 600 0 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 600 600 600 600 600 600 600 600 600 600 0 600 600 600 600 600 0 600 600 600 600 600 0 600 0 0 600 600 600 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 600 ]
+endobj
+147 0 obj <<
+/Length1 1626
+/Length2 14351
+/Length3 532
+/Length 15230     
+/Filter /FlateDecode
+>>
+stream
+xÚíveT]Ý’-î»»»»Cpvƒ»»KpHð`Á%$¸·àîÁýñ}·»oûúýyÝ¿ÞxgŒ3Æ^U«fͪYkíMM®¦É,náhn)ãvcfga ¨€ÌÝ]5Tù•˜•--@€w;75µ¤‹¥™È,eæf) е´ HY v~~~$j€¤£“·ÈÚÆ
+@§­¡KÏÈÈôOË_[ æÞÿîytYƒ4ï–öŽN–`·wˆÿë@MKK€›%À
+do	TUÓ—W‘Ðɪhd-Á–.fö 5ws{ Z‚]-éVŽ. û, @G°è¯Ò\YÞ±Ä]f W'K è=ÌÒhéô—‹	àdéâ ru}€\Ö.f`·÷¸9@` ½»Å_ÞíVŽrrq|ßáðî{Sstusº€œÜ ïYÕ¤dþÁÓÍÆÌí¯Ü® w7ÀÑê}§…#Ðý¯’þö½Ã¼{ÝÌ@`W€›¥—Û_¹Ì- W'{3ï÷Üï`N. ¿i¸»‚ÀÖÿdÀp±´6s±°·tu}‡yÇþ«;ÿ¬ðŸª7sr²÷þ;Úñï]ÿÁäæjioÅ‚ÄÎñžèöžÛFbýkVäÁVŽ v¶Ø-ܝþÝçaéòwƒèþšúwfŽ`{o€…¥«Š£Û{J ÝÿÊ,ÿs"ÿHü?"ðÿˆ¼ÿ=qÿU£ÿtˆÿ»çù_¡eÜííUÌÞàwàý’1Þï€ோÆÝá1s Ù{ÿŸ‚þu·®å?ØJ8Ú[ü«OÞÍì½%â`ëwYØXØþa¹Ê€¼,-Ô@n@€•™ý{¿þ¶kƒ-,]ìA`Ëw]ÿn)€™í_|Z6  ø/¸ÿá²[ü+ýw©þ&Ï*­­¦¥)Íø_\®oT{7-o§wnÿVŠ²£Å,þ‚‘pôø2³óð˜9¹ØßÏÞ;!~6ÿÿ"åß@ìÿ\+›¹¹€¼ ïu³±ÿ]ý¿ýÿ¹2úi0ÐÑ⯱Ñt3[¼OÚþrÝ]\Þþûð¿Wýïë¿gÞÒÒˈ´øÛ(f›ù9Ë­?o`TÊ §‹z Ü©´AëkaPµcg`fÔ…ésM8Kã¸Àk‹÷Ü‘ÓËŽÃîPž=mgºåY‰?%}w!æ*M/ãn«q)jÖ±nœïù¬Ò:ÌG6ÝÍQu
+ã’g8Òñ6N„ó;ú JÂ ª['´ `F}"n;F#VmÑÑ1MÊÁÝ-mßðà@ç%l÷1cn""µ *Mls.±èGí
+ßüHŽ*4lO
+Ü£€æ#ñ\¨Í¶t³ýÚ÷êCìD†…ˆˆA‘oR»¿­=‘„±ƒ|+3êžÐh­M¯oȱ„$Ûã'²Yåm?¹‹6š½DÂÙ줭á4˽Я›¹&J•°Æp‘¡¹$Ò>Å©,¤<™#¥f‰)†bjt²2wz$ALá͝Ñ(A‚·7©0nÒ¤FwE>ž`)Ýög+ûû«“f¿È[!T­RºêÍOÄ*“LáÆ­3[€‚2ÌO®”I„hM at Ih¨X5ŸÉ/5õt%³"‘τ߀ˆc!é	mb‹= 1I8K…
+k.\LŽ5ñTxªðÖ6‡ç†—·ÜCñ©¡1%ŠzÔôü^ƒ(¹]iu¡+\_RR¶éˆGíJšÈúv|›*qê`ßJOm³IòL§Š{TÐÛ´õ0‹Çà¨-e´,	½ËúzÍ Z$3cS‹¿¾é}"ø=8f\Vž?À?§™Ê6MpÝÌ¿DGÔɸåa$um@[—¼™û´zçÉöèßeI<fdsì&¤¾8>§
+E*}çWaÍ(ü!Ҩ̉2RοuÈ[Wþ@þ$EòK.Å1`Š~	ñ,EgÎ 5\û²ö$sØà1#	ÆXc­«HÕ\Z‚̱¸Ô¯H«M•Tƒ.û)ú1gc›m’‡B`Ѳ‘NÄa(¨2|¬¢K³Ÿ&e\TM;PCÙï×ç
+ƒ·´Œª›©>Ž.dÔ„ž_a<6ŠW[яöƒ‘ͼT‘é=×|.
+C˜ú=,ËÎòUÑ<HQ…”£ÀØSê ˜¤ ŽªRµKï;NÌè^ŠãÅ&°½tG݉MÝ`{%ÅùoP}}ÜæäH„ɃõäW>z͘GìYR9e×\9yÿ£…[³0£yÿOäÙV`d>YºÝ"¹$­8®Fì’bµ¾,ò„À	IRG¤áx¸º‰ñÒö˜œ`þ­ä~A´SÌňck=ÃИ·“
+¾!>Y¦¯Hk²¤ÒhðstÓF+%Þۏ»2\E>›Å¥^<†™bh->ºWb3MÐþÂS’%¿õαðÅâc±âî®ó㹍6
+ŸnÃÏçòCØd oTCój‡KüÒï¨n³´ú0oŒ·ÄòaÉÅû›ÆJmkwÅ!¶±ÉýÅÊKo•<KÏ!ß¿¯D4;*4*¤œ0M1Æ؏hL<Síþ(IS°3g´Ï´[œ!ílÇ-SjIhÃý¾|¡Ê÷U
+®#KßvåUjtÍÙ°¥;ZmG´ç‰4
+“zÂi€ß¥>2|²ú@pÛ=Àn²NÝá/¬"üV7·w­dÚœvë§P±¥»ÎÙxÚ¡¼UaG¿¥À?IçUPïüHÖÅæìuîyªÿÝ–!ÐgE°îa±žq·p up ËVàÇí3Ë¶ÕÖR8Aª…läQ‡hó¦C¬Ù4ðSrïêB—–ŸV+[˜üÁÚ¹6¯Ë_˜³4GèdÜÕû•ú^ÌëЫ[äüHÊøæc»ª³—¼¬†YéÇ8ü30g®!‡wsœâC,e«qâXÐï¯p­NƱX
 î­	¹!°¸Æ5<œ#’©25œWxùHæ¤íma§AÇè'ל³ÃIÄHFtQõyvªýÕ¯NFzlOÄ¡ÏÔ¹ÔH¼,â~–[ÛOU‚í؁sã'~å'Od^Çíö:e;r¸|iEÈ
+!5ú2÷íìn73vóTA¡º³/ØAÄ//Èè°#*”ð¬™a§Þ¥äÓEžt sÇ×õ±/LGÝØѐüØUÜÜPU"åVhœ³z_–aw¶t$ô7„—OŸŸÎ>Nj?ÂMÃ¥üˆ$ß=ç0
+‡äҏÐÊ\¯/ðâûÕ4dwö½ÿá‚úâ•.'IÈ­þÈ‚åÕzCø$Ö‰Ôí >3.0¹‹0Б_°Ä™cµë0U1-PÏÓyôsŒˆ§·¨÷ö*û±
+ãu'd¹*:D2¦ØR×C¯Ü£Ñ%g(Íó©>§Â·3L3íHèßyiæ>`iÓ,BÒU¢0QÝû¤mn¤¹ÃO3¤âõ½i³"'^k·
+…ÚI>Üöœ
+èT»¸™R+Éa“|.ÍÜ	>uYKñÙ5v±Ï•„jZí€SѤ$]Ÿê+rEcª)±þò«ÊôQÖþh„¼»< –TÖ,R‰fCìç읖ÇÜ–°”6,”ÙÝF:Q ½ÚHÒvĈ'ì…” œ\¼ö‡BÒë-;7™B[Y2
+uíׯpE.*:VLðS‚ËsVv<!ê°?(ÖØè×+57Ñ}šþ ö0¹ ÎÖ<IJ»é.‰½Å~‹Äß5ȸŒJ	½ÁLWî?'¶ÁK&õ1ÒǨ¡€¹Öˆ:	©–o¨5zоìF("œ½¦2Ýs¦Òɦ>¬dîlQ3H_6,á
+/•ÞQöëõobŸ0Zm C™¶é÷®;9ÌT ñÆŠsïÈVSoEº<È/nbC#Ìî˜"ÕýKox¿Äd~ÁûdŒ­P‹F­‰jÚËàmJGërOÙ/*ï1¬JjuO-‰
+E‘3Áo€øšbµtÞCAÉÃ~Ø—æö¶hm\A›”G/	"õý2«6‰­(öýa¶]ÿôÖ7੐fävxëíF<Xö;~d@„–I§ì;Zð
+‡¦V¶ÁAÍl‡_{5O£úé=£±¾ïÚFèÐë6·"i4…)+¥¯¸x1ñšuYemåóÎ,Ö¢ý}Þ-ç½áùxˆý¤ß̨ü\‘ˆŽÅ~‡é¶Ç¿|¯æ@f4i'	;ËÜïžúžÛiC86ö1ŸÁk×Èìá–¢?IjÀ‘ïùdÓòÓÂ'õœ½ŽNÓû-n~rÿÊÈ•Å(C’MUËy²Œ»Â)=Iyƒw$;òQf@·ÒN€‘{ҐˆAÛÔ‘É±^ýwÖ'iµ"BÀ
+h	5ªã‡_%¶ÍÈçûärRTW>dÇy&–Õ+Ü/r×m;ò*ö¾sLÌ Ð&ˆ.ô4o-þR7ex¥"Ž0jDÛvmÃÅEgö{j0~šÚ·à ªTÈM*:Ž1>¸ÛZ—y	Ü}[è;‚ÛO)CâÃ¥ªV"Fð<¸
+é
+ôxÆC¬í@H:ãvM–R†k?–Pù*ã–|eŠÖbOB_¿¿Jr…4]F¿LÕ‡½úo#É«{9LµœTTL«nH|ã®=ôFŒLUÕåùÒ\‰·>MSmä¼plã–hžj(b®åœÞÒäá‹zÊÊãI at hâÒ¾áDoú
+Á .¡Íäó£o6sB˜½yÂ\Å
+¾<„cÔ4ô¡ùÅÝò®Âïuå´Ð<óŽΘ¨…f÷’–oѶ^N¥€D_g
+×JÕ‰á…öégZðµÀÅÙ->špm°IO™ˆIóùï?ïI\÷ûÓ³á×7=~è©·ÖìEÕ8>Ç5åý„ :—–Õ
+ =$tþlÒ‹k}Þ~ìj˜X‰ߣÎSÔ˜ü[D¦L®Fu‡IEØþO(t˜®ï½Škry.&˜ÓÁ5»	ï/ÍÂÕ Û%*ÐQ¯ê '«Ýh†À(u±ùè#;fîg#’¾ß‰[À:½45Á"]ð1zbÉø)1ú3¸Í_çKhHÒI}©°±Øi¼ão%‘-°ÏùyãóÛ-³¹`kG³~¤æ³ªºp~6ó6#V¢ÃQìsLŒï
+ÔMŸ¥¯J¤OyÀpÑXŠU+d¯s˜•þ$«@úTê'øÔyµ’â²½OÓ	ÏÍÜë=/–ørâ:4’øãùÄX¹OI+'wfLÉiúPu®ì|iïV˜h?h…G%ˆºñ°ˆÅ™„mï{›¼% Œ[öÄqcÒ4gÑIq
+ãWêták
+úՐ§䥿Vøê0,XÄl!WÿðÂÆÍ(Óôäðp˜yêÀ˜ø)|d7ð	îüKÁ¦&;æÇÈb;ß&ìSqŽ{ùqøH2TmOÈfŒHLdL~~Ï$™ÜhÉJ¥YÎ)SÁQìÈFBÐPɝP‘½Xx@&@¹œmsÑëûÁSàŒ[éŠrG3ÇãY €¦I¡êFe<Á5}öP–×ñ(xÑP† NÎä-|–µºÈ]üe)‘Öâeˆr	–ôR#å,>*ûíB+L\©ÓÄŸ¢]öó—ï>FоJvÈüm«´`Xë¦ìn†×}AMÌ^¡+D¦¤·ÿ^¬ÍoSè”pQ±€b«·ûõ¬6pÒ¢g'×îÃó5sêu3ÇVø:¹/—åÀÅüQðk1ýJe®NòX=±}†™Ås=Ώ¾9Âxlg\Š‚ºÕÆôé•øHÅ~ëƒPžQÖ’?hr…/ØB[š¯ê¢]'í9zûý?´ÇU*BsÛ¬§ifiD•bby‡1·Ë+¿ø£ßmÎê1É¡ò´Yì3Iõwž„ÿx”%8FJi2c£ÒïL¥¤€Ò©èIÉ·&.:Ø{ËÐÊȃo ­8×ue{„³?¾šÍÿjúöÜõ`$Ó 25œ”µýþ}#ü4*Ú¥þÙ½•ÝŸ`‡ZåŒa¡0{ªèÇ>¥øÝ×ôZ@DÉQ­L
+õ”XÔʹ¬4ÛØê »ü<w˜ÀwEíȱÚMˆtKì*„R²gŠ+˜÷	rm
+¤A¦äݐsŸÀHäîC!äÇië†×ÒÂgþÑû€óXL´ñƒÔö”1è-¢;¯c˜è9ÃZ•NòÉ)a+T†y™ ‰^µ.¢6’T*á~Ê<ô¡N¡å žÑ®7Õ^,kŠ•¶OöŽÂKo€”„µÐ}ç§:*±…?U°+–
+5æÄ£…Áñ¦„Ïxe0Ý”‰-ùeÛÎE܉±i4oWCH<¯?‘>Ûf1ä/FOe{µ€ÖM–~¤ôÂô˜eYåÊ…Û~8	Esr*‘
+²@¢î'ŸÒ4„"Óù]OAÆsÿÇ]”?,äw;Õwš“¤%˜N|TMÊI_äðd‰oEÅÏn×'rZf4dzL¿ã¡Â8ûÈüHiõ³ªýŽ¤U‡kq7ûS[·šöÄŽU¸0‰ò¤ð:Š/™•`©$	ï·Ïhàfè+!S¢…’JÏ¡*k=¾ñÌT¦"8ð•ô<WšmÌνF™Úã2,¹2¶XzæzØJ…)h^¡[4ÏT(ªÚýŽ4-XëŹHÀ+#d¯
+¢ÍE+Ò¹î0öš&÷7K@š½5E’ÙµƒS=ûŒžòÇ{÷É {‹¡'6nÔ:‰á­B†8Ð’zLN‹2תë˜l7S[O8‰.1L"ö3".¾ô¼=Vâ-ãfÃzˆD?/è*º¬£O€¬Û!Ø…ŽÇð€xŽ¥uq~€&‚*iãõCDZ䃯§æ$d-W.Œ1þq'jL’dáqѪ;daõÖýÇ3‘YêA
+ÓÁÖ˜²VÎÐí"?áÚ?ç¤{d§ùÅ`Ž3Ä÷‹Rbš³(ø¸6ZYÕoÍýÛ?`~.鸦LÎOÀú)eùeþ\#ç
+š¶@ÂÀ‘7
+o°LŽ¿4Ñ÷£‚nžÝî›Þ‘…ü—“ÌFêl¨Zíƒi#û&ßäõiµØbiruÝ*¼Ñ
+W89s¿ì`\Ò¨'1S•‹è8ÖÔœƒµÀ¡Óù,
+ÝDçsÕ–ýö¼®î—`­¼b+t_ìhG­iÕU‘?h®&ÊFB<a“-Òï«ö#ï¤Ï<R‰ŽÒÀÞ…];D|¡î
+ XŒé§ìsš#RîƒS æêŸ%ڝôÆÛiÞ†©øèÄau4£¼ðùÇ<ä‹þ³"G•6CÁž9±%@èÞ»íÏWž„GÚÏܧòŹÎhF`NQ%D5^Í–¶£Þ[×eM%ú3:éÛPÃd¨’ƒÍU~ó¥†p®¦ ã•NŠ¬`oÒˆÓ+tm(ꂨBÅS‘Ò=<ôêÆ„KûL[^¸ºr³]C7þåÓ)Ó^fVn
+tæ §ÞnÐd‚›•ñŠ±ºiG']¦¥ZXäyMwª3¨ä¶ƒ*Ò<ì·”2;RU[ãòçhî”ñVz[ ÃuŸ"1žei½þ+1z9b—û“CÅ€£|!×]”fL…òGDE¯ù
+ŸL¬ç
+zJx¶-¯átŠD¥ù µîÁ¶ Yl[ø~É@ªiCá=šëʸµS•êhmîfÛâ8f Àôõšg8hrûSú2]„©eÑI_|D½ÆˆÞQ%$ÿÜ­z±ëbëJAÁºžï×…¸Íh j‘_$ª WªÉO¡›;xzº(m2Ám™¶ój¥ Œ(4”c׋×"µ9"\S‘ÍËÊÊ ùÁ]~´ûížÕN]RõŠo4x)Ë0Xè­QÛ¸d²B¼x#Èt÷èm*DLö'báÞ2/1·¬YC‡{W3z-E7‚gžWš1m˜„P‡¸pyáÊôª<ÛØ:eËÒI
+µóÜ®9'>“úqßb×»ÕóKäŸ
+¸iâ‹Ùq>Û?
+õƪõã	–¥^WWŒ´±¢LÂØû¼]ҏÞéú)û®™ånX÷B.nÇGåÀŠÇ_t‚ZàX¦ üü“fX² $uõhu:Fƒcü P¥z8.),ñÙ`”=mï~û¼Yë·"Mþ ”LÜ*ÁQ9™Xæào„1ÿ	
+Ô\ŠÒJÓiãfdBᐏü“Ô“•¸šÌtb?>UÙä(0Dî„¢Må¶a…Ãh$_î|IMÏ@gÏ)5)äAvj¢•'¶-
+u—ÚL+W³¹~b­‚AÛtò¾³+ÚÉý%·H€J=°=;yYpÐgøU™ô'ÜùÆâðûåf4Æ°:‹=V]„ž!%µ°T<_ê´¤ñØÕÆ!+sÒÍ€(îkb =/A˜ø•‹½ØOúZ|Pÿ}]ıèËD …YBÉ=y3§O ®±WNSj¡peêÛû©¶÷y”Pñ×âîå†ë`B|áÜÜAWZÆÚÞÕõ”ÞƝŒ†\X¡EQí
+È\ÀãA¨Pé(ÑãD1Þd:AFu1OÆÛ“Т<øÌ"ùKþ§ÖYw3 at oÍúËÒÌj¢Ë3y^ˆ¼æÐKñûäÁy£
+µþ«—Ç
+¶ÙrÎ,“÷žΛE«‹;Íx˜µª•ÌN&êÞ…å¡X1t¤ê Gì›NÄ¡í_}üóœ„~\øy/ïè,f
+Œnd
+Æêiw÷d½µ±8|–š<ãu‡~Ü
+¯+C••Ä:.‡ùªó ÿ"Jè¬VNòÊ“úéšÅ‡R·À
+¡Œ,^Û2l‹r~ùȉÓåÕAŒ¾IýCÔYmè§îÇ^MB^šwˆÏ^ÿžqºâyîÉH]Û¼1»”8$ÆWQ¾'Ó"ß…áÈÙ›º>j…R(Ã¥%
+rQRüÕFÍ’±$lÚGh2¥¨ýa<÷W—ïwÂ)ª^ð›"Œˆ^D5f0“ܯ~½_]møV	o,»úׄ–¯¹ˆ‹NØ}ŽSyÝÖZÅ,¢ÌÔ~S¿ºöہ¦åLj&7kvh‘‰¶×{íp2TÑmhmßB}öb®k¡£¡šæ.±„Ú!p“ûG’ï˜C§
+ÓÚ!f
+Œ'üŽˆ|ëÌš¾ÊÝzè–cY|X½Ö(XmÏñt¢N¹Ža\å›2Ì¿+Í÷*ìÊ0šƒª„}+VÉ~|ùq”:"æДw¦hÿ*䁸0(~XwY2èçJ'GCÁÖ‚Ÿ%heHÈðN'g¾iÐsœú(	֍É?¿MWRå0…mädj¨)¯X†ê0üÒi½/K‰5yõp~„ðØk¹ˆ6tl8ØaÆ&mDµO²¨¼S>8k‡PÄT—GHSÏjÄ.*.-@=½)Ýün%?9¾S|9Lá~îûÔøœA8e¬]­wxÞw¸$áhîGöÞ7Pu‘äü$œ‘üºv²í¼¶ÞèRøGcpËäÞ†j®¼GçºÃ^"S]áùÑj:²ÍkkTfH¦tÆä„Ðí÷jÌwÞÜ(42zÑ
+ŽlÏåʳÕÏ£\ Gø7EMî—{<
+¢½IôœNôŸ3²'[{™ë²Í!=9ÆDf<	)¡/ãô‘ñ)Lìd$þˆåª—_³‚9L
+¯‡LÏu¨?”7šH÷a,³Lˆ×ãžÖŸÌgÃQHò3öÕû¡ŸÒ=JÆ^Ð8%ÌjL`3™ÿ¼S}îŽÎßq'£Åñ^®gÚ,G´ýœÔe@Û'rAA$„@þw¤°°D;õ«7:í§ÿ)5«ñ‹¢%÷v.Æ¿+>Ý-X‰¼³Î1Jú½þYŸÅŽ¶^¯”Ö³z3R5G·¸¥Uß&?ý­e;Ö	¥ìP¾ëLŒ"Î)Á«˜lëj#‹ 	Ùt‰ÍÅîÚÕ£’M´ú1`a˜Wú=ö‘’™«gO5³hVS\åµz¾/¢®ÀÄ	×NÓù“з1#nž
+NåWµ;ÆüSÙ24ÄöŠÃîΟa	¢ ÑiÊ*FÁÑ£ö°¨ê»yIß¡ÜïÛËkk€P¡úÑdÄÎâ閁“x¸z}žÚX×ßCît)çŽ?&¤ÙKG–mÂ0?ó¸7Š‹¦[(*.@È~zƒã9)c‡Nñ!þœLß’!ºêðÝ£7o­/6J˜7»tMÝAÀ ëJNºm¾¹Ô[[µnڌҿxï>bj›©zöªWˆ]3ˆ,ˆ8ˆI­4>Ù×aäçƒ	O–èƒÐ.~TÕgGÄùv…0l¯¤
+ÿ,cÊ5qr¨Å1ÂÌÿôäºiþbÎ×âJͶMÕ{wФvGˆLo|Søå~vÔˆ83ŸÇ-¾~áGdûë þ†¾ëM­Õß­–½¸NÒÜ@êxÞZýlÐL]—­’´·ÀS-uZy&©a¼§Ç—FpÚXÚpVS_µ¯[SאˆTʹžùT÷Á¹å€ÔÁ‚¿lAúdú
+A}¶˜s+j•jB}©m勝*Ij[L+Jª>b˜,m‰lœ˜GHc¼Èéª9’
+"…¸‹󚈘x_˜\»hÏGÔÅóµ&À{²*Ÿ%zCÞGÞ6…™´×Að¬&°“HnFÆa¿ç|ÔYî:+yò¶×o-Â¥¨íCÁMûã(i3Zr>ýVÀ÷•tgÂ*€/DzZ#ç[’XNx¨#Uv±¾êù«)–Z•þûþÎ$øü‚/¨·iø5#tñ+‡[¶ò'QŽØÄÙGÚ[IÉE¼ŽzØÅkpé|µoM\^ìy<2[á}ØÀ|$ÑÉóIÂÆcº+–ƒ0-W…ÝP­Ä8~m'kt-n•Ö`ÌÀ
+Oé´¶ëEþd‘åÍöà“Êüñ›¥ÀÈØu ö %l’ªà¥ŒÄÇ5D1¦Ä§?gú&U|a~ÅPÁure!`_ŒPŸVú
+"“;®Ñ“±Ó?f×–ÃÎÌ­Îô'¾舛	”!,ú·ûXÞ^l\I¦Ð‹‰è¶$àþϲÆʾ÷ÖÀ@A2_3+ë·DÒL@dÅ€~™Hþ"ó]f@þ
+uÒH¥Í¢Ö£Øs˜þð¥¿ÐC¬ðñº6/ü zfêò˜µÕsék¥Ñ44ÝsVLÓb5¶ϥø÷¯¬ óaù¯¥”#ø0LÈ.aæ_jFü¨ì3¤ý
+^
+m6v!jè­@u•Ží¿§êÍtÈLoïÅ5”÷‚K·Ç,#ðŸÝ
+–Ë«z¸Y¾«¤>ÄÄ7žô^¶j±™¸ y¿Td>ZË5	¢8hÊ~ùý¸Oáç¥iÊtTözÝ3z+ ñ¥^ušñ(3
+‘ðë÷ã [9"´˜à
+lrVņûÓ?<ŸµÐúÕÙ¼óõ%ÚHG’6½ žgCWÁ‘f7//pÉr2Í"b$QeÉø)êÏ[¼VJF9ö(6’‚7y'nÞù³K ü7¹±B~¡¹äÒhØ€gä™m7!Tf?Çâ(tv¼<ÂÇ‘Ð:Ó>«¤<ÆÙ[ªÕ쯅_«h…º»((¿K7Z-m%¯XÒ_¦N~¢ß‚"jyaÇÁZï£ÿ8Ë꺀’ëÎ:‡ó	åÛì×`@^ÿ²ræ-µ6)|z¯Ù>Œ×NZTïÃ+ºã;AÉëáFù“NøvuÑŠVLgã \pƒœ ´@$Û½[”å3G!-ڐf·¼Æ(!>€ý‚Îe ”±#áOy®|Ƶrhì^QT¦ÎïZùE®Dsþàj¼tÜhx«±“õ‡¹¹«ò•©gc?º€»NUzÒdÍÔ {Q‰5¦e™D…u‰<_8s‘ ø6×¥çüfZB,v±ëÀR båŠ/	ˆvï%øØ©Öç0ñ}ðc¢C²v¦’s¼ï¿1PZ¯ ÷˜ÏRès~ɳ­FY"øSè]”‰Ñr at SRRT˜™’o¾,(ä|v‡ÁÎW_×û³G"UÀâ¹fÚBù†ç¶X^œ0ˆðÎà8]ðÔàãF4GW£öVÒMŸ1ôòuG.•œËvõqE†™6–f|¤Ú2SÅ7ôå­; µ§ˆGMÔ4ÕòñIÛDŠ=Óè5 Â~·_ã½r¶~š(;eý ]q˜}'mæFÄjmÍB‹'÷¹
+Ñí- ÷€È¨_šCdaËZl–ÜÚœdÒÑ6|¾LU›m"ÓEçY=ÒÎW Ñ¥0w8FémçhM^¹{I¦Å¦=åÌÀbÎ08¾µñ'í;–zõ¶W9ðîvP‰‹ê’cY¦®âØSh–ÃãzjLz“ïWúüÍçn*Aé¢W.ç™
+ÍÂóOv¶,5MêjdGiU­¿bÙ£ÇF¤'7—{>´Ã"š ð.b*E}2£=å¸ä¹õ'yMAÿ”dïÒt‡=»zèEÐàd^Õ+ÊˤµÈP×gÀ‰ÿˆ›³ûà)xl¬êÛ7q6x-ßHÓs¹ ész y&	I$â²9­§ã %Šš†ÝÍÓñW>£¼HñÚõN•}àƒ»¡ ù°Ú+Q2ÿœ㪪¯Â,ÚMi¬z0ÃYó4·ô;êª;d­’Ö]„ÜuH}üж½úG¬'‡ç¨"¡À·yt*!‰á‘Ýx§ûÈIw€Ëq&¡ÚWZ{ÎêËâI™õ±½HAù>ÏV¥~8HËs !^((+7s»‚¥¦ð…ÀðÑr]ø‡^ûq‘3»V Jtå˱…lÈ°‹¥ñž
+hoɯ²³80ôЍGm¬~(°Xã&+›ðr·Oh¬òÆ<£ ó.1ãÞø‡©»©ë¥ý`0iIiuShºÅÊF‰õÁÄ­ÓJöÖRÂÚˆ‹ÌÔœ8áMå,g¿çrÙ¬ßâÜ—¸Æª)ºB§“’Tm¹>E,}¹Exâ&¶Hq°—`›Ø¦j9Ç%•-m!uã¼E¬W…ò
+	cûÂ
+>¶ZÌdŸŸDÂ߯göåpn7L8£íe)ðÉý•ö”ž¬n«ÃÔ¥c§ýŠN~!pãzN‘vœ¸Sª(ül¶€WÝñ‘n……p³=(Ú«w#þ˜ó¾Í×-<ª™%Œ±€bÆÛS®.ˆË÷ f—•‡­ìVÑ0//q~4©®mç˜`6r¥/óš$¾iï“a¼%ñö¯‹ ´ã½è«b;Ýg‹lNCíd²ä'ÑŒ=;•HKæc[?änHÚ'0jêMLN䥛=Uù`õ@^Ï8ïܾ.:2E,¥O¸ûnôš­zz2¨ùÈ2ÑáÔ=3Þd“ô:)×’²È´š›°`˜o A$ãìz2¸FS"n]¦QYIœ%U&X†_» ”{aa­Ã”\à‹\r£·=Z«ßW¿B:„ôÍd
+7SÅ‘39“äOb[/”)ÍUPÙm«zö»æ=9YSƒÊñӝÍC(å*Nž­ñ™«‰W0³ï¶XbÄOŽ™ª×vR»,'Y42rƒcy>4Pˆjœý¢DT”DºŽ“Šø©µH³S´ÃIJ”{ß)DfP#K¹Ï£,z_^à¶ÅZ<!æÓ½¨—M-£gl FÍò#WRµ·™fÞ_ÉüÌäρáËx¤¬Dow¥ÉIÓ|˜;‰ìäïózÖÛ;4?Š®:˜¥…œÙ‡¬j8•ÒÖ~3±Ÿ¢bòñ\8w;†Š½ëf$ð`õcK´P'Lò‡½zaéoá¤,¯kjBE³ÕB’àÃ>´@ÝTøÑîa¡K³/ü­'Ç÷龞¨ø—¡×š@ßù9F>=QÿúÊòô®WÓ“Å4ÚÌðó9Òsq(¸t•PÏ?~ŽS°
+š
+šDb]â+3å"ÈhLÃÑ­"Ø-c>BJ^^GKäœíûâþºêö5Ç7ÜS&âwߐN»#MªÕ±ÑÅ6ìQ½9¾¬üÐ@ª¢×…š
+²ç$)ýnt÷áÜw†CáÌÌ}ëfUÖÜu;í¶q ©lÒŸþnšP~—Æ¥ɽs×w_4ПW¸µ=
+¼=ÇpÄŒ0pŒ¿Ð*:61âØ=KNRÐY@ê·¨`Kq‰_Ç›;Wi_i¢‡rõ`Ê4]nËCï¶/•–ÊäjuÖÁ¤â¬IÈ	‚Dï°èß# >CÏb“v9ÊzæsX_1ÍóTùìi•r¼²×­òzÓ
+tÃQÛ¼ËËeêdcÁ+.pKb‘ÌÿÂùFm!£ûñ²l§Ý}æÓ›!À¯	M9´µ®—äU{ßê7ˆ%èƁ{ë’3`?¦íì‹&ëWŒÆuKf$°Yì'Nöú›¦7³x¼Ü¼ãÎs&‚~Ó*rÞ²TÅð9
+ÖÊ“—”‚Qsž™{61ûÚàÁâ܏Š<Q»øÓUÓ£–
+w#¨z¤·ŒcY—ˆcoœæÎc[¿ô*;¤ˆ„›8úK¹yî.·ß—ë¼	ÆÔßÖ
+y²´Û5æþD ¿±ì
+N¼^,£}L~õJ{ÒgtZל-«à$þ®–YÜja÷÷M´g‡¬¤Îu2¶£¯éGÃèaFŒ¦ñ$G¥àûJ­ø›}¡ Ë·6ùx(ˆªÐ9]I‘Źµbž?"Qýî1„®ö;7ãçeÈ…~ÿ¥Æ.1ÞÏv’ä=¨N¦s²í¦aɟΓ•Ç¹AI¡íˆ'¶“y~|ìݪä/ÝÞYÆ›5ӝ}MÉ~eÊé:í¤2ýٲ؋“¥÷}˜ÕKÉk7ñ<ËX¯Mˆ+³þü9qLùK<gžg©°5± Uòg˜ÃCœypë[ì˜$y†]EÛÌ„ð÷‹Í”Ÿ.}9•s¤¹ÐÑ©Ý0‰¹¹zõç;Æǝ¼ë. ú2
+´-»yÐM"A—Ìsr]áÅ'Ýç6Z']ιPøáÉú±Ö5?J‹1i“ñvs·ðù<¿‰BX!u“.õik˜{ÐñÒDÔ½õûå$³¦ŸècnävT„ÒÑÁ©GûÛÛËl{{šB²`çÆ•DÃ.ψš¬ÉÖ뉕#](T5²w~o§„Ìö×n{I’
+ Cbåî»C¾¶~s“‰¦ð6Xõט‹‰š(¨²úùÀVâN^>ÒÕzc>Ž¼Aº]CÍŹ]Ïóp”|>½
+ü“¾$LÅyoÄ6³(’:LÄ™‹²5€X.40vw‚1¼Â¦vÜÝ
+Gj™>T¡(à*'b+¹TÞMJ¸á$Jvß Sè79Kr÷ŠÆ¢ýkb
+l£¶/
+ d«°"™±ÑA®æž÷͍ÅÝå\C“쐸šE^w?c*8¦qp(¯HÓCœbt‰Ó±¨~tõÉ눤ž( ÷ÚQ§„¯ocœj‡pŸy“È—Eï@F
+v4ä?á£U²³Èô¶'Ô1~£‡Áëð1p5¶æJ§›øÔ«—mPRª²}×S÷\î_»º‚¹¿[}LU“%¹[[]ù£Ôfd&9¼#àgŒ†*Ö5Ÿ$£+#MØ&xå­šIz£’Åá÷R¿Ä/ãÛñƒ‰IXßâg ~Ù¬ýDõrÚeÀ‚ï“ ¦žžíX‘=G³šžnpàâ¹Kiçõ¼Š¤wþÄ„	†>	!µê›<Y³iÈñMÕÓz66×nìžVŽ]g†	tF;¤gúÚ¨5_íABuÿ<.1aÇżž§šl®uh’vÎm;Õçx­Ýu•<R“2åW[LŒÑ“—ÆuyŒ8çIç;ÚÅŽ¥WÙŸWhX*_Øó,w?aÁðVw/Çà˜“ýáŒdn„Ù·iˆÆÍ>PÐŠõ¹hù$‹2Þ?Dj>wÃKÛÒòëªã‡‹çÿ5Ø_„}ûtI±((ÍuNH;`4»Û­ªù|ƒÈ€Ë†¶»O<p8} r"³ÛÑôÕiM­K› Øf0ê¼=1àî¶ü…Õ·_½Ù—g¸ìøö×\Ø7ºZߢoiÛÁ‰FwÇð—0ÖãI)›ßÆLõˆœÌƒÔ€Û|ˆë¶_•)Z E3­XÚç‡%)ÆÎ	¦l3v\Ž‘-Ï8oÍIðÚêªó’ò	àá I<Ë)ª	Óh`ÂšqÄëæüýzFw¦™êwÍkðY
+µ–ÌÑ3jû´Vꯛ8ã¬÷há<h.)êÃ[ö¢É{ûùÞn“÷º‚ÇÍP†ª1Ž þáV^Ô»™oúÌ'®ú6ô’„/Ì qò·uõÅ©¥áæÚ+®"íxNº…ûü…€odÚ5$J<ÒºËQÁÝûð´Øj!‹ÃójŠFÈMKD2Aˆ¸"L¡<»áí°-Äêæ<ÇÞ£»”Øôrl¯ðô%(_ý`Š’X¥ˆePEôÊõ.Š*5ûˆcÜ”“Í”J8Õ˜Æú⡸ÙòOæ£âÖD-¤&rò›¤Nó¾~λ
+‹Åi=…&î	ª[±…}h¶ÔàÎcËZXØ_è©jØÍ=›_¤é¶>OP¦Zö%á0lÌŒíÕºÊ*•OMSLRJòe0ñhðVµ^‰ªX£?\§¯0ÎüÚˆ`’ƒ<{Y¸Ö<xRú|(¶>ã9FÌ?Á,œ^4ÎsÑœªp#…Œÿåx8Œ3:føVð1+å	ˆ´½ñ•Æ^ž©ó²ýn3R­ç—„)9ægÚ
+=°1	
 [ØÒ:Œ©0íÄxIEäÐHÌlì·üýðµÄ·Ù­èz7¦êM,4Â0oÎÁóí´”1d«ÞRp%˜F~º±²?–ÝAØœÁË|úïk±dŸŽä˜W‡­XXà*x^©BXaî)ÏÕXZŒŒµ0ïó43Z'9=}´Vb«ÉÞ¶H¡¨ÞÜç[S‚õZVõÊGÌyázC䣯±X¼‘VÎ%¿¯02Yðë-HÑÆ8Ç 7Ydf…_~Ã\ÉaS*ïEÊLò‹xkÅ%É“v6
+õjò-j=¶¶¨s!ÿñ‹Ãö,«^7ea‘Þ–Šýµ¡Ï8!e?HPÛ3¨¯hfðÓÇŸ‡ªÙÖ"ëfryøóÄm©”
+I"œ—ýS¡¯{pakxµŽ"äRÙwv8™‰^…Ñ07¬ŠºtÚ%áEtÉOŸ«ÚU—(ÙxõKÀ~]–Ò³”	EÔmÈÀ¶Çf3÷W¯‰Èà.')£T¬ÃE«Ö‡Š”Q1êÇ$/<"	Fkí¦\Ç ³ŒíB¥‡$=KfÎäÆÖ·fïU±Ù¯?+Õ†ÏbL/ÇV–Õ>ü~º+w–ÑÈYÕèS‰]”—lK‰
+»v <C†?/
+;Ÿz‰³bs}u³±ðƒëûúZfaEÄ€8º©‡ øíù*×9͉_xCz鼇ûRMÁJ5/Æ \H¥ÎðÃWF|¹ècÏp%ií=ðR¤VqÐçádؐ^XôãÅžžv'c±lIr•òíŒÔ‚
+ðjq\_¡?Õƒt‰"?”º ø–]ÑÎ`èwò¹„*Q	ÐOŠÎ°§ø'ãg<¼æù¨cÐVÚ·±Ó•%_N±oÚÏ®«Hµ mØ3Š°mÒìO§K¾Ûç³ÒgÔ[×ɇjvþÛ	™½Ÿ)2ačŽÌ{CjrF¡w’Øó…m¥¨ˆ|zmEôÍVÇ&2Áæ{8µÉD4«Ò¾²Géuö6óI‡ž.>ç¢MñÂ_é`¢Ò{~,JñËìj׈%*JÓéðjõ¹<ëÉæP˜[Û’"v~¯s½Ëüð…½bŒSSG“¹`»8°°;,¡æ1"ȵ9Îx±ß 1璍>øÉ`¸c˜+vèôh¦Ñ~8b=PÏÜì
+°Ïê¶-û¨{u½(Ù÷ùňm.s¤”yÆ‚8žæõÊÕœIYÅ°‰ ½îÊÈ“@<[ ]{…Ü"ªX}Ý—.ß<W‚¥jSoÒêÏbª]&xô#Y‡¥/ìN=¼õBÂ6–‡ŠdC9L/Ü ¿N}zgŒ$‚€›aŽ¡ÂëÌR«‹V£f¢ÅûÝžiêýõx».Þ%ôŸ¹e.ÆŸKB·F£Èýiš°‡38^LÖ•š®ÛPÄ“ÁäÜ;‡úL%q?6V±·'‰µg]…׶ Z×róµ;Zl²I%ÐL­zÈømÅZÇ2æÇÖ)—{mp¤(òtb$æPÂcJ~!é±MP¥Sžª=­ÝZ»«<H«Ôúr$vF͗脦ƒWûüuÄzÁŒOËÍqOàþ͵·~Âþçž
+êM¦¬hs|T'ºÝëåZ†B€å6Ö4*:uTÏxÉЧvU:ŸsÂál¸œÈ,
+b
+ü¢@”ƒ *2ëlHñ<®¯5´Ñjøíäº=WC‡Ÿ…³Ï7¬†Ì4‡:ª8Åÿ(i-J€ö^GtŒ»Ÿ¬l|lbµ‰xSGFç)SmÿÎfï "É9AÚ;U®–«VyÈYüèJùiêS7Y]¹YmAâ}hë–\…g¡ò8æÜähFZó»¦p(Hå¦hã›°OðÞ¸î1ÂkpôSÜïÖ—F×ØáÜa¤GR[-s(Ô÷vqq~Ì\—®˜W+á‹ãÊ—wÉ9õÃH>:²ŸKb^9B½ê©ëCU*lGsèÄi}®rýD‰×\ Dþ%ÑDý±Ÿs—×çñ Ìa¤9jC¿ÙŽ°É|æEÜŽÅ¿1Ö_ˆáAžðš…äGñqz1¿«–"»Ú9uš{ÒÎðÀéå`f1õ’“zäèFªñ<.ÞǹˆÍ솜ylবøàrK.y;Õ:îU1¢"äj¦ÎÌÂ¥_´[&ó“#Ü£7Šô<êòȽªpîò¢2¹n¹jÔÐFÃï6mXãz!q©ïÇ*}
+TÈ
+žoÏ8üëôs…APOM¦fÔý\‰«…çhÄQ¸«ÔřΉŠ¹ü7ÜЈ‡Áy<ÐfŸïö»ÅÓZ´Žœ¸ßN8‹œˆÒ‰ŒžÎK’åõ«RLÙ}éí. ŠïŽ'K×–˜F¬Ë<Vàs“¡óûiAÉd•Š?rîѼ¬ú6’¹ÆvIfaÞd`¢ãÙ¾èég"{Ò}¼9äW«£m’kç¦Ûo5z:;§Íž„
+TîåSÛû9ü42ÑàæQ¼½ŸB0ÔÁÒ	oågõI ‰(d$3o“*š{VQʐÔɉ=^ЩD·ºÙ°.­ó
+@ˆ5p荸FöíÒsOݬ{€Ù÷עᝇeN[É€/¯Û¿T‹ªþ©f߀ۮ’%ÓŠí¼ï´·ï­Ó˜çQ_2qa¹íƒ‘9/Vb	ó‡¿Ò†IÑù"Wþ<tUü%ŽØìÒg°@ súj 11¢…kñá“íZý)è¹Èî¾±ÅæøWÏí¨ãK„D¨ÜqÇ%Ö­¼Ü̝’#›DÎo”"ÿ~ô®Úo«!â³µTƳ!Ãû7!È®t ¹d÷u~›ügòsµ
+}h×ó_uÑÁ˜*A-#‰:z]ObÉP®×Í÷TÛ]
+:ø[@y6Þ¾ÕÓëŸ:Ò|LŸ¦¾`¢ …±ÂQÓ³ßqj°ØÖeï)JXnO]3ÓJ ¬Ñº-¸‚S×!Ç™³‘Ž\4`“@¢*ÛixB0…k¢äCoÿ¨ÝÁt,×+¹Ñ9áÎ’M Œß88;‚Õ¤|ÿ…ŠÏFý
+©ÁÄ==„#VsÞmæ[ÝDm†Õ½ÚÉj6œöR{âª0„ÏðöÄÂkí'uԁ,ŠYó £~7>L›4ÛÍUfþ?Üpõ:ÉåYVÁ.ϨSsò?Rê#"ÔÆiçØúÐçå…2hº^Ì¥YZëxëÍg3ú¹l9L/ˆ­NûhÕð±ùÁ˜˜eijö‹Ev‚vÄè¿ïÖÂ9…G£‡½V»oÌo+:=ñ´W.¬u²ü"õ™‘6Ó™âÄëÒ
+ê™Ùþ›?¤ÿðÿ ÐÞÒÌÅÍÑÁÌÅé‚«lŸendstream
+endobj
+148 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 606 0 R
+/FirstChar 2
+/LastChar 122
+/Widths 613 0 R
+/BaseFont /EUPTSE+NimbusRomNo9L-Medi
+/FontDescriptor 146 0 R
+>> endobj
+146 0 obj <<
+/Ascent 690
+/CapHeight 690
+/Descent -209
+/FontName /EUPTSE+NimbusRomNo9L-Medi
+/ItalicAngle 0
+/StemV 140
+/XHeight 461
+/FontBBox [-168 -341 1000 960]
+/Flags 4
+/CharSet (/fi/parenleft/parenright/comma/hyphen/period/slash/one/two/three/four/five/six/seven/nine/colon/equal/A/B/C/D/E/F/G/I/J/L/M/N/O/P/S/T/U/X/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z)
+/FontFile 147 0 R
+>> endobj
+613 0 obj
+[556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 333 0 0 250 333 250 278 0 500 500 500 500 500 500 500 0 500 333 0 0 570 0 0 0 722 667 722 722 667 611 778 0 389 500 0 667 944 722 778 611 0 0 556 667 722 0 0 722 0 0 0 0 0 0 0 0 500 556 444 556 444 333 500 556 278 333 556 278 833 556 500 556 0 444 389 333 556 500 722 500 500 444 ]
+endobj
+138 0 obj <<
+/Length1 1608
+/Length2 10437
+/Length3 532
+/Length 11293     
+/Filter /FlateDecode
+>>
+stream
+xÚíueT]Ý’- ÁÝ9¸»Kpî	8ÀAÎîîÜ!¸Kpw’àîîßw»ûö¸¯u÷¯7Þc±WU­Y³jÖZ›–RM“UÂò(;±r²qT at vŸ¡š¦`%VIˆ­9àÕÈ‹BK+å4uAÀÒ¦N@!€.Ð 
+4pq8QhR{wG¥•€A[C—‘™™åŸ–¿B ŸÝÿÝóº
+²è^?\€¶{; Øé⿽Q8Y [ @JUí£‚Š€ANE MmjΟmAf %2, Ž Û, f°9è¯Ò l¯XP€) j4½nº™íÿr± 쁎v (ôõ ‚,MÁN¯=p‚ @`3[gó¿¼Ú- ²w„¼Fؽú^ÁÔ P'¨™#ÈÞ	ðšUMZö<¬LþÊ
+½º‹×Hsˆ™ó_%ýí{…yõ:™‚ÀP€ÐÍé¯\Ÿ sÔÞÖÔý5÷+˜½#èoÎPØòŸX Ž@KSGs[ ú
+óŠýWwþY'à?Uojooëþ÷nÈßQÿÁäÚZ°¡pr½æ4szÍm	£°ÿ5(
+`€“ãvsgû÷¹ ÿnÃ_3ÃøJÂÔ¶u˜-PØU N¯)ÿ=•Ùþ÷Dþ_øEàÿyÿgâþ«FÿéÿOÏó¿BË:ÛÚª˜Ú½À?.Àë
+(þºcþ¯XS;­ûý¯ºÀ0ü¯@œL_Û ¶|•‚ƒãFTä4W9™Y,Lm_{ô·]lt´¯ZþÝF +'/ï¿ø´¬@f6à¿šÎ'ø·6ÿWæ¯òüÍ›]ZJNOF‚ù_oÓ¿£Ô^UwÒr·%öou(CÌÿcñ†¤$Ä
+àÉÊÉÏ
+`åæà=lÜ AAïÿ"ßß@œÿ\+›:9‚Ü ú¯Espþ]ú¿½ÿ\þŒØbþלh:™‚Í_Gë?¹Íœ_ýû´¿–üï뿇tš¡,þ„˜	Y§¤§:UdõJëwwr¾é¶/ªÕÊÏõ«€tø¦„­	–™<U³ÕýivŸ;°ÞRdÚìÄ·¥ïø
+<É!õ¦fìÊÅZ¦kågÞ`7*BK=ԍò<UZ}û‰Cg{}T]èð	l¼•Ûéô–яÚ%×—æÆÝÇ,¹&¯
+³»*ïà.aïö†¾wh ¿¯ã¾k‹„93™VØå-]¤ŸC&‰Ø'í2ÏèÏ…œ	½‰!]ÚÜËçøõ«Ü€O»Èµ¥fKž‡ÕÀGÿ OùG£_Çp9nª}Þ<¡KI€–%’ÍÇä$‹T.Ò­+‹±/b>_ºOü6–=äCˆ¯›ÏFKÙ7ªxR†Çl2û‹/63Z«L'ØzüòØ&c“?ԏ¾¯DŽ—ÃÕù
+ýìºÂã/F_¶Ÿ wgS7çdáãûþÏÖÄþT¡KcTE=û5Z‰SÍØá-íã°=^NX8i¿Í·…BÉÞê êÖËK—Ÿ›ä烼ʫ~‚#€‡²žY§t‘¨hãx5BSAéf…x	3–¶qÆ÷3ÃP3œUh@¦¯ð‚ÙˆF"´=‘ó·B¼™÷n¶ö0pyšÓ— ¾"‘d”V©¥EÒà
+³0<šÄîËzíÏ “|äO°ûœ)³w
+5‚ß¿¹_©±Ã9T>¢2ú²óx>fธCÌc\a\šŒ?Ågпá6Ó~öT3°úÂq¡·2U1Ár<Ö¯PŒDÀ	uHzhüÞªå$üˆE¤|B‹Ÿ”ž‹»±•¤	H–ÔŠ»’#*ùb†U.'r¤xÇ%Í58ŸÝ¨.#~™çÙû‰óDtd!;7þ§ÈSø;†›¤LÆraå_n…aÂñŽã<ÙØÅL+
+
+›‰(RÈQ}ðÒͪåÏß<ÖÒ&Í xwdì®Ov~ùl]d–%¤ü¶8ƒ›ÒJ«+ÊLä“”ÊÖ*É~Šû
+íq‰ÓœHC3A:瘴Ó
+‚Xl&tÓÞàõ±‹ä´u‡`te7?FðW°w£bÌ*SwWB}'¹ÓÑ´vÌá°ÅI-·ÐYUt‚%rôªq3Ó\lë.‘ë6Zr£ÎïF±{«3¹ÏdÇ“ëßje|°Ý1ÓíýàÎu]=þfb35Ù&cè;Ö|6þÝ:¾Åp¤èºÙÅp"ÝÇ–EÆÍÍmšy„Øñþ…[|¤	:Ç›OíC6ªÃAsƒrÒ¨÷ï…/Älfù´¶ªCr²Øf¨;¨È—Q”ÖIw‹¦*åkÖ³ßçX(ïgH{ñ®Îªž)Æìë
+ƒâ^ÚdO÷ü°ß½ÙhέùÖ»ë+Š&	·x½)qaZZÿ¢÷{§¶ºè
+6Ûe5Ȭܫيe ÑÇÇҐ(–Ô'Àq\)kUÓºý%Ÿ±	PÌt’ÿ}ë½¢ü…–´¶¶ ª„cÌ·õ`¾û…HuRá"2àª{^TbÚ5tc•@ÌâÓ¢“ÓŒwºãÎpà[_·‘pW±í€â‡¥™°òöø\Ú%UÒí·"ÃÈ@Ø:èáÆ=ÙßHM‹Â€GX?ð1¶¢
+Ä_¾dü±5.³âýB:«øG$_žÕ$ò~ƒ
+vÓ²Æž)ê™Aé~ï~î×|ë†äDŠ˜Ä£©1¯ôÆ>ÛüïDÁ.4×[Q7ÝÇÁu7Jg5¨K­ÁÓÒk!‚’|l.ŠÌK¶$4’`ÖßÒo²COk‚Q/é
+<iè?UÐcP2p^õ,4Qcƒõ|bŒf/æ 1{½÷Xµ²MGK½þ+ËìZfðEcf#–³0	ý„íW)ƒóÆp¬ïÚŠ-Ñ……SÓð“‡ä*æ×óL6Ï>¥¹‰Ï—¬Î9³¿AºíÓ<¼•]t1e‡d¬#àäîШ}쨽.¥ŸBç¶ÁU¬Šù!@›'Ï¢E%£dÑzȍï†Þçé¥Ï~ÌÔ,ê Ñõ=+X0hàQõC$䥚0é¢XŠÆm5\€Ñµ¶Q&I%%¹ü…‘‘[nH‡˜F”ŶëÀ™-NhTµ~á8&Q¿«‚5~V¸4R@©ôñHŸÎÉ™	&HÄL6êf%9¼UðiowЫ™.3Šª=‘ØñÍ'3ó.#RsÄ€±á’¦tW¾ßõíÌ1Igù—D¨Ú¤v‹WiEkäÐ×·¶˜)r{i¿»ÿ¤'Þø³b¨T#nÞ%³"},oMî}±OÁL²ý\
+Xhôï±v31±òëf¡Ü¼“äB©1ˆv‰£á¥‘ÏÑò ˆPNÓÚc'JÏ3&ôjHÙ¼ó˜aZž=àr}*?ñmç
+¾	/Öw™üÓ¼‹Ü29Ž+g_8
+ÙBÇ‹c]Û”5ls'Ü<Pø¾í³×åœàkH«%C€€à‚KðJ—*3ñÃÂ7›ûmvË$Ø·ÛòÓ•*1…KHÔƒŠ}C›f$nœA>§€W ±’öMž%Ñ›u´³}s²V{]=†e‘Š”‡Lb§+~ßØh‘ùDSñ/Ó)\mJ)@mÔÞø Z5Ýüvùqç[Fc\Y±­7¢(Tàûʧ2¼”Ÿhå™èsQ=š‘´ly]÷<Vd¥Ìp³‹úhšâ?ÀR	îzýü´‘˜Þá#[K—îûHzWÐæs@$=]ÕÁßÑc½´Xú€#æš`LsªF4©Åcx.
+%›æfÆð5
+êµ¾
+I$=g
+9qÈH/ûl&‡jÜ“ F¨ÛHn‰ÓêroÈÉÀ“±It¾ÙayP½|§*®…3dŠwAX;ëS姝Ž^&ŒKÈæ=qÃÐQò]½SzSÉéÄx	é®È¤Áü	ùvv¨á®M«-Ï#°´Ï[ˆÔ¨E ø…rݽŒåÈ°è-œ’
+—Ÿá™zz6²4Fê4ûP‘°As3ášU:]fñ\_ÖÓ,˜‘àˆY ‡ åç‰@û¡‚"鑱S^ÈŒXÚáUµØó¹…@€÷«3F—²ôŸw¹mé!–o'k„Oý ý~oûIÙŠ]¹–pFݲ°ÍÎn¸kár|‡²¼…ø‰ÏX/—Ÿ!ö)ßÌ$¿g|h¸k©Ê$Mi_¿á+èᙹ¤ÔDFƒõ	?‰q››FûpôpÎÎ1µNÃ&_kñÇKȧ>R,}/§¯S÷›³¨zؐV
+ÐîŽ;]{Ky€?`/ç$nR»:~NõÈñbu#Þü©Ô†dm茀¥×ÀL?E²‹Ü™Eòmö%€¾ŒAÖA$
+Ýy2ÑÚ]›ÞvS£k²SC	¨–ñ’q]<†FÁÙrèSrp¾þ‡­ÒªONÊâÛEß÷Ý”æœ`+lÜ(øVS2=·•?º,¨1Ö)SB1S¬Œ*«²÷šÅXàÞœ R%M‹;‡pÖMjîÒ.ÔfQc†VÕ‘ÕXØÒ\Hò—“Ý«DŸ´r·uÐÙóU ~ÛþœT€}²è{Ož›ðç*“ÉòE;îYf.c5ûêÚßûn¯V4¨‹gÇáä+õy¿vc~mD¡QÁ¬#7b0‰Þ“MÊØðVÊÝ™Aì÷ÃÕ."MðüÞ€ƒzdzÕȬÁy“±®¥ˆíHq>?ÄÃ^îœ#çγÓ&!R’µøQ>1¶µ^ñ{¢jE•ÛJ\ŠcB=DžEÞU®mƒH}åƒóá³ €So±äIm…’íünu">ãg+XŽù˜DyÒ´aÎM¡µô— *ÿž;3ö_.¼Î䈚8ï)¼úþø<½\»uý‘¸æs°Ñ/¹‡ÄÉYo.kÐg‰(‡úOÖaŠ¶ÆçÝÁx®¤/›n„í´!~/Z“:õbÛ½È/ͼâ‚ÚÒý
+ÍKÅýþ~G¤>yøÄ»0•s-ÁònmÑÞÓ{$ÌÐæíj8Å âòÀY6»¡ž~Ù´¬žñ¬’ïã\“›š¢ôYØÞû…AÇ<V£!‘;G±MZƒVì×cæÞóufü¥³ÆŒHkaÜÅ~Õ‡Kó,vqñ²Ü,ÔÁïɺ¦È`“­7r˜u%KJp÷jaëÁ¤Nׂð÷ü-$bÉ‚7°.ìaŠ£Ñ1¿ñ_Ъ¡˜ÒUa›;SwékS[1ý/uéþ	/>D²‘ðFþztA¼Áe	ÏhM?ýRªJ¨ÔÉ:v 7
+1ðuë]q¢‘ìxW„íEjù¶ùLÞšl3ðmZèPøîM³Vâ|ßöÅ}q{>VöÅëÂs8¾(ø{=ëըߎ*]2s²œ¹Ú¾7ÊË+@Ð$¢êÎGzŠÉr¶1á˨7!Î øES‘‹
+¿íÞâ<3
+¹Ó­yd>E{Á;™Ž0³BžÀþYÒ4Ë£¸Á#È8òõ«`•O䣙ŸouSÐt=rÔ"ÈOCi¬i¼r£«I;&U‚ ·™4øb[Mºzèê'‚+óLâÙ˜VäX9]/°ID¾EĽ¹­Â†°‘†Ìƒ„«Û«C×?lÇ2AÙ°z„x¬E§™‘¦ufàƒn"­«b~ÕS2Ÿiylk3³{Oþ‘¸†NÜÇ6u¢áru`©¾H>¶¥¼²¨æЭtÖ
+69ýjA61úÏÐ{Mû*ã“— ž|ø®Ü]ZÔï ÿ?œ÷yS ÷¹1Ù®`{¾Ù4Ý77‡[Í)ÃÃZn©ä×F'‡KÛÍz3-Œp—nLûÍm¨×²ÏÔ™ò,Eø†øæò‹N9?n-âÀcæ!€6`aUã¬~´’²YeŠY}½Çó"geûq‹ÍÑÕþ~(
+‰7ÝöA¤'º÷‹[CŸ†\:¹ú€ªð:D°³þ¦Ó‚^Ue«M×Ù\A·•ruiç~MirÀ¶O’ôŠ™“Y=‹ÍýMé—>¶Ó6¬JLœ	È3â.]¹{•b?˜³hùÁL/²TÇ¡PŠõf­„x–,&õÔÕ«:ÜòÅÚ@Ú@ðþ¡2è3>–?×boÊ!s™ò\cFÉ)^ô÷n§Ç@$r´Ð4³ˆ¼úܷۢͱ‰¸mœ›>+©z*Á—‡CoI›*¸÷§ÆïU;YÜk÷
+Ä+êóÄ<‘î±S»¯¬É;¨oŒ®ÇÚ÷¶?SœLù¾sÁ’ç–:zOõŒÆØ¢€Ü¹ŒPßƤe‚ÊFÊsWívÌ«óS"aYœ¹±bçÀÙԁ‰Ÿ”K͹¾rÑ7úÒ=õ‡[ːµbÒ
+´Ï8èiJ»ð¡uÜo¤@¡Dòª
+ÌíÛ»£N»ª_÷Ì£”^Vù|U€Œ¦¼ŸÝ„Ù¹@+L£²«$wW/—ûýÏÚ°p™ÎR;<?E¢{Gþð‘AKÁ§î´µÝpùa÷ÐÓB´ÐðN²ßU êì³íPi‘#ëà˜+a2êcú^ìÍK´ÒÎè46zW×î„QÍÒMX‚¬uÑ£@€ŠF€–ÃhM¢Òû²_‡¤ÔÑzdx`¬ËoÚ%ŸàÓ8ÓkÝ
+™/ՍÐTiEW#&“B­)‘tQkºqhsâ‹ó˜iŽÃ(žuî(ø9¥Â	¡Å=©j‘§XZ·°—×Xó: =\×ÇgS9˜ŸmB¤*t¶ä¡äñ*x[~y¸Þ#¦Ç® ëe–BƝlˆOBàò¾±ú–ü‹m\­ŒæƒVÅáŸJ~‡#¬Hs€]°ÌfÖÔ
+Á·ƒ¬Êh-¼?0Ëa¿¹†dÓ_7>¯>“R±öIȵ‹Ø%åäÞ¸ÙFã
+Óh;BDy¿°/’Q¤Ð¾ãš‹Àé·(æ]Ô©ê?r%ÕÛå{³Vnzñä”ÞÛ4ÎüÂn³¦Þ¶ˆ˜¡»Ñæ»ÓùZ	`•¹tMç̘¥Âsá:‹¨îcxôÿU|;÷vÚ‚v#Ì7+Û{¡Çe](š¸òºÕëCË(«ŸvrphWÓÝgìÈþEŸ¯òµQqNËfvüHÒ–‰7x€6ÐC%$þ›$\$¾;bAbMß_zþ¾:úÁñÉWt‹
+Ñ­:.b¤Rú¾ÅqmG@§ýÛ,ÔsÓãìÄ~aîÔ†}Zm»!¸Åí*®Í—<œkâO|Ê›pxJ‚Ím„WVg‹"x^µgæXÞ„b³ô†çûZkL ÁÈÒNóRb}'<âs?äÌ ‚÷ÒAå0\&žÎ4Ëï$uwƒ`ý„؆1fðÃúnÜ×V£	K”Ÿ‡rjòW¡Gž¨.q䎓/Vp¦^‰êߌXd¦!Ú]|Í WÔÏöd„#¹wäekÔõK1™_߉¹AsÌ÷ú¿\G=SëóP<„ýXÛ²‰˜`zÇíׄ5-‹ƒgÙï×L¶5@
+èrõY¬靠¡&ÐvˆNÇ Úr5p„j›¶»5ÕĆ6mï(,¨4™>‘Ïs‰¥[j|³X.ÆYN«R®ìOÕZ-úšdyj¢æ|‚ÏDÆb¥#È÷kï­\³ÝÂ÷c$æ®"ÊSlýmƒ—Q=Ï"9ôD6sLûæÓâĕű›åV9P†›K_|η
+}¬®Íø\škÒ°Ù¤F±Ÿ“ñ–s¸¹e¯M;¾]›3Ü3H믫j¢ž~Qìá¡JËø1Êtýx¢Øh€¡~¢VPG _¯.ÒýãçÃÌ`Ù˜¥Ð›ÂÄWä@¿‡ÁxóLZuÒ]—Ã襵6¾
+1¿¸*ÉÚQt Ðä½IlšdJl¸³~±6]‹ ‚ã1o¯‰§7µ"š`DMÜ`êv§:QÐߺb.0wGàÍþqHù™’î‚&«t›Éš7µkšmX].7Ïî÷ºíDæÈQéìã:2¥6š•TXÆÀ{*VIT/*<^3£j²€\{fèc<Q*»e†Lδ1<Çzõ`xo±;ñç#Ün¤Ü¤ G5sÇÚÛã®Ù†¡yÊø'7G›FÁ&v~ƒdË¡öUµ%:=Zªö5l”þÂK³}NdO‚IäZmæÆêWdÂœ™aRyFüÇÕ潪bvŽËQ»èk1õ¡*?ªÐf-:Ï>sIt0üó5OÏÞQ7*Pª¦fý!tçkÀ=cû ?VY*˜çûÓe‡&.t+(ìÚZ¸M¿8¾j[óëL«…·©ú>å®#åTNPaIYÿ#N!½“8 ý³‹A½Ï0åçvƳ}ºœ·ÌØå8”Ͷõë5æ%Þy!ŇQ[piÊÞñ¼X|i
+u{ìÖz³êvýTùß!9µE‰E,.ŽEÞÀ°\ª—wãZÃÛÜýZEó 5/¶I²Ši6; Õ;æSí®§¦ƒåãDîhÚ
+kºŠÃÃãÆ ²zM³ß(¢#®G
+ÑÇÙôšnOLÊ6í
+yô^$´^™·¿>g^ü²BX<sôœJ¬›üô©¬¶šåÀY¬mCè?‡Ýÿ'®·|YBH
+4Ò3arׄ—¨ƒ¯d¤u•ã
+@Ç®~jV3ã”k7"E«Ò3YŒúȆ]>»£ŸÂo2ÔE§Ç•x'A|Àµ­5l¡žÑ.Œ˜ªóµ*þ‘?çP¡$SQ]ÁôÝE£b].ƒ–¿	ufé2
+¾bϝšá“‡üç¶zs	cpýâM—L ‰V‰7K±’˜
+e fcLàz—ç€uçNù(Ð7T:J÷†-\ñÈ jšèÇ—ý—ßî˜~A~;‰7¸y_ã«ÒËÖW¬³(#]ݪd3<æÅv¬4ǃÉÈjý=v
+î/£aéPœxd¼¢ZÊš#¥>îˆz~È…·a¸IDóó%ºãdQR|cLÐJ/gÍuGtSúäï„8·TÑ4<,‘Án‘¬[:ƒúe¨7ñ+֏[¢=¿ÊkªÁ>.Í·¬í?_‚[Ö™lŽÒžoèp¥±ÈIkñϹf¯çÙY¹«w
+Ûs+.oŸÈ·ve6{ññrª/†¿z'€©e…Z%y¼óVý@„ ùÝ©¡ÿìd±Ä˜ÅUÊ››í	è KÌ=ž«!çŠ j½þ39WÿTøbÇümå¼ÀîÆß1÷Aéô±Ù¿n†&x„2mšì¢&&¶©|?Q0î‰Ïä/ª‡%LJ9#r«‹PuÙaÒÈm&x)¾.–ZÐZwξ˜JwvÖ›]4þӽƐ¸Ÿ„J½†W|ÄxS>YÛH"ØŽ@ä8n×#„.7ê·AH•rWŸõ±h`£åÖ¾àƒpéÔ×,ÈÊŸÙÑ[x.¶'y¸ÃãçƒÌzádÁ­Ÿò¦k‚GÎ7ÛR.ëO®Yü˹
+å^Ú'§ƒÊµÃf$¹ò*ßÉFؽŒžùRB:-àø<h:6>HüIwø!ѹ±³Ì~’…5ÇìÉ ¶³#©P¿ƒÙ0.Û’5J&Á ;G†Ãô'dÍdÁ¬;Ïÿµ°Óê°:ýÜ(¨Â<ÿ{íioI_ýcájçý:çÈŒÊ͝“jÖÕüÒv²{`Ýå.Nõcœ¨âKªÐ0bžÒph1Z?¯ÁC)ˆ{œ!”𽬳įæ=>%Ë¢dߥ-tó;’²¡5ÙŠd4ÝyTì)&°ØgdŽôO=yªïãŸ@WMùýª¹™Šø»•¹¼Ž×^pº¦€lõéß©š´4 SˆÙ6tBdë·†IÐ,C
+U(…VUãÞ
+¹¤@­%U,Þ´Sê„.EØaV9!gXtmɼðƒ{9àÆوݞÏY_@k¦0­í5UEîX^÷aîÌb¶}m#…ýÜâF¢K°5ÅÓ•–š—äL"5r¸Å|Ú¡ÿ#¡ÒH×[C	© ’†z%9UfãÛGWƒ9˜*i¤™ë~Šó%!ÄãhI«µ”¹I?ï†âÕD7ñt|Ê渇Z;F‚?ol°ýÖ•ƒ;êÃÜu
+…‘°*ò¸ëk½ ÿZg"á­ãÜ5ßvB¬¢c.
+…W^ QHô™Òa>u¹K‡h¶~…VxQiÚ`C
+O (5ì2“kåۍª®­ƒ½ÄÛ·Ë©ÞÇgU¿]ïçìÏŸRÜÍñs©¦uŸ\W6K“}e-™%ïñ³§¯	ØÇLò°GÄãhïæ×5¼²ýø÷=£„Ç—ôŠè<øhœ6óÀ:ÒPVWž„1º7YœÞ?Î_â™ù“g¬ß?€à»„WÃc×…hr-8
+Ä¿GPƒ¥‚í(;3ßW°#_¶ÚBÙˆpo»5ÝŽpßùºËTÓ"䉂h“±Ìjµèø=IÐÖß_Ç#k÷5À“:ßo}ÿ£žaŸx=sÚ3°[„*V<¯{È™øÐtc¢þNÒñ"ѐä¤ÚÂÒ¼}Œ"üdîâ<¤£¨†äPÝvø«‡oÜ!^XÅ­/QaàñÊ%œ âÀHEˆÉŠÃ`‹l˵d\äfAKJìá÷ýÿeYúU$2¯l÷©GQêç¦Ï©ê» Á`N‹ÃrQÊ ðä½=áhef¾^°‘è×9ËÝ¥›œáéžµ!“𧴼G¸#ÿô3ÅŠ³ #’ß+¦åv­Y1Gˆþ§'7‹o÷€¡/¥»Žúù¶¤À2/¶-*†Jü‘‚¬ö#ÿ"Îw9FMÐûxƒÇ"Û/KgðæÚok·`·òãf€°áåúnD;ø\f0JÂnð¡´®.ו’/ƪ/Þg5sÈï`
+ùu㼧;…¼Y?:*Ð[à«x é>1¨Ï05ÚXÕ¤w…×Ërä¥'DFÎ¥ygm‡“Sžò|#ÄàvhB@«ˆÐ«6¹Û,ïQ_ÄøggpïÙhÇ:MÞ<_ݸö–üFîáö[¦Ç¥ú‚6ÃSõK=ïsHªMe+Έ]©“FgûËëì½(Ç@w„¢¿ŠÌ…¤)$‰þxû5øÀÎ"ù‘íc\ÁäU’ß(Ÿ7ãÜï²G¥!¾› é¾š}¶ÐóžÑº•! ^*½ÛE›­ô›ý
+§¡¹÷wX¿eÆ´¶ÕÔs†ûP̯å¹Ô
+Xò÷&Ê7Ž°àé¦Z•}Ót2f>ìÁ9hV”Y	 øÉr׺.*­µþúÓýµ¢ê¥ývÈB—´›nÕŽzg\ž^öÁP›(|J>ª²C"QvÑÎZéLùý'B¨´÷·‚.4­
+O(¼#Ê×Eï÷ñ"yÔ„ÐÝB¾^|iÁ—O¨
+ZžâŽß|ppx»±ñà-ï±n¢[¢;wš‰.¯Qߦꈍ 7ÑËõúþž¢Oozd¥n–þº±6/ª…ë ùÇÏ¡Ñd|£`§DUþišÂ5ÆÍüqµCJO\.b zYû®ƒ*³1Uàê,¥[GO÷øÎM1Í»–½ö¸^9—ܝ/8”¤Ý-'yb Ÿ™x ¹–aÑœù›ýMFnQ½óðGÇ8µLéwãz
+tÎñ¥«¿ãAûèâÎð¿óàøWáÙMHŽ	òXcÂΔ„ð‰æNËØL¡ÏQ1¹ÒAdsÎJæꟶI÷Gf/«ø+¥ÕBŸ×ÃD??Œ9ëMJG•:`Œ´ø%Q‰Õ0ãˆõÔõì±°&ªg¯í]ëqøH[XLô²Ôѧ÷X—Q16Xxzc¼¼kg¤G8®µÍ¤×J­Ùh¦ß[O.ç*ãÈ•.^y‘Ë™¢ý†c7ð
+_lð|¶/V¥Ë):‚k5¶+Èåí„Ñf/`*
+p6§O†%¯±-i%üèÄЀɵ/¯Ì«@"ÚšàâÂÕ?Û²ýÙs¸u08é¢lëeâ®'¸ðRb‚ÏM×Z(å®Ù¬ˆ=<U-,›ƒ²ûÂ,¸´1½µK¸µfgù±¦©núžäKV÷vÿ"ìPØgb£{%fi{óx6Ï…øz¨,Âïì`úlÈ%²¼–„\¸í±úxŸ¨ŒÂ/$Ï=;w¸þY·ˆ·YµQðg×ëuo~’QO›1¨«H	"m+Õ^VÛó1ºÃà»	C_°<:Ékáúôóù¤È•×K¥1~»l|\÷Ñøh=¡µ…Èޞ܋Q³–‘¯¥€™ö>ºýø1V
+–Áuψ²XûYoÔmâó ªÜÚ· •¸1ÄC¶Ã-¾œóQ<úì.КÞª
+M^M0u(›(C›WTá;«`žŽ)õs<7ðÜ-cr—¡~ùðˆ”-.¶¿+__q¬þ¬Oëöæ§É
+_ë/ñý~a[‹ÔêågD6ø†Lí¯i»JØËi.Ü÷¸·ÆÇ‚=?e\7á¢mêbqÞ-ƒ8iZöÏ(iÅKmãÅýÂÄGå´Ë#_6†ƒ‚°Æ1ŒEZùRQk¥4Ù¯û÷\[Þ£š¬bÛ·0ÖôëÔMh’ÏIˆ	¤•ã%’ò
+Ú ;Zî§îÜÉNìaMùw(U_g†•§¬Åè#ð’Mô„_فÏ>©l2§
+šïñbÀm$F‚ÒB
+¤Ä~#‡µS×ê4æȇŽœW–WfÄœïÎä}ýšÚöu*…@Ïe1É•5’\wç¬.¸|HgBUB8ø·!4%‡Ë/ӏHVa=Y&DÚG-Óż`wòÅëRÚt‡4We­½ÞÂ_EOQ#DQ?g¯rÈ|H}ôo†3kÞtø'Îø¯©jSBìÑ'‚Iõ[õúE?UïYçxýKvFæ‰}ܳ£Â®¦Ë2"êsàå@H)Á`æ©È^D÷Aº¡uÞ=˜~t½.ï‘Û9Fr×ó¨´=+ž¾n[Œ¾,þRðíý7Çú%7µ»èm×ùáÒ*<<Ó-ïÖÕ³;#¯Ë\­'{¯GUv;wn§d‰‰c|øe&ÝÈðøÜØÈŽqTNËÎÄd£wzC˜z7Bf“	"!ÝBeÇÑšçÅÇØ\½©X£ØÔµŽgP½ÄÕod;ý̃¹"Ø»~“iÎ]BåÖó4SêÉdãK#ÛI³»ÁØŸñ“ƒå¢*âd"8ПވobTR£”¤R߈7|8jC©÷úºˆòîKÐ5[‘?:$ãS5[{öÇšz)»¾nâ™R7ÍT`TËIJ‰¬&ú*ÈÎ$ß05Wßþ6L}òBÈ{÷Tê&Џ‰L1Ȥ¶êQ^Yõ•ÄÏĬ‘76Ÿ¡Ç3..°&ø(ÒßACøÃ{¾ÐΙ¶D
+ÊÇpG„ìW)HRèëÐÀs'Šâä´
+äÙ/9–ÜšeÑã½côI:OEDv¿“H_dW¹Ç·Sª"§okü.$<Ìdk(‹5~Š’ýðï¡Ñ­ý5„œÌ9ÝT”¢î^7kdmY¡Ï÷϶@J7gÑ<¼f+±´É`E¢_cf2¿¸/œ‡¿4/þÚC|ËMŽZwù›Kö›•˜
+;V$yœˆ´„Ëb’/óúMz/åõÏÍR€ÿzÓ>ƒ½í4{€.mË}¡’.ú@ó/œÇ¿£y
+øT|µ
+¶º–‡:Ë✥Üü%wR¤_­¢!ïâ0߸øÀÎ ŠMdà
+’ŸO½Ïç–jv6‰…G2‘vn—ì•EØ@e àÖóŒmúa¡,ýÕxLÏK¿%EaC„¬è=„×°;(璕¸Õl?j$ȯ  kå¤]Ð	)ùã•d¡¹U¯å6·@TßIz0œ,~ÃMRn‡•1%û¿ûŠiaèÛmg”Bdñ‹DEC¸œ÷-²®„2áÜ’Q£¼Rq'7¯Ô)8ï:‹ùã^ÉbƒÏŒIZ̝œ¡Ú€Fò¬èݸT
+J®¹]þrQ¨˜Î@*B\SZ§Lí(Ÿb¨FRAS{LÍôËÓÛµ+ó^É›ö0×àITweˆÊ®:[æÄ$a+áwµçSÐ8ò"ÙAÉGýS—(]Ù»½5øÙ—‚ ê‹ÌF…š<üi“?¿^¶#iL¶„é)–‹½…6ƒíî(¶	(ÈZr÷
+í÷>ÛõÎõz??Ž62ßµ8ál¥)¥öóä}òÖhx¨m–0¯A1ÙOúѦ«$ êw']±&åÍg"mõ¢žðáÆ†
+n½²ûhLžÎÎüB½H9Ïçýo‹ÓGœŸ(üºF’{¦í£º4¥`»4>L	¦\–ÀHÊä&ðMGìÛCNXª‚å|›Aä…„mXMÓfNËDyûÙƒ8˜I
+1EÚOÐ]®¦©øi¦©ƒ©3?Ó¿t­fR,d±G¸Í§²bÎÂö›â븓¾aèå”ãĹê7ñ.>9|§:›y
+ê¨S»¯@;À~=ø0‚|¶Só=´$çÑÍx£¬×u3°×µŽ¾å‡Éþ³°J!.\šá=Éù€ b²fßDôKÑÄ0rÎA°]!8¦ùfl‚¡”iÌ­&C½Ù‰xC/z]ë¢ÈŠÛS×>ˆp=¿ƒ²†fñ!>-;CQ*¥é¼’b_Pü:ªKXõ@<2Û´s! ê±™2‹JT¦ä7¸ÅƒV´±tÅè&›€ ò05Fr£ÐOލذÖ2GŤ*ßq
+ôhZ"¶FO•ÛRŸÚA}ÛËŸWÌ8ì˶¿ã?Q]D
+ïý²CÀ“*“SH…Å䙵	Hð¯õMÕÎ¥üåNlÂ1'™`p•þ$T÷ ®á¿;NÔ$W,偸·¸a÷÷œ	fÃÌH‚ ™²•ëIÏïe&kmä×îqZe©#óÏD¶™$kûÑé6?\¦z‹7¶BtWýMp©{~qOw‚;ÒŠæÓŸQµ_FJT°5J½"ƒúИl‘4Å‹ÿÃåÿü?`f4ut‚Ø™:Ú ü¦^ïÏendstream
+endobj
+139 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 606 0 R
+/FirstChar 2
+/LastChar 121
+/Widths 614 0 R
+/BaseFont /DCGXEA+NimbusSanL-Bold
+/FontDescriptor 137 0 R
+>> endobj
+137 0 obj <<
+/Ascent 722
+/CapHeight 722
+/Descent -217
+/FontName /DCGXEA+NimbusSanL-Bold
+/ItalicAngle 0
+/StemV 141
+/XHeight 532
+/FontBBox [-173 -307 1003 949]
+/Flags 4
+/CharSet (/fi/comma/period/one/two/three/four/five/six/seven/eight/colon/question/A/B/C/D/E/F/G/I/L/M/O/P/R/S/U/W/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y)
+/FontFile 138 0 R
+>> endobj
+614 0 obj
+[611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 0 278 0 0 556 556 556 556 556 556 556 556 0 333 0 0 0 0 611 0 722 722 722 722 667 611 778 0 278 0 0 611 833 0 778 667 0 722 667 0 722 0 944 0 0 0 0 0 0 0 0 0 556 611 556 611 556 333 611 611 278 278 556 278 889 611 611 611 611 389 556 333 611 556 778 556 556 ]
+endobj
+134 0 obj <<
+/Length1 1166
+/Length2 6834
+/Length3 544
+/Length 7647      
+/Filter /FlateDecode
+>>
+stream
+xÚíye\Tkû.Ò1(Ý1H7Cw7H#à CÌ0tƒ´  ‚  Ò!ÝHHH#¨”R‚ÀÁ½ÿûÝçÝï{>oçwÖú°žç¾îuÝ÷}=×ú´X™ôyì¶PUÅâêÀ\m==Ápm^¨ƒ'ð.(Æge5‚¡\ ÿßJîP0
+†€+ƒQw¸‘£'ðØ(( 	H
+ˆKŠ€îÖB%"Ü%zî0W„PŠ‚º»Ààw2âé
+…£=‘HÔÎ êðt‡@=$öwýgU éëspD9Œ
+L8¹¹yþŽ€$$$€¶¾!@e¨Ìd»[xA]Èß•î(Ô p¨û]Óv¿sõìÁ*v0ÔïqŽ(R’Ÿi†ÞÅø<ìùàP?ç]£*p;%„ëoüßš)ÃÜ¡»¡|ùÿ©›3á
+÷ÿ°=n÷ÇHvžH~c8Ìͪ¡ü?Éw!ü¿cPPD at P@B@uB} Žü¿Kù"¡€ ßa0Ü.Љ@íÁ.Ð@˜=ôîïïö‚QîžÐ@ÿÿø÷>´ƒAP@[¨ÃÝ1üÍ~†Úÿ¹F¹Ã|€|  Àïû_+«»µCÀ]|ÿN×»Bü*ÊF:jÜÿœý_YŠŠˆ;J^˜0WP\äÎ)wŒ"Bÿdü—éðGTûŸ>þ¦Ô€Û#€Žs§ã_#yAÝ=î¼	äøÃÆœÀç×A `(ãoëX
+ˆܹæîú¯–ú7ü¿ëŸ5T=]\þP…ãO9€wzx µ¿q»ÿG:Øæâû_^øg¢	ôO÷ÿx4P`Dîàò/™`ª0¨qüÓ.©l÷ÇwÕCxÀ~É@^è˜‘#â‡zxܝÅn÷’*pÂw ¢î\	v·ûWà7ñtw¿“珺{÷¯½=ì®A(Ô
+Áÿ8‡€H=uª{ÚvQ£@ëÍ»=.Ô+j|vëÉ(Œïro“½G‡Ê¹”VøÕ©xj®²Þˆ£l•Æ#Œ{‘‰´*ñbÞΊí|8$¤$èê14ßøê¥u$G¸“ǽ4IϨÒóö”|ûÕ™ÊÏÌXe•ÆH#äÁôæŸwÝt±iÊ+ñtwç8%(.ÃtÕ]‚ô%±?u(8…E¥hv6Nýd×4'hüvNZÙNb3;קH(ü!R
+UwdKkV*&Ù1Ö)xéXÖjY3„,ѲB.ñ¼/Æ5Î;~~ûìc·s1ö‹÷oâ	Ü—H¨Ó6›«¤™ÉÜC.:ú	Œ
+Ž¶´š48TÎÎê1ôjz‘	½X«dÜgאð„q
+NÑâ O³n$ÜtnÜþÝD!i³wÙ öö]àR»´Ï%¬ò³qA׿	Î.¢XpŠ-9t¦ZÏ(õƒLÏ@ÕK­z=.×K®jëûHŽ¸±ãE§©QÏñ樚¥­ð®ìŒ
+[Ü6?èís¾EB}áÿ ÃÑü/”ÚËvƒÔÏv,ß+Z¡ax<c^ÆR˜Ex8¨/îŠ$Ò†Íø’ý3V¹Eû0¦.òžJüH{4t‘(7ßÂH±9J/‹j'‡zÎ
+È.qËw‘ïxKM)¥ö	¥ø¡ßë¯93¨¹öo曝<ïAS¯^|œléÇ‘Ñ`‹lO’U#»ŽùËš¶Ï”MØ°úš”¯‹ âÒÂü5_2?ÏpÕŽtº*÷# 5‡g–á?^fœß-ÌéÓWcÍÀ˜Ró¼á¯åÃûwþ8ST•Zò#/³ãoÆ{Ó$¢ïÎuD'´RXs–
+éÁ•/
+ZKcœq©§f[òt-/c£~Ù^¿Ž>Õ±è6Y yÒ†„e ßÓö³Ï{ZP[T†±ÿø²VTŒÚ­v&nëϝxÒœ·¶±}ÄýSÎTV‡>«”Ø‚^ï?«•GP¤˜´uRR€;üd'•ª¨â[”6ä•»y|»&%ºh”«ˆÑøÆ›‹ßƒ‹ü“ƒ• IOü€ñæ$¹“·ÿ)1Wë–×Hú|¸:ézăÄñm¥†®ìõ=1Å/Íãx¿ú¦Í¬¿}PR<(F'¾l#Ì5îõ—¡‚êªxêGy;†D‡Œ kaI‚R¢gF9Ké­?sJ!œ
+¸F„Å}YeK½‰úC/FŒüÇLdìÔ—ñ:ƒ¿OÕâ–ãªÚÂ&¤âj¯'Âïgßß=áMœËDW`Vãg¢{ÞŠz$Ó϶± [¯˜vÞº«‘<L	u
+$MÐÕ.§ev¡0Z#}	Æ­¼ïѺÞA]RéZ,¹6pZhS$Uoà8šHbé©òq6OŸý¨2M³Øõx&Î_Ã3ÖE|gKˆJžGÚûLÝ
+Vb!9k%_â:mžÏ¯ú¼]ù‚5Ø;÷IHó²´ؤy+RÀþUâæÌ1lÝuK£¦Ýóü<ÈÞ ÔÂG.̆wõÂ,­_r10AÞœÌ(~Ýø]ãëÜ\«}¹F׬Ϟ³58¤áZè«%—n睯9MÉjŠÐŽ¥ÿβ"»M ê„ÑdøÖ.oBèÔ7ë”hš»º€Î±Û{ÑMÉÙ‡KÃ¥rc8Âå¶\žONm"lÉeæò_ªr-íxïœêý”`â|›YÓÄ—‰Oÿ4œDô
+ž‹O<ã|™14‚IvéOþ
+}·ëY¬®ÛC§T}»Xea­¾Ð•Ù×"‚¥EäVÎOâÌÉÐ{ú–ïÑb
+Øï£W£	ìâÀn_%‘!½:ê)Å÷úSòW[uо–šÖÆ\ Ê%…4ë“κäÔ44mü«[o@\ÖŒí5ã›÷{on3Ì¬j¹¾]æaM»ŽlÛÖ½*óãkr÷¡è±–¿Ðž‘«ŒšÅ¢ÈªÉH½ÂÀ[ñR–èÍ?Ç„(ÎëùòUŽEïkQä–Š²7u)Ž:ã>añ¸¦nu
+šŒž§|3’SjÍ×}Œöýç‡Êûrr’ʸ3ò|³ÛöLþ°LŒŸ’­Žo|‚|m&†OÑ›
+±!D~Ä–3¼è-ïœ&LwpFŒEŸ×‘„®
+f”3´­ÛT4.p5“…Ÿ¾J2çÀŽffÂÔ/ l÷¶NuÁÞ¢ ‘Ã8K®$ÇÁ›
+âÉØÓ/+m>¨ÿÙôš* '—åý–2]6	¿ªuþÊOÆŽALå
+!*Þ†wT,¼éóÆ~<sD/Ù­–q~Eøtù:“x;pfÌþc…м†ãû—WÕø…’‘¶dL¿hXè=žø'¼NUÓ©•
+J^ÙFî½ÆcY3	mâpÒr¯^òrK¾r¾FnsbNè-Q&³Í#ó<™·RèñºšzZ¸ˆ0^UíšÊØõÈ_ò*1í
+Ö° çÙ;,‹´r&t£}¨;Xu}[	ÈxòžŸ'Þ1ÝVjë†d/Ò¦†ï¸ÅËÜ´FO`ZÚg¬Y‹„ùz'#ù\]x0æQD
+_ûøÓÏ0~(ó­óQgä÷“í'X(Ä$Ÿ¸æù5?)êbÛ‘ÌÏmÉv¨¤7då90<žÐÎ~>cõÖ.¾`Tv˜[ƒv*6#f9 at YèU÷äjK˶ÔØË„N¬Íå‡kO]e/f´¿Î~ÕÓñ¨	È5$±l¬_¡¼¾É—ѤÕ<«ª ¿ÉݶVI¼|ž-Ü–jŒAåZ½Ûp²¼£oè6)ëðC­‰oF)9ô«zñk˜eW`Ú'v±ÕŸv ÆI7ýI¦)À‡Å¿Ù˜a-!P¹P4%c3_‘l)"àf‚,1ácõòÆy(mŽ—Ú§jŸ’dªÊYÿ\ ª"ù¨¶´µ+n‹dü¤Q]á•ÇÒÈéMR1'2 ã\ Ë©Ðl…¶²ò¨eôEÕ3̶…ðºBÈû"ŽíM²}ðؘV}üÚ˜œo‘ø¹´\¬¬Éò-狺uôð,‚BÙz
+¢M
+­Pn~'.hDF#O³ŽwjšÄh£±éƒDÌ@<µy#@:_“wKž¾›ó8»ŠÙnü}Ò̈„ —ÓxÿðË>æ­Mz¨DšðH]ð±X0à'£®ôPšˆ«à:rð­\%òKQ|¼Ý“¼³Í9ékdÞ¾jéЗâÐIîËÒb9½§3C¨ÎÌ¢J}˜]µƒÒÚÄ·MšÌÞê.€4¾wÇÔ%ÒØöӍE<j6ɬòyßÂçFé7„´±j‚¬é¨ô³TKS¾çÅ.`?n1Ž$áé
+&²8“R6Ô<#P­¸ý$$>‘}Ò"*Í~Eÿ’É51¬&­í3[vYX›¡0ß‘$:z N—~=E¥é¤FoLeÕkק?¯¾ êáb445š?Å?é§iXÜÛãWž¬
+g½xß?„
+èú˜†'ŠV–ž
+Ú‘[®—­óšÇ””eéÖÙ¤‰Æ?9×%—Rw
+!k¿=j¤פ:œ/Zåß÷—;׺VýØ<Ÿ´ók¯Ó–¨™_H÷h©
+`&kŒX2X´,
+WÚOÖšŽâÞ!Í({GŒ›¡6bºýºµÚ±oDDÍiSÓÝa®­ðôx‚µ…Î]Aó³©ê«õ}Á^ÜÐ0§×¾ûÍ­ð¡Žæï㵩lï#ÓžN?¿ -ž«Ø\õ½ÁßÓ÷ ±ŠÉ¹PÓ¸ ÑðOP%3‚Š&p©*?Öt¦‡ŠêŽ·ÇûàK=#Ö`£²÷¹ 8÷Õ¤{Šgûì6û,%ö–.îYõ8‹¼¶V'2*Ê2S†ôIGKÏTÆ*y,ý%.þV·îë_x7’³³Ô“»Á^eÇî¾ÎÑ"ötáÑo6%2>ikžûs…(èöeH•ìÛ$lËu˜˜ÜÈ¡múÅ€²"cD	<‰ó.uL­j8í„ûdí2ñ…\딆¢~ú´„m;ŹXû¬„#×øæ;º¦¡j±Î—ŸÙ“ú|Üš(8i*—½q‘Å_´´Q§2–›‰]Ëþì„I¿€ðß{¬‰-}ÂØ5‘á™BòóþI¸òÍyÕI+̯^¥jê>ýògøbNæÙ	æùUßáÙë†ñ™“q*þôO¿$ņ7Wh$û‰›wI‘\OÂâ²ß0J;og¹¿f·NLH74Ë	•êç&ºú…¦ò‚¿›·¶Ç;õŒÌVÌVÔ!Ô'GÈr®Š-LÏç&È}õ‹îC==KYVp$šaÜ›
+hƒ=…­«Ú1ô¾Þ›Pí¦ö4Å}d4¾…)kŸõhízáLEúÕ•GÍÍë&À.u6²
+;&H±Îúß c·ää¦z`.cEcãz–Hã9iÞ¶¡I+ò.ˆ¶ò’ÀE^W´ò§°ß|Ö?
+Á{Ó&š3U§µ,7±ç—>
+p†´&dêøPHɝӏªbkOL:®T{Í”.Ô­;êà²Ç°+}ï_˜ MgÑ‘º W›U÷Ý…';²§”òN®Ñx¿µ¨‚p-+•C€+1lYþë5òߟXAYoö‹EãLÔsnµ‹¿”91+z"~f;„Fk%F–uà27¬r76cNS+~ ,fqaBÞN§Þó©z“ºàÇ)¹Ç绌þÊoJ%þÞvWOOIÑøe’Ãå2¢®(åáۏÊØÅïg6 |ècy"WÂ×j$qÔ_–?Á‘·ãb=rOÑïؘjtBÁ¤3{D+SÊ_óÙZç1uÏäg°eìØØ0¢·Çyí´"m²„ŸŸûÔTãŒñò-²½\ 	Io°[ßa£Ö0ãýúa…§RÄtˆz|3uüV	Qƒ¹Êªór¼§ÞÍOÓn)
+‚êß°qrzŸ}]PæTÆ4·)+ýI—Ó(
+!
+k#Æ:ÉeO/c+(™øÈ+ߌBÃTqÁ¡LÍIúþUbD¿ÊºLxCµXEV—»ÿIe+TMI‹¥øúg©»PþýJï
+2#Âz¨Å¯µ:ÿãDÊÉvßð…Ä	µS8¿áÑ#­íPså¥ãÙd9ÄöOÛgœp“‚$M²¤…y/ã£RIÐòÜv1ÛٍÁ*±±
+ËÜà´åBÂG°ü+̇ô—lǽËê5Ì\ï¢í¼âÏYóÂÏÅ∪¥2çiÚ½ŽoS©ë)æa-ÞŽÖÉ<S<_Á×åöM N¤~4A|\ÊTîÛFZa9üjv½?€k´¼PÖ„ô!¬xžîA²t¾ö]z¿¯^ŸÝÎFáé6+‹ø–â‡ÏÛ&\«z¹-‘Yë’öwìNJÉ^6ý.ô°¨ Å–Œ&… ˆÞuâNHùÔhýøA éc*î_¶Ô{Ù"Ôå³EaRb«uc–R‘÷Â',Ø3à~Û;´4$((Ç–-ÕšæÝøü|Øÿ‚]8V\ãw€EWñҏßÁš,$Çclj‘P¹ ¦
+ú‘èÑNb)°Ø­ÛËë@-šˆ\ãwžÄªå³²äE`¥›tƒž¿_ê˜O™/{%ÝêùD”+BŒçâ­¤Hø	d’Á2ê¹aòi×)`0áàˆ•ó$-º1
+¨’Üzr™ÏóÞe‰*?AD¿WЄ-bsvmOù?ãxž¯ª_권ýøÙèH;Õ /l¹»ºò¹3«F“5‰6"]ø=bHÑÅbâÉïDcUzz!°Õ.Ÿ3ÁÏ{dñ
+		¯¿ÜjÚ/E©¾1ð³ížMª+«½®æËk³¼(÷êlÞW—à–[»Cä3µÝgÛ¬F°P^ñÁå]—§Õ“OÓ%ßi¼´Ó=ÿ Ü2‘ë1mƒÂYÊ’)ìè2˜£#ùaëgâQc6ì\+½Ÿ†”Ö¶ž^Q”}諸2p”?´f‰xê°Üüùìñ·×_Ÿ)~­h*ÙFŒÂØ¢æýÁ	ÕŠ;êܹƒÞe«~¼2\IØP~šR;n¸‡M >&5ëžãâT)ù°6{µ€6fï =MMZÐH¶Q[NZ=-ÈKD½­V™'xèäuKЁ¾ºížøÚUnh–Òä¿ëÀ 1'~ú"·hYƒÅ#«ÿÄ~¬sqÍÐä#×0¯+ L"¦ŠMu'®/\þí=¶Aã$¢ñIbkə؜d–¡DõÕ~å«ÆøÙ{†jY=ì"\,´ê)2bñžõl
 ^6Âi
+1ú%²éÜÄÒ|pj$;ÓAeo¸¤bVÙ þÐüt,t8Ӂ§~~·`”':BÁJö&
+öñÍ’_w8Å:麐1ãóàæ⾑_l/%?õdo\́Yˆ5Á5ΝH-§ÞQ#òy)εk*Vœhàʐ~Æ[%¹€*èŽ*r:YÞ”ø¸UÊXzàŽ÷«&ÙÄ…úÕ‘ÒI66{’2~r„_9ä·SHrŸ­ôŹºabíË‚û¤Ä-{ß7R ”©|ýXsöÔ'í¢zŠÎQ•“3Ò	nÐÝ#õ¥èWhV¯9âbWŒ-®g¿6ÞÎÆÔ–rÜÿxìÖ4Ó1E?pÏÈ€jb–̆|w–£ï? Ÿ‡.|í¢—l€%èRßGÔ‘µÐÄ=’Õ©_%Yo|Í®6poÝÖ9D[雀ܮ‹˜Á’ª8s¿n‚\«baœ÷£ñÞH˜;`0iÐ
+KçxWTKîmx¯tOà>w´kPYêPÑ<ÜP,ÞM?6ò–ÿ¤u‰Á¨—~e-_/9”q¢z´ò²¿µ6¾Xôm.
+TZá,y%¬Íª‹…G‘Ó8×ÿ}2 Y00œnåA(¶æöé û´je4ª^…Ǽlë5pƒq æk[ŠKG¶ðDb¿&ˆÞ9Äúì/ôÍ•øu?õ€h$a2ÐߺçgƵ@Ë•&SºÙ1¸3üÊG‘úl®–2VK¨AV»Ÿ ¹ÄÌ¡u5?û´ççÁt©MÚV¨|·¡6?]7Þ¿ïcnxÏM—³˜ë^
+=ã“©W/)¦l
+eÊ+Ô˜<ëüFHíÍ.÷ùəՊsVÌ÷·òÛJÖù¸RQLûøyÚ†GA9›@¢®¢y¥ ËÂié/W:zÀûÝ'š]I«À‰,>v^G®Û¶O¹Ì‡ex¯Sm~Á”MÕætA…½)¯ý—Whüu¾¬¨%«ñK'’†Cà r’	-yHü¿Ê`±‚Ͷyj¤rãâ™FfOŸ_’†ë‰¾ht˜=ž8ã5ÑÙ .Übš-¦B圎auÚ‹à7Ì$E¤ºÊš³'²[Q5þÒ™~+’Š/!‡?¯z#;áÐî~.ƒ„D™Ïë9m&Ml½â|RØæÅíoþ†iM'²rR™#·S/ì_Å`yJû«CFéó€ØlªØÕ×}hhk_Ö½µÖ˜cƸGGè¬ÀÅâçV‰ÜWˆ+Ѹ6Ï!sû…ØB
+µ5GJ."%/­
+¹sÁcBc¤D"²=¡p³ÝãNDPîOZµ9jé‚mjÒ»lФ²ÁïI0c?¶ÄöÙ§ªEÉ{‡	¤£Q+ÍEDB%$ÅÉf_Pê‘P&>“©¶ŠÁ
+S¥Ýß\ók¸Møó—× ¢ÏHÓ?üH’g¤v˜,:Þ_©ïs˜ 
+ªñ)Áëö¾x[¦äkÜU÷ãéºÎzÀ†~mV Ò1k‡QË-eœí«•P…­¡ý$º#ÇGaÊÑ»Œ'±ÜŽó#sÖ©ý{š·G/£Ïà¶x
+¾6ã‹ãÎ;r‘Ù»,O„ÒT%hœ,b7°¨ïÍD|<Ýeí"p‰Tt0Üʸ7Ógc)·óR“Þƒæç\²i×°5¯Ç¢üǬæê²›„ÑyÏ–K£ü=I„a5.X΢Ûf‘I@Â@²²rµ`Ñ„Ù‚……rMÄÙ5ü”,£°p<À¹á@Â;üQ÷Ýæ4¯¼<®]ÑZ02Gãn»®×’ÛÔƒ=ŸsE B§ôŒÐJ£¦ÉùNVêœáDôqŒwfrºrô2FRfh“OU¦âlµò™ÜÒ"ˆöN’UôËÒíoÍM‡E0³fÄìwÞc%È\ÍÔXxåë¿¿oñåœpüÙ$‘#šÜaJ|ùÚH`DMÆÍädE;ŸXRøj|,µ´3ïQ=âìa=¶O
+Œ¸¬
+1´MÖÌÓÓÂ
+PÛNx{e
+T¯.	óŠ>æräÃ’¥•BTeïz¾­ÑE|œþd‚BÐueZÔû1ÆéN%SüÚ¸ïgåÔ¬ õ}"(…C9rÓ›Èa:ðkèD0n@ý{H‚¡™ÛÔƒ¹n]OÍ’Óû Àšiœ–
+o¿ÍeÒäë‚ç<˜4ÿl5‰þ[¦— qÁs)mŠÁˆX®Ç‹Ï°/CöO¼G³˜Þïò:gÍÐ1YbtÖˆŒ/ÌfªÈ¬¾.Iý¤ãØÞó—§·Äs($Ø`p³~Û 54eì5óè´~{øÙü!ñ|`°¥Œó&ùR6F%‰qô9Š67 S“³?ZþìÝ:µ{3hÿôûQ°hÅjˆíƒ§æãi‘ûÜ<ªeáèp^¶{†¾7oŠSšs$Ó~(l2ce"³¼Ø;üôÓãUÒÍc/x³¯ÑKÞÁ}^Aϸb53Ðl›KW:ǃ‰&½ØíÎýƒø×µåñ„Ù4©·,Íx‘çeèï"K§—jv€.œ5­]ÂváçE»".¿*]ð@Í‹â’E$~öä¸éêE*'Cƒ#ß 'ØrâÖÐõ¤/ÜŽTæ½ö¼f¸Ày° î‰ßöé²é€à
+i‘ˆÄ`bjÏ„ÊÓäaôõÛÃñ¢Þ=úQôýM|ÚHàbf§ñññë$‘æ·ÕOï‹•,}¾*ÚÙù:jù/|ÎYclÊ'd¼ˆÖ.¿?TG—Œ­„W
+_ÓðæoˆUçGþÐÓ?H»¼ø¿¼ðÿ?Áÿ(Ø…p»;ãû»C=P÷ßÿØñÿ[ú®endstream
+endobj
+135 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 606 0 R
+/FirstChar 39
+/LastChar 121
+/Widths 615 0 R
+/BaseFont /REDTNG+NimbusSanL-Regu
+/FontDescriptor 133 0 R
+>> endobj
+133 0 obj <<
+/Ascent 712
+/CapHeight 712
+/Descent -213
+/FontName /REDTNG+NimbusSanL-Regu
+/ItalicAngle 0
+/StemV 85
+/XHeight 523
+/FontBBox [-174 -285 1001 953]
+/Flags 4
+/CharSet (/quoteright/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/A/C/D/E/F/H/I/L/M/N/O/P/S/T/W/underscore/a/c/d/e/f/h/i/l/m/n/o/r/s/t/u/v/w/x/y)
+/FontFile 134 0 R
+>> endobj
+615 0 obj
+[222 0 0 0 0 0 0 278 278 556 556 556 556 556 556 556 556 556 556 0 0 0 0 0 0 0 667 0 722 722 667 611 0 722 278 0 0 556 833 722 778 667 0 0 667 611 0 0 944 0 0 0 0 0 0 0 556 0 556 0 500 556 556 278 0 556 222 0 0 222 833 556 556 0 0 333 500 278 556 500 722 500 500 ]
+endobj
+131 0 obj <<
+/Length1 1630
+/Length2 19463
+/Length3 532
+/Length 20368     
+/Filter /FlateDecode
+>>
+stream
+xÚ¬¹spfo·&ÛvžØIÇVǶ'¶m§;fǶm[¤cÛ¶¿þ½ï™9Sç›ùgæü±«ö½p-\ë^µ«6‰¢
+ƒ°©½1PÜÞÎ…™ñ@ÞÒÖØÕYÙÞVÞž[–Ahî
+ø+g‡£ q¹XÚÛ‰¹ y @S€(ÐÀÂ`ææ憣 ˆØ;x:Yš[¸ ¨Õ”5hèèèÿSò	ÀØóhþz:[šÛ(ÿ¾¸mìlv.!þ¯U€@€‹`fiˆ((jIÉK ¨%äÕ @; “‘
+@ÑÕØÆÒ ki´sÒ Ìì 6ÿ> LìíL-ÿ)Í™ñ/–°3Ààì 4±üëô0:ü£¢8 l-ÿ¾,æNFv.{àb°´3±q5ý'¿r3û%äàdÿ×Âö¯î/˜¢½³‹³‰“¥ƒàoTEQñçébaäòOlgË¿j€½Ù_KS{×Jú—î/Ì_­‹‘¥3ÀèáòO,c ÀÔÒÙÁÆÈóoì¿`N–ÿJÃÕÙÒÎü?3 8͍œLm€ÎÎaþbÿӝÿ¬ð¿Toäà`ãù/oûYýÏ,]œ6fŒpÌ,cš¸ümniÇôϬHÙ™Ù˜¿ý[nêêð?tn@§5ˆúŸ™¡ù›„‘©½'ÀhÇ$oïò7$€úÿŽeÆÿ>’ÿ(þo!ø¿…Þÿ7rÿ+GÿË%þ½ÏÿZÜÕÆFÞÈöï ü{Ç þ.#;Àß=ü³hlŒœþ>F¶–6žÿ'¯ÿj­üwºÿ0)£¿m¶3ÿKÍ7ÆoÿZ:‹[z M-]L, fF6{ö/¹š)ÐÉÆÒø—ÛµÀÀüíÛÑ©ZXšXÛýCû¿U@;ÓÿZÁ_ºþ•?“˜¦ºš°,ÝÿfÁþËPñï ¸¨z:üÍí?ª‘³7ýŸ‡`¾·÷ x30spX¸˜ÿÞ¿¿	q³°ùþoBþˆù?ÏrF.N– ¿ucþWõÿñüçIï¿ÀˆÙ™Ø›þ3:*.Fv¦§í
+þQ›¸:9ý%ù_àoÕÿãü¯¹=€&p+‹ö&¼!Vié.µØ9Ó¢:ý½Ìàá%
+ª…ùÕö=þiÛ܆ï5¡ŒÓ<Ÿmž§ûÒ´£½X6T=)ÀË<_2š¾|Ô
+ÊNºƒ &ýÄô3ÞWd· ´9¾©ìL*)ë¿CNw°:Á\=ѐ¹å`?: ù™¤ÖÇbv¢4‚ ÕœžQ&?=R
+ŽõÜ@öíãÓeÇÂRðºA RF8fãj«UxÇ`Ò
+Ä	'HÝîi=Ȩ[ìYÂÄ=ðj[Ž•>PÆmõˆ3͝)®Ûá*S|Ä–,2ªúÉHErõ\ä0Á*碓`‘Ñ›ªÒ¿[;ž¼n{Ð:DîJlHä—ã¼eår­½Ìƒe[ÖyËtÚ%C	LA¶oêdIˆAû֏v°˜y	ÏŠšç…êâµk‚b‰µ|b at Q¯#3\SËëYѦ·ª-\˜¤‰JH‹ÁÚ+bì÷"ŽÈ¢ðIšh `[_Ü #ÅvS)l®  ó;™‹³x&qº—€¿l\ì¾”{QïžDhñ‰Cõ&­s㺀ÓüŒè䪯ˆÎ|»YøÒ|ÏÇ!I4—¿Àì=*Ø»óg
+ôw‹ƒß‰_RÉK(
+ÃÕòq-ìÓ•m~üQôëQ—EJÃú¯ŸÍc‰r¹Ñsr"-~Ês/CK#¥üjŠ%Ž“lЮ‰MKœ„ËsRsËuÓUµ3½{Z$Ù£¶Œ»£EûØ÷è/Ky_^YO•"Üæž7 ?Xó!ø%›ñ#j™!ê¾Àšë¨e~£!:F¤sÎìý@!ëQ ~é%ŠdÔš,é7DmÝnžËìÏ¡Jø(:ZXŽy‰ÍjOAHQ‘åÎT
+Ó¯CÎß^”Q¨ÄtYÐ÷tp‘“Høz[?|vuÒ ;³WW¶Ï®›kÂÚ+A©ÕÁ+#("fGr”ÇÜ#b‘Á"œàÚ® ÜðV<B²ÆÞ!YÔ²ÝÈš!"ÚHhëcíÂÒÎtoÕd ›E'Ní0\#cg®åҐˆ¹E4]_=q¨†ê
+³^`}†5ÖaWvû(,l~é£Ê'þÒ;Šì9¨„˜yÂbSΉè¯ú¼K‚êôÆxI.W®Åoˆg"Dâ.ñèAçMÖ9ï!¹YÀMÀ‚Â	 Æ¥uYÞäÛE°"+Z2 jaŸd{6P	—ŸÄ†ìk¦VËY¦6w<$A`-X†NÐÍ¥W¾ÛÍ0V…XZûØ4…t…NÚ1ªæ;(ÖâÑdáfHOÀøÞ®e÷˜Ó‰â\çh›.‘B2Ø@±‡MK‚~«I­1>8Ý$Öõщ³÷7hº8ˆojˆP8E`þ¼ˆ¯®HYzW0D
+l#
+ËÿüŠBC‚:KR7£BÜÙ[βÍøÖÛìÙÏ8œ°–4=e°qËy4§ÍN¸á[5±dÙ_„ΨgÄ£ö¾ˆ”…¹Óšu¦€Mž ý¦O~8Î=§×…¼)¹æ玿!7PU†]wÎÝq+éÇ(žÃ%yçIœËäÞ¿LZ/†ÜÊYŸp
+ó™R…ÐìÍñzZ]`
+¿™p{òK­)ØÖ»ÖÙ£_XªNfJ(ÏK…{7%UO(VËlp°YD>÷îå?¯}†SS"Pù	zžDVÁJCùi8'ÜlØà°ÕÆ¢aïþg•9*öÍаü©IhJÔÅÙ|ÓüÈÕŒ7´¡{no„ÝI
+•çà6“ÏŒd_çáþ^)…ý…W„êµ+Ì©×Ä偿ûòã‡s9\êààZ)Eíþ¼D®<E7(Õ2C¼<{0\%)7+z ¤FÍS[Þ1À	i0]`wR_í# šŸ÷§íºÖð*[­IɐäP¨þ3™¹zf?»œ·“.#×R`¯üWû\¶s©¢£Z²¼p…Zz%qº,s‘ÜzÒXé±±šFOnYïZÿ±u!puäú‰y»ã‡O̼òvÞázâíSba¢Ï{ö¯I2›=hf¸"øˆ7§ˆ[¹Ds2|üÂ`E±‹fhP8˜(¶lSˆò˜>ª2’UY²„–Õhãp¼\™»žVÝ}^ ïPmöÖgà-}
+Á6N„¾UEH^e‡ã“g„JôÇt÷#í3=ºM¾Þ±2F6ÇŸæþ"¢µòÏÇƁ€ÂOû½>˜ÁœÜäsp‘K=÷xì‹Ø¥Owö{¦Ó“ñÙûo¼BýÓµÂíô)R-4¦|iŒz_?-ld¹öp}…>üÀL†vèCÒ²TΤW[ֆˢU¤¨"9‚¶
+ðnTåµe%úCà›5<V•±
+§nðÉCe+î€(¯­jû]Å2øëÖ}÷¡/]FÒ ›¿øæÊݦ6°0Ë\` °©ÉpÉè*±œ­ên£ÕöäæÉŒÎAK,ÌŸQ§fäO…
+õ¢;O2ŠŸ´ƒ'ÂpÅÓvöÚ®¦rq·¸ÜJ·êcêZ"ÎØ	u˜?ÄgëY ÒÜ×ïa0*‚ÉèßV‚‚À*åˆãnE&Ö	J…ÕXÍÃDÕäú¿™7ÚaU­qÂZÕ1mÀJF­Fè,ŽÂÌ:ë« Œ5õé%ËOÑÑWëÏî}$ñ©PbtVaŠ›X^Ó9—S1íœÒtåÏÊ4ž¡–\Ò|ò<tv²FÃ÷Û&ÃÚÄõËXØcp)X$l–OsˆaŸ…jßÐð›÷¾Þê!†2¡°ôR×Ί~:†Ž+zŠÄ“Q4Ìm
+°ÂÉH¦±¶{l‘?±Y`•²k^Ü[:‡‚m½´$1¨œïí.ÌÍT:ÅÚûH,–èDGóhˆÈ³×/éÉZÔÇ)úNƒý1–ZW-j­i‡nå½¥ï39O–¡´‰4’AÒ¥¿üÞm™	˜i-êÏ/ È(qL­ Í
+ûÙVÑqÓe%{v&†Äœ%?óË\m½aútõÂcÜö.î'ÿûïÆùMÓB}A‘ãâ6fèïë¹!ÆpŸ¡ÔñNŽØiâÐ]¨ø$¦à„FxÂåÅÈÎbc¯oá+@æ'û=ó’
+áÁûû$J㲉À´f¢V>Ç›~˜4
+Âg¢ãÖ×_Ж™°ÈÔ;1&k«¦©õ¯¤¯ÆÝ´]ôŒýßA‘#}
+Z5
+
+M8úÏÕ¤´ÊáꑳEN¯SÅê>ͳ͓hVò¶I甌HÞèûÍÊ'¢<1ÀFvýJ…˜ËDìFáM±4©+dÿ>­2ÔìOq¢rý@é›	€‹,$ye–Ó?kð¼ÎÇw½“‚ž
+µ„Ë‘P9„0,ÕÑL0Ò\¨™×j9d™)Ã
+j½¨Û-‰çÍšÕ+Ì,dØqL$´”·KA¯åÀH«‰p–/ws¢3…ׯέ~=/^GÁOWà~캽3ó[¡à¤ÍwÀ-/˜Ñ†ž‡ª*†ð‹ŸïöT¨|Åù¿3h«ÇF¹º÷4ÖÔà¾Ó:5ᵏ˜<×´2%f”ÿNhtx{‹$¦9”ÿab¯Ag–è3Qa±ò‰ÌÅJw±~™¸1õÐuÅŽàZðkVÜìG¼ƒ>ï .ÐÈŒæÇ
+w„ä!Æy‹íu*«q
+ËÁH¥¢ƒóÚË3­R&իʶüý¦vk^(á3+V­·ï1¡ëãÉâQ‰RFfü*†I	m‹kŵ5ပ¸%šë, ¡íÂe{ÖA^´É8G¤Ø1ŠœøbÀ$ý	ãöCØLià›º…Ûé¡ÇÛl£-Ì’JÒˆT®TÁ{ü؁=ÚœC•_¼Å7{éñXe¼š$–¾M*å[N“L¿n.5žS!ˆ1úŽkB:„.=6ý$€!ìð‘þsqèL)ýŽêoÑôaÔð¾„9î»ð/¥?E6{``²\Ô ýQwãNpxùæ]Õ=ÏEZk©sSÓ4Oc÷q®ŒÃraúmŠnêDÑq°UÀ½
+Oðèª*¾¤q¡÷DÎt 'UŽC—RC‡S+F:sÓ¡*AßB[2é'KÑq6~<É#›*¦¬\Ë9ìZÜüiP²ò™t‰©³UörCϦN}ž\Å\¤È×#vyᮦû%9G)vÂÛ]d¼¨™8ÁÏÄëVWÅꃲ<3ªr~k¤UgŒR![o˜é¥ó™ŸÏ”qÂ(­äîe> ©KnÇàÇÇN`'ºó<ú=ð‡õ)heTÂá
+[ܱTGH«ð‹Ø©¢Ô,¥ÄØ%àû9úˆéXÒÐ`·ë[Æ»ÚNaf—ºÎ›lÇa*f¾©×rQ¶Døî.$–a\W`9‹Âx•9×»,£hkØYÕ³vN:Or…aWìÙì
+».ïâZŒ
+¬Ÿt.
+/îKô±Çy^9Œq÷v8p¥*å^ãCwÛ¦ÊSéín©>ø#fï×àtb骺§"fü緸͞=$U’ð¬ûŸ*ÍëÕ»é§po¢ÑàzÓª²–¸Èü}l@·µìðysòçð4²úþöœê”t§;†‚€ÓˆRø’~Δe4¤ìÆvÍѤhšw—Ñ…V‘°µÅ‹ˆÛä­|h‹:ë§5 ÙåÐ_Ën,D¬^@]ÐÊT"™G`d‡n€z€6œüO¤]`!N8C¤"yäP­sŽëõÍœâ*¤ó§c‘úN§Úþ*~”Œ#?V
+5>»’i¼3ŒêwI–º»ÙÇ,8öÅDŸÁœ¦è}žªÂVF;{‡]ó5ÕÍg¥x#„Ëca[³S©ó•Â0z‘{»ŒçÝ$&"z3|B*ï¡J)òIÓ#Pƒ£gý|ÃBwÁËyv.”€1ø,ô«
+K©nÙ>tøçqÐ!ó=Ì\QP$A­s*EöâÌÄwæ|xQô±"«T}˜ìûó.Œ€®Ž<Riê‡i•¼H»ŠþßRë’ð3é,„ôGšãáêùúâ!pÍÁÁår-mä¾a´÷",5ÑÓÆ®KIadÃ÷m "B”½.4s¥É¸-™SJþqð™XDàÀ9‰ß¦Ã‘Wí™=
+­£Ê˜!Êßÿ„<œ„!,–…uJ‚*¦…Ya7Ješx‘Wä1TS
+Œ(å€ö<fˆCB(	lžÇšlQPwMŸí¤Þ<úûѨ9@бqŠ<	øXšb§5Ð)ôÖñAõ²ûÉD׶E¡ŽpœlèOnþG7X·6åæ>X²^ÎÞ¤~ú·óУÙÀaªÝ£šš{Ñ×ÓÖÖ*]¾öèÝìõÄ7¢ü>ОÙÂñ5·B#Â"ÜM‹áä´|y„
+Hé6Ç^Be‰o}µuµö$éÄ’·Çø,ÿ"_ß¼‚©5ýŒ&Ù•Æô͵“§ tª»ÐŒFé‘…gYº)¨¶u¸÷L<É—ùµ2,¬ö{ëk„ùZV¾À¦ʽ$v1eä¹4sp0>ö"]~ð ©Æ#Å>v^ؽr‚obJ‚¶ÞŠÐ”fù¾×}¤×s4¼2œqûŸ &t8½DÜÎ4n½ÜÈÙ¤'J].ifH_"²Së)²†²fìŸöË¿ïyœ¦WÁ§xßðP‰&®Ih.‚JplÌ#®ç톷YÒ±%î#ù5oå˜e÷~–Ÿ&Pz4eÜ‚óŽBόˢ$¼¬´é“²?.b£¦¢n
+Y
+ö¦g[å³ÃCdÜI aÖ°þá9ú<ƒ­6Ä>éôZF¾ë»>`nÇ?ç=DŠ5™FÎê¸7¯ª¶Lýbï¡ióû¬O3¾©ŠN»`€#f\À÷_L€ÕRtùú͹­§[DôÏzƧ¿¿WzD–2Œ¨ªñ¢Ü²jÃ쿈‚U“ÝSqä«üÂçDêÚØ\%ˆüÙÒ¤ £‘¶¯Õôb
+»jR{¸ÒÎ8†¼é¨g@¼Yáåú-wdŒä‘éÈ•4‘#rùA,‹è7~êîØNiˆ¹Ähâªì¹¼kõ+ļ3²»5^°‘òÐ~à6÷ñ»áAt¼J©@‚.EA¤m;ˆàÛù4ç½ ï&¢k­ÝÕ'<¡æ'”b¼Xëë“Ï/g1¿bW’ÜO˜p8'ØRö/ÇJ!!ÖGÆ-1E¨îRY§¡-•ùÓˆ¨øjõT´Ÿù9»†»«Æ³Ó}Í¢œ”v'J¦èaŽ JÞ-2Kñxl8œè_o[ úk²M¹Îph}y#ˆíN¤Ô‘ÝÍ«6µ¸NF?Myìð»žB±Ž³ÒÜ÷¼	êδïH—–S¦é¸¶OÄLú$÷S7
+ eóy‘ë‘ÚÂgÏ~º8bàÛ_ÖXCµÌtmp=Í{õ#ß3jXTó6¿Ìe?õóŸ\"ˆx®E“0Øß» 3ZU]ð¥:^Î\dR€÷9¯ Øs‰æ•YÕ¦®šõ¡\¡ÔRŒL>é
+w·,žø¹ržÅ? ê´ºa˜±BvJîŠßÓ»Žg°­ ¢f¿´	ö”¯‘q>‡ ñMïí5HÜ|àŽü—Zê¼"ÅO"ï»ìªø¶¡R[íódeh,›¦„u´ð*E¾š‡ÿA.ó<ÞC͈ÒäÁóÍ8Œ»OƒSœO4\÷äϤDþeÁ™	N ÈwÊx-˜´NBP?‘”ïJ^دdhÌËçŒ[®ÏFöÒfmßïfÈv£$–x—RŸo“‘Ô©†—XæQgOn£¦µ+ç´¢8V†XõчÃ:Æý{ì”À1ˆ…—í•}”¢÷}åvr.œ
+ÈüFâã¼Ù|‘Mî]±xõ}À×þB
+|Wƒkæªó:pßFm娜W†­…Öé4TÕ…òíçxèôrŸçñ*fnx§>“\!výdšÀQ.ò¾:èâb;¸êó•YúbËY+ŠR݇´îE~ÒøSü¤6âo4»ÞÍXñXÛ-Dr	Îײš4T‡÷JG€=¾Rñ¡Íµð-ø”N.+ÄþfÍ~M¨awö¨dŸË¼6õ¢&iG)ýî©p .Û»B@–WgÒe}¥9—ÆkÓE=S¨­dº´áÂOòÂ
+Ïï—¤ÊL§“H­a¯鸚Ùzϯ§	d’ômo¯½†¯\#¦;¬5áP6ì/úúà‰r¹[fÝ!"W›NŸÁçn‹Ž¡|
+$÷¨£	
+JËî0·ªÔJTì,lNeFÏ­ýa½Aš¡ïÎ$½ÙÓXß7¦tÁø8ùU^©Œaǁ8éz[W5;°ÂIJz®¡¤…ۯܖ”ÊHysŒ‡%ëÆ”B™h©Q4‡0ºPjHó 9Eýv©aÍmÒÅ°ÌÜ°nUTŸe®:qÂßAæ ¢”$Ü×–í¿¬¹µ“bï4Œ*æ€ÎÕ¥E¯ôyÂæ%;ŽB3à!l	~Ù«šTÿPâ1dì	ÀIz‡k8j퓍:ü´ð؈ÿ$­E„E)c(_¾¡€Ew-–Û®ÁÝ°4¸¦€KM'³¦Ûyêê3¸nÙ8ÕÂXWaØy;GžY*Gï#ÝÈ/¸lv•Éíì¼8xâ ´©+pY¦kMó%„¦©¹›LåñØ\|üZÂØx3þñr êÖ8A[¸ó=(o–ͳû'5A¹*ñ,ÂÜ ý‡*(½È0@±fÍAò¦o´5#ŸTPO’îg¥®Uú2Æò6=¡Í%óž?¤}ŒËÓ@öÎØa+#U.§òy ‹cÝÉ#/ÒpGŒ´Ä8ˆ‘`1؈ç<4“eShÚP-¬B+Îuzóå-±™¡	JЦ±´t9ã;™ùåÛ0ãæŸÒ›8c÷auy¶%¡ŠhAÓÂêC;%ÿŠú>ôöæJ®åm‘3ýÕuHJ5&Ãü¾ž¢°æôŸ¤3wQ6Iõ?åE«¤MƬí盐KÝ*UKÂÛÃi‘7`Pͺ¾–ó@e¼E@'Ðw’¹-•"­6k'½Ô[˜‘U‚‹¦´Ì}PÇ«ª.õ…]&ä±µ¸‘ó~gè§ëø<"ÈãðSõ®ÉX<‚1Ø â
+¢zkZÕù{ü²"Ëf¥T’tœ) jß]ˆ
+Cl‰Û.²û²E#&„"œP©ÈÜ¡•ÇDÿl #œbΝ0®ñÏü~<ƒ’{‘Tª@¦qeèõ£‘ŒÑÁÌdhŸ[ýÄRòäzO°õñMGpXWÀ<-tÐ$pYç!?è;3Ù®“ڐ¤£¡›áR98ÎóÕ	 ­·>åAL°£`Æb79Tî¼­‰ó‹ÛRŒU’/e1£×„éÕÐÍJb¡eÀ—·µÿ´ÞåF1gîùéåÑÖ =f‘ÿXˆä©IVÈ™ˆÇØh³­¬¬üDþPm´õ@J6ƒÒ¦¡d4 at B;Ô£3–æ¾î@P©¡‘A„gïÂ}Oököç©ÕËô/s#™Í5IŒÇ`4Ò„È´ðÂ
 u>î^*ÚŠäžÅ¼è¬mgÌ¢)$<¾e5	Íòr¹¶õ{å³ÜØ÷çò¸¡¤:b¿x¢ú³· 'õÃÔsEžù]he>\¾i6mrÂ
+Èt‚»X9ÁaËü]u›=DŒ8Á[Çä[fçðehZeK¢ˆÒX—pd¨Úï½Ôù÷¿\Îœà›=·2Âý~rqÏ!ÝÅâpQ—ý>¤Hl+¿Ñ`Ül&/z8Eµ0ž1ÜBAÍûò§¹Mý	‡ÅñmESØw–ŽÊÈ«Œ7ŠŒUûÁAF¦p<âãFÒÄ…ß1ï ‘‚ŒFò&“#ªW‡tçŽ]­­ÓK…?VÔ†Nö†M´L¦l®®»ðÀ—	ðN&ÓÊœOëÞ²&í¿bêz|†y§¾Â¥]æÉ?–Í„å®7¨óÇfZWñ0dL5jCo¹×—ò§©ìyÄToF¹þj^ž²ÒCeÝÊÑ(]à÷ãNýðJþÀ8W
+×@ä6C[§¤+ïK„ŸÊ‹«þéýŸÕbÃåŽÿbž7½Mc(¯¡˜û~$‡^tµ‡J3·hÁ˜f»¬¼pD‚¸ ÂìvŠ¥Uë‘6Í°•Ìg7æÓSW—%B°,pº×ûñr™,6ìväã´'L¦ÞvâѾæú\üiä~ó„T%v•
+¥äˆéÕôÃÊq²Ý‚ö¾i0²¹£Ô#™¿Ž±Ñàˆ%ÆY»Žß”6ÁmÆ÷ÏóR´²…qü,B‹Yü^ë+‹õÜÅѯ7íõSÇôiÅÆЕÔA‰¨zŸcã8|Ú{}¿Iþ–¡è½Ã]YÉÙx‰Iákd³ÛC/0íLWãúpÛËÙè„MOmÛíKgçS+7~9ï²Û´”íYÌ?£ã†I=r»Ûw1óBëkØ̶”ZsN’ë¼¥I=ºúøýÆPÊ×çùfÑ(·ùtž»~."ÀÒ´öe³“úáR‘ÎúH(óÁø¼šjÑdf…w8K’{J7Љ&®ÖѾÄs¬!ý³ÜÂäK×<‹Â×z}#‘•ýåz
+¡ÌÞݾº4/ãtUÍw»jï‰üEGÃgÓw‚ ¥¦$ïÓ¥êÎ,7[ðÜ§‹¹4,«¼oµj¼,R‹íP
+tŽî<¤ãRL•5&Æž¥µä®"ªë&ÔÑ@zŸa‘-…¤çÝ¥ sÕí±çfÅSqMÛ2œêˆ€ä\WêQ6–„4ª0UB¦é„(^/ãpc
+î÷“ÓYÌ™[Ç^…7ty½jËåm±Ÿ$'ÓÜý9åaj„Žz*
+¯ï萤Š8Â…OW8Bïßñ†®Â»ôxúy8Ї¼u^XgœÜ>†ªÃBë>vu#ä¶ÒE‡17½p:ŠwÐŽ°%_„ÞùU
+ßí´dô[@¸·FGÊT†Q±´†s.±žY(J(¢¸Ñ½T‡G‹P«mR²êÐMÉ\>TcÓÛœ1QckÇ¡¦%l;‰Np«ÒÝÜiíGôuÒo®‚õ2Íý¾;¥¯þ¥ßga,¥ ÷Ðñ‘ˆ-k…ÖÊ%ešì`á>gO!šßð .¼7½óôáQÊ“FËDÉöïc_~ÝÆëtTM¯Í€3\»á~:ÑÍOEÀOúe­c´8ÕZJY
+'À€mœá4Wð©Œ{¦UÄgÐC\‚~µˆœÝÂÇhåLCÅ»èn"WtÆÅÑ;‹²VQKòI@þ4	£_a
+öY:*B”jë—ðá›m½ß{S¢ÏD‚Cã²C-®ÓÑ[¤’Iˆ
+¬Ý4MA‹\2÷0ÃŒ)'@8?S,Üó>™>þjÿT9صà¢9oÿé’iud9ø¿$väfG¸ÿLá'“>b©)n-¡ˆ´ÀùÊðg‰å‹cßý Hþ	'•N1	”óß
+º%e;£
+8*—_ýv,Z¼ñpv„‹Ï’`˜ÅGø"žŠÔF1{UÏ[’%Lç^ByTüg$û4%(ÀúU¡ÅG¿kSº&}ïQIsÐûgüvÒk–
+³:&4
+M’•ºcu÷Y©Œ_:qÍ_†ÛëbÛ¡T°Ej¿È¢é*¥zÚAò`‰Îë5"|ðÌsyùë;Ð΍›dn¾mGÉ…±wFW-n›vh…]Ëawû_¶
+åûe
+G±Ýîdî@ L8÷¸3#«§
+(µõq"WÅ7ô}æ§mÈj¨¢9BùƒE\f(D‹ÛGÏÓö•(½£†UvmD-ÍSêP‹û¤åCß{Vc$ú"âL»Nœ˜êŽå¢ó£ÿPîÜvLܲÊ	 o˱£É·u×7,MMÙ¸ñª¦ÅÙS](@˜©JÅÞçÒº‚Œ;5~mV¯Æ[p‡X T2	ïõÓ¤òblþÍøg¾ë‡‚\FøìôΉùBɪÌv„ÇeF&_h} 1áó²h‡®j6‰<§Vô”†£p'aº¼ÞUûE™™bú9’Í
+·oÛÙùÆýZ°.LÒìĹÓ9”~©ˆïÃ5í+w</…¬ƒµ÷/øÕ o ¼ôñœék‡„|;æ¸/#šâàeIP½˜9Ì£àopÌÀlgXôÉ̼؋÷d¡ÿdˆæí¬š™ìAÎX¼oy9TæOtÆõnÑP˜ûÊÒšO6­†Ô0C§»¹˜àÆr­ð.ð+œ¡ºYøF¨AŠºû@¤Åì…ÕÎs/íäìÐ82a"q÷æW¦rrbÒy7&'§øÄpfÅw»88Ù¶)‚KäîiÛÈ#‚Ö	˜\Çâ’“½úî$â*½U”7è϶Žºµã||óm©HåÊY™à9=øL»'&›²KÇ%¬|Qà`™÷K@¿šE
+o1;@>ò¡‚G
+šÅyy±),5Ç܆†k³ÆhIoËÇ8Ë'êm¹Ö‡™„RRF£q|ÞJul“=~
+üˆ²î”0wn>wP{-Wœs{å¸éŒø
+«™u)²©*-wUÍÂÊsƒdßnÕ…ï`©³X{7Säö
+p;>(WØ,w³¥ ߏxÊ{œ-»Z ó<Õß„Ì]©N¨ÿ›"Pú»:)wÁ–+•8>,Û)9=ýpÏ„ò+Œn¡3yÝù‚P«§ý˜I¢<¯‡Ôä¯4êÜì;7¤Õ¸%4ÌÎdãcj“Ç^P:JQ"©bëFï&݇ë¦
+½Ýý–/®»'¿†™¯o¤³_cÄWAYÆɁZõ:ƒòÒww¶*8	<5ÕXAŸà©3‰@NsÂÊ.L¾b”@Øôw¢KPü*‹þì•Òͳ,´ó‚þl<¼úAïžLî@¶õ†•È
+kӁìúûakzõOßD£"paoŸk3C5œÒ__`#«·*yòg4·™£…Ü°6¿6¥DwὁX×/ *^Ý‚Ø:»rªB#
+ÌæHêpÍ¥\ZàRYÈ7µÆö¼öSÛXç®Á0üþÔ)ÀxÛèןÁkæžÖ¼Xª\`Ñ%JVGhO­<C_Òë¥
+Zr<¬ì»™2›àMî]n΁lšò¤Øs//-‚—ƒö£…lE”ò¦àGÁðÉÊ”áF0lh–TeÞ	_´†¶¬½ÎaÏҏy¸b»;Ì©*½ýk¼+Ž#$¥(àüïñbÏݺïš¦—kQ×3ã[/™÷šdpXß_ïY4	ü)Eºy–P:{.­´Úº3y¥ÆäˆW
+mZxŸØ7Ù=°ZS=ýÍœîßÈ«¿RÆ•`,­enATÐTÂ{.06üà C©‘7è9,-8s¦“êæS™dcix¾pù/¼ïîÑ"ïB.¡;Ý¢	Nv9Á¶0
+Àj"9b–+<ñ	bšÑcG¾8…zÓ™²=H&
+O‰η2°u0›ˆŸúÎt•¢kÙ.^N.õÅ\zØsâc×(&5oˆÈ°{X¸Ö=<«¶è©–Zäši§5¨50ºGø¤ƒ¥wî¿ñ=âÕº¹xgka›'JÁ]›¸gÉo`Åýà	Œ"¯RáPÉqD¶¾“\?†¶†Ô7t6bÐ§VZèÀ…Êy·x1Nü
+-V¿–¨3•\É‘ŠCZ ’ÃÕpŸþL,ï¶Ì®E1¸§…‘ƒ1ç¨Ð<‘RPä•m“qîûVÊãijLÌ@âå@Yÿã‘ʈšò¤14lz^´Ë×_Ð!*òÃßSÕÚ¾i|˜R9g
+íki%3Œ]Äš€+ûÚLA>ØîCÿJw?	†Ò#aùT«|U¹.4F’’±ŸMp·wä«ßߪˆÉsùðš š(þ…¹o¿;‘È.*WUânOü‘5	;!º‘m€7AÖû¢'‚¡I¿H€Æ8xû*ÄLH™Œok_ç@S/عX¡èÒ$ôa“VZSƒyzK"!¿É_H›ïeXœÿ¡|!ã1í-·S”Q+P¼L±™RZTþ(_^Œk~í9ØÐÿ쳏Ig¢½àñó­b±­ÀY˜'&¼”Ψτdqk€Î×WÄ\×ÓÍ5’fÖ9;y1Ýb¹ÖrF0ì	V‰n‡DŒ\[Т Þ
+\óa_K3òŠ;*úvƒURcÁŒo£¥1{'ˆÆX3 s‹ÿ1]e܉ w‹Hˆƒœð6l ¾TêÒG`0\‰SMsä`-ÿÕ„oê…ÇYÁå½Á‡kœï>}ž¾Ûï{Õ.~8%.¤Ð'2Á„+Fš›£¶þËTð
+¿AÁÌX´ª’	¦¶iÓ!9@òšsÈã£ó0"IJSªIßú–‹|O‰EqÚ‚†—¡…ÜÁ}«÷³ÃÙ´ ío@]ÕTÞÎŒ_+yhöG‘¿…К§ˆ7‰JØP²«A×õÂ7XñUsé($<*êN0jªeõ¦’u7¬~ÍÖèñÓ Cß­FhJ
+„ªß'£ F(oWâStÝÍ,û±<øo >òçÊݳ¬Ø•ÝpÓ:ckÀL)Êêˤ‹«y:,Do%¯mróÖ`š;õéÏ£ÓÁ‡C“Äh!ò·W
+
+fïÖG4
+"Å|8˜,_Rî-‡Ù€9Åw‚#¿Ða½ùsX™©õkCu\,Ó²º¸ýð±Ä[˜h¦ \~ðv›VFòqGÒß&Ÿ$eõ§ü¢òRªÈ6žX€ëŽ|X=ҁ&ìސ ŠŒNª·bibl	»ârbºy´蝥ùñá½HÏ>Ú_¬^|Ïcá†Â?`¥Gk‘»´)eWÄthèƒkkïð»s^ZnžÃ§­‡‹¾-¯•Ô•]­[8þ«]šŒÎâ:·<òú9’áwi‰½c‹xäŽù÷›%m¾«7Jƒ‰	˜ ;íãbH=gýNøMæ”Ñ
+5ñŒŽòÉ‹ãéÈñûGÇïµ²|l«?“Íbe$ðÍÈÓ´ów˜%SH I‰Îaävƒkþ5=)³=4MNz¼¦¨5x¿÷±ŒÞGÓ'Û<Åaý^öyí\:=iÇоQ‡j]r»—bF-¶%OßS¤û®ñÕ¹÷nP¿‹¤BÔ=	-S¤^c§Ý”ƒèMôÆ"sù<ö
+¦*dÞŽ†t=*ü<iM¦ƒ¬½–HPÙ!äß4*EÕž¼[=Š{q¹.æìmi×G”ÁL_g&©ÉÙú!nßT1pÿc4ŽWãaA
+HRœ¿„mÇ·uK=–Å°®oÊ–
+NÉBS°¤:!}ÇPÌèb²H'ÅÅP®ÂÕŸ7*{ˆ•årbïFßËÛqlß퇆^¸ÛuŸg¾¦š¥5CR§ì±ÿÆ6Ñ‘p®Š˜\¦ö{ž,°«1° ¬L<ߘÿ&¸^¥à´pËÀÚŠÎ_ß<J
+Ò‡Äò2Ä|ö¢Íº:¯ç®,©|ûf˜‰„d&²h¨ú:È$ÊÊ	õ3z†/y]6…ˆ1‰[¿´Þ^[ɸ
+fá<ü]Iî}Nm]®֐`#óY²ÔJƒ… «Åz\»ÕEnÁ崍 8·™ÙÌ	Ëõe­ówáœ(:dì¾\W]³^áÊӌݲ;(:¹‰é±æSÉË87M¼
+„.DH‘Õ©Pµ>‚êzZ}èž!V+û¾aËÒûÁ%<¯¯ÝtSªý%ê
+ÚÐďbœiÊ‹b0EM¼…xTòNS²°ž`VtáW>¥^8QB?ª·íAïj›ë–sW/ÈKÕáéÇëT§˜"4xNöƶ*È«÷œ,5GŒkÒ$?ªAV˜ìǾ¹Óá¢z õ+Ÿ®‹çÓœ¯ŒÆj$JàÏ–r™1†Œ€üåóùZ8îë*hoHV9&(©Â
+WÌq’<	×»|‰ñ»à¨ü_<‡?¡	ø“Ðw}þˆ­øå*1؝ÇY©½á«2÷|cokµìNHŽ_oΓŽQ œTŶ˜ïÅÂ<­8AÄßî)wbIÙ$p~3Ò$Y­¼ÙˆÌÌY[0×X>š4žv{ùúíNO,}œú6¼ªD~w˜äPÿt·ˆo¼NZ•#à%Q°d)ëƒi¬Ü~ßm5Ê!å>Sàê„RÂ
+ñ„MÂLÕD$ÇÙük+ÃÖÏ>¹¬=úªš"ðH…n6óc1׏\ÙÛçÎë,Í/nð’ÄA£Ðû=‘nG±O§ðºo¶!HUÜž2èL±}ÉŽ›øM`‡œuh¬‚qJÊÅT¸ö‹þE–©kàC[³–½Ç*\¤L¸H€Ÿøõ‚šœ$õªÇÝ+è'AmõMWàz˜L»8yí÷±–¯³NÀ0Æз‚ͶóHþbƒó¯t¿\§:IçT’GV ̵ÄÓÈšZü].W“&i’ŒO-–I)Èýñ
+a+²´²çŽ=8FjKPosMT}U¸nÀˆ<`3Yb²W&¹ !ôÿ›V¡ý$%›jSVg:çÚ½°L*N¿ÈÝî2Á›SÆ6îóW®u"xÝ’d*™ñ8­©°2«!µ¹)YƒˆïRW¼ëT2z`k‹€öŸ ú{KŽ\hׯ$wú[Tþrqp+â‰éf½’Öï(@pZ7?!p€CV[á«¿`òo{&Þ;¤ÁQ²ó:ªí†å›`'Åe(…&zÙs…oy”x )|6æË­ÒúÇÜàîÙÄùZÕ%S™í¸ÖvÕ|ž7\qfƒ"ûfœ¼f—™§!o!cyÌnYý–4oY»µENä“áíÙdÆY{{îJ2Ë
++§íQWßÁ&~Ы[ê­.*Ù ˆBS3êE3¼ÆâJß+~˜7s&)òž‹ß’²Øb¾¾ï¢ßÝ5pG*(š£ÍR]EÙ!îïRè¹F½S`Ô B8k;–³¥™‘X^t¯'¤9H°åýž×燗ր^i«r_Â3‚ÐܪÅ}èúNÏ*Ã2°Ã“z°VÞÀŽ"{›<?öý±!Ì`oâ§èØ/®¯Ýa¿tz*,†î¹æŒô.¼E¬1áÅ+w:Œ®¶“ˆ`µË³³<u²)÷ùgíªE,Ì€²°J„%‡„wUR„±Î9üºÎù²¾3"â0Rqî=[y±’õDžÎ·Œ“#¤xO::0I*Ì1³~cYã”zÊ*±	Á…|p)»oY¤æ—¦b‹cØJò”;úÜ a§0‘´ä‘¦N‡E4lKSR½14â2ЙÚ,vLc	Ôþ(Vª5‘qW•ÕÞ¸2êP8ã/€“1UíCcÔ4¬KÑ­š¾ŸsÌЧģׁÁ[’ÜÌéx©°
+ÿ6P»!œ—Œ,ûÑ$²Ë°_Ìöý·6s¸¤¯r[µhu´¿oUrLòáP½–®€áødüènãRK,+}Ù–Üþfù²“œ	F¯îö ¶cHuڍg¤|LZ
+Y·ºÑÂ#ƒ3zLjj{¼Qj!•¢'ÿ½o"º“†ìa­²WÖI2冏‘ÄÏ/¹Õ›0¸ò“F·ÛèŸH%ŒêjHYªÃÚÞ§cÜKA)Њڑàëõhœ‡˜†qÇÈîeK¥î_I}ÕÚJºpbìW{ÞLÔæÆ¼DVå×T⟢­å@LµÃ«9óDôÏCB›kÖœKŸ.¢*Ø#ýÇNw<n&„ú¤xÂ)õ¦?&áÁCÇþL°ÈyUZ
+…#"»E\{wœ9
+IàhuœmG€ñ…$RÚÕ²OrRËy”z©	¨µ¥½a'Šìÿ6DXøq´×áµÙžºS4êª+øuÜhfÙùƒfÅgÅé÷~eðÈágªu¢½KáÅýc]2)(á}£>}f3дþ°, ¾Ò–° 5Á#ò}^AÈ‹‹ãw»-ÐÌ4¢ÏZ§«Í>8;Ôfjðôg׎£…VヴÊcâ᧺ß0è5ž
+‰-Õä“‘$u¾§¡ãBªŽŸXÛ<Á½ñßO!å5ZS_{"BEJ¥ôϾ!3ú*9öIl
+÷Zz-®‚XÏ`¬(‡Qî+³«‡¸ë™îÜyl/i‹”H÷¥ûDYͧ&óáÞb
+¡‘ó+´•	¥tCÛC>%¤7?PÔ
+€/ƒðÈåCÄ~‚¥b(–h+‹‹Dv¬b“MúŁ[®½tC*÷ùuþ˜²”Wg8ÀËö.šOö F8Újƒ™ Ûá½vR*ëÞq/zãb‡¢i×ÂýýgáŒ)ÔUh3m¥ŸÆb¾V Àë`ž>ÑØ¡žq½'°[møê•>”‚ÇœÑMÙBMzcÆoRmÃóìwýOŸŠ–‚16'v£tÖÜD‚ז惈i8[ö#ÁÏUaœ¶¸LüòP›Vw¾P²^»³\3<d³(+Á˜0îú’ðBÑ.ª2|”HÊ6d0q¾æT	ö;ÑÿUGìSdz…™q"›!/îðï”7MV§ŒhOcfµ²áʉˆ3&¯³qg Cn‚Ù¸9"-šk.ÿ! ë-™Ô§p…ã”K3;mª`„÷-ªO•rÿUê,¥c=sM¤Æ¥üÍq”ÝÝæ½r('2¡VôÇƒŠë¼MÂþ€•*+ÒÌ‘“«tY"¥&s¼ù—MÖ傲ªgNÄ3Ù¹3RÖï¡íXÈqÍd·…‘;<b.‰Æƒ`†Bù†|ÊI	j@ß©²ˆ8šgjî¦WÉÌ-ÁïH0- ~ý»•Óai”½rzyJÔjŽq]/‰¯m‘[¤ò(†LÝADÒUÕ8ø·ï={­ÓìáŸ|¤†{ð¤£ôïdÊ<v¦Y¡_mjT2„(@Ú	;?Õ•r“ÖŤ@¥ƒʤàí:²D%ØS`ˆ	ês5•6Ù”Q›È¯þÈäŒeÑ”Ó"H¾“EÍý
+¸¦ü,o [‚ UÏìÓ¬›®¡\Ad€aÿ™šÎ³S0ï[”DY6iˆY™£ÈºÂ
+'¯éè÷TÇ+qE.¢”	?iÙ:¯Ð‚.dAø~Ö¿0#ÇkwŒÏGæÃq¡ú_\¢òŒûhž®j+úüjâ—¤0V°‹¯ñ.בA`CÑÍ{õñ}èû&y(xUÑ®jó§VX>£ÖHÆô°Á™Ý»ÅÖ]%«ÚîÄ„ȏM[ôÂíí[ —²¥©NLOB1—3#àå„¥Ö17°ärL]ÅÄ6èñ·ä¾ÿ6l.ÑÎÐhŠkqiÄÎd#ƒcð§7i—%Ι‡Ý‘×/@dX´›MC~VÓú¿Ý¸Lº¬]»¯Ù'tbw¸0”\å0˜^w qàñjNê“Cr2a½ÑöejrPqªÐ~€'ÈéIñb}Û™ÿ¼?	øh¹ÃÿÓNºý‹íüçV÷•<9Ö	’dx¤®®=¬ÂþÞa+¼»bÉcôÞ¼?ÛSs»,®Gi Üa¼²|Q¦•>*׺F™ñ¸3ú3ÞÈÝþQM³»R…A–ŸÅ̵-òç®|•×å|õµË3ü5ìpÄÐÙ ÊŸD	Qâ•NhÏXµx2Ë«NÔ7Ïtvjœî)—©«ùƒ¥ÑOUÝÿ%Ÿ²ˆµË,æݨjdÊd
+dKè‚ŠùŠÓuXÛ×ý¨¾Ï[ï¨XãÑIúØ ×Øay¼](Ëöþ™æ<áîõŒAÆâ†J°M(ÕcÐ?küÚöÚËZò‡¶¯°FÍ&:àxµ$OI
+gf;÷QÍÔ¯å’in r“ÊG]}°’NCIï&r0Ä“E£‚[éòf1ù¤"}V_ZÉR{—ЂºüæßÅÊéâ’”þ|"ŸÇFJX‡}8O
+‡iß?µ•ÃM&QNÅ·Ÿ
+
+‹äpûDëA¤Ë!ó?½ëWšŽ¹¹>¢¸§Àn*ªE¾<–ˆõˆæŸ!Äx"E{„Y",õ0T™Ú»!æ9Ä¢ôMUÏ6>%.Ãg€¶âß@™ïH•EH`:ÃhgÜ£÷Z.[Xù™á[Aª´yøp•Z0Õ󝏈8kÇW拉‘¼­8ˆ’sCü6ÇiºÆ	Mp´:oÆq#ƛ߀úHI$ú]^øáG·YsuqœLOp­Ÿj¨ Š¶Nò#¯(¨eL¯S3†ñ]-.3”8솴éeÀØbÁ‰8Þ2ù
+[74¼Ë^=|ãÂeÞ½[þŽTê-7M¼Åf-ƒJ?ÿ“#Y2±²28/UyN«Ã;ž	;˜;Ø'ÝôžJ´1Õ”Jd¬1%í,õM
+V ‹ ßûðÖÚO²§è!\¨.
+>/‰Fn³r]»jߟ‹µÖdæ}˜’œ‘ôŒ‘î„VEöQfÌ,¡ÕMÈg›ÓE™¶oyßg툼ãÇúí¼úúVí
+"iìkñË^ëNÎäîîÁ4UÑÚ}¢FyêÕ¾7|ÀõŒ‘#=-¥ãJÉ8’ äÍh$ÙO at tW|çOò âÇí4Ü]Š&B¯si>€:þ<e}œ™
+͵.ÃÃ2fžsrëÑHXŠ¬WlšÏóBeHžBjg]äö†ó~ŠÅ¨=Æ]ÜÑF
+îf•m*åÿ}‚òÓr¯Sô¯F~‡Ã:’ƒ,OUé­‰ÉÊ„k•aO
+ü¤°fDÜt$TCã¨[ÊÒÈrm•M>‡g:+ˆðãý>¾y
+‚iR⇭ßÀqÖ÷q•Ò&±ø×+‚|"š€aî{_.e+ÍÑêOãìuæn¹-ª2	-óW8’xbÿ©»(™–¨©Œ"±Ñ1Ü 3ÿVzx“:G)”mÜjvEÛ»A›Æ’ûm㶶6º°汄…ù¢OT^>³
+·ÀÔñ/LÑ›ËÒ± 8W‡H7²œuoþi@ÎÂï'Á˜‹Ug°ÏàÕ¼³	ö†Ÿ±Dœ‘˜€/•“øò”·úáÌÞ‚Yk«ö…óK‚‹¬-hyð,G“1Ò2ßϝҌ‚Ï*R­oŽ¿:Úp®§QxiÕ€Ð`	Jb
+[ÌáÀ»ÁØÎïúÒÃ!6ùG ØønþÛYüÕŽVá ™Ía΀š?êK<P0a×mw,-üYvvðý®piYÙå®H?zn\v—õÐѪI³±]qjh7Ca°“ݍ!
+ãÙÅR
+Ò>Ip@â¡	p×&.Q*7dnhtsóSR‘SGβ(´}qS’¹Ã
+6]R{¦ùJ@KŽà¹½]¯µPž·=¯\šL€…—<¬…/waVÊâ±êp‹à—ƒÚSM”ÐSø†“ê»·³ˆ…ö~,Õè¨=ݐh9ä'â1³q" `ù€}s–ûægïþZZ%ð]„ç$`ÙaÌÑÉÔDd:ÎÊ?´Ê*˶E&ÈP!²Æx…œ[§’ 6Øl·ÿÂVÓW—ÛðWDõ•¸ôί8š…󤣇ÎQÙ|"ý­Áw^«™gB>L^a¬¢Áª˜ì9DSþ“¸«~õw}ۈ鷺º×¬Obÿ¯ÌƒÜ®P(´¤En…ëT™£ZÙr@œzñ–j&W~œÇŸh·Œ	~º0×4Ä'xfå6~udÌ#Rãûæ–"öèžB#ïê&Ÿ&—ÀÊ¥ÃÜNF[¸°'&J$(§s“Èxá³ßî:: ,ã$täПçþ”ÖLLdbaʼ¦Óž›Ùÿ_;öÝà8pœTöÙ[‡(’qöÙg³Brö,ûÎÎ8gd^’}ÉJgäR¶³7QGœ23óýë÷~ÿ}_ßÏx?€úHV7ºpý2€LZ0¾!qí½E%¼ŠðkY8³Th•²Œ2£™³>wÐú™Ï­¨í¶ã­ûØTÜ7éŸâOÖâ8Îì§È/3§f¢
+š}ç"²5î>px¸a¢…Ž=.PBR‹ZVA‡;¨=.£¶‘¿O“åÍŸé¹U_ó8ØÇ.d®ôþd”4]4XrOCçøg–Ls»×04ÚGnâÌ["(òÏÚÏR€TðÐJEgÖúî0ÒE;&e|¬»Zõà^[>}Ǐ*¯c¡ÉбØG«[÷ÙMÕŸh¬‰dÍôUæ½½-÷K¥Ù/{¢ž›Ù8~kŠ3ÝÓí
+òÁžéžŠ~QSÍ¢Œ¢]
+{Ÿk­{4<ç%‡_èJCÄMáãs‹3™fƒy¿)eêÔL À+›±¬Of‡Ý!š™Ï›øñmzkñÁüyKSoï¿ÿe¯èx7¦„'¼Œª2¬À5M±h¶5¿:¡:h58yÊÌ¥µèÛý{ÈfðÒ.‚ùA$<Øž_ñ^5GñÒª_C õ¹Ý«uqðg"™8"+²ÕëZ¿¾ŸvرCKAŒR|üiû #H¨tÙË›¿×
+Þ˜zÆ•ì}¿…P¾†ÃøOØ̆€ë6.×C°ÖïóSõajs©Áô¶RÎ9–µk¦Ö4¦^›~ØÄÌ)¸OýåSr²(3‡^ï«€Ö$õŸ8›¶ŸµY$éÔˆï|sšÔBºWEÁùŽ³+Ì]G´¯ûÈBÜš‹ÅEb£UâL>"»Sš#@÷›íZp=Š{ãéƒp*+úé9ôWl&ŠÿH¹úÆwÁ*{z8Ÿ7#m` þÛ#Ð8a-áÂ÷Ÿ…ÐiêéÏÉ 8fL^C¡|Î,´Ôì»@z£µï‚³,þ>ßZs>>°Ê$%?3ä1Tìkù5ï$vðn—×ïv²í»ýÍq½‹A|ùÚç“‘$4	½VÚ ³Ö'3¥ÀêìLÖ¤{äö?ù1sìUòÄ¿Z2ò0$·qÀSf¸ëŠ‹óqWö¹Ô{8ûzPgø|U¥m€EZp§Ãî¥Ù–TC]©ÿ…Lz;—üŒ>Þ€,,?9¶ˆW_åyHh%¤L”${N.©.5U^SsÑŪI$ÚËr1«·„<þ`§Zl’§ÕXBÅÊ~á)kzõ*‰¶sé;Í‘Ë8Êy)!H,™•§g@íW90”³TN\åLû"0I˜ÚÑŽ¼zän+<·t˜âÄ´ó„\†]iì·ÝÒÛbÑàR}Ø‘ئÅ#-åE v4>Ä^b®|³£¤®é„±D˜=wA…}Z?	˧=£ãì´9Œ«‘„ÈðWlmr¨†r˜éñ„ttÅYîWJ¥$éå&Ü(ùÉ †pú Õ’X^_iÊjÉ5w¡Õ&…EäJÚµÝm_v*–ld+o3¨GQ–_„ž¢ºËBÌ \¹*Ó×/·Ùž5îàÈqtíÖ‚oÍ\áˆd0>í8DÙ_Pž¤²ÛMµ¢ÿHìàR0z:¡r!QQpÛNµ.šŒ26xQÁÿ­=ØdÍÕg¡+i2T§Ð
+“A#¢ôg姡Vh¼w,6àóA‚!âG tOe·>öÊÖâ´†éÿþ†p² ˜ú—¨5¥­¡)#"XØI!«åàÍ—¢˜gMQmHäÝáhÞyM]†BGNôÈ“§Þ”lç;÷’ûÌ·S 6´kI%ï úeç-V
+†c̺$FÀ¤wÒtk
+íh³,¨ü-œ¸UÏ%›^^G¬z8 X(Yt¬×ŠjV/k
+µwÆúAÇŠ 
+(tÔŠßÎ8?¿bÌÒ^G)U‘\õ“gj©#a·u‡éÛ¾+¾Æ6+à{oãÖF4ˆ×IÖA:VžòΗ:ÚŽžï‡¥Fj7Lùϵ$ÂÜ|© N•øšÊ"'7ÑrÝE¶æÏ’æß‘‹Ì^SáWc>Ÿ?ËÚìÿj÷i3Ïí•Ù‹¡f[®—ÊØU#ÀÄ»›à<ƍúê@‹&ë?žÏW¥ž
+êþ•ãF"‘lb=¥xÕ½ŒdT³¼óŽÏ¦c‚(“>ðÒA? Iõ7ÞfutMs  ÓM}@éä›&7ÝC?ÊåÐlL´O¬U!ŽEùÉ”ôËp ïñ
+Ô÷„’'‘ÎLJ¢ŠºKKʶoßIϺ®\÷§#ÜRfïéºg=Ó¾²f®– ¤Ú|Šm8¿¿qßìT•²»'Æ>²mÇ»¬®Œ1>ˆpñ¼p¼ã¯ºàÄ¡š©‚q€{Àcbi1Ë¥i…Åá”UämúŒxCe5#è…ox<´êãp½¤/}bO??ð»ˆPä{Y!ê÷
+–›7»©Õ°»[à@.g“€øëJ÷
+U§´Ã°¤þE¯JVÁ‚ú•+t{XJ›©vüK3Oú°Ë;ü’
+lYe3¾­ÜŽLú@ÀðYÆŠ	ÏÛ“z’‰ T.;W²u/9’Ÿ%¾ws3&3þÚ¥R@dGpFÈË+’Ptþ¼T—„—°¹´XkºKd™®Õ¬sÒ~¨m÷oh}àÑ-§ò•ó«ÍV©.“£ð4eNÂŽsÿ”˜h%¹·ìq ›ûwd•ÇØ|öf€sb­¤6‹/£çʐyµ/ã;é‡0‘*/†¥7©‡'iµ_©“”jÂ*»A•1ZO"?ê{É“Žt–H³~ó›w„;ÉÔs–ðtÆŸIÝÍ“î–KsÏ.¨k¿N3@©LÉëÁ׳xÜ&XŠ
+ÎÁÕz.w¶V\É<W Š˜çBϹÜs¼µÔÃ$¸—ηúë>•˜ØZÒ“„¬8 $^Hù[7-àÀ߁§u¼ž»–ˆ7K,%bLú50V†ÆÉÞ§Ù2ðüb«	¾]—„¯¸1oY²óÈÆ—œwý¡O½Ž*bÀçz*w{„é?Y™ÖΕłe½äÍ%o> qM9w.³ì®½n,øï<¸5v[šÝû.Ǎ3%°öinøôTß…Ķ[K/…k í.À£ïÏ¿ËQ×u½Qa7ÞÿÌ*:CnÂ5׸ֺūtR»{'ž±Ú"UƒÄd<¹ò1ËC¾bmÈ4Ir/¾‰:ù±Ð#ó7°˜¨éöѬu¼rþ}‚<Ò­ü–Ñ Jt%ë~Ûy„ÀÏhhi‡¾•|–ê,HWL­9kZ	lÕàÉ$ÕìîÿA(í~—¾…|˜™µ€µ«B³óÈ~º>~û‰ªæ"6g,¾˜ÿ؍7ÿ£÷žbÀÏœÌ6+˜ÆsÇÉ—Ù}‡dpÑz@ü&wøóúu”vÈ•K èSíŸ8VøJÌçÌ—O6S1aõ÷¨juT„š<2Prþl¦¦ö5aœz)2ä[úµC»/ìϹB=T@F, aVÿ¼Cóä«FµÃs±¥	‘¡™k uf5Ú<çÚNù£Â**öÖŒ]Z¬:_Æ6>Hâž1ÈægöyÏØ%ÅŽáûx8ìŠÞúÐÚzò±Š½—&ƒ®žqã\‚…ÎÊçeEžÿº«R	b+ü‹5Ã[´wÿº˜þÍÑÚ>¾‹Åѳ%´·[úÇJY|+¹%F¥Õ=2Ýïÿ³ùžõ–¦b º°eƒÈù"áˆid€‚r!Âý³MÜj~±¾Ï¾n´¦xDæ:b&±Á&áµ9c ?Û4³Ìó?­_lÔÓ#zAÏYªuâb,HZ]·…d{ãM#Cþ
+÷<ºlcënzǹGéQ‡ç«>žûtöqÿãE}}qóÉ]¦tý \ˆ‹ûò2÷ÞUó?ˆ/ÿzLøŠWý cUбàcíôå_Æ×íˆÊ“4¶LXÖç¤'Y­Ä}—í|S¿ú1þL­Ì	ßœF2{zµ~¨fêØؾ&%ëÊçs9˜Ã·z<^(R½Ï Ø¿-BKX?°‚0€Y-ëæ›J:¶F¬IÀÇçÝáÂø·
++Ót!ä1ÿÞ+Áèþtyæ½à8qÇË
+VÙtv¯bö°™3Áòz5‹BÎ/4úãþÙ¶ô´B÷[~ÎŽå­ AÁ°NŠ>N¿EM–„Oÿæ<y}FnÉž‰ï
+õî伨š†¼–?m­_¾§€ßÏ/Eª¿x×¾’êŽÝ“øLZ2ÞÖí­¥è`î¯Ý®vD|~wv…({æ‹^ŒäÌ@Nu[^:7¥×Üdôô]Jû¨¶ä½Œv6—‚u}>v’"OpW¬&g½Øimž×Ëþüþ¢be‘¡e"Ššlâ·0r2Ùˆ™
+þ±Ê†ª¼Þñ¥Ñ—Nä¡F˜æýØÔm½‹PÔ Ùö4–eL_s½£Ïd#ؒىv)Bs¥k›A©¸ª|Ì#ÈN´´P™µ CÁ$žòB20S’Û—Õý"áeål>}=yQoÇÅþF#¯ 0¥¡=8«Ä¥’wSÕîý+Ö”³ø›Œ9p48Ÿô0(ò;Þ
+(ãwY=ô‚Ócõ³õØ'oˆ<ÐRsÛ=Ìýg†IQ3ÙDkÎEwœV}ÔuÎ_†)jöpr=g`߈š‰+ºþäáÌD<tb
+î—X„é¾-ˆ¨èå‹3ðtälÁ`O¦¥†ô§œŠmfIõËœñÙ¥Ü
+ïëא‰Ëhm?mDÝw»ˆ:VJFöj•\£o¤¨=R䬰ödÜîDÈ]NcQâdE}M2ŸT›3¦w40Å¿§ô:$´y“1$X~ÐgúFó?à¿põqw‚û:xÓüÕ"]éendstream
+endobj
+132 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 606 0 R
+/FirstChar 2
+/LastChar 149
+/Widths 616 0 R
+/BaseFont /EXVUAL+NimbusRomNo9L-Regu
+/FontDescriptor 130 0 R
+>> endobj
+130 0 obj <<
+/Ascent 678
+/CapHeight 651
+/Descent -216
+/FontName /EXVUAL+NimbusRomNo9L-Regu
+/ItalicAngle 0
+/StemV 85
+/XHeight 450
+/FontBBox [-168 -281 1000 924]
+/Flags 4
+/CharSet (/fi/fl/exclam/quotedbl/numbersign/dollar/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/Y/bracketleft/backslash/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/bullet)
+/FontFile 131 0 R
+>> endobj
+616 0 obj
+[556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 408 500 500 0 778 333 333 333 500 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444 921 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722 556 0 667 556 611 722 722 944 722 722 0 333 278 333 0 500 0 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 ]
+endobj
+140 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 617 0 R
+/Kids [126 0 R 142 0 R 180 0 R 214 0 R 259 0 R 304 0 R]
+>> endobj
+382 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 617 0 R
+/Kids [356 0 R 384 0 R 427 0 R 481 0 R 485 0 R 494 0 R]
+>> endobj
+557 0 obj <<
+/Type /Pages
+/Count 3
+/Parent 617 0 R
+/Kids [525 0 R 559 0 R 592 0 R]
+>> endobj
+617 0 obj <<
+/Type /Pages
+/Count 15
+/Kids [140 0 R 382 0 R 557 0 R]
+>> endobj
+618 0 obj <<
+/Type /Outlines
+/First 7 0 R
+/Last 107 0 R
+/Count 6
+>> endobj
+123 0 obj <<
+/Title 124 0 R
+/A 121 0 R
+/Parent 107 0 R
+/Prev 111 0 R
+>> endobj
+119 0 obj <<
+/Title 120 0 R
+/A 117 0 R
+/Parent 111 0 R
+/Prev 115 0 R
+>> endobj
+115 0 obj <<
+/Title 116 0 R
+/A 113 0 R
+/Parent 111 0 R
+/Next 119 0 R
+>> endobj
+111 0 obj <<
+/Title 112 0 R
+/A 109 0 R
+/Parent 107 0 R
+/Next 123 0 R
+/First 115 0 R
+/Last 119 0 R
+/Count -2
+>> endobj
+107 0 obj <<
+/Title 108 0 R
+/A 105 0 R
+/Parent 618 0 R
+/Prev 103 0 R
+/First 111 0 R
+/Last 123 0 R
+/Count -2
+>> endobj
+103 0 obj <<
+/Title 104 0 R
+/A 101 0 R
+/Parent 618 0 R
+/Prev 83 0 R
+/Next 107 0 R
+>> endobj
+99 0 obj <<
+/Title 100 0 R
+/A 97 0 R
+/Parent 83 0 R
+/Prev 95 0 R
+>> endobj
+95 0 obj <<
+/Title 96 0 R
+/A 93 0 R
+/Parent 83 0 R
+/Prev 91 0 R
+/Next 99 0 R
+>> endobj
+91 0 obj <<
+/Title 92 0 R
+/A 89 0 R
+/Parent 83 0 R
+/Prev 87 0 R
+/Next 95 0 R
+>> endobj
+87 0 obj <<
+/Title 88 0 R
+/A 85 0 R
+/Parent 83 0 R
+/Next 91 0 R
+>> endobj
+83 0 obj <<
+/Title 84 0 R
+/A 81 0 R
+/Parent 618 0 R
+/Prev 71 0 R
+/Next 103 0 R
+/First 87 0 R
+/Last 99 0 R
+/Count -4
+>> endobj
+79 0 obj <<
+/Title 80 0 R
+/A 77 0 R
+/Parent 71 0 R
+/Prev 75 0 R
+>> endobj
+75 0 obj <<
+/Title 76 0 R
+/A 73 0 R
+/Parent 71 0 R
+/Next 79 0 R
+>> endobj
+71 0 obj <<
+/Title 72 0 R
+/A 69 0 R
+/Parent 618 0 R
+/Prev 11 0 R
+/Next 83 0 R
+/First 75 0 R
+/Last 79 0 R
+/Count -2
+>> endobj
+67 0 obj <<
+/Title 68 0 R
+/A 65 0 R
+/Parent 63 0 R
+>> endobj
+63 0 obj <<
+/Title 64 0 R
+/A 61 0 R
+/Parent 11 0 R
+/Prev 59 0 R
+/First 67 0 R
+/Last 67 0 R
+/Count -1
+>> endobj
+59 0 obj <<
+/Title 60 0 R
+/A 57 0 R
+/Parent 11 0 R
+/Prev 55 0 R
+/Next 63 0 R
+>> endobj
+55 0 obj <<
+/Title 56 0 R
+/A 53 0 R
+/Parent 11 0 R
+/Prev 51 0 R
+/Next 59 0 R
+>> endobj
+51 0 obj <<
+/Title 52 0 R
+/A 49 0 R
+/Parent 11 0 R
+/Prev 47 0 R
+/Next 55 0 R
+>> endobj
+47 0 obj <<
+/Title 48 0 R
+/A 45 0 R
+/Parent 11 0 R
+/Prev 43 0 R
+/Next 51 0 R
+>> endobj
+43 0 obj <<
+/Title 44 0 R
+/A 41 0 R
+/Parent 11 0 R
+/Prev 23 0 R
+/Next 47 0 R
+>> endobj
+39 0 obj <<
+/Title 40 0 R
+/A 37 0 R
+/Parent 23 0 R
+/Prev 35 0 R
+>> endobj
+35 0 obj <<
+/Title 36 0 R
+/A 33 0 R
+/Parent 23 0 R
+/Prev 31 0 R
+/Next 39 0 R
+>> endobj
+31 0 obj <<
+/Title 32 0 R
+/A 29 0 R
+/Parent 23 0 R
+/Prev 27 0 R
+/Next 35 0 R
+>> endobj
+27 0 obj <<
+/Title 28 0 R
+/A 25 0 R
+/Parent 23 0 R
+/Next 31 0 R
+>> endobj
+23 0 obj <<
+/Title 24 0 R
+/A 21 0 R
+/Parent 11 0 R
+/Prev 15 0 R
+/Next 43 0 R
+/First 27 0 R
+/Last 39 0 R
+/Count -4
+>> endobj
+19 0 obj <<
+/Title 20 0 R
+/A 17 0 R
+/Parent 15 0 R
+>> endobj
+15 0 obj <<
+/Title 16 0 R
+/A 13 0 R
+/Parent 11 0 R
+/Next 23 0 R
+/First 19 0 R
+/Last 19 0 R
+/Count -1
+>> endobj
+11 0 obj <<
+/Title 12 0 R
+/A 9 0 R
+/Parent 618 0 R
+/Prev 7 0 R
+/Next 71 0 R
+/First 15 0 R
+/Last 63 0 R
+/Count -8
+>> endobj
+7 0 obj <<
+/Title 8 0 R
+/A 5 0 R
+/Parent 618 0 R
+/Next 11 0 R
+>> endobj
+619 0 obj <<
+/Names [(Doc-Start) 136 0 R (Item.1) 307 0 R (Item.10) 562 0 R (Item.11) 563 0 R (Item.12) 597 0 R (Item.13) 598 0 R (Item.14) 599 0 R (Item.15) 600 0 R (Item.16) 601 0 R (Item.17) 602 0 R (Item.18) 603 0 R (Item.19) 604 0 R (Item.2) 308 0 R (Item.20) 605 0 R (Item.3) 309 0 R (Item.4) 360 0 R (Item.5) 361 0 R (Item.6) 362 0 R (Item.7) 554 0 R (Item.8) 555 0 R (Item.9) 556 0 R (_beagle) 491 0 R (_bionimbus) 513 0 R (_coaster_providers_local_ssh_pbs) 489 0 R (_coasters) 453 0 R (_debugging_swift) 553 0 R (_environment_setup) 205 0 R (_first_swiftscript) 262 0 R (_for_advanced_users) 488 0 R (_installation) 186 0 R (_log_processing) 564 0 R (_make_a_basic_block_allocation_plot_from_coasters_block_log_lines) 586 0 R (_make_a_basic_job_completion_plot_from_coasters_cpu_log_lines) 581 0 R (_make_a_basic_load_plot_from_coasters_cpu_log_lines) 568 0 R (_mappers) 363 0 R (_osg) 512 0 R (_overview) 183 0 R (_pads) 497 0 R (_passing_an_array_to_swift) 359 0 R (_prerequisites) 187 0 R (
 _problem_reporting) 595 0 R (_resuming_a_stopped_or_crashed_swift_run) 317 0 R (_second_swiftscript) 284 0 R (_setting_sites_xml) 248 0 R (_setting_swift_configuration) 232 0 R (_setting_transformation_catalog) 219 0 R (_setting_up_to_run_swift) 201 0 R (_swift_basics) 185 0 R (_swift_commandline_options) 301 0 R (_swift_on_diverse_infrastructures) 490 0 R (_what_if_swift_hangs) 302 0 R (lstlisting.-1) 188 0 R (lstlisting.-10) 285 0 R (lstlisting.-11) 310 0 R (lstlisting.-12) 318 0 R (lstlisting.-13) 329 0 R (lstlisting.-14) 364 0 R (lstlisting.-15) 366 0 R (lstlisting.-16) 387 0 R (lstlisting.-17) 394 0 R (lstlisting.-18) 396 0 R (lstlisting.-19) 402 0 R (lstlisting.-2) 203 0 R (lstlisting.-20) 411 0 R (lstlisting.-21) 455 0 R (lstlisting.-22) 498 0 R (lstlisting.-23) 500 0 R (lstlisting.-24) 514 0 R (lstlisting.-25) 528 0 R (lstlisting.-26) 533 0 R (lstlisting.-27) 565 0 R (lstlisting.-28) 569 0 R (lstlisting.-29) 571 0 R (lstlisting.-3) 206 0 R (lstlisting.-30) 573 0 R (l
 stlisting.-31) 575 0 R (lstlisting.-32) 577 0 R (lstlisting.-33) 579 0 R (lstlisting.-34) 582 0 R (lstlisting.-35) 584 0 R (lstlisting.-36) 587 0 R (lstlisting.-37) 589 0 R (lstlisting.-4) 208 0 R (lstlisting.-5) 217 0 R (lstlisting.-6) 220 0 R (lstlisting.-7) 234 0 R (lstlisting.-8) 249 0 R (lstlisting.-9) 263 0 R (lstnumber.-1.1) 189 0 R (lstnumber.-1.2) 193 0 R (lstnumber.-1.3) 194 0 R (lstnumber.-1.4) 195 0 R (lstnumber.-1.5) 196 0 R (lstnumber.-1.6) 197 0 R (lstnumber.-1.7) 198 0 R (lstnumber.-1.8) 199 0 R (lstnumber.-1.9) 200 0 R (lstnumber.-10.1) 286 0 R (lstnumber.-10.10) 295 0 R (lstnumber.-10.11) 296 0 R (lstnumber.-10.12) 297 0 R (lstnumber.-10.13) 298 0 R (lstnumber.-10.14) 299 0 R (lstnumber.-10.15) 300 0 R (lstnumber.-10.2) 287 0 R (lstnumber.-10.3) 288 0 R (lstnumber.-10.4) 289 0 R (lstnumber.-10.5) 290 0 R (lstnumber.-10.6) 291 0 R (lstnumber.-10.7) 292 0 R (lstnumber.-10.8) 293 0 R (lstnumber.-10.9) 294 0 R (lstnumber.-11.1) 311 0 R (lstnumber.-11.2) 312 0 R
  (lstnumber.-11.3) 313 0 R (lstnumber.-11.4) 314 0 R (lstnumber.-11.5) 315 0 R (lstnumber.-11.6) 316 0 R (lstnumber.-12.1) 319 0 R (lstnumber.-12.10) 328 0 R (lstnumber.-12.2) 320 0 R (lstnumber.-12.3) 321 0 R (lstnumber.-12.4) 322 0 R (lstnumber.-12.5) 323 0 R (lstnumber.-12.6) 324 0 R (lstnumber.-12.7) 325 0 R (lstnumber.-12.8) 326 0 R (lstnumber.-12.9) 327 0 R (lstnumber.-13.1) 330 0 R (lstnumber.-13.10) 339 0 R (lstnumber.-13.11) 340 0 R (lstnumber.-13.12) 341 0 R (lstnumber.-13.13) 342 0 R (lstnumber.-13.14) 343 0 R (lstnumber.-13.15) 344 0 R (lstnumber.-13.16) 345 0 R (lstnumber.-13.17) 346 0 R (lstnumber.-13.18) 347 0 R (lstnumber.-13.19) 348 0 R (lstnumber.-13.2) 331 0 R (lstnumber.-13.20) 349 0 R (lstnumber.-13.21) 350 0 R (lstnumber.-13.22) 351 0 R (lstnumber.-13.23) 352 0 R (lstnumber.-13.24) 353 0 R (lstnumber.-13.25) 354 0 R (lstnumber.-13.3) 332 0 R (lstnumber.-13.4) 333 0 R (lstnumber.-13.5) 334 0 R (lstnumber.-13.6) 335 0 R (lstnumber.-13.7) 336 0 R (lstnumbe
 r.-13.8) 337 0 R (lstnumber.-13.9) 338 0 R (lstnumber.-14.1) 365 0 R (lstnumber.-15.1) 367 0 R (lstnumber.-15.10) 376 0 R (lstnumber.-15.11) 377 0 R (lstnumber.-15.12) 378 0 R (lstnumber.-15.13) 379 0 R (lstnumber.-15.14) 380 0 R (lstnumber.-15.15) 381 0 R (lstnumber.-15.2) 368 0 R (lstnumber.-15.3) 369 0 R (lstnumber.-15.4) 370 0 R (lstnumber.-15.5) 371 0 R (lstnumber.-15.6) 372 0 R (lstnumber.-15.7) 373 0 R (lstnumber.-15.8) 374 0 R (lstnumber.-15.9) 375 0 R (lstnumber.-16.1) 388 0 R (lstnumber.-16.2) 389 0 R (lstnumber.-16.3) 390 0 R (lstnumber.-16.4) 391 0 R (lstnumber.-16.5) 392 0 R (lstnumber.-16.6) 393 0 R (lstnumber.-17.1) 395 0 R (lstnumber.-18.1) 397 0 R (lstnumber.-18.2) 398 0 R (lstnumber.-18.3) 399 0 R (lstnumber.-18.4) 400 0 R (lstnumber.-18.5) 401 0 R (lstnumber.-19.1) 403 0 R (lstnumber.-19.2) 404 0 R (lstnumber.-19.3) 405 0 R (lstnumber.-19.4) 406 0 R (lstnumber.-19.5) 407 0 R (lstnumber.-19.6) 408 0 R (lstnumber.-19.7) 409 0 R (lstnumber.-19.8) 410 0 R (lst
 number.-2.1) 204 0 R (lstnumber.-20.1) 412 0 R (lstnumber.-20.10) 421 0 R (lstnumber.-20.11) 422 0 R (lstnumber.-20.12) 423 0 R (lstnumber.-20.13) 424 0 R (lstnumber.-20.14) 425 0 R (lstnumber.-20.15) 430 0 R (lstnumber.-20.16) 431 0 R (lstnumber.-20.17) 432 0 R (lstnumber.-20.18) 433 0 R (lstnumber.-20.19) 434 0 R (lstnumber.-20.2) 413 0 R (lstnumber.-20.20) 435 0 R (lstnumber.-20.21) 436 0 R (lstnumber.-20.22) 437 0 R (lstnumber.-20.23) 438 0 R (lstnumber.-20.24) 439 0 R (lstnumber.-20.25) 440 0 R (lstnumber.-20.26) 441 0 R (lstnumber.-20.27) 442 0 R (lstnumber.-20.28) 443 0 R (lstnumber.-20.29) 444 0 R (lstnumber.-20.3) 414 0 R (lstnumber.-20.30) 445 0 R (lstnumber.-20.31) 446 0 R (lstnumber.-20.32) 447 0 R (lstnumber.-20.33) 448 0 R (lstnumber.-20.34) 449 0 R (lstnumber.-20.35) 450 0 R (lstnumber.-20.36) 451 0 R (lstnumber.-20.37) 452 0 R (lstnumber.-20.4) 415 0 R (lstnumber.-20.5) 416 0 R (lstnumber.-20.6) 417 0 R (lstnumber.-20.7) 418 0 R (lstnumber.-20.8) 419 0 R (lst
 number.-20.9) 420 0 R (lstnumber.-21.1) 456 0 R (lstnumber.-21.10) 465 0 R (lstnumber.-21.11) 466 0 R (lstnumber.-21.12) 467 0 R (lstnumber.-21.13) 468 0 R (lstnumber.-21.14) 469 0 R (lstnumber.-21.15) 470 0 R (lstnumber.-21.16) 471 0 R (lstnumber.-21.17) 472 0 R (lstnumber.-21.18) 473 0 R (lstnumber.-21.19) 474 0 R (lstnumber.-21.2) 457 0 R (lstnumber.-21.20) 475 0 R (lstnumber.-21.21) 476 0 R (lstnumber.-21.22) 477 0 R (lstnumber.-21.23) 478 0 R (lstnumber.-21.24) 479 0 R (lstnumber.-21.3) 458 0 R (lstnumber.-21.4) 459 0 R (lstnumber.-21.5) 460 0 R (lstnumber.-21.6) 461 0 R (lstnumber.-21.7) 462 0 R (lstnumber.-21.8) 463 0 R (lstnumber.-21.9) 464 0 R (lstnumber.-22.1) 499 0 R (lstnumber.-23.1) 501 0 R (lstnumber.-23.10) 510 0 R (lstnumber.-23.11) 511 0 R (lstnumber.-23.2) 502 0 R (lstnumber.-23.3) 503 0 R (lstnumber.-23.4) 504 0 R (lstnumber.-23.5) 505 0 R (lstnumber.-23.6) 506 0 R (lstnumber.-23.7) 507 0 R (lstnumber.-23.8) 508 0 R (lstnumber.-23.9) 509 0 R (lstnumber.-24
 .1) 515 0 R (lstnumber.-24.2) 516 0 R (lstnumber.-24.3) 517 0 R (lstnumber.-24.4) 518 0 R (lstnumber.-24.5) 519 0 R (lstnumber.-24.6) 520 0 R (lstnumber.-24.7) 521 0 R (lstnumber.-24.8) 522 0 R (lstnumber.-24.9) 523 0 R (lstnumber.-25.1) 529 0 R (lstnumber.-26.1) 534 0 R (lstnumber.-26.10) 543 0 R (lstnumber.-26.11) 544 0 R (lstnumber.-26.12) 545 0 R (lstnumber.-26.13) 546 0 R (lstnumber.-26.14) 547 0 R (lstnumber.-26.15) 548 0 R (lstnumber.-26.16) 549 0 R (lstnumber.-26.17) 550 0 R (lstnumber.-26.18) 551 0 R (lstnumber.-26.19) 552 0 R (lstnumber.-26.2) 535 0 R (lstnumber.-26.3) 536 0 R (lstnumber.-26.4) 537 0 R (lstnumber.-26.5) 538 0 R (lstnumber.-26.6) 539 0 R (lstnumber.-26.7) 540 0 R (lstnumber.-26.8) 541 0 R (lstnumber.-26.9) 542 0 R (lstnumber.-27.1) 566 0 R (lstnumber.-27.2) 567 0 R (lstnumber.-28.1) 570 0 R (lstnumber.-29.1) 572 0 R (lstnumber.-3.1) 207 0 R (lstnumber.-30.1) 574 0 R (lstnumber.-31.1) 576 0 R (lstnumber.-32.1) 578 0 R (lstnumber.-33.1) 580 0 R (lstnu
 mber.-34.1) 583 0 R (lstnumber.-35.1) 585 0 R (lstnumber.-36.1) 588 0 R (lstnumber.-37.1) 590 0 R (lstnumber.-4.1) 209 0 R (lstnumber.-5.1) 218 0 R (lstnumber.-6.1) 221 0 R (lstnumber.-6.2) 222 0 R (lstnumber.-7.1) 235 0 R (lstnumber.-7.10) 244 0 R (lstnumber.-7.11) 245 0 R (lstnumber.-7.12) 246 0 R (lstnumber.-7.13) 247 0 R (lstnumber.-7.2) 236 0 R (lstnumber.-7.3) 237 0 R (lstnumber.-7.4) 238 0 R (lstnumber.-7.5) 239 0 R (lstnumber.-7.6) 240 0 R (lstnumber.-7.7) 241 0 R (lstnumber.-7.8) 242 0 R (lstnumber.-7.9) 243 0 R (lstnumber.-8.1) 250 0 R (lstnumber.-8.2) 251 0 R (lstnumber.-8.3) 252 0 R (lstnumber.-8.4) 253 0 R (lstnumber.-8.5) 254 0 R (lstnumber.-8.6) 255 0 R (lstnumber.-8.7) 256 0 R (lstnumber.-8.8) 257 0 R (lstnumber.-9.1) 264 0 R (lstnumber.-9.10) 273 0 R (lstnumber.-9.11) 274 0 R (lstnumber.-9.12) 275 0 R (lstnumber.-9.13) 276 0 R (lstnumber.-9.14) 277 0 R (lstnumber.-9.15) 278 0 R (lstnumber.-9.16) 279 0 R (lstnumber.-9.17) 280 0 R (lstnumber.-9.18) 281 0 R (ls
 tnumber.-9.19) 282 0 R (lstnumber.-9.2) 265 0 R (lstnumber.-9.3) 266 0 R (lstnumber.-9.4) 267 0 R (lstnumber.-9.5) 268 0 R (lstnumber.-9.6) 269 0 R (lstnumber.-9.7) 270 0 R (lstnumber.-9.8) 271 0 R (lstnumber.-9.9) 272 0 R (page.1) 182 0 R (page.10) 496 0 R (page.11) 527 0 R (page.12) 561 0 R (page.13) 594 0 R (page.2) 216 0 R (page.3) 261 0 R (page.4) 306 0 R (page.5) 358 0 R (page.6) 386 0 R (page.7) 429 0 R (page.8) 483 0 R (page.9) 487 0 R (page.i) 129 0 R (page.ii) 144 0 R (section.1) 6 0 R (section.2) 10 0 R (section.3) 70 0 R (section.4) 82 0 R (section.5) 102 0 R (section.6) 106 0 R (subsection.2.1) 14 0 R (subsection.2.2) 22 0 R (subsection.2.3) 42 0 R (subsection.2.4) 46 0 R (subsection.2.5) 50 0 R (subsection.2.6) 54 0 R (subsection.2.7) 58 0 R (subsection.2.8) 62 0 R (subsection.3.1) 74 0 R (subsection.3.2) 78 0 R (subsection.4.1) 86 0 R (subsection.4.2) 90 0 R (subsection.4.3) 94 0 R (subsection.4.4) 98 0 R (subsection.6.1) 110 0 R (subsection.6.2) 122 0 R (subs
 ubsection.2.1.1) 18 0 R (subsubsection.2.2.1) 26 0 R (subsubsection.2.2.2) 30 0 R (subsubsection.2.2.3) 34 0 R (subsubsection.2.2.4) 38 0 R (subsubsection.2.8.1) 66 0 R (subsubsection.6.1.1) 114 0 R (subsubsection.6.1.2) 118 0 R]
+/Limits [(Doc-Start) (subsubsection.6.1.2)]
+>> endobj
+620 0 obj <<
+/Kids [619 0 R]
+>> endobj
+621 0 obj <<
+/Dests 620 0 R
+>> endobj
+622 0 obj <<
+/Type /Catalog
+/Pages 617 0 R
+/Outlines 618 0 R
+/Names 621 0 R
+/PageMode /UseOutlines 
+/OpenAction 125 0 R
+>> endobj
+623 0 obj <<
+/Author(Swift team)/Title(Swift Cookbook)/Subject()/Creator(DBLaTeX-0.3)/Producer(pdfeTeX-1.21a)/Keywords()
+/CreationDate (D:20110516141543-05'00')
+/PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4)
+>> endobj
+xref
+0 624
+0000000001 65535 f 
+0000000002 00000 f 
+0000000003 00000 f 
+0000000004 00000 f 
+0000000000 00000 f 
+0000000009 00000 n 
+0000017512 00000 n 
+0000197747 00000 n 
+0000000054 00000 n 
+0000000080 00000 n 
+0000017636 00000 n 
+0000197624 00000 n 
+0000000125 00000 n 
+0000000156 00000 n 
+0000017761 00000 n 
+0000197513 00000 n 
+0000000207 00000 n 
+0000000238 00000 n 
+0000017886 00000 n 
+0000197452 00000 n 
+0000000294 00000 n 
+0000000326 00000 n 
+0000018640 00000 n 
+0000197328 00000 n 
+0000000377 00000 n 
+0000000419 00000 n 
+0000018891 00000 n 
+0000197254 00000 n 
+0000000475 00000 n 
+0000000511 00000 n 
+0000024963 00000 n 
+0000197167 00000 n 
+0000000567 00000 n 
+0000000616 00000 n 
+0000025277 00000 n 
+0000197080 00000 n 
+0000000672 00000 n 
+0000000718 00000 n 
+0000026281 00000 n 
+0000197006 00000 n 
+0000000774 00000 n 
+0000000810 00000 n 
+0000031939 00000 n 
+0000196919 00000 n 
+0000000861 00000 n 
+0000000897 00000 n 
+0000033321 00000 n 
+0000196832 00000 n 
+0000000948 00000 n 
+0000000985 00000 n 
+0000034452 00000 n 
+0000196745 00000 n 
+0000001036 00000 n 
+0000001080 00000 n 
+0000034577 00000 n 
+0000196658 00000 n 
+0000001131 00000 n 
+0000001169 00000 n 
+0000042833 00000 n 
+0000196571 00000 n 
+0000001220 00000 n 
+0000001278 00000 n 
+0000049927 00000 n 
+0000196460 00000 n 
+0000001329 00000 n 
+0000001374 00000 n 
+0000050241 00000 n 
+0000196399 00000 n 
+0000001430 00000 n 
+0000001456 00000 n 
+0000068232 00000 n 
+0000196274 00000 n 
+0000001502 00000 n 
+0000001529 00000 n 
+0000074711 00000 n 
+0000196200 00000 n 
+0000001580 00000 n 
+0000001617 00000 n 
+0000074835 00000 n 
+0000196126 00000 n 
+0000001668 00000 n 
+0000001721 00000 n 
+0000074960 00000 n 
+0000196000 00000 n 
+0000001767 00000 n 
+0000001818 00000 n 
+0000075085 00000 n 
+0000195926 00000 n 
+0000001869 00000 n 
+0000001894 00000 n 
+0000079739 00000 n 
+0000195839 00000 n 
+0000001945 00000 n 
+0000001968 00000 n 
+0000080744 00000 n 
+0000195752 00000 n 
+0000002019 00000 n 
+0000002041 00000 n 
+0000080869 00000 n 
+0000195677 00000 n 
+0000002092 00000 n 
+0000002121 00000 n 
+0000089288 00000 n 
+0000195585 00000 n 
+0000002168 00000 n 
+0000002203 00000 n 
+0000094884 00000 n 
+0000195467 00000 n 
+0000002250 00000 n 
+0000002284 00000 n 
+0000095199 00000 n 
+0000195349 00000 n 
+0000002336 00000 n 
+0000002406 00000 n 
+0000096080 00000 n 
+0000195270 00000 n 
+0000002463 00000 n 
+0000002543 00000 n 
+0000096456 00000 n 
+0000195191 00000 n 
+0000002600 00000 n 
+0000002684 00000 n 
+0000098747 00000 n 
+0000195112 00000 n 
+0000002736 00000 n 
+0000002773 00000 n 
+0000003183 00000 n 
+0000003431 00000 n 
+0000002826 00000 n 
+0000003305 00000 n 
+0000193559 00000 n 
+0000172896 00000 n 
+0000193386 00000 n 
+0000172255 00000 n 
+0000164316 00000 n 
+0000172084 00000 n 
+0000003368 00000 n 
+0000163588 00000 n 
+0000152003 00000 n 
+0000163418 00000 n 
+0000194632 00000 n 
+0000011340 00000 n 
+0000006110 00000 n 
+0000003529 00000 n 
+0000011277 00000 n 
+0000006484 00000 n 
+0000151224 00000 n 
+0000135699 00000 n 
+0000151051 00000 n 
+0000006638 00000 n 
+0000006793 00000 n 
+0000006953 00000 n 
+0000007118 00000 n 
+0000007278 00000 n 
+0000007440 00000 n 
+0000007605 00000 n 
+0000007770 00000 n 
+0000007935 00000 n 
+0000008092 00000 n 
+0000008251 00000 n 
+0000008411 00000 n 
+0000008571 00000 n 
+0000008728 00000 n 
+0000008888 00000 n 
+0000009053 00000 n 
+0000009208 00000 n 
+0000009368 00000 n 
+0000009528 00000 n 
+0000009683 00000 n 
+0000009843 00000 n 
+0000010000 00000 n 
+0000010160 00000 n 
+0000010320 00000 n 
+0000010475 00000 n 
+0000010627 00000 n 
+0000010787 00000 n 
+0000010952 00000 n 
+0000011117 00000 n 
+0000016152 00000 n 
+0000019266 00000 n 
+0000016002 00000 n 
+0000011451 00000 n 
+0000017449 00000 n 
+0000017573 00000 n 
+0000017041 00000 n 
+0000017698 00000 n 
+0000017823 00000 n 
+0000017948 00000 n 
+0000018011 00000 n 
+0000018074 00000 n 
+0000134755 00000 n 
+0000115700 00000 n 
+0000134584 00000 n 
+0000018137 00000 n 
+0000018200 00000 n 
+0000018263 00000 n 
+0000018326 00000 n 
+0000018388 00000 n 
+0000018451 00000 n 
+0000018514 00000 n 
+0000018577 00000 n 
+0000018702 00000 n 
+0000017245 00000 n 
+0000018765 00000 n 
+0000018828 00000 n 
+0000018951 00000 n 
+0000019014 00000 n 
+0000019077 00000 n 
+0000019140 00000 n 
+0000019203 00000 n 
+0000016838 00000 n 
+0000016973 00000 n 
+0000017020 00000 n 
+0000026970 00000 n 
+0000024407 00000 n 
+0000019418 00000 n 
+0000024774 00000 n 
+0000024837 00000 n 
+0000024900 00000 n 
+0000025025 00000 n 
+0000025088 00000 n 
+0000025151 00000 n 
+0000025214 00000 n 
+0000115373 00000 n 
+0000113916 00000 n 
+0000115212 00000 n 
+0000113581 00000 n 
+0000111726 00000 n 
+0000113420 00000 n 
+0000111161 00000 n 
+0000101424 00000 n 
+0000110984 00000 n 
+0000025339 00000 n 
+0000024549 00000 n 
+0000025402 00000 n 
+0000025463 00000 n 
+0000025526 00000 n 
+0000025589 00000 n 
+0000025652 00000 n 
+0000025715 00000 n 
+0000025778 00000 n 
+0000025840 00000 n 
+0000025903 00000 n 
+0000025966 00000 n 
+0000026029 00000 n 
+0000026092 00000 n 
+0000026155 00000 n 
+0000026218 00000 n 
+0000026342 00000 n 
+0000026405 00000 n 
+0000026468 00000 n 
+0000026531 00000 n 
+0000026594 00000 n 
+0000026657 00000 n 
+0000026719 00000 n 
+0000026782 00000 n 
+0000026845 00000 n 
+0000026908 00000 n 
+0000034702 00000 n 
+0000031531 00000 n 
+0000027133 00000 n 
+0000031876 00000 n 
+0000032001 00000 n 
+0000032064 00000 n 
+0000032126 00000 n 
+0000032189 00000 n 
+0000032252 00000 n 
+0000032315 00000 n 
+0000032378 00000 n 
+0000032441 00000 n 
+0000032504 00000 n 
+0000032566 00000 n 
+0000032629 00000 n 
+0000032692 00000 n 
+0000032755 00000 n 
+0000032818 00000 n 
+0000032881 00000 n 
+0000032944 00000 n 
+0000033007 00000 n 
+0000033070 00000 n 
+0000033133 00000 n 
+0000033195 00000 n 
+0000033258 00000 n 
+0000031673 00000 n 
+0000033383 00000 n 
+0000033446 00000 n 
+0000033509 00000 n 
+0000033572 00000 n 
+0000033635 00000 n 
+0000033697 00000 n 
+0000033760 00000 n 
+0000033823 00000 n 
+0000033886 00000 n 
+0000033949 00000 n 
+0000034012 00000 n 
+0000034075 00000 n 
+0000034138 00000 n 
+0000034201 00000 n 
+0000034264 00000 n 
+0000034327 00000 n 
+0000034389 00000 n 
+0000034514 00000 n 
+0000034639 00000 n 
+0000045285 00000 n 
+0000042019 00000 n 
+0000034826 00000 n 
+0000042141 00000 n 
+0000042204 00000 n 
+0000042267 00000 n 
+0000042330 00000 n 
+0000042393 00000 n 
+0000042456 00000 n 
+0000042519 00000 n 
+0000042581 00000 n 
+0000042644 00000 n 
+0000042707 00000 n 
+0000042770 00000 n 
+0000042895 00000 n 
+0000042958 00000 n 
+0000043021 00000 n 
+0000043084 00000 n 
+0000043147 00000 n 
+0000043210 00000 n 
+0000043273 00000 n 
+0000043336 00000 n 
+0000043399 00000 n 
+0000043462 00000 n 
+0000043525 00000 n 
+0000043588 00000 n 
+0000043650 00000 n 
+0000043713 00000 n 
+0000043776 00000 n 
+0000043838 00000 n 
+0000043901 00000 n 
+0000043964 00000 n 
+0000044027 00000 n 
+0000044090 00000 n 
+0000044153 00000 n 
+0000044216 00000 n 
+0000044279 00000 n 
+0000044342 00000 n 
+0000044405 00000 n 
+0000044467 00000 n 
+0000044530 00000 n 
+0000044593 00000 n 
+0000044656 00000 n 
+0000044719 00000 n 
+0000044782 00000 n 
+0000044845 00000 n 
+0000044908 00000 n 
+0000044971 00000 n 
+0000045034 00000 n 
+0000045097 00000 n 
+0000045159 00000 n 
+0000045222 00000 n 
+0000051498 00000 n 
+0000049742 00000 n 
+0000045409 00000 n 
+0000049864 00000 n 
+0000049989 00000 n 
+0000050052 00000 n 
+0000050115 00000 n 
+0000050178 00000 n 
+0000050303 00000 n 
+0000050366 00000 n 
+0000050429 00000 n 
+0000050492 00000 n 
+0000050555 00000 n 
+0000050618 00000 n 
+0000050680 00000 n 
+0000050743 00000 n 
+0000050806 00000 n 
+0000050869 00000 n 
+0000050932 00000 n 
+0000050995 00000 n 
+0000051058 00000 n 
+0000051121 00000 n 
+0000051184 00000 n 
+0000051247 00000 n 
+0000051309 00000 n 
+0000051372 00000 n 
+0000051435 00000 n 
+0000194749 00000 n 
+0000059343 00000 n 
+0000056705 00000 n 
+0000051609 00000 n 
+0000056827 00000 n 
+0000056890 00000 n 
+0000056953 00000 n 
+0000057016 00000 n 
+0000057079 00000 n 
+0000057142 00000 n 
+0000057205 00000 n 
+0000057268 00000 n 
+0000057331 00000 n 
+0000057394 00000 n 
+0000057457 00000 n 
+0000057519 00000 n 
+0000057582 00000 n 
+0000057645 00000 n 
+0000057708 00000 n 
+0000057771 00000 n 
+0000057834 00000 n 
+0000057897 00000 n 
+0000057960 00000 n 
+0000058023 00000 n 
+0000058086 00000 n 
+0000058148 00000 n 
+0000058211 00000 n 
+0000058274 00000 n 
+0000058337 00000 n 
+0000058400 00000 n 
+0000058463 00000 n 
+0000058526 00000 n 
+0000058589 00000 n 
+0000058652 00000 n 
+0000058714 00000 n 
+0000058777 00000 n 
+0000058840 00000 n 
+0000058903 00000 n 
+0000058966 00000 n 
+0000059029 00000 n 
+0000059092 00000 n 
+0000059155 00000 n 
+0000059218 00000 n 
+0000059281 00000 n 
+0000069929 00000 n 
+0000066368 00000 n 
+0000059441 00000 n 
+0000066723 00000 n 
+0000066786 00000 n 
+0000066849 00000 n 
+0000066912 00000 n 
+0000066975 00000 n 
+0000067038 00000 n 
+0000067100 00000 n 
+0000067163 00000 n 
+0000067226 00000 n 
+0000067289 00000 n 
+0000067352 00000 n 
+0000067415 00000 n 
+0000067478 00000 n 
+0000067541 00000 n 
+0000067604 00000 n 
+0000067667 00000 n 
+0000067728 00000 n 
+0000067791 00000 n 
+0000067854 00000 n 
+0000067917 00000 n 
+0000067980 00000 n 
+0000068043 00000 n 
+0000068106 00000 n 
+0000068169 00000 n 
+0000068294 00000 n 
+0000066510 00000 n 
+0000068357 00000 n 
+0000068420 00000 n 
+0000068483 00000 n 
+0000068545 00000 n 
+0000068608 00000 n 
+0000068671 00000 n 
+0000068734 00000 n 
+0000068797 00000 n 
+0000068860 00000 n 
+0000068923 00000 n 
+0000068986 00000 n 
+0000069049 00000 n 
+0000069112 00000 n 
+0000069174 00000 n 
+0000069237 00000 n 
+0000069300 00000 n 
+0000069363 00000 n 
+0000069426 00000 n 
+0000069489 00000 n 
+0000069552 00000 n 
+0000069615 00000 n 
+0000069678 00000 n 
+0000069741 00000 n 
+0000069803 00000 n 
+0000069866 00000 n 
+0000070639 00000 n 
+0000070454 00000 n 
+0000070066 00000 n 
+0000070576 00000 n 
+0000075209 00000 n 
+0000074306 00000 n 
+0000070724 00000 n 
+0000074648 00000 n 
+0000074773 00000 n 
+0000074897 00000 n 
+0000075022 00000 n 
+0000075147 00000 n 
+0000074448 00000 n 
+0000081621 00000 n 
+0000079554 00000 n 
+0000075333 00000 n 
+0000079676 00000 n 
+0000079801 00000 n 
+0000079864 00000 n 
+0000079927 00000 n 
+0000079990 00000 n 
+0000080052 00000 n 
+0000080115 00000 n 
+0000080178 00000 n 
+0000080241 00000 n 
+0000080304 00000 n 
+0000080367 00000 n 
+0000080429 00000 n 
+0000080492 00000 n 
+0000080555 00000 n 
+0000080618 00000 n 
+0000080681 00000 n 
+0000080806 00000 n 
+0000080931 00000 n 
+0000080994 00000 n 
+0000081057 00000 n 
+0000081120 00000 n 
+0000081180 00000 n 
+0000081243 00000 n 
+0000081306 00000 n 
+0000081369 00000 n 
+0000081432 00000 n 
+0000081495 00000 n 
+0000081558 00000 n 
+0000089602 00000 n 
+0000087161 00000 n 
+0000081758 00000 n 
+0000087841 00000 n 
+0000087904 00000 n 
+0000087967 00000 n 
+0000087319 00000 n 
+0000087494 00000 n 
+0000087667 00000 n 
+0000088030 00000 n 
+0000088093 00000 n 
+0000088156 00000 n 
+0000088219 00000 n 
+0000088282 00000 n 
+0000088345 00000 n 
+0000088408 00000 n 
+0000088470 00000 n 
+0000088533 00000 n 
+0000088596 00000 n 
+0000088659 00000 n 
+0000088722 00000 n 
+0000088785 00000 n 
+0000088848 00000 n 
+0000088911 00000 n 
+0000088974 00000 n 
+0000089037 00000 n 
+0000089099 00000 n 
+0000089162 00000 n 
+0000089225 00000 n 
+0000089351 00000 n 
+0000089414 00000 n 
+0000089477 00000 n 
+0000089540 00000 n 
+0000194866 00000 n 
+0000096833 00000 n 
+0000094573 00000 n 
+0000089752 00000 n 
+0000094695 00000 n 
+0000094758 00000 n 
+0000094821 00000 n 
+0000094947 00000 n 
+0000095010 00000 n 
+0000095073 00000 n 
+0000095136 00000 n 
+0000095262 00000 n 
+0000095325 00000 n 
+0000095388 00000 n 
+0000095451 00000 n 
+0000095514 00000 n 
+0000095577 00000 n 
+0000095639 00000 n 
+0000095702 00000 n 
+0000095765 00000 n 
+0000095828 00000 n 
+0000095891 00000 n 
+0000095954 00000 n 
+0000096017 00000 n 
+0000096143 00000 n 
+0000096204 00000 n 
+0000096267 00000 n 
+0000096330 00000 n 
+0000096393 00000 n 
+0000096519 00000 n 
+0000096582 00000 n 
+0000096645 00000 n 
+0000096708 00000 n 
+0000096770 00000 n 
+0000099438 00000 n 
+0000098359 00000 n 
+0000096957 00000 n 
+0000098684 00000 n 
+0000098810 00000 n 
+0000098501 00000 n 
+0000098873 00000 n 
+0000098936 00000 n 
+0000098999 00000 n 
+0000099062 00000 n 
+0000099124 00000 n 
+0000099187 00000 n 
+0000099250 00000 n 
+0000099312 00000 n 
+0000099375 00000 n 
+0000099536 00000 n 
+0000111426 00000 n 
+0000113821 00000 n 
+0000113797 00000 n 
+0000115610 00000 n 
+0000115585 00000 n 
+0000135325 00000 n 
+0000151621 00000 n 
+0000163948 00000 n 
+0000172614 00000 n 
+0000194140 00000 n 
+0000194959 00000 n 
+0000195037 00000 n 
+0000197819 00000 n 
+0000208006 00000 n 
+0000208045 00000 n 
+0000208083 00000 n 
+0000208213 00000 n 
+trailer
+<<
+/Size 624
+/Root 622 0 R
+/Info 623 0 R
+/ID [<67FDFAA0CD9D108A567B8B97804AD5DB> <67FDFAA0CD9D108A567B8B97804AD5DB>]
+>>
+startxref
+208484
+%%EOF

Added: trunk/docs/cookbook/cookbook-asciidoc.txt
===================================================================
--- trunk/docs/cookbook/cookbook-asciidoc.txt	                        (rev 0)
+++ trunk/docs/cookbook/cookbook-asciidoc.txt	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,891 @@
+// To compile use: asciidoc -a toc -n cookbook-asciidoc.txt 
+
+
+Swift Cookbook
+==============
+Swift team <swift-user at ci.uchicago.edu>
+v0.92, March 2011
+
+Overview
+--------
+This cookbook covers various recipes involving setting up and running Swift under diverse
+configurations based on the application requirements and the underlying
+infrastructures. The Swift system comprises of SwiftScript language and the
+Swift runtime system. For
+introductory material, consult the Swift tutorial found 
+link:http://www.ci.uchicago.edu/swift/guides/tutorial.php[here].
+
+Swift Basics
+------------
+
+Installation
+~~~~~~~~~~~~
+
+This section takes you through the installation of the Swift system on your
+computer. We will start with the prerequisites as explained in the subsequent
+section.
+
+Prerequisites
+^^^^^^^^^^^^^^
+.Check your Java
+Swift is a Java application. Make sure you are running Java version 5 or higher. You
+can make sure you have Java in your $PATH (or $HOME/.soft file depending upon
+your environment) 
+
+Following are the possible ways to detect and run Java:
+
+----
+$ grep java $HOME/.soft
+#+java-sun # Gives you Java 5
++java-1.6.0_03-sun-r1
+$ which java
+/soft/java-1.6.0_11-sun-r1/bin/java
+$ java -version
+java version "1.6.0_11"
+Java(TM) SE Runtime Environment (build 1.6.0_11-b03)
+Java HotSpot(TM) 64-Bit Server VM (build 11.0-b16, mixed mode)
+----
+
+Setting up to run Swift
+~~~~~~~~~~~~~~~~~~~~~~~~
+This is simple. We will be using a pre-compiled version of Swift that can be
+downloaded from link:http://www.ci.uchicago.edu/swift/downloads/index.php[here]. Download and untar the latest precompiled version as follows:
+
+----
+$ tar xf swift-0.92.1.tar.gz
+----
+
+Environment Setup
+^^^^^^^^^^^^^^^^^^
+
+The examples were tested with Java version 1.6. Make sure you do not already
+have Swift in your PATH. If you do, remove it, or remove any +swift or @swift
+lines from your $HOME/.soft or $HOME/.bash_profile file. Then do:
+
+----
+PATH=$PATH:/path/to/swift/bin
+----
+
+Note that the environment will be different when using Swift from prebuilt distribution (as above) and trunk. The PATH setup when using swift from trunk would be as follows:
+
+----
+PATH=$PATH:/path/to/swift/dist/swift-svn/bin
+----
+
+WARNING: Do NOT set SWIFT_HOME or CLASSPATH in your environment unless you
+fully understand how these will affect Swift's execution.
+
+To execute your Swift script on a login host (or "localhost") use
+the following command: 
+
+----
+swift -tc.file tc somescript.swift
+----
+
+Setting transformation catalog
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+The transformation catalog lists where application executables are located on
+remote sites.
+
+By default, the site catalog is stored in etc/tc.data. This path can be
+overridden with the tc.file configuration property, either in the Swift
+configuration file or on the command line.
+
+The format is one line per executable per site, with fields separated by tabs
+or spaces.
+
+Some example entries: 
+
+----
+localhost  echo    /bin/echo       INSTALLED       INTEL32::LINUX  null
+TGUC       touch   /usr/bin/touch  INSTALLED       INTEL32::LINUX GLOBUS::maxwalltime="00:00:10"
+----
+The fields are: _site_, _transformation-name_, _executable-path_, _installation-status_, _platform_, and _profile_ entries.
+
+The _site_ field should correspond to a site name listed in the sites catalog.
+
+The _transformation-name_ should correspond to the transformation name used in a
+SwiftScript app procedure.
+
+The _executable-path_ should specify where the particular executable is located
+on that site.
+
+The _installation-status_ and _platform_ fields are not used. Set them to
+**INSTALLED** and **INTEL32::LINUX** respectively.
+
+The _profiles_ field should be set to null if no profile entries are to be
+specified, or should contain the profile entries separated by semicolons. 
+
+Setting swift configuration
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Many configuration properties could be set using the Swift configuration file.
+We will not cover them all in this section. see
+link:http://www.ci.uchicago.edu/swift/guides/userguide.php#engineconfiguration[here] for details. In this section we will cover a simple configuration file with the most basic properties.
+
+----
+# A comment 
+wrapperlog.always.transfer=true
+sitedir.keep=true
+execution.retries=1
+lazy.errors=true
+status.mode=provider
+use.provider.staging=true
+provider.staging.pin.swiftfiles=false
+clustering.enabled=false
+clustering.queue.delay=10
+clustering.min.time=86400
+foreach.max.threads=100
+provenance.log=true
+----
+
+Setting sites.xml
+^^^^^^^^^^^^^^^^^^
+sites.xml specifies details of the sites that Swift can run on. Following is
+an example of a simple sites.xml file entry for running Swift on local
+environment:
+
+[xml]
+source~~~~~~
+<pool handle="localhost">
+<filesystem provider="local" />
+<execution provider="local" />
+<workdirectory >/var/tmp</workdirectory>
+<profile namespace="karajan" key="jobThrottle">.07</profile>
+<profile namespace="karajan"
+key="initialScore">100000</profile>
+</pool>
+source~~~~~~
+
+First SwiftScript
+~~~~~~~~~~~~~~~~~
+Your first SwiftScript
+Hello Swift-World!
+
+A good sanity check that Swift is set up and running OK locally is this:
+
+----
+$ which swift
+
+/home/wilde/swift/src/stable/cog/modules/swift/dist/swift-svn/bin/swift
+
+$ echo 'trace("Hello, Swift world!");' >hello.swift
+
+$ swift hello.swift
+
+Swift svn swift-r3202 cog-r2682
+
+RunID: 20100115-1240-6xhzxuz3
+
+Progress:
+
+SwiftScript trace: Hello, Swift world!
+
+Final status:
+
+$ 
+----
+A good first tutorial in using Swift is at:
+http://www.ci.uchicago.edu/swift/guides/tutorial.php. Follow the steps in that
+tutorial to learn how to run a few simple scripts on the login host.
+
+second SwiftScript
+~~~~~~~~~~~~~~~~~~~
+Following is a more involved Swift script.
+[java]
+source~~~~~~~
+type file;
+
+app (file o) cat (file i)
+{
+    cat @i stdout=@o;   
+}
+
+file out[]<simple_mapper; location="outdir", prefix="f.",suffix=".out">; 
+
+foreach j in [1:@toint(@arg("n","1"))] {    
+
+    file data<"data.txt">;  
+
+    out[j] = cat(data);    
+}
+source~~~~~~~
+
+Swift Commandline Options
+~~~~~~~~~~~~~~~~~~~~~~~~~
+A description of Swift Commandline Options
+
+Also includes a description of Swift inputs and outputs.
+
+What if Swift hangs
+~~~~~~~~~~~~~~~~~~~
+Owing to its highly multithreaded architecture it is often the case that the
+underlying java virtual machine gets into deadlock situations or Swift hangs
+because of other complications in its threaded operations. Under such
+situations, Swift _hang-checker_ chips in and resolves the situation.
+
+. how to use the information to identify and correct the deadlock.
+
+. How close to the Swift source code can we make the hang-checker messages, so that the user can relate it to Swift functions, expressions, and ideally source code lines?
+
+. The current Hang Checker output is actually *very* nice and useful already:
+
+----
+Registered futures:
+Rupture[] rups  Closed, 1 elements, 0 listeners
+Variation vars - Closed, no listeners
+SgtDim sub - Open, 1 listeners
+string site  Closed, no listeners
+Variation[] vars  Closed, 72 elements, 0 listeners
+----
+
+Resuming a stopped or crashed Swift Run
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+I had a .rlog file from a Swift run that ran out of time. I kicked it off
+using the -resume flag described in section 16.2 of the Swift User Guide and
+it picked up where it left off. Then I killed it because I wanted to make
+changes to my sites file.
+
+----
+. . .
+Progress:  Selecting site:1150  Stage in:55  Active:3  Checking status:1
+Stage out:37  Finished in previous run:2462  Finished successfully:96
+Progress:  Selecting site:1150  Stage in:55  Active:2  Checking status:1
+Stage out:38  Finished in previous run:2462  Finished successfully:96
+Cleaning up...
+Shutting down service at https://192.5.86.6:54813
+Got channel MetaChannel: 1293358091 -> null
++ Done
+Canceling job 9297.svc.pads.ci.uchicago.edu
+----
+
+No new rlog file was emitted but it did recognize the progress that had been
+made, the 96 tasks that finished sucessfully above and resumed from 2558 tasks
+finished.
+
+----
+[nbest at login2 files]$ pwd
+/home/nbest/bigdata/files
+[nbest at login2 files]$
+~wilde/swift/src/stable/cog/modules/swift/dist/swift-svn/bin/swift \
+> -tc.file tc -sites.file pbs.xml ~/scripts/mcd12q1.swift -resume
+> mcd12q1-20100310-1326-ptxe1x1d.0.rlog
+Swift svn swift-r3255 (swift modified locally) cog-r2723 (cog modified
+locally)
+RunID: 20100311-1027-148caf0a
+Progress:
+Progress:  uninitialized:4
+Progress:  Selecting site:671  Initializing site shared directory:1  Finished
+in previous run:1864
+Progress:  uninitialized:1  Selecting site:576  Stage in:96  Finished in
+previous run:1864
+Progress:  Selecting site:1150  Stage in:94  Submitting:2  Finished in
+previous run:2558
+Progress:  Selecting site:1150  Stage in:94  Submitted:2  Finished in previous
+run:2558
+Progress:  Selecting site:1150  Stage in:93  Submitting:1  Submitted:2
+Finished in previous run:2558
+Progress:  Selecting site:1150  Stage in:90  Submitting:1  Submitted:5
+Finished in previous run:2558
+Progress:  Selecting site:1150  Stage in:90  Submitted:5  Active:1  Finished
+in previous run:2558
+----
+
+
+From Neil: A comment about that section of the user guide: It says "In order
+to restart from a restart log file, the -resume logfile argument can be used
+after the SwiftScript? program file name." and then puts the -resume logfile
+argument before the script file name. I'm sure the order doesn't matter but
+the contradiction is confusing.
+
+Notes to add (from Mike):
+
+- explain what aspects of a Swift script make it restartable, and which
+  aspects are notrestartable. Eg, if your mappers can return different data at
+different times, what happens? What other non-determinsitc behavior would
+cause unpredictable, unexpected, or undesired behavior on resumption?
+
+- explain what changes you can make in the execution environment (eg
+  increasing or reducing CPUs to run on or throttles, etc); fixing tc.data
+entries, env vars, or apps, etc.
+
+- note that resume will again retry failed app() calls. Explain if the retry
+  count starts over or not.
+
+- explain how to resume after multiple failures and resumes - i.e. if a .rlog
+  is generated on each run, which one should you resume from? Do you have a
+choice of resuming from any of them, and what happens if you go backwards to
+an older resume file?
+
+- whap happens when you kill (eg with ^C) a running swift script? Is the
+  signal caught, and the resume file written out at that point? Or written out
+all along? (Note case in which script ws running for hours, then hit ^C, but
+resume fie was short (54 bbytes) and swift shows no sign of doing a resume?
+(It silently ignored resume file instead of acknowleging that it found one
+with not useful resume state in it???) Swift should clearly state that its
+resuming and what its resume state is. 
+
++swift -resume ftdock-[id].0.rlog \[rest of the exact command line from initial
+run\]+
+
+
+Passing an array to swift?
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+Arrays can be passed to Swift in one of the following ways:
+
+. You can write the array to a file and read in in swift using
+readData (or readData2).
+. Direct the array into a file (possibly with a "here document" which expands the array) and then read the file in Swift with readData() or process it with a Swift app() function?
+. You can use @strsplit on a comma separated command line arg and that works well for me.
+
+Mappers
+^^^^^^^^
+SimpleMapper
+
+----
+$ cat swiftapply.swift
+----
+
+[java]
+source~~~~
+type RFile;
+trace("hi 1");
+app (RFile result) RunR (RFile rcall)
+{
+  RunR @rcall @result;
+}
+trace("hi 2");
+RFile rcalls[] ;
+RFile results[] ;
+trace("start");
+foreach c, i in rcalls {
+  trace("c",i, at c);
+  trace("r",i, at filename(results[i]));
+  results[i] = RunR(c);
+}
+source~~~~
+
+----
+$ ls calldir resdir
+calldir:
+rcall.1.Rdata  rcall.2.Rdata  rcall.3.Rdata  rcall.4.Rdata
+resdir:
+result.1.Rdata result.2.Rdata result.3.Rdata result.4.Rdata
+$ 
+----
+
+Notes:
+
+how the .'s match
+prefix and suffix dont span dirs
+intervening pattern must be digits
+these digits become the array indices
+explain how padding= arg works & helps (including padding=0)
+figure out and explain differences between simple_mapper and
+filesys_mapper
+FIXME: Use the "filesys_mapper" and its "location=" parameter to map the
+input data from /home/wilde/bigdata/* 
+
+Abbreviations for SingleFileMapper
+Notes:
+
+within <> you can only have a literal string as in <"filename">, not an
+expression. Someday we will fix this to make <> accept a general expression.
+you can use @filenames( ) (note: plural) to pull off a list of filenames. 
+
+writeData()
+
+example here 
+
+----
+$ cat writedata.swift
+----
+
+[java]
+source~~~~
+type file;
+
+file f <"filea">;
+file nf <"filenames">;
+nf = writeData(@f);
+source~~~~
+
+----
+$ swift writedata.swift
+Swift svn swift-r3264 (swift modified locally) cog-r2730 (cog modified
+locally)
+RunID: 20100319-2002-s9vpo0pe
+Progress:
+Final status:
+$ cat filenames
+filea$ 
+----
+
+StructuredRegexpMapper
+IN PROGRESS This mapper can be used to base the mapped filenames of an output
+array on the mapped filenames of an existing array. landuse outputfiles[]
+<structured_regexp_mapper; source=inputfiles,
+location="./output",match="(.)*tif", transform="\\1histogram">;
+
+Use the undocumented "structured_regexp_mapper" to name the output
+filenames based on the input filenames: 
+
+For example:
+
+----
+login2$ ls /home/wilde/bigdata/data/sample
+h11v04.histogram  h11v05.histogram  h12v04.histogram  h32v08.histogram
+h11v04.tif        h11v05.tif        h12v04.tif        h32v08.tif
+login2$
+
+login2$ cat regexp2.swift
+type tif;
+type mytype;
+
+tif  images[]<filesys_mapper; 
+location="/home/wilde/bigdata/data/sample", prefix="h", suffix=".tif">;
+
+mytype of[] <structured_regexp_mapper; source=images, match="(h..v..)", 
+transform="output/myfile.\\1.mytype">;
+
+foreach image, i in images {
+   trace(i, at filename(images));
+   trace(i, at filename(of[i]));
+}
+login2$
+
+login1$ swift regexp2.swift
+Swift svn swift-r3255 (swift modified locally) cog-r2723 (cog modified
+locally)
+
+RunID: 20100310-1105-4okarq08
+Progress:
+SwiftScript trace: 1, output/myfile.h11v04.mytype
+SwiftScript trace: 2, home/wilde/bigdata/data/sample/h11v05.tif
+SwiftScript trace: 3, home/wilde/bigdata/data/sample/h12v04.tif
+SwiftScript trace: 0, output/myfile.h32v08.mytype
+SwiftScript trace: 0, home/wilde/bigdata/data/sample/h32v08.tif
+SwiftScript trace: 3, output/myfile.h12v04.mytype
+SwiftScript trace: 1, home/wilde/bigdata/data/sample/h11v04.tif
+SwiftScript trace: 2, output/myfile.h11v05.mytype
+Final status:
+login1$ 
+----
+
+Coasters
+--------
+Coasters were introduced in Swift v0.6 as an experimental feature. In many
+applications, Swift performance can be greatly enhanced by the use of CoG
+coasters. CoG coasters provide a low-overhead job submission and file transfer
+mechanism suited for the execution of short jobs (on the order of a few
+seconds). A detailed information on coasters can be found at http://www.ci.uchicago.edu/swift/guides/userguide.php#coasters.
+//**Include neat diagrams.**
+
+Following is a coasters setup case-study for a PBS underlying provider where sites.xml coaster settings were:
+
+[xml]
+source~~~~
+<execution provider="coaster" jobmanager="local:pbs"/>
+<profile namespace="globus" key="project">CI-CCR000013</profile>
+
+<!-- Note that the following is going to be defunct in the new version (0.93+) and replaced by
+"ProviderAttributes" key and may not work in the future Swift versions-->
+
+<!--<profile namespace="globus" key="ppn">24:cray:pack</profile>-->
+
+<profile namespace="globus" key="providerAttributes">
+pbs.aprun
+pbs.mpp=true
+</profile> 
+
+<profile namespace="globus" key="workersPerNode">24</profile>
+<profile namespace="globus" key="maxTime">100000</profile>
+
+<profile namespace="globus" key="lowOverallocation">100</profile>
+<profile namespace="globus" key="highOverallocation">100</profile>
+
+<profile namespace="globus" key="slots">20</profile>
+<profile namespace="globus" key="nodeGranularity">5</profile>
+<profile namespace="globus" key="maxNodes">5</profile>
+<profile namespace="karajan" key="jobThrottle">20.00</profile>
+<profile namespace="karajan" key="initialScore">10000</profile>
+source~~~~
+
+The following table briefly describes the elements on the coasters setup:
+[width="70%", cols="^3,10", options="header"]
+|=============================================================================================
+|profile key | brief description
+|slots |  How many maximum LRM jobs/worker blocks are allowed
+|workersPerNode | How many coaster workers to run per execution node
+|nodeGranularity | Each worker block uses a number of nodes that is a multiple of this number
+|lowOverallocation |  How many times larger than the job walltime should a block's walltime be if all jobs are 1s long
+|highOverallocation | How many times larger than the job walltime should a block's walltime be if all jobs are infinitely long
+|workersPerNode | How many coaster workers to run per execution node reserve How many seconds to reserve in a block's walltime for starting/shutdown operations
+|maxnodes |   The maximum number of nodes allowed in a block
+|maxtime | The maximum number of walltime allowed for a block coaster service
+|jobThrottle |the number of concurrent jobs allowed on a site
+|==============================================================================================
+
+//
+//For Beginners
+//~~~~~~~~~~~~~~
+//Coasters for beginners. Usage of existing, prebuilt templates.
+//
+//For Intermediate Users
+//~~~~~~~~~~~~~~~~~~~~~~~
+//Coasters for intermediate users. 
+//
+//Using gensites
+//^^^^^^^^^^^^^^^
+//Usage of gensites to generate your own sites
+//configurations.
+//
+//
+//
+
+For Advanced Users
+~~~~~~~~~~~~~~~~~~
+
+//Coasters for advanced users. Getting your hands dirty.
+
+One of the main reason that one would initially deviate from coaster
+defaults into more complex pool entries is to force jobs to fit into some
+site-imposed constraint. For instance a typical submission to the experimental
+queue requires a user to request upto 3 nodes for under 1 hour. This setup
+could be achieved with a careful tuning of coaters parameters.
+
+//How to run Swift under different Coasters configurations
+//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+//
+//Manual
+//^^^^^^^
+//Todo
+//
+//Passive
+//^^^^^^^^
+//Todo
+//
+//Persistent
+//^^^^^^^^^^^
+//Todo
+//
+//Summary of Differences Between different Coaster types
+//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+//A tabular representations of highlights of different coaster setups
+//
+//
+//Data Management 
+//
+
+Coaster providers: local, ssh, pbs
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Settings and examples for different coaster providers mechanisms.
+
+
+
+Swift on Diverse Infrastructures 
+---------------------------------
+
+Beagle
+~~~~~~
+Swift is now installed on Beagle as a module. Swift supports a Coasters based,
+computing environment for Beagle. A detailed Swift documentation is maintained
+[[http://www.ci.uchicago.edu/swift/docs/index.php][here]]. To get started
+with Swift on Beagle follow the steps outlined below:
+
+*step 1.* Load the Swift module on Beagle as follows: +module load swift+
+
+*step 2.* Create and change to a directory where your Swift related work will
+stay. (say, +mkdir swift-lab+, followed by, +cd swift-lab+)
+
+*step 3.* To get started with a simple example running +/bin/cat+ to read an input file +data.txt+ and write to an output file +f.nnn.out+, copy the folder at +/home/ketan/labs/catsn+ to the above directory. (+cp -r /home/ketan/catsn .+ followed by +cd catsn+).
+
+*step 4.*  In the sites file: +beagle-coaster.xml+, make the following two
+changes: *1)* change the path of +workdirectory+ to your preferred location
+(say to +/lustre/beagle/$USER/swift-lab/swift.workdir+) and *2)* Change the
+project name to your project (+CI-CCR000013+) . The workdirectory will contain
+execution data related to each run, e.g. wrapper scripts, system information,
+inputs and outputs.
+
+*step 5.* Run the example using following commandline (also found in run.sh):
++swift -config cf -tc.file tc -sites.file beagle-coaster.xml catsn.swift -n=1+
+. You can further change the value of +-n+ to any arbitrary number to run that
+many number of concurrent +cat+
+
+*step 6.* Check the output in the generated +outdir+ directory (+ls outdir+)
+
+Note: Running from sandbox node or requesting 1 hour walltime for upto 3 nodes
+will get fast prioritized execution. Good for small tests
+
+//
+//Intrepid-BG/P
+//~~~~~~~~~~~~~
+//Swift on Intrepid-BG/P
+//
+
+PADS
+~~~~
+Swift on PADS 
+To execute your Swift script on the PADS cluster use this command: 
+
+----
+swift -tc.file tc -sites.file pbs.xml modis.swift
+----
+where the contents of a simple pbs.xml sites file could be:
+[xml]
+source~~~~
+<config>
+  <pool handle="pbs">
+    <execution provider="pbs" url="none"/>
+    <profile namespace="globus" key="queue">fast</profile>
+    <profile namespace="globus" key="maxwalltime">00:05:00</profile>
+    <profile namespace="karajan" key="initialScore">10000</profile>
+    <profile namespace="karajan" key="jobThrottle">.10</profile>
+    <filesystem provider="local"/>
+    <workdirectory >/home/you/swiftwork</workdirectory>
+  </pool>
+</config>
+source~~~~
+
+OSG
+~~~
+This section describes how to get Swift running on the OSG Grid. We will use a
+manual coaster setup to get Swift running on OSG.
+
+.Coaster setup on OSG
+The following figure shows an abstract scheme for the manual coasters setup on
+OSG.
+
+image::figures/coaster_setup.png[Coaster setup]
+
+In the following steps, we will go through the process of manually setting 
+//Swift on OSG 
+//
+
+Bionimbus
+~~~~~~~~~
+This section explains a step by step procedure on getting Swift running on the
+Bionimbus cloud. We will use the _manual_ _coasters_ configuration on the
+Bionimbus cloud.
+
+**step1.** Connect to the gateway (ssh gatewayx.lac.uic.edu)
+
+**step2.** Start a virtual machine (euca-run-instances -n 1 -t m1.small
+emi-17EB1170)
+
+**step3.** Start the coaster-service on gateway
++coaster-service -port 1984 -localport 35753 -nosec+
+
+**step4.** Start the Swift-script from the gateway using normal Swift commandline
+
++swift -config cf -tc.file tc -sites.file sites.xml yourscript.swift -aparam=999+
+
+.cf
+----
+wrapperlog.always.transfer=true
+sitedir.keep=true
+execution.retries=1
+lazy.errors=true
+status.mode=provider
+use.provider.staging=true
+provider.staging.pin.swiftfiles=false
+foreach.max.threads=100
+provenance.log=true
+----
+
+.tc
+----
+localhost modftdock /home/ketan/swift-labs/bionimbus-coaster-modftdock/app/modftdock.sh null null GLOBUS::maxwalltime="1:00:00"
+----
+
+(See below for a sample sites.xml for this run)
+
+**step5.** Connect back to gateway from virtual machines using reverse ssh tunneling as follows:
+ 
+.From the gateway prompt
+
++ssh -R *:5000:localhost:5000 root at 10.101.8.50 sleep 999+
+
+WHERE:
+*=network interface, should remain the same on all cases
+
+localhost=the gateway host, should remain the same
+
+5000(LEFT OF localhost)=the port number on localhost to listen to **THIS WILL
+vary depending upon which port you want to listen to
+
+5000(RIGHT OF localhost)=the port on target host that you want to forward
+
+root at 10.101.8.50=the ip of the Virtual Machine on Bionimbus cloud, this will
+vary based on what ip you get for your Virtual Machine instance
+
+#On anywhere as long as provide the correct callback uri: here the
+"http://140.221.9.110:42195" is the callback uri of previous ones
+
+**step6.** Start the worker from the virtual machine
++worker.pl http://localhost:42195 tmp /tmp # where 42195 is the port where the
+coaster service is listening to the workers+
+
+.sites.xml for the above run
+
+[xml]
+source~~~~
+<config>
+  <pool handle="localhost">
+    <execution provider="coaster-persistent" url="http://localhost:1984" jobmanager="local:local"/>
+    <profile namespace="globus" key="workerManager">passive</profile>
+
+    <profile namespace="globus" key="workersPerNode">4</profile>
+    <profile namespace="globus" key="maxTime">10000</profile>
+    <profile namespace="globus" key="lowOverAllocation">100</profile>
+    <profile namespace="globus" key="highOverAllocation">100</profile>
+    <profile namespace="globus" key="slots">100</profile>
+    <profile namespace="globus" key="nodeGranularity">1</profile>
+    <profile namespace="globus" key="maxNodes">10</profile>
+    <profile namespace="karajan" key="jobThrottle">25.00</profile>
+    <profile namespace="karajan" key="initialScore">10000</profile>
+    <profile namespace="swift" key="stagingMethod">proxy</profile>
+    <filesystem provider="local"/>
+    <workdirectory>/home/ketan/swift-labs/bionimbus-coaster-modftdock/swift.workdir</workdirectory>
+  </pool>
+</config>
+source~~~~
+
+//Magellan
+//~~~~~~~~
+//Swift on Magellan
+//
+
+Debugging Swift
+---------------
+Swift errors are logged in several places:
+
+. All text from standard output and standard error produced by running the
+swift command
+. The .log file from this run. It will be named swiftscript.uniqueID.log
+where "swiftscript" is the name of your *.swift script source file, and
+uniqueID is a long unique id which starts with the date and time you ran the
+swift command.
+. $HOME/.globus/coasters directory on remote machines on which you are
+running coasters
+. $HOME/.globus/scripts directory on the host on which you run the Swift
+command, when swift is submitting to a local scheduler (Condor, PBS, SGE,
+Cobalt)
+. $HOME/.globus/??? on remote systems that you access via Globus 
+
+
+Log Processing
+---------------
+
+To properly generate log plots, you must enable VDL/Karajan logging. Make sure
+log4.properties contains:
+----
+log4j.logger.swift=DEBUG
+log4j.logger.org.globus.cog.abstraction.coaster.service.job.manager.Cpu=DEBUG
+----
+
+Make a basic load plot from Coasters Cpu log lines
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+.Generate the log (may set log4j.logger.swift=INFO for this one)
+(assuming the log is titled swift-run.log)
+
+.Convert the log times to Unix time
+
+----
+./iso-to-secs < swift-run.log > swift-run.time
+----
+
+.Make the start time file (this contains the earliest timestamp)
+
+----
+make LOG=swift-run.log start-time.tmp
+----
+
+or 
+
+----
+extract-start-time swift-run.log > start-time.tmp
+----
+
+.Normalize the transition times
+
+----
+./normalise-event-start-time < swift-run.time > swift-run.norm
+----
+
+.Build up a load data file:
+
+----
+./cpu-job-load.pl < swift-run.norm > load.data
+----
+
+.Plot with the JFreeChart-based plotter in usertools/plotter:
+
+----
+lines.zsh load.cfg load.eps load.data
+----
+
+Make a basic job completion plot from Coasters Cpu log lines
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+.Same as above, but, build up a completed data file:
+
+----
+./cpu-job-completed.pl < swift-run.norm > completed.data
+----
+
+.Plot with the JFreeChart-based plotter in usertools/plotter:
+
+----
+lines.zsh completed.cfg completed.eps completed.data
+----
+
+Make a basic Block allocation plot from Coasters Block log lines
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+Same as above, but:
+
+.Build up a block allocation data file:
+
+----
+./block-level.pl < swift-run.norm > blocks.data
+----
+
+.Plot with the JFreeChart-based plotter in usertools/plotter:
+
+----
+lines.zsh blocks.{cfg,eps,data}
+----
+
+Problem Reporting
+~~~~~~~~~~~~~~~~~
+When reporting problems to swift-user at ci.uchicago.edu, please attach the
+following files and information:
+ 
+. tc.data and sites.xml (or whatever you named these files)
+
+. your .swift source file and any .swift files it imports
+
+. any external mapper scripts called by your .swift script
+
+. all text from standard output and standard error produced by running the
+swift command
+
+. The .log file from this run. It will be named swiftscript.uniqueID.log
+
+. where "swiftscript" is the name of your *.swift script source file, and
+uniqueID is a long unique id which starts with the date and time you ran the
+swift command.
+
+. The swift command line you invoked
+
+. Any swift.properties entries you over-rode ($HOME/.swift/swift.properties,
+-config.file argument properties file, any changes to etc/swift.proerties from
+your swift distribution)
+
+. Which swift distribution you are running (release; svn revisions; other
+local changes you mave have made or included) 
+
+

Deleted: trunk/docs/log-processing.xml
===================================================================
--- trunk/docs/log-processing.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/log-processing.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,162 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<article>
-	<articleinfo revision="0.1">
-		<title>Swift log processing tools</title>
-		<subtitle>Source control $LastChangedRevision$</subtitle>
-	</articleinfo>
-
-	<section>
-		<title>Overview</title>
-		<para>
-There is a package of Swift log processing utilties. 
-		</para>
-
-	</section>
-	<section><title>Prerequisites</title>
-<para>
-gnuplot 4.0, gnu m4, gnu textutils, perl
-</para>
-
-	</section>
-	<section><title>Web page about a run</title>
-		<para>
-			<screen>
-swift-plot-log /path/to/readData-20080304-0903-xgqf5nhe.log 
-			</screen>
-This will create a web page, report-readData-20080304-0903-xgqf5nhe
-If the above command is used before a run is completed, the web page will
-report information about the workflow progress so far.
-		</para>
-
-	</section>
-	<section><title>CEDPS logs</title>
-		<para>
-The log processing tools can output transition streams in
-CEDPS logging format:
-			<screen>
-swift-plot-log /path/to/readData-20080304-0903-xgqf5nhe.log execute.cedps
-			</screen>
-		</para>
-	</section>
-	<section><title>Event/transition channels</title>
-		<para>
-Various event channels are extracted from the log files and made available
-as <filename>.event</filename> and <filename>.transition</filename> files.
-These roughly correspond to processes within the Swift runtime environment.
-		</para>
-		<para>These streams are then used to provide the data for the various
-output formats, such as graphs, web pages and CEDPS log format.</para>
-<para>The available streams are:
-
-<table>
- <tgroup cols="2">
-  <thead><row><entry>Stream name</entry><entry>Description</entry></row></thead>
-  <tbody>
-    <row><entry>execute</entry><entry>Swift procedure invocations</entry></row>
-    <row><entry>execute2</entry><entry>individual execution attempts</entry></row>
-    <row><entry>kickstart</entry><entry>kickstart records (not available as transitions)</entry></row>
-    <row><entry>karatasks</entry><entry> karajan level tasks, available as transitions (there are also four substreams karatasks.FILE_OPERATION,  karatasks.FILE_TRANSFER and karatasks.JOB_SUBMISSION available as events but not transitions)</entry></row>
-    <row><entry>workflow</entry><entry>a single event representing the entire workflow</entry></row>
-    <row><entry>dostagein</entry><entry>stage-in operations for execute2s</entry></row>
-    <row><entry>dostageout</entry><entry>stage-out operations for execute2s</entry></row>
-  </tbody>
- </tgroup>
-</table>
-
-</para>
-<para>
-Streams are generated from their source log files either as .transitions
-or .event files, for example by <literal>swift-plot-log whatever.log foo.event</literal>.
-</para>
-<para>
-Various plots are available based on different streams:
-
-<table>
- <tgroup cols="2">
-  <thead><row><entry>Makefile target</entry><entry>Description</entry></row></thead>
-  <tbody>
-    <row><entry>foo.png</entry><entry>Plots the foo event stream</entry></row>
-    <row><entry>foo-total.png</entry><entry>Plots how many foo events are in progress at any time</entry></row>
-    <row><entry>foo.sorted-start.png</entry><entry>Plot like foo.png but ordered by start time</entry></row>
-  </tbody>
- </tgroup>
-</table>
-
-</para>
-<para>
-Text-based statistics are also available with <literal>make foo.stats</literal>.
-</para>
-<para>
-Event streams are nested something like this:
-
-<screen>
-workflow
-  execute
-    execute2
-      dostagein
-        karatasks (fileops and filetrans)
-      clustering (optional)
-        karatasks (execution)
-          cluster-log (optional)
-            wrapper log (optional)
-              kickstart log
-      dostageout
-        karatasks (fileops and filetrans)
-</screen>
-
-</para>
-	</section>
-	<section><title>Internal file formats</title>
-<para>The log processing code generates a number of internal files that
-follow a standard format. These are used for communication between the
-modules that parse various log files to extract relevant information; and
-the modules that generate plots and other summary information.</para>
-<screen>
-need an event file format of one event per line, with that line
-containing start time and duration and other useful data.
-
-col1 = start, col2 = duration, col3 onwards = event specific data - for
-some utilities for now should be column based, but later will maybe
-move to attribute based.
-
-between col 1 and col 2 exactly one space
-between col 2 and col 3 exactly one space
-
-start time is in seconds since unix epoch. start time should *not* be
-normalised to start of workflow
-
-event files should not (for now) be assumed to be in order
-
-different event streams can be stored in different files. each event
-stream should use the extension  .event
-</screen>
-
-<screen>
-.coloured-event files
-=====================
-third column is a colour index
-first two columns as per .event (thus a coloured-event is a specific
-form of .event)
-</screen>
-
-	</section>
-
-	<section><title>hacky scripts</title>
-<para>There are a couple of hacky scripts that aren't made into proper
-commandline tools. These are in the libexec/log-processing/ directory:
-
-<screen>
-  ./execute2-status-from-log [logfile]
-     lists every (execute2) job and its final status
-
-  ./execute2-summary-from-log [logfile]
-     lists the counts of each final job status in log
-</screen>
-</para>
-	</section>
-</article>
-
-

Deleted: trunk/docs/plot-tour.xml
===================================================================
--- trunk/docs/plot-tour.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/plot-tour.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,311 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<article>
-	<articleinfo revision="$LastChangedRevision$">
-		<title>Swift log plotting and the some internal mechanics of Swift</title>
-	</articleinfo>
-
-	<section id="overview">
-		<title>Overview</title>
-<para>
-This document attempts to explain some of the meaning of the Swift
-log-processing plots, giving an explanation of how some of Swift's
-execution mechanism works and of some of the terminology used.
-</para>
-	</section>
-
-<section id="execute"><title>'execute' - SwiftScript app {} block invocations</title>
-
-<para>
-When a SwiftScript program invokes a application procedure (one with an
-app {} block), an 'execute' appears in the log file in START state. When
-all attempts at execution have finished (either successfully or unsuccessfully)
-then the execute will go into END_SUCCESS or END_FAILURE state. A workflow
-is successful if and only if all invocations end in END_SUCCESS.
-</para>
-
-<para>
-The execute states represent progress
-through the karajan procedure defined in
-<filename>libexec/execute-default.k</filename>.
-</para>
-<para>State changes for execute logs are defined by karajan log calls throughout
-this file.
-</para>
-<inlinemediaobject><imageobject><imagedata fileref="execute.png"></imagedata></imageobject></inlinemediaobject>
-
-<para>An execute consists of multiple attempts to perform
-<link linkend="execute2">execute2</link>s, with retries and replication
-as appropriate. Retries and replication are not exposed through the states
-of 'execute's.
-</para>
-<para>
-Executes are uniquely identified within a run by their karajan thread ID,
-which is present in the log files as the thread= parameter on execute
-log messsages.
-</para>
-
-<para>
-Here is a simple SwiftScript program which runs a foreach loop (<filename>few.swift</filename>):
-<programlisting>
-p() { 
-    app {
-        sleep "10s";
-    }
-}
-
-foreach i in [1:8] {
-    p();
-}
-</programlisting>
-
-</para>
-
-<para>
-Using the <command>swift-plot-log</command> from the log processing module,
-this graph gets generated to summarise execute state transitions:
-</para>
-<para>
-<inlinemediaobject><imageobject><imagedata fileref="plot-tour/pregenerated/execute.png"></imagedata></imageobject></inlinemediaobject>
-</para>
-<para>
-In this graph, the forloop calls p() eight times. Because there are no
-dependencies between those eight invocations, they are all invoked at the same
-time, around 1s into the run. This is show on the graph by the JOB_START line
-going from zero up to eight at around x=1s. As time passes, the sleep jobs
-complete, and as they do so the number of jobs in END_SUCCESS state increases.
-When all eight jobs are in END_SUCCESS state, the run is over.
-</para>
-<para>Here is a program with some data dependencies between invocations (<filename>dep.swift</filename>):
-
-<programlisting>
-$ cat dep.swift 
-type file;
-
-p(file f) { 
-    app {
-        sleep "10s";
-    }
-}
-
-(file o) q() {
-    app {
-        touch @o;
-    }
-}
-
-file intermediate = q();
-p(intermediate);
-</programlisting>
-
-</para>
-
-<para>
-Here is a plot of the execute states for this program:
-</para>
-<para><inlinemediaobject><imageobject><imagedata fileref="plot-tour/pregenerated/execute-dep.png"></imagedata></imageobject></inlinemediaobject>
-</para>
-<para>
-In this run, one invocation starts (q()) fairly quickly, 
-but the other invocation (of p()) does not - instead, it does not start until
-approximately the time that the q() invocation has reached END_SUCCESS. 
-</para>
-
-<para>
-Finally in this section on 'execute', here is a demonstration of how the above
-two patterns fit together in one program (<filename>few2.swift</filename>:
-<programlisting>
-type file;
-
-(file o) p(file i) { 
-    app {
-        sleepcopy @i @o;
-    }
-}
-
-file input <"input">;
-file output[];
-
-foreach i in [1:8] {
-    file intermediate;
-    intermediate = p(input);
-    output[i] = p(intermediate);
-}
-</programlisting>
-</para>
-
-
-<para>
-In total the program has 16 invocations of p(), dependent on each other in
-pairs. The dependencies can be plotted like this:
-
-<screen>
-$ <userinput>swift -pgraph few2.dot few2.swift</userinput>
-$ dot -Tpng -o few2.png few2.dot 
-</screen>
-
-yielding this graph:
-</para>
-
-<para><inlinemediaobject><imageobject><imagedata fileref="plot-tour/pregenerated/few2.png"></imagedata></imageobject></inlinemediaobject> </para>
-
-<para>
-When this program is run, the first row of 8 invocations can all start at the
-beginning of the program, because they have no dependencies (aside from on
-the input file). This can be seen around t=4 when the start line jumps up to 8.
-The other 8 invocations can only begin when the invocations they are dependent
-on have finished. This can be seen in the graph - every time one of the first
-invocations reaches END_SUCCESS, a new invocation enters START.
-</para>
-
-<para><inlinemediaobject><imageobject><imagedata fileref="plot-tour/pregenerated/execute-many-dep.png"></imagedata></imageobject></inlinemediaobject> </para>
-
-</section>
-<section id="execute2"><title>execute2 - one attempt at running an execute</title>
-<para>
-An execute2 is one attempt to execute an app procedure. execute2s are invoked
-by <link linkend="execute">execute</link>, once for each retry or replication
-attempt.
-</para>
-<para>The states of an execute2 represent progress through the execute2 karajan
-procedure defined in <filename>libexec/vdl-int.k</filename>
-</para>
-<inlinemediaobject><imageobject><imagedata fileref="execute2.png"></imagedata></imageobject></inlinemediaobject>
-<para>
-Before an execute2 makes its first state log entry, it chooses a site to run on.
-Then at the start of file stage-in, the execute2 goes into THREAD_ASSOCIATION
-state. Once stagein is completed, the JOB_START state is entered, indicating
-that execution of the job executable will now be attempted. Following that,
-STAGING_OUT indicates that the output files are being staged out. If everything
-is completed successfully, the job will enter JOB_END state.
-</para>
-<para>There are two exceptions to the above sequence: JOB_CANCELLED indicates that
-the replication mechanism has cancelled this job because a different execute2
-began actual execution on a site for the same execute. APPLICATION_EXCEPTION
-indicates that there was an error somewhere in the attempt to stage in,
-actually execute or stage out. If a job goes into APPLICATION_EXCEPTION state
-then it will generally be retried (up to a certain number of times defined
-by the "execution.retries" parameter) by the containing <link linkend="execute">execute</link>.
-</para>
-
-<para>
-In this example, we use a large input file to slow down file staging so that
-it is visible on an execute2 graph (<filename>big-files.swift</filename>):
-<programlisting>
-type file;  
-  
-(file o) p(file i) {   
-    app {  
-        sleepcopy @i @o;  
-    }  
-}  
-  
-file input <"biginput">;  
-file output[];  
-  
-foreach i in [1:8] {  
-    output[i] = p(input);  
-}  
-</programlisting>
-</para>
-
-<para>
-<inlinemediaobject><imageobject><imagedata fileref="plot-tour/pregenerated/execute2.png"></imagedata></imageobject></inlinemediaobject></para>
-
-<para>
-There is an initial large input file that must be staged in. This causes the first
-jobs to be in stagein state for a period of time (the space between the
-ASSOCIATED and JOB_START lines at the lower left corner of the graph). All
-invocations share a single input file, so it is only staged in once and
-shared between all subsequent invocations - once the file has staged in at the
-start, there is no space later on between the ASSOCIATED and JOB_START lines
-because of this.
-</para>
-<para>
-Conversely, each invocation generates a large output file without there being
-any sharing. Each of those output files must be staged back to the submit
-side, which in this application takes some time. This can be seen by the large
-amount of space between the STAGING_OUT and JOB_END lines.
-</para>
-<para>
-The remaining large space on the graph is between the JOB_START and STAGING_OUT
-lines. This represents the time taken to queue and execute the application
-executable (and surrounding Swift worker-side wrapper, which can sometimes
-have non-negligable execution times - this can be seen in the
-<link linkend="info">info section</link>).
-</para>
-
-</section>
-
-<section id="info"><title>wrapper info logs</title>
-<para>
-When a job runs, it is wrapped by a Swift shell script on the remote site that
-prepares the job environment, creating a temporary directory and moving
-input and output files around. Each wrapper invocation corresponds to a single
-application execution. For each invocation of the wrapper, a log file is created.
-Sometimes that log file is moved back to the submission side (when there is
-an error during execution, or when the setting 
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#engineconfiguration">wrapper.always.transfer</ulink>=true
-is set) and placed in a <filename>*.d/</filename> directory corresponding in
-name to the main log file.
-</para>
-
-<inlinemediaobject><imageobject><imagedata fileref="info.png"></imagedata></imageobject></inlinemediaobject>
-<para>The states of the info logs represent progress through the wrapper
-script, <filename>libexec/wrapper.sh</filename>.
-</para>
-
-<para>
-For the same run of <filename>big-files.swift</filename> as shown in the
-<link linkend="execute2">execute2 section</link>, here is a plot of states
-in wrapper info log files:
-</para>
-
-<para>
-<inlinemediaobject><imageobject><imagedata fileref="plot-tour/pregenerated/info.png"></imagedata></imageobject></inlinemediaobject></para>
-
-<para>
-The trace lines on this graph fit entirely within the space between JOB_START 
-and STAGING_OUT on the corresponding execute2 graph, because the Swift worker node
-wrapper script does not run until the submit side of Swift has submitted a
-job for execution and that job has begun running.
-</para>
-
-<para>
-Many of the lines on this plot are very close together, because many of the
-operations take minimal time. The main space between lines is between
-EXECUTE and EXECUTE_DONE, where the actual application executable is executing;
-and between COPYING_OUTPUTS and RM_JOBDIR, where the large output files are
-copied from a job specific working directory to the site-specific shared
-directory. It is quite hard to distinguish on the graph where overlapping
-lines are plotted together.
-</para>
-
-<para>
-Note also that minimal time is spent copying input files into the job-specific
-directory in the wrapper script; that is because in this run, the wrapper
-script is using the default behaviour of making symbolic links in the job-specific
-directory; symbolic links are usually cheap to create compared to copying file
-content. However, if the <ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#envvars">SWIFT_JOBDIR_PATH</ulink> parameter is set, then Swift will
-copy the input file to the specified job directory instead of linking. This
-will generally result in much more time being spent preparing the job directory
-in the Swift wrapper, but in certain circumstances this time is overwhelmingly
-offset by increased performance of the actual application executable (so on
-this chart, this would be seen as an increased job directory preparation time,
-but a reduced-by-more application executable time).
-</para>
-
-
-</section>
-
-<section><title>Relation of logged entities to each other</title>
-<para>Here is a simple diagram of how some of the above log channels along
-with other pieces fit together:</para>
-<inlinemediaobject><imageobject><imagedata fileref="logrelations.png"></imagedata></imageobject></inlinemediaobject>
-
-</section>
-
-</article>
-

Deleted: trunk/docs/provenance.xml
===================================================================
--- trunk/docs/provenance.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/provenance.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,2592 +0,0 @@
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<!-- build this doc by symlinking to it form your swift/docs directory
-and typing make provenance.php -->
-
-<article>
-<title>provenance working notes, benc</title>
-<screen>$Id$</screen>
-<section><title>Goal of this present work</title>
-<para>
-The goal of the work described in this document is to investigate
-<emphasis>retrospective provenance</emphasis> and
-<emphasis>metadata handling</emphasis> in Swift, with an emphasis
-on effective querying of the data, rather than on collection of the data.
-</para>
-
-<para>
-The motivating examples are queries of the kinds discussed in section 4 of
-<ulink url="http://www.ci.uchicago.edu/swift/papers/VirtualDataProvenance.pdf"
->'Applying the Virtual Data Provenance Model'</ulink>;
-the queries and metadata in the <ulink url="http://twiki.ipaw.info/bin/view/Challenge/FirstProvenanceChallenge"
->First Provenance Challenge</ulink>; and the metadata database used by
-i2u2 cosmic.
-</para>
-
-<para>
-I am attempting to scope this so that it can be implemented in a few
-months; more expensive features, though desirable, are relegated the the
-'What this work does not address' section. Features which appear fairly
-orthogonal to the main aims are also omitted.
-</para>
-
-<para>
-This document is a combination of working notes and on-going status report
-regarding my provenance work; as such its got quite a lot of opinion in it,
-some of it not justified in the text.
-</para>
-
-</section>
-<section id="owndb"><title>Running your own provenance database</title>
-<para>This section details running your own SQL-based provenance database on
-servers of your own control.</para>
-
-<section><title>Check out the latest SVN code</title>
-
-<para>
-Use the following command to check out the <literal>provenancedb</literal>
-module:
-
-<screen>
-svn co https://svn.ci.uchicago.edu/svn/vdl2/provenancedb                      
-</screen>
-</para>
-
-</section>
-
-
-<section><title>Configuring your SQL database</title>
-<para>
-Follow the instructions in one of the following sections, to configure your
-database either for sqlite3 or for postgres.
-</para>
-<section><title>Configuring your sqlite3 SQL database</title>
-<para>
-This section describes configuring the SQL scripts to use 
-<ulink url="http://www.sqlite.org/">sqlite</ulink>, which is
-appropriate for a single-user installation.
-</para>
-<para>Install or find sqlite3. On
-<literal>communicado.ci.uchicago.edu</literal>, it is installed and can be
-accessed by adding the line <literal>+sqlite3</literal> to your ~/.soft file
-and typing <literal>resoft</literal>. Alternatively, on OS X with MacPorts, this command works:
-<screen>
-$ <userinput>sudo port install sqlite3</userinput>
-</screen>
-Similar commands using <literal>apt</literal> or <literal>yum</literal> will
-probably work under Linux.
-</para>
-<para>
-In the next section, you will create a <literal>provenance.config</literal>
-file. In that, you should configure the use of sqlite3 by specifying:
-<screen>
-export SQLCMD="sqlite3 provdb "
-</screen>
-(note the trailing space before the closing quote)
-</para>
-</section>
-
-<section><title>Configuring your own postgres 8.3 SQL database</title>
-<para>
-This section describes configuring a postgres 8.3 database, which is
-appropriate for a large installation (where large means lots of log
-files or multiple users)
-</para>
-<para>
-First install and start postgres as appropriate for your platform
-(using <command>apt-get</command> or <command>port</command> for example).
-</para>
-<para>
-As user <literal>postgres</literal>, create a database:
-<screen>
-$ <userinput>/opt/local/lib/postgresql83/bin/createdb provtest1</userinput>
-</screen>
-</para>
-<para>
-Check that you can connect and see the empty database:
-<screen>
-$ <userinput>psql83 -d provtest1 -U postgres</userinput>
-Welcome to psql83 8.3.6, the PostgreSQL interactive terminal.
-
-Type:  \copyright for distribution terms
-       \h for help with SQL commands
-       \? for help with psql commands
-       \g or terminate with semicolon to execute query
-       \q to quit
-
-provtest1=# <userinput>\dt</userinput>
-No relations found.
-provtest1=# <userinput>\q</userinput>
-</screen>
-</para>
-<para>
-In the next section, when configuring <literal>provenance.config</literal>,
-specify the use of postgres like this:
-<screen>
-export SQLCMD="psql83 -d provtest1 -U postgres "
-</screen>
-Note the trailing space before the final quote. Also, note that if you
-fiddled the above test command line to make it work, you will have to make
-similar fiddles in the <literal>SQLCMD</literal> configuration line.
-</para>
-</section>
-</section>
-
-<section><title>Import your logs</title>
-<para>
-Now create a <filename>etc/provenance.config</filename> file to define local
-configuration. An example that I use on my laptop is present in
-<filename>provenance.config.soju</filename>.
-The <literal>SQLCMD</literal> indicates which command to run for SQL
-access. This is used by other scripts to access the database. The
-<literal>LOGREPO</literal> and <literal>IDIR</literal> variables should
-point to the directory under which you collect your Swift logs.
-</para>
-<para>
-Now import your logs for the first time like this:
-<screen>
-$ <userinput>./swift-prov-import-all-logs rebuild</userinput>
-</screen>
-</para>
-
-</section>
-
-<section><title>Querying the newly generated database</title>
-<para>
-You can use <command>swift-about-*</command> commands, described in
-the <link linkend="commands">commands section</link>.
-</para>
-<para>
-If you're using the SQLite database, you can get an interactive SQL
-session to query your new provenance database like this:
-<screen>
-$ <userinput>sqlite3 provdb</userinput>
-SQLite version 3.6.11
-Enter ".help" for instructions
-Enter SQL statements terminated with a ";"
-sqlite> 
-</screen>
-
-</para>
-</section>
-
-</section>
-
-<section id="commands"><title>swift-about-* commands</title>
-<para>There are several swift-about- commands:
-</para>
-<para>swift-about-filename - returns the global dataset IDs for the specified
-filename. Several runs may have output the same filename; the provenance
-database cannot tell which run (if any) any file with that name that
-exists now came from.
-</para>
-<para>Example: this looks for information about
-<filename>001-echo.out</filename> which is the output of the first
-test in the language-behaviour test suite:
-<screen>
-$ <userinput>./swift-about-filename 001-echo.out</userinput>
-Dataset IDs for files that have name file://localhost/001-echo.out
- tag:benc at ci.uchicago.edu,2008:swift:dataset:20080114-1353-g1y3moc0:720000000001
- tag:benc at ci.uchicago.edu,2008:swift:dataset:20080107-1440-67vursv4:720000000001
- tag:benc at ci.uchicago.edu,2008:swift:dataset:20080107-2146-ja2r2z5f:720000000001
- tag:benc at ci.uchicago.edu,2008:swift:dataset:20080107-1608-itdd69l6:720000000001
- tag:benc at ci.uchicago.edu,2008:swift:dataset:20080303-1011-krz4g2y0:720000000001
- tag:benc at ci.uchicago.edu,2008:swift:dataset:20080303-1100-4in9a325:720000000001
-</screen>
-Six different datasets in the provenance database have had that filename
-(because six language behaviour test runs have been uploaded to the
-database).
-</para>
-
-<para>swift-about-dataset - returns information about a dataset, given
-that dataset's uri. Returned information includes the IDs of a containing
-dataset, datasets contained within this dataset, and IDs for executions
-that used this dataset as input or output.
-</para>
-<para>Example:
-<screen>
-$ <userinput>./swift-about-dataset tag:benc at ci.uchicago.edu,2008:swift:dataset:20080114-1353-g1y3moc0:720000000001</userinput>
-About dataset tag:benc at ci.uchicago.edu,2008:swift:dataset:20080114-1353-g1y3moc0:720000000001
-That dataset has these filename(s):
- file://localhost/001-echo.out
-
-That dataset is part of these datasets:
-
-That dataset contains these datasets:
-
-That dataset was input to the following executions (as the specified named parameter):
-
-That dataset was output from the following executions (as the specified return parameter):
- tag:benc at ci.uchicago.edu,2008:swiftlogs:execute:001-echo-20080114-1353-n7puv429:0                                                | t     
-</screen>
-This shows that this dataset is not part of a more complicated dataset
-structure, and was produced as an output parameter t from an execution.
-</para>
-<para>swift-about-execution - gives information about an execution, given
-an execution ID
-<screen>
-$ <userinput>./swift-about-execution tag:benc at ci.uchicago.edu,2008:swiftlogs:execute:001-echo-20080114-1353-n7puv429:0</userinput>
-About execution tag:benc at ci.uchicago.edu,2008:swiftlogs:execute:001-echo-20080114-1353-n7puv429:0
-                                                                id                                                                |   starttime    |     duration      |                                                            finalstate                                                            |                                                               app                                                                |                                                             scratch                                                              
-----------------------------------------------------------------------------------------------------------------------------------+----------------+-------------------+----------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------
- tag:benc at ci.uchicago.edu,2008:swiftlogs:execute:001-echo-20080114-1353-n7puv429:0                                                | 1200318839.393 | 0.743000030517578 | 0                                                                                                                                | END_SUCCESS                                                                                                                      | echo                                                                                                                            
-(1 row)
-</screen>
-This shows some basic information about the execution - the start time,
-the duration, the name of the application, the final status.
-</para>
-
-</section>
-
-
-<section><title>What this work does not address</title>
-
-<para>This work explicitly excludes a number of uses which traditionally
-have been associated with the VDS1 Virtual Data Catalog - either as real
-or as imagined functionality.</para>
-
-<para>
-Much of this is open to debate; especially regarding which features are the
-most important to implement after the first round of implementation has
-occurred.
-</para>
-
-<variablelist>
-
-<varlistentry>
-<term>Namespaces and versioning</term>
-<listitem> <para>
-the need for these is somewhat orthogonal to the work here.
-</para>
-<para>Namespaces and versions provide a richer identifier but don't
-fundamentally change the nature of the identifier.</para>
-<para>so for now I mostly ignore as they are
-(I think) fairly straightforward drudgework to implement, rather than
-being fundamentally part of how queries are formed. Global namespaces
-are used a little bit for identifying datasets between runs (see tag URI
-section)
-</para> </listitem>
-</varlistentry>
-
-<varlistentry>
-<term>Prospective provenance</term>
-<listitem> <para>
-SwiftScript source programs don't have as
-close a similarity to their retrospective structure as in VDL1, so a bunch
-of thought required here. Is this required? Is it different from the
-SwiftScript program-library point?
-</para> </listitem>
-</varlistentry>
-<varlistentry> <term>A database of all logged information</term>
-<listitem>
-<para>though it would be interesting
-to see what could be done there. straightforward to import eg.
-.event and/or .transition files from log parsers into the DB.
-</para>
-</listitem>
-</varlistentry>
-
-<varlistentry> <term>Replica management</term>
-<listitem>
-<para>
-No specific replica location or management support. However see sections
-on general metadata handling (in as much as general metadata can support
-replica location as a specific metadata usecase); and also the section on
-global naming in the to-be-discussed section. This ties in with the
-Logical File Names concept somehow.
-</para>
-</listitem>
-</varlistentry>
-
-
-<varlistentry> <term>A library for SwiftScript code</term>
-<listitem>
-<para>need better uses for this and
-some indication that a more conventional version control system is
-not more appropriate.
-</para>
-<para>
-Also included in this exclusion is storage of type definitions.
-Its straightforward to store type names; but the definitions are
-per-execution. More usecases would be useful here to figure out what sort
-of query people want to make.
-</para>
-</listitem>
-</varlistentry>
-
-<varlistentry> <term>Live status updates of in-progress workflows</term>
-<listitem>
-<para>
-this may happen if data goes
-into the DB during run rather than at end (which may or may not happen).
-also need to deal with slightly different data - for example, execute2s
-that ran but failed (which is not direct lineage provenance?)
-</para>
-<para>
-so - one successful invocation has: one execute, one execute2 (the most recent),
-and maybe one kickstart record. it doesn't track execute2s and kickstarts for
-failed execution attempts (nor, perhaps, for failed workflows at all...)
-</para>
-</listitem>
-</varlistentry>
-
-<varlistentry>
-<term>Deleting or otherwise modifying provenance data</term>
-<listitem>
-<para>
-Deleting or otherwise modifying provenance data. Though deleting/modifying
-other metadata should be taken into account.
-</para>
-</listitem>
-</varlistentry>
-
-<varlistentry> <term>Security</term>
-<listitem>
-<para>There are several approaches
-here. The most native approach is to use the security model of the
-underlying database (which will vary depending on which database is used).
-</para>
-<para>This is a non-trivial area, especially to do with any richness.
-Trust relationships between the various parties accessing the database
-should be taken into account.
-</para>
-</listitem>
-</varlistentry>
-
-<varlistentry><term>A new metadata or provenance query language</term>
-<listitem>
-<para>Designing a (useful - i.e. usable and performing) database
-and query language is a non-trivial exercise (on the order of years).
-</para>
-<para>
-For now, use existing query languages and their implementations. Boilerplate
-queries can be developed around those languages.
-</para>
-<para>
-One property of this is that there will not be a uniform query language for
-all prototypes. This is contrast to the VDS1 VDC which had a language which
-was then mapped to at least SQL and perhaps some XML query language too.
-</para>
-<para>
-An intermediate / alternative to something language-like is a much more
-tightly constrained set of library / template queries with a very constrained
-set of parameters.
-</para>
-<para>
-Related to this is the avoidance as much as possible of mixing models; so that
-one query language is needed for part of a query, and another query language
-is needed for another part of a query. An example of this in practice is the
-storage of XML kickstart records as blobs inside a relational database in the
-VDS1 VDC. SQL could be used to query the containing records, whilst an
-XML query language had to be used to query inner records. No benefit could
-be derived there from query language level joining and query optimisation;
-instead the join had to be implemented poorly by hand.
-</para>
-</listitem>
-</varlistentry>
-
-<varlistentry><term>An elegant collection mechanism for provenance or
-metadata</term>
-<listitem> <para>
-The prototypes here collect their information through log stripping. This
-may or may not be the best way to collect the data. For example, hooks
-inside the code might be a better way.
-</para></listitem>
-</varlistentry>
-
-</variablelist>
-</section>
-
-<section><title>Data model</title>
-<section><title>Introduction to the data model</title>
-<para>
-All of the prototypes use a basic data model that is strongly
-related to the structure of data in the log files; much of the naming here
-comes from names in the log files, which in turn often comes from source
-code procedure names.
-</para>
-<para>
-The data model consists of the following data objects:
-</para>
-<para>execute - an execute represents a procedure call in a
-SwiftScript program.
-</para>
-<para>execute2 - an execute2 is an attempt to actually execute an
-'execute' object.</para>
-<para>dataset - a dataset is data used by a Swift program. this might be
-a file, an array, a structure, or a simple value.</para>
-<para>workflow - a workflow is an execution of an entire SwiftScript
-program</para>
-</section>
-
-<section><title>execute</title>
-
-<para>
-<firstterm>execute</firstterm> - an 'execute' is an execution of a
-procedure call in a SwiftScript program. Every procedure call in a
-SwiftScript program corresponds to either
-one execute (if the execution was attempted) or zero (if the workflow was
-abandoned before an execution was attempted). An 'execute' may encompass
-a number of attempts to run the appropriate procedure, possibly on differnt
-sites. Those attempts are contained within an execute as execute2 entities.
-Each execute is related to zero or more datasets - those passed as inputs
-and those that are produced as outputs.
-</para>
-</section>
-<section><title>execute2</title>
-<para>
-<firstterm>execute2</firstterm> - an 'execute2' is an attempt to run a
-program on some grid site. It consists of staging in input files, running the
-program, and staging out the output files. Each execute2 belongs to exactly
-one execute. If the database is storing only successful workflows and
-successful executions, then each execute will be associated with
-exactly one execute2. If storing data about unsuccessful workflows or
-executions, then each execute may have zero or more execute2s.
-</para>
-</section>
-<section><title>dataset</title>
-<para>
-A dataset represents data within a
-SwiftScript program. A dataset can be an array, a structure, a file or
-a simple value. Depending on the nature of the dataset it may have some
-of the following attributes: a value (for example, if the dataset
-represents an integer); a filename (if the dataset represents a file);
-child datasets (if the dataset represents a structure or an array); and
-parent dataset (if the dataset is contained with a structure or an
-array).
-</para>
-
-<para>
-At present, each dataset corresponds to exactly one in-memory DSHandle
-object in the Swift runtime environment; however this might not continue
-to be the case - see the discussion section on cross-dataset run
-identification.
-</para>
-
-<para>Datasets may be related to executes, either as datasets
-taken as inputs by an execute, or as datasets produced by an execute.
-A dataset may be produced as an output by at most one execute. If it is not
-produced by any execute, it is an <firstterm>input to the workflow</firstterm>
-and has been produced through some other mechanism. Multiple datasets may
-have the same filename - for example, at present, each time the same file
-is used as an input in different workflows, a different dataset appears in
-the database. this might change. multiple workflows might (and commonly do)
-output files with the same name. at present, these are different datasets,
-but are likely to remain that way to some extent - if the contents of files
-is different then the datasets should be regarded as distinct.
-</para>
-</section>
-<section><title>workflow</title>
-<para>
-<firstterm>workflow</firstterm> - a 'workflow' is an execution of an
-entire SwiftScript program. Each execute belongs to exactly one workflow. At
-present, each dataset also belongs to exactly one workflow (though the
-discussion section talks about how that should not necessarily be the case).
-</para>
-</section>
-
-<para>TODO: diagram of the dataset model (similar to the one in the
-provenance paper but probably different). design so that in the XML
-model, the element containment hierarchies can be easily marked in a
-different colour</para>
-</section>
-
-<section><title>Prototype Implementations</title>
-<para>
-I have made a few prototype implementations to explore ways of storing
-and querying provenance data.
-</para>
-<para>
-The basic approach is: build on the log-processing code, which knows how
-to pull out lots of information from the log files and store it in a
-structured text format; extend Swift to log additional information as
-needed;
-write import code which knows
-how to take the log-processing structured files and put them into whatever
-database/format is needed by the particular prototype.
-</para>
-<para>
-If it is desirable to support more than one of these storage/query mechanisms
-(perhaps because
-they have unordered values of usability vs query expessibility) then
-perhaps should be core provenance output code which is somewhat
-agnostic to storage system (equivalent to the post-log-processing
-text files at the moment) and then some relatively straightforward set
-of importers which are doing little more than syntax change
-(cf. it was easy to adapt the SQL import code to make
-prolog code instead)
-</para>
-
-<para>
-The script <command>import-all</command> will import into the
-basic SQL and eXist XML databases.
-</para>
-
-<section><title>Relational, using SQL</title>
-<para>There are a couple of approaches based around relational databases
-using SQL. The plain SQL approach allows many queries to be answered, but
-does provide particularly easy querying for the transitive relations
-(such as the 'preceeds' relation mentioned elsewhere); ameliorating this 
-problem is point of the second model.
-</para>
-<section>
-<title>Plain SQL</title>
-<para>In this model, the provenance model is mapped to a relational
-schema, stored in sqlite3 and queried with SQL.
-</para>
-
-<para>
-This prototype uses sqlite3 on my laptop. The <command>import-all</command>
-will initialise and import into this database (and also into the XML DB).
-</para>
-
-<para>
-example query - counts how many of each procedure have been called.
-<screen>
-sqlite> select procedure_name, count(procedure_name) from executes, invocation_procedure_names where executes.id = invocation_procedure_names.execute_id group by procedure_name;
-align|4
-average|1
-convert|3
-slicer|3
-</screen>
-</para>
-<para>
-needs an SQL database. sqlite is easy to get (from standard OS software
-repos, and from globus toolkit) so this is not as horrible as it seems. 
-setup requirements for sqlite are minimal.
-</para>
-<para>
-metadata: one way is to handle them as SQL relations. this allows them
-to be queried using SQL quite nicely, and to be indexed and joined on
-quite easily.
-</para>
-<para>
-prov query 1:Find the process that led to Atlas X Graphic / everything that caused Atlas X Graphic to be as it is. This should tell us the new brain images from which the averaged atlas was generated, the warping performed etc.
-</para>
-
-<section><title>Description of tables</title>
-<para>
-Executions are stored in a table called 'executes'. Each execution has the fields: id - a globally unique ID for that execution; starttime - the start time
-of the execution attempt, in seconds since the unix epoch (this is roughly
-the time that swift decides to submit the task, *not* the time that a worker
-node started executing the task); duration - in seconds (time from start time
-to swift finally finishing the execution, not the actual on-worker execution
-time); final state (is likely to always be END_SUCCESS as the present import
-code ignores failed tasks, but in future may include details of failures;
-app - the symbolic name of the application
-</para>
-<para>
-Details of datasets are stored in three tables: dataset_filenames,
-dataset_usage and dataset_containment.
-</para>
-<para>
-dataset_filenames maps filenames (or more generally URIs) to unique dataset
-identifiers.
-</para>
-<para>
-dataset_usage maps from unique dataset identifiers to the execution
-unique identifiers for executions that take those datasets as inputs
-and outputs. execute_id and dataset_id identify the execution and the
-procedure which are related. direction indicates whether this dataset
-was used as an input or an output. param_name is the name of the parameter
-in the SwiftScript source file.
-</para>
-<para>
-dataset_containment indicates which datasets are contained within others,
-for example within a structure or array. An array or structure is a dataset
-with its own unique identifier; and each member of the array or structure
-is again a dataset with its own unique identifier. The outer_dataset_id and
-inner_dataset_id fields in each row indicate respectively the
-containing and contained dataset.
-</para>
-
-</section>
-
-</section>
-
-<section>
-<title>SQL with Pre-generated Transitive Closures</title>
-
-<para>SQL does not allow expression of transitive relations. This causes a
-problem for some of the queries.</para>
-<para>Work has previously been done (cite) to work on pre-generating
-transitive closures over relations. This is similar in concept to the
-pregenerated indices that SQL databases traditionally provide.
-</para>
-<para>In the pre-generated transitive closure model, a transitive closure
-table is pregenerated (and can be incrementally maintained as data is added
-to the database). Queries are then made against this table instead of
-against the ground table.
-</para>
-
-<para>All of the data available in the earlier SQL model is available, in
-addition to the additional closures generated here.</para>
-
-<para>
-Prototype code: There is a script called <literal>prov-sql-generate-transitive-closures.sh</literal> to generate the close of the preceeds
-relation and places it in a table called <literal>trans</literal>:
-<screen>
-$ prov-sql-generate-transitive-closures.sh 
-Previous: 0 Now: 869
-Previous: 869 Now: 1077
-Previous: 1077 Now: 1251
-Previous: 1251 Now: 1430
-Previous: 1430 Now: 1614
-Previous: 1614 Now: 1848
-Previous: 1848 Now: 2063
-Previous: 2063 Now: 2235
-Previous: 2235 Now: 2340
-Previous: 2340 Now: 2385
-Previous: 2385 Now: 2396
-Previous: 2396 Now: 2398
-Previous: 2398 Now: 2398
-</screen>
-</para>
-<para>A note on timing - constructing the closure of 869 base relations,
-leading to 2398 relations in the closure takes 48s with no indices; adding
-an index on a column in the transitive relations table takes this time down
-to 1.6s. This is interesting as an example of how some decent understanding
-of the data structure to produce properly optimised queries and the like
-is very helpful in scaling up, and an argument against implementing a poor
-'inner system'.
-</para>
-<para>Now we can reformulate some of the queries from the SQL section
-making use of this table.
-</para>
-<para>
-There's some papers around about transitive closures in SQL:
-
-<ulink url="http://coblitz.codeen.org:3125/citeseer.ist.psu.edu/cache/papers/cs/554/http:zSzzSzsdmc.krdl.org.sgzSzkleislizSzpsZzSzdlsw-ijit97-9.pdf/dong99maintaining.pdf">'Maintaining transitive closure of graphs in SQL'</ulink>
-and
-<ulink url="http://willets.org/sqlgraphs.html"
->http://willets.org/sqlgraphs.html</ulink>
-</para>
-
-<para>
-how expensive is doing this? how cheaper queries? how more expensive is
-adding data? and how scales (in both time and size (eg row count)) as we
-put in more rows (eg. i2u2 scale?) exponential, perhaps? though
-the theoretical limit is going to be influenced by our usage pattern
-which I think for the most part will be lots of disjoint graphs
-(I think). we get to index the transitive closure table, which we don't
-get to do when making the closure at run time.
-</para>
-
-<para>We don't have the path(s) between nodes but we could store that in the
-closure table too if we wanted (though multiple paths would then be more
-expensive as there are now more unique rows to go in the closure table)</para>
-
-<para>
-This is a violation of normalisation which the traditional relational people
-would say is bad, but OLAP people would say is ok.
-</para>
-
-<para>
-how much easier does it make queries?
-for queries to root, should be much easier (query over
-transitive table almost as if over base table). but queries such as
-'go back n-far then stop' and the like harder to query.
-</para>
-
-<para>
-keyword: 'incremental evaluation system' (to maintain transitive closure)
-</para>
-
-<para>
-The difference between plain SQL and SQL-with-transitive-closures
-is that in SQL mode, construction occurs at query time and the query
-needs to specify that construction. In the transitive-close mode,
-construction occurs at data insertion time, with increased expense there
-and in size of db, but cheaper queries (I think).
-</para>
-<para>
-sample numbers: fmri example has 50 rows in base causal relation
-table. 757 in table with transitive close.
-</para>
-
-<para>
-If running entirely separate workflows, both those numbers will scale linearly
-with the number of workflows; however, if there is some crossover between
-subsequent workflows in terms of shared data files then the transitive
-graph will grow super-linearly.
-</para>
-
-</section>
-</section>
-<section><title>XML</title>
-
-<para>In this XML approach, provenance data and metadata is represented as 
-a set of XML documents.</para>
-
-<para>Each document is stored in some kind of document store.
-Two different document stores are used: 
-the posix filesystem and eXist. XPath and XQuery are investigated as
-query languages.</para>
-
-<para>semi-structuredness allows structured metadata without having to
-necessarily declare its schema (which I think is one of the desired properties
-that turns people off using plain SQL tables to reflect the metadata
-schema). but won't get indexing without some configuration of structure so
-whilst that will be nice for small DBs it may be necessary to scale up
-(though that in itself isn't a problem - it allows gentle start without
-schema declaration and to scale up, add schema declarations later on - fits
-in with the scripting style). semi-structured form of XML lines up very
-will with the desire to have semi-structured metadata. compare ease of
-converting other things (eg fmri showheader output) to loose XML - field
-relabelling without having to know what the fields actually are - to how
-this needs to be done in SQL.
-</para>
-
-<para>
-The hierarchical structure of XML perhaps better for dataset containment
-because we can use // operator which is transitive down the tree for
-dataset containment.
-</para>
-<para>
-XML provides a more convenient export format than SQL or the other formats
-in terms of an easily parseable file format. There are lots of
-tools around for processing XML files in various different ways (for example,
-treating as text-like documents; deserialising into Java in-memory objects
-based on an XML Schema definition), and XML is one of the most familiar
-structured data file formats.
-</para>
-<para>
-Not sure what DAG representation would look like here? many (one per arc)
-small documents? is that a problem for the DBs? many small elements, more
-likely, rather than many small documents - roughly one document per workflow.
-</para>
-
-<section><title>xml metadata</title>
-<para>in the XML model, two different ways of putting in metadata: as descendents of the
-appropriate objects (eg. dataset metadata under the relevant datasets). this
-is most xml-like in the sense that its strongly hierarchical. as separate
-elements at a higher level (eg. separate documents in xml db). the two ways
-are compatible to the extent that some metadata can be stored one way, some
-the other way, although the way of querying each will be different.
-</para>
-<para>
-way i: at time of converting provenance data into XML, insert metadata at
-appropriate slots (though if XML storage medium allows, it could be inserted
-later on).
-</para>
-<para>
-modified <command>prov-to-xml.sh</command> to put that info in for
-the appropriate datasets (identified using the below descripted false-filename
-method</para>
-<para>
-can now make queries such as 'tell me the datasets which have header metadata':
-<screen>
-cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '//dataset[headermeta]'
-</screen>
-</para>
-<para>
-way ii: need to figure out what the dataset IDs for the volumes are. At the
-moment, the filename field for (some) mapped dataset parents still 
-has a filename
-even though that file never exists, like below. This depends on the mapper
-being able to invent a filename for such. Mappers aren't guaranteed to be
-able to do that - eg where filenames are not formed as a function of the
-parameters and path, but rely on eg. whats in the directory at initialisation
-(like the filesystem mapper).
-<screen>
-<dataset identifier="10682109">
-<filename>file://localhost/0001.in</filename>
-<dataset identifier="12735302">
-<filename>file://localhost/0001.h.in</filename>
-</dataset>
-<dataset identifier="7080341">
-<filename>file://localhost/0001.v.in</filename>
-</dataset>
-</screen>
-so we can perhaps use that. The mapped filename here is providing a
-dataset identification (by chance, not by design) so we can take advantage
-of it:
-<screen>
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance//dataset[filename="file://localhost/0001.in"]/@identifier'
-10682109
-</screen>
-</para>
-<para>I think metadata in XML is more flexible than metadata in relational,
-in terms of not having to define schema and not having to stick to schema.
-However, how will it stand up to the challenge of scalability? Need to get
-a big DB. Its ok to say that indices need to be made - I don't dispute that.
-What's nice is that you can operate at the low end without such. So need to
-get this stuff being imported into eg eXist (maybe the prototype XML processing
-should look like -> XML doc(s) on disk -> whatever xmldb in order to
-facilitate prototyping and pluggability.)
-</para>
-
-</section>
-
-<section><title>XPath query language</title>
-
-<para>
-XPath queries can be run either against the posix file system store
-or against the eXist database. When using eXist, the opportunity exists
-for more optimised query processing (and indeed, the eXist query processing
-model appears to evaluate queries in an initially surprising and unintuitive
-way to get speed); compared to on the filesystem, 
-where XML is stored in serialised form and must be parsed for each query.
-</para>
-
-<para>
-xml generation:
-<screen>
-./prov-to-xml.sh > /tmp/prov.xml
-</screen>
-and basic querying with xpathtool (http://www.semicomplete.com/projects/xpathtool/)
-<screen>
-cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/provenance/execute[thread="0-4-1"]' 
-</screen>
-</para>
-<para>
-q1:
-<screen>
-cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/provenance//dataset[filename="file://localhost/0001.jpeg"]'       
-<toplevel>
-  <dataset identifier="14976260">
-    <filename>file://localhost/0001.jpeg</filename>
-  </dataset>
-</toplevel>
-</screen>
-or can get the identifier like this:
-<screen>
- cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance//dataset[filename="file://localhost/0001.jpeg"]/@identifier' 
-14976260
-</screen>
-can also request eg IDs for multiple, like this:
-<screen>
-cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance//dataset[filename="file://localhost/0001.jpeg"]/@identifier|/provenance//dataset[filename="file://localhost/0002.jpeg"]/@identifier' 
-</screen>
-</para>
-<para>
-can find the threads that use this dataset like this:
-<screen>
- cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/provenance/tie[dataset=/provenance//dataset[filename="file://localhost/0001.jpeg"]/@identifier]' 
-<toplevel>
-  <tie>
-    <thread>0-4-3</thread>
-    <direction>output</direction>
-    <dataset>14976260</dataset>
-    <param>j</param>
-    <value>org.griphyn.vdl.mapping.DataNode hashCode 14976260 with no value at dataset=final path=[1]</value>
-  </tie>
-</screen>
-</para>
-<para>
-now we can iterate as in the SQL example:
-<screen>
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/tie[thread="0-4-3"][direction="input"]/dataset'
-4845856
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/tie[dataset="4845856"][direction="output"]/thread'
-0-3-3
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/tie[thread="0-3-3"][direction="input"]/dataset'
-3354850
-6033476
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/tie[dataset="3354850"][direction="output"]/thread'
-0-2
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/tie[thread="0-2"][direction="input"]/dataset'
-4436324
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/tie[dataset="4436324"][direction="output"]/thread'
-</screen>
-</para>
-<para>so now we've exhausted the tie relation - dataset 4436324 comes from
-elsewhere...</para>
-<para>
-so we say this:
-<screen>
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/dataset[@identifier="4436324"]//dataset/@identifier'
-11153746
-7202698
-12705705
-7202698
-12705705
-655223
-2088036
-13671126
-2088036
-13671126
-5169861
-14285084
-12896050
-14285084
-12896050
-6487148
-5772360
-4910675
-5772360
-4910675
-</screen>
-which gives us (non-unique) datasets contained within dataset 4436324. We can
-uniquify outside of the language:
-<screen>
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/dataset[@identifier="4436324"]//dataset/@identifier' | sort |uniq
-11153746
-12705705
-12896050
-13671126
-14285084
-2088036
-4910675
-5169861
-5772360
-6487148
-655223
-7202698
-</screen>
-and now need to find what produced all of those... iterate everything again.
-probably we can do it integrated with the previous query so that we
-don't have to iterate externally:
-<screen>
-$ cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/provenance/tie[dataset=/provenance/dataset[@identifier="4436324"]//dataset/@identifier]'
-<?xml version="1.0"?>
-<toplevel>
-  <tie>
-    <thread>0-1-3</thread>
-    <direction>output</direction>
-    <dataset>5169861</dataset>
-    <param>o</param>
-    <value>org.griphyn.vdl.mapping.DataNode hashCode 5169861 with no value at dataset=aligned path=[4]</value>
-  </tie>
-  <tie>
-    <thread>0-1-4</thread>
-    <direction>output</direction>
-    <dataset>6487148</dataset>
-    <param>o</param>
-    <value>org.griphyn.vdl.mapping.DataNode hashCode 6487148 with no value at dataset=aligned path=[1]</value>
-  </tie>
-  <tie>
-    <thread>0-1-2</thread>
-    <direction>output</direction>
-    <dataset>655223</dataset>
-    <param>o</param>
-    <value>org.griphyn.vdl.mapping.DataNode hashCode 655223 with no value at dataset=aligned path=[2]</value>
-  </tie>
-  <tie>
-    <thread>0-1-1</thread>
-    <direction>output</direction>
-    <dataset>11153746</dataset>
-    <param>o</param>
-    <value>org.griphyn.vdl.mapping.DataNode hashCode 11153746 with no value at dataset=aligned path=[3]</value>
-  </tie>
-</toplevel>
-</screen>
-which reveals only 4 ties to procedures from those datasets - the elements
-of the aligned array. We can get just the thread IDs for that by adding
-/thread onto the end:
-<screen>
- cat /tmp/prov.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh '/provenance/tie[dataset=/provenance/dataset[@identifier="4436324"]//dataset/@identifier]/thread'
-0-1-3
-0-1-4
-0-1-2
-0-1-1
-</screen>
-so now we need to iterate over those four threads as before using same
-process.
-</para>
-<para>so we will ask 'which datasets does this contain?' because at
-present, a composite dataset will ultimately be produced by its component
-datasets (though I think perhaps we'll end up with apps producing datasets
-that are composites, eg when a file is output that then maps into some
-structure - eg file contains  (1,2)   and this maps to struct { int x; int y;}.
-TODO move this para into section on issues-for-future-discussion.
-</para>
-<para>so xpath here doesn't really seem too different in expressive ability
-from the SQL approach - it still needs external implementation of
-transitivity for some of the transitive relations (though not for
-dataset containment). and that's a big complicating factor for ad-hoc queries...
-</para>
-<section><title>notes on using eXist</title>
-<para><ulink url="http://exist.sourceforge.net/client.html">command line
-client doc</ulink></para>
-<para>
-run in command line shell with local embedded DB (not running inside a
-server, so analogous to using sqlite rather than postgres):
-<screen>
-~/work/eXist/bin/client.sh -s -ouri=xmldb:exist://
-</screen>
-</para>
-<para>
-import a file:
-<screen>
-~/work/eXist/bin/client.sh -m /db/prov -p `pwd`/tmp.xml  -ouri=xmldb:exist://
-</screen>
-note that the -p document path is relative to exist root directory, not to
-the pwd, hence the explicit pwd.
-</para>
-<para>
-xpath query from commandline:
-<screen>
- echo '//tie' |  ~/work/eXist/bin/client.sh -ouri=xmldb:exist:// -x
-</screen>
-</para>
-</section>
-</section>
-
-<section><title>XSLT</title>
-<para>
-very much like when we revieved xpath, xslt and xquery for MDS data - these
-are the three I'll consider for the XML data model? does XSLT add anything?
-not sure. for now I think not so ignore, or at least comment that it does
-not add anything.
-</para>
-<para>
-<screen>
-./prov-to-xml.sh > /tmp/prov.xml
-xsltproc ./prov-xml-stylesheet.xslt /tmp/prov.xml
-</screen>
-with no rules will generate plain text output that is not much use.
-</para>
-<para>
-Two potential uses: i) as a formatting language for stuff coming out of
-some other (perhaps also XSLT, or perhaps other language) query process.
-and ii) as that other language doing semantic rather than presentation
-level querying (better names for those levels?)
-</para>
-</section>
-
-<section><title>XQuery query language</title>
-<para>
-Build query results for this using probably the same database as the
-above XPath section, but indicating where things could be better expressed
-using XPath.
-</para>
-<para>
-Using XQuery with eXists:
-<screen>
-$ cat xq.xq
-//tie
-$ ~/work/eXist/bin/client.sh -ouri=xmldb:exist:// -F `pwd`/xq.xq
-</screen>
-</para>
-<para>
-A more advanced query:
-<screen>
-for $t in //tie
-  let $dataset := //dataset[@identifier=$t/dataset]
-  let $exec := //execute[thread=$t/thread]
-  where $t/direction="input"
-  return <r>An invocation of {$exec/trname} took input {$dataset/filename}</r>
-</screen>
-</para>
-</section>
-
-</section>
-
-<section><title>RDF and SPARQL</title>
-<para>
-This can probably also be extended to SPARQL-with-transitive-closures
-using the same methods as 1; or see OWL note below.
-</para>
-<para>
-Pegasus/WINGS queries could be interesting to look at here - they
-are from the same tradition as Swift. However, the don't deal very
-well with transitivity.
-</para>
-<para>OWL mentions transitivity as something that can be expressed in
-an OWL ontology but are there any query languages around that can
-make use of that kind of information?
-</para>
-<para>See prolog section on RDF querying with prolog.
-</para>
-<para>
-There's an RDF-in-XML format for exposing information in serialised form.
-Same discussion applies to this as to the discussion in XML above.
-</para>
-</section>
-
-<section><title>GraphGrep</title>
-<screen>
- - download link see email
-<ulink url="http://www.cs.nyu.edu/shasha/papers/graphgrep/">graphgrep</ulink>
-graphgrep install notes: port install db3
-some hack patches to get it to build with db3
-</screen>
-<para>
-Got a version of graph grep with interesting graph language apparently in it.
-Haven't tried it yet though.
-</para>
-</section>
-
-<section><title>prolog</title>
-<para>Perhaps interesting querying ability here. Probably slow? but not
-really sure - SWI Prolog talks about indexing its database (and allowing
-the indexing to be customised) and about supporting very large databases.
-So this sounds hopeful.
-</para>
-<para>
-convert database into SWI prolog. make queries based on that.
-</para>
-<para>Can make library to handle things like transitive relations - should be
-easy to express the transitivity in various different ways (dataset
-containment, procedure-ordering, whatever) - far more clear there than
-in any other query language.</para>
-<para>
-SWI Prolog has some RDF interfacing, so this is clearly a realm that is
-being investigated by some other people. For example:
-<blockquote>It is assumed that Prolog is a suitable vehicle to reason with the data expressed in RDF models -- http://www.swi-prolog.org/packages/rdf2pl.html</blockquote>
-</para>
-<para><ulink
-url="http://www.xml.com/pub/a/2001/04/25/prologrdf/index.html">
-http://www.xml.com/pub/a/2001/04/25/prologrdf/index.html
-</ulink>
-</para>
-<para>
-prolog can be used over RDF or over any other tuples. stuff in SQL
-tables should map neatly too. Stuff in XML hieararchy perhaps not so
-easily but should still be doable.</para>
-<para>indeed, SPARQL queries have a very prolog-like feel to them
-superficially.
-</para>
-<para>prolog db is a program at the moment - want something that looks more
-like a persistent modifiable database. not sure what the prolog approach
-to doing that is.</para>
-<para>
-so maybe prolog makes an interesting place to do future research on
-query language? not used by this immediate work but a direction to
-do query expressibility research (building on top of whatever DB is used
-for this round?)
-</para>
-
-<para>q1 incremental:
-
-<screen>
-?- dataset_filenames(Dataset,'file://localhost/0001.in').
-
-Dataset = '10682109' ;
-</screen>
-
-Now with lib.pl:
-
-<screen>
-dataset_trans_preceeds(Product, Source) :-
-   dataset_usage(Thread, 'O', Product, _, _),
-   dataset_usage(Thread, 'I', Source, _, _).
-
-
-dataset_trans_preceeds(Product, Source) :-
-   dataset_usage(Thread, 'O', Product, _, _),
-   dataset_usage(Thread, 'I', Inter, _, _),
-   dataset_trans_preceeds(Inter, Source).
-</screen>
-
-then we can ask:
-
-<screen>
-?- dataset_trans_preceeds('14976260',S).
-
-S = '4845856' ;
-
-S = '3354850' ;
-
-S = '6033476' ;
-
-S = '4436324' ;
-
-No
-</screen>
-
-which is all the dataset IDs up until the point that we get into
-array construction. This is the same iterative problem we have
-in the SQL section too - however, it should be solvable in the prolog case
-within prolog in the same way that the recursion is. so now:
-
-<screen>
-base_dataset_trans_preceeds(Product, Source, Derivation) :-
-   dataset_usage(Thread, 'O', Product, _, _),
-   dataset_usage(Thread, 'I', Source, _, _),
-   Derivation = f(one).
-
-base_dataset_trans_preceeds(Product, Source, Derivation) :-
-   dataset_containment(Product, Source),
-   Derivation = f(two).
-
-dataset_trans_preceeds(Product, Source, Derivation) :-
-    base_dataset_trans_preceeds(Product, Source, DBase),
-    Derivation = [DBase].
-
-dataset_trans_preceeds(Product, Source, Derivation) :-
-   base_dataset_trans_preceeds(Product, Inter, DA),
-   dataset_trans_preceeds(Inter, Source, DB),
-   Derivation = [DA|DB].
-</screen>
-
-</para>
-
-
-<para>q4:
-
-<screen>
-invocation_procedure_names(Thread, 'align_warp'), dataset_usage(Thread, Direction, Dataset, 'model', '12'), execute(Thread, Time, Duration, Disposition, Executable),  format_time(atom(DayOfWeek), '%u', Time), DayOfWeek = '5'.
-TODO format this multiline, perhaps remove unused bindings
-</screen>
-</para>
-
-
-</section>
-
-<section><title>amazon simpledb</title>
-<para>restricted beta access... dunno if i will get any access - i have
-none so far, though I have applied.</para>
-<para>
-From reading a bit about it, my impressions are that this will prove to be
-a key->value lookup mechanism with poor support for going the other way
-(eg. value or value pattern or predicate-on-value  -> key) or for doing
-joins (so rather like a hash table - which then makes me say 'why not also
-investigate last year's buzzword of DHTs?'. I think that these additional
-lookup mechanisms are probably necessary for a lot of the
-query patterns.
-</para>
-
-<para>
-For some set of queries, though, key -> value lookup is sufficient; and
-likely the set of queries that is appropriate to this model varies depending
-on how the key -> value model is laid out (i.e. what gets to be a key
-and what is its value? do we form a hierarchy from workflow downwards?)
-</para>
-
-</section>
-
-
-<section><title>graphviz</title>
-<para>
-This is a very different approach that is on the boundaries of relevance.
-</para>
-<para>
-goal: produce an annotated graph showing the procedures and the
-datasets, with appropriate annotation of identifiers and
-descriptive text (eg filenames, procedure names, executable names) that
-for small (eg. fmri sized workflows) its easy to get a visual view of
-whats going on.
-</para>
-<para>
-don't target anything much bigger than the fmri example for this.
-(though there is maybe some desire to produce larger visualisations for
-this - perhaps as a separate piece of work. eg could combine foreach
-into single node, datasets into single node)
-</para>
-<para>
-perhaps make subgraphs by the various containment relationships:
-datasets in same subgraph as their top level parent;
-app procedure invocations in the same subgraph as their compound
-procedure invocation.
-</para>
-</section>
-</section>
-
-<section><title>Comparison with related work that our group has done
-before</title>
-<section>
-<title>vs VDS1 VDC</title>
-<para>gendax - VDS1 has a tool <command>gendax</command> which provides
-various ways of accessing data from the command line. Eg. prov challenge
-question 1 very easily answered by this.
-</para>
-<para>
-two points I don't like that should discuss here: i) the metadata schema
-(I claim there doesn't need to be a generic metadata schema at all - 
-when applications decide they want to store certain metadata, they declare
-it in the database); and ii) the mixed-model - this is discussed a bit in
-the 'no general query language' section. consolidate/crosslink.
-</para>
-</section>
-
-
-<section><title>vs VDL provenance paper figure 1 schema</title>
-<para>
-The significant differences are:
-(TODO perhaps produce a diagram for comparison. could use same diagram
-differently annotated to indicate trees in the XML section and also
-in the transitivity discussion section)
-</para>
-<para>
-the 'annotation' model - screw that, go
-native</para>
-<para>the dataset containment model, which doesn't exist in the
-virtual dataset model.
-</para>
-<para>
-workflow object has a fromDV and toDV field. what are
-those meant to mean? In present model, there isn't any base data for a workflow
-at the moment - everything can be found in the descriptions of its
-components (such as files used, start time, etc). (see notes on
-compound procedure containment with model of a workflow as a compound
-procedure)
-</para>
-<para>invocation to call to procedure chain. this chain looks different.
-there are executes (which look like invocations/calls) and procedure names
-(which do not exist as primary objects because I am not storing
-program code). kickstart records and execute2 records would be more like
-the annotations you'd get from the annotation part, with the call being
-more directly associated with the execute object.
-</para>
-</section>
-</section>
-<section><title>Questions/Discussion points</title>
-
-<section><title>metadata</title>
-<para>
-discourse analysis: Perhaps the word 'metadata' should be banned in
-this document - it implies that there is
-some special property that distinguishes it sufficiently from normal
-data such that it must be treated differently from different data.
-I don't believe this to be the case.
-</para>
-<para>
-script <command>prov-mfd-meta-to-xml</command> that generates (fake)
-metadata record in XML like this:
-<screen>$ ./prov-mfd-meta-to-xml 123
-<headermeta>
-  <dataset>123</dataset>
-  <bitspixel>16</bitspixel>
-  <xdim>256</xdim>
-  <ydim>256</ydim>
-  <zdim>128</zdim>
-  <xsize>1.000000e+00</xsize>
-  <ysize>1.000000e+00</ysize>
-  <zsize>1.250000e+00</zsize>
-  <globalmaximum>4095</globalmaximum>
-  <globalminimum>0</globalminimum>
-</headermeta>
-</screen>
-</para>
-
-<section><title>metadata random notes</title>
-<para>
-metadata: there's a model of arbitrary metadata pairs being
-associated with arbitrary objects.</para>
-<para>there's another model (that I tend to
-favour) in that the metadata schema is more defined than this - eg in i2u2
-for any particular elab, the schema for metadata is fairly well defined.
-</para>
-<para>
-eg in cosmic, there are strongly typed fields such as "blessed" or
-"detector number" that
-are hard-coded throughout the elab. whilst the VDS1 VDC can deal with
-arbitrary typing, that's not the model that i2u2/cosmic is using. need to be
-careful to avoid the inner-platform effect here especially - "we need a
-system that can do arbitrarily typed metadata pairs" is not actually a
-requirement in this case as the schema is known at application build time.
-(note that this matters for SQL a lot, not so much for plain XML data model,
-though if we want to specify things like 'is-transitive' properties then
-in any model things like that need to be better defined)
-</para>
-<para>
-fMRI provenance challenge metadata (extracted using scanheader) looks like
-this:
-<screen>
-$ /Users/benc/work/fmri-tutorial/AIR5.2.5/bin/scanheader ./anatomy0001.hdr
-bits/pixel=16
-x_dim=256
-y_dim=256
-z_dim=128
-x_size=1.000000e+00
-y_size=1.000000e+00
-z_size=1.250000e+00
-
-global maximum=4095
-global minimum=0
-</screen>
-</para>
-</section>
-
-</section>
-
-
-<section><title>The 'preceeds' relation</title>
-
-<section><title>Provenance of hierarchical datasets</title>
-
-
-
-<para>
-One of the main provenance queries is whether some entity (a
-data file or a procedure) was influenced by some other entity.
-</para>
-
-<para>
-In VDS1 a workflow is represented by a bipartite DAG where one
-vertex partition is files and the other is procedures.
-</para>
-
-<para>
-The more complex data structures in Swift make the provenance graph
-not so straightforward. Procedures input and output datasets that may
-be composed of smaller datasets and may in turn be composed into larger
-datasets.
-</para>
-
-<para>
-For example, a dataset D coming out of a procedure P may form a part
-of a larger dataset E. Dataset E may then be an input to procedure Q.
-The ordering is then:
-<screen>
- P --output--> D --contained-by-> E --input--> Q
-</screen>
-</para>
-
-<para>
-Conversely, a dataset D coming out of a procedure P may contain a
-smaller dataset E. Dataset E may then be used as an input to procedure
-Q.
-<screen>
- P --output--> D --contains--> E --input--> Q
-</screen>
-</para>
-
-<para>
-So the contains relation and its reverse, the contained-by relation, do not
-in the general case seem to give an appropriate preceeds relation.
-
-<screen>
-so: i) should Q1<->Q be a bidirection dependency (in which case we
-  no longer have a DAG, which causes trouble)
-
-or
-
-    ii) the dependency direction between Q1 and Q depends on how Q and Q1
-were constructed. I think this is the better approach, because I think
-there really is some natural dependency order.
-
-If A writes to Q1 and Q1 is part of Q then A->Q1->Q
-If A writes to Q and Q1 is part of Q then A->Q->Q1
-
-So when we write to a dataset, we need to propagate out the dependency
-from there (both upwards and downwards, I think).
-
-eg. if Q1X is part of Q1 is part of Q
-and A writes to Q1, then Q1X depends on Q1 and Q depends on Q1.
-
-
-</screen>
-
-</para>
-
-
-
-<para>
-Various ways of doing closure - we have various relations in the graph
-such as dataset containment and procedure input/output. Need to figure out
-how this relates to predecessor/successors in the provenance sense.
-
-<screen>
-A(
-Also there are multiple levels of tracking (see the section on that):
-
-If an app procedure produces eg
-volume v, consisting of two files v.img and v.hdr (the fmri example)
-then what is the dependency here? I guess v.img and v.hdr is the
-output... (so in the present model there will never be
-downward propagation as every produced dataset will be produced out of
-base files. however its worth noting that this perhaps not always the
-case...)
-
-Alternatively we can model at the level of the app procedure, which in
-the above case returns a volume v.
-
-I guess this is similar to the case of the compound procedures vs
-contained app procedures...
-
-If we model at the level of files, then we don't really need to know
-about higher datasets much?
-
-Perhaps for now should model at level of procedure calls
-)A
-
-List A()A above as an issue and pick one choice - for now, lowest=file
-production, so that all intermediate and output datasets will end up
-with a strictly upward dependency
-
-This rule does not deal with input-only datasets (that is, datasets
-which we do not know where they came from). It would be fairly natural
-with the above choice to again make dependencies from files upward.
-
-So for now, dataset dependency rule is:
-
-  * parent datasets depend on their children.
-
-Perhaps?
-</screen>
-</para>
-
-
-</section>
-
-<section><title>Transitivity of relations in query language</title>
-<para>
-One of my biggest concerns in query languages such as SQL and XPath
-is lack of decent transitive query ability.
-</para>
-<para>
-I think we need a main relation, the <firstterm>preceeds</firstterm>
-relation. None of the relations defined in the source provenance data
-provides this relation.
-</para>
-<para>The relation needs to be such that if any dataset or program Y that
-contributed to the production of any other dataset or program Y, then
-X preceeds Y.
-</para>
-<para>
-We can construct pieces of this relation from the existing relations:
-<itemizedlist>
-<listitem><para>There are fairly simple rules for procedure inputs and
-outputs:
-A dataset passed as an input to a procedure preceeds that procedure.
-Similarly, a procedure that outputs a dataset preceeds that dataset.
-</para></listitem>
-<listitem>
-<para>
-Hierarchical datasets are straightforward to describe in the present
-implementation. Composite data structures are always described in terms
-of their members, so the members of a data structure always preceed
-the structures that contain them. [not true, i think - we can pass a
-struct into a procedure and have that procedure populate multiple
-contained files... bleugh]
-</para>
-</listitem>
-<listitem><para>
-The relation is transitive, so the presence of some relations by the
-above rules will imply the presence of other relations to ensure
-transitivity.
-</para></listitem>
-</itemizedlist>
-</para>
-</section>
-</section>
-
-
-<section><title>Unique identification of provenance objects</title>
-
-<para>
-A few issues - what are the objects that should be identified? (semantics);
-and how should the objects be identified? (syntax).
-</para>
-<section><title>provenence object identifier syntax</title>
-<para>
-For syntax, I favour a URI-based approach and this is what I have
-implemented in the prototypes. URIs rovide a ready made system for
-identifying different kinds of objects in different ways within the
-same syntax.
-which should be useful for the querys that want to do that.
-file, gsiftp URIs for filenames. probably should be normalising file
-URIs to refer to a specific hostname? otherwise they're fairly
-meaningless outside of one host...
-also, these name files but files are mutable.
-</para>
-<para>
-its also fairly straightforward to subsume other identifier schemes into
-URIs (for example, that is already done for UUIDs, in RFC4122).
-</para>
-<para>
-for other IDs, such as workflow IDs, a tag or uuid URI would be nice.
-</para>
-<para>
-cite: <ulink url="http://www.rfc-editor.org/rfc/rfc4151.txt">RFC4151</ulink>
-<blockquote>
-The tag algorithm lets people mint -- create -- identifiers that no one else using the same algorithm could ever mint. It is simple enough to do in your head, and the resulting identifiers can be easy to read, write, and remember. The identifiers conform to the URI (URL) Syntax.
-</blockquote>
-</para>
-<para>
-cite:  <ulink url="http://www.rfc-editor.org/rfc/rfc4122.txt">RFC4122</ulink>
-<blockquote>
-This specification defines a Uniform Resource Name namespace for
-UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally
-Unique IDentifier).  A UUID is 128 bits long, and requires no central
-registration process.
-</blockquote>
-</para>
-
-<section><title>tag URIs</title>
-
-<para>
-tag URIs for identifiers of provenance objects:
-</para>
-
-<para>
-all URIs allocated according to this section are labelled beginning with one
-of:
-<screen>
-tag:benc at ci.uchicago.edu,2007:swift:
-tag:benc at ci.uchicago.edu,2008:
-</screen>
-</para>
-
-<para>
-for datasets identified only within a run (that is, for example, anything
-that doesn't have a filename):
-tag:benc at ci.uchicago.edu,2007:swift:dataset:TIMESTAMP:SEQ
-with TIMESTAMP being a timestamp of sometime near the start of the run,
-intending to be a unique workflow id (probably better to use the
-run-id)
-and SEQ being a sequence number. However, shouldn't really be pulling any
-information out of these time and seq fields.
-</para>
-<para>
-for executes - this is based on the karajan thread ID and the log base
-filename (which is assumed to be a globally unique identifying string):
-tag:benc at ci.uchicago.edu,2007:swiftlogs:execute:WFID:THREAD with,
-as for datasets, WFID is a workflow-id-like entity.
-</para>
-
-</section>
-
-
-</section>
-
-<section id="crossrun-id"><title>Dataset identifier semantics</title>
-
-<para>At present, dataset identifiers are formed uniquely for every
-dataset object created in the swift runtime (unique across JVMs as well
-as within a JVM).</para>
-
-<para>This provides an overly sensitive(?) identity - datasets
-which are the same will be given different dataset identifiers at
-different times/places; although two different datasets will never be
-given the same identifier.
-</para>
-
-<para>A different approach would be to say 'datasets are made of files,
-so we want to identify files, and files already have identiers called
-filenames'.</para>
-
-<para>I think this approach is also insufficient.</para>
-
-<para>The assertion 'datasets are made of files' is not correct. Datasets
-come in several forms: typed files, typed simple values, and typed
-collections of other datasets. Each of these needs a way to identify it.
-</para>
-
-<para>
-Simple values are probably the easiest to identify. They can be identified
-by their own value and embedded within a suitable URI scheme. For example,
-a dataset representing the integer 7 could be identified as:
-<screen>
-tag:benc at ci.uchicago.edu,2008:swift:types:int:7
-</screen>
-This would have the property that all datasets representing the integer
-7 would be identical (that is, have the same identifier).
-</para>
-
-<para>
-Collections of datasets are more complicated. One interesting example of
-something that feels to me quite similar is the treatment of directories
-in hash-based file systems, such as git. In this model, a collection of
-datasets would be represented by a hash of a canonical representation of
-its contenst, for example, a dataset consisting of a three element array
-of three files in this order: "x-foo:red", "x-foo:green" and "x-foo:blue"
-might be represented as:
-<screen>
-tag:benc at ci.uchicago.edu,2008:collection:QHASH
-</screen>
-where:
-<screen>
-QHASH := sha1sum(QLONG)
-
-QLONG := "[0] x-foo:red [1] x-foo:green [2] x-foo:blue"
-</screen>
-This allows a repeatable computation of dataset identifiers given 
-only knowledge of the contents of the dataset. Specifically it does
-not rely on a shared database to map content to identifier. However,
-it can only be computed when the content of the dataset is fully known
-(roughly equivalent to when the dataset is closed in the Swift
-runtime)
-</para>
-
-<para>
-For identifying a dataset that is a file, there are various properties.
-Filename is one property. File content is another property. It seems
-desirable to distinguish between datasets that have the same name yet
-have different content, whilst identifying datasets that have the same
-content. To this end, an identifier might be constructed from both the
-filename and a hash of the content.
-</para>
-
-
-<para>
-for prototype could deal only with files staged to local system,
-so that we can easily compute a hash over the content.
-</para>
-
-<para>related to taking md5sums, kickstart provides the first few bytes
-of certain files (the executable and specified input and output files);
-whilst useful for basic sanity checks, there are very strong correlations
-with magic numbers and common headers that make this a poor content
-identifying function. perhaps it should be absorbed as dataset metadata if
-its available?
-</para>
-
-
-<para>TODO the following para needs to rephrase as justification for
-having identities for dataset collections  ::: at run-time when can we
-pick up the
-identities from other runs? pretty much we want identity to be expressed
-in some way so that we can get cross-run linkup.
-how do we label a dataset such that we can annotate it - eg in fmri
-example, how do we identify the input datasets (as file pairs) rather than
-the individual files?</para>
-<para>
-Its desirable to give the same dataset the same identifier in multiple
-runs; and be able to figure out that dataset identifier outside of a run,
-for example for the purposes of dealing with metadata that is annotating
-a dataset.
-</para>
-</section>
-
-<section><title>File content tracking</title>
-<para>
-identify file contents with md5sum (or other hash) - this is somewhat
-expensive, but without it we have (significantly) lessened belief in what the
-contents of a file are - we would otherwise, I think, be using only names
-and relying on the fact that those names are primary keys to file content
-(which is not true in general).
-so this should be perhaps optional. plus where to do it? various places...
-in wrapper.sh?
-</para>
-<para>
-References here for using content-hashes:
-git, many of the DHTs (freenet, for example - amusing to cite the classic
-freenet gpl.txt example)
-</para>
-</section>
-
-</section>
-
-<section><title>Type representation</title>
-<para>
-how to represent types in this? for now use names, but that doesn't
-go cross-program because we can define a different type with the same
-name in every different program. hashtree of type definitions?
-</para>
-</section>
-<section><title>representation of workflows</title>
-<para>
-perhaps need a workflow object that acts something like a namespace
-but implicitly definted rather than being user labelled (hence capturing
-the actual runtime space rather than what the user claims). that's the
-runID, I guess.
-</para>
-<para>
-Also tracking of workflow source file. Above-mentioned reference to
-tracking file contents applies to this file too.
-</para>
-</section>
-<section><title>metadata extraction</title>
-<para>
-provenance challenge I question 5 reports about pulling fields out of the
-headers of one of the input files. There's a program, scanheader, that
-extracts this info. Related but not actually useful, I think, for this
-question is that header fields could be mapped into SwiftScript if we
-allowed value+file simultaneous data structures.
-</para>
-</section>
-
-<section><title>source code recreation</title>
-<para>
-should the output of the queries be sufficient to regenerate the
-data? the most difficult thing here seems to be handling data
-sets - we have the mapping tree for a dataset, but what is the right
-way to specify that in swift syntax? maybe need mapper that takes a
-literal datastructure and maps the filenames from it. though that
-doesn't account for file contents (so this bit of this point is
-the file contents issue, which should perhaps be its own chapter
-in this file)
-</para>
-</section>
-<section><title>Input parameters</title>
-<para>
-Should also work on workflows which take an input parameter, so that we
-end up with the same output file generated several times with different
-output values - eg pass a string as a parameter and write that to
-'output.txt' - every time we run it, the file will be different, and we'll
-have multiple provenance reports indicating how it was made, with different
-parameters. that's a simple demonstration of the content-tracking which
-could be useful.
-</para>
-<para>
-If we're tracking datasets for simple values, I think we get this
-automatically. The input parameters are input datasets in the same way
-that input files are input datasets; and so fit into the model in the
-same way.
-</para>
-
-</section>
-
-
-</section>
-
-<section id="opm"><title>Open Provenance Model (OPM)</title>
-<section><title>OPM-defined terms and their relation to Swift</title>
-<para>
-OPM defines a number of terms. This section describes how those terms
-relate to Swift.
-</para>
-<para>
-artifact: This OPM term maps well onto the internal Swift representation
-of <literal>DSHandle</literal>s. Each DSHandle in a Swift run is an
-OPM artifact, and each OPM artifact in a graph is a DSHandle.
-</para>
-<para>collection: OPM collections are a specific kind of artifact, containing
-other artifacts. This corresponds with DSHandles for composite data types
-(structs and arrays). OPM has collection accessors and collection
-constructors which correspond to the <literal>[]</literal> and
-<literal>.</literal> operators (for accessors) and various assignment
-forms for constructors.
-</para>
-<para>
-process: An OPM process corresponds to a number of Swift concepts (although
-they are slowly converging in Swift to a single concept). Those concepts
-are: procedure invocations, function calls, and operators.
-</para>
-<para>
-agent: There are several entities which can act as an agent. At the
-highest level where only Swift is involved, a run of the
-<literal>swift</literal> commandline client is an agent which drives
-everything. Some other components of Swift may be regarded as agents,
-such as the client side wrapper script. For present OPM work, the
-only agent will be the Swift command line client invocation.
-</para>
-<para>
-account: For present OPM work, there will be one account per workflow run.
-In future, different levels of granularity that could be expressed through
-different accounts might include representing compound procedure calls as
-processes vs representing atomic procedures calls explicitly.
-</para>
-<para>
-OPM graph: there are two kinds of OPM graph that appear interesting and
-straightforward to export: i) of entire provenance database (thus containing
-multiple workflow runs); ii) of a single run
-</para>
-</section>
-<section><title>OPM links</title>
-<para><ulink url="http://twiki.ipaw.info/bin/view/Challenge/OPM">Open Provenance Model at ipaw.info</ulink></para>
-</section>
-
-<section><title>Swift specific OPM considerations</title>
-
-<para>
-non-strictness: Swift sometimes lazily constructs collections (leading to
-the notion in Swift of an array being closed, which means that we know no
-more contents will be created, somewhat like knowing we've reached the end
-of a list). It may be that an array is never closed during a run, but that
-we still have sufficient provenance information to answer useful queries
-(for example, if we specify a list [1:100000] and only refer to the 5th
-element in that array, we probably never generate most of the DSHandles...
-so an explicit representation of that array in terms of datasets cannot be
-expressed - though a higher level representation of it in terms of its
-constructor parameters can be made) (?)
-</para>
-
-<para>
-aliasing: (this is related to some similar ambiguity in other parts of
-Swift, to do with dataset roots - not provenance related). It is possible to
-construct arrays by explicitly listing their members:
-<programlisting>
-int i = 8;
-int j = 100;
-int a[] = [i,j];
-int k = a[1];
-// here, k = 8
-</programlisting>
-The dataset contained in <literal>i</literal> is an artifact (a literal, so
-some input artifact that has no creating process). The array
-<literal>a</literal> is an artifact created by the explicit array construction
-syntax <literal>[memberlist]</literal> (which is an OPM process). If we
-then model the array accessor syntax <literal>a[1]</literal> as an OPM
-process, what artifact does it return? The same one or a different one?
-In OPM, we want it to return a different artifact; but in Swift we want this
-to be the same dataset... (perhaps explaining this with <literal>int</literal>
-type variables is not the best way - using file-mapped data might be better)
-TODO: what are the reasons we want files to have a single dataset
-representation in Swift? dependency ordering - definitely. cache management?
-Does this lead to a stronger notion of aliasing in Swift?
-</para>
-
-<para>
-Provenance of array indices: It seems fairly natural to represent arrays as OPM
-collections, with array element extraction being a process. However, in OPM,
-the index of an array is indicated with a role (with suggestions that it might
-be a simple number or an XPath expression). In Swift arrays, the index is
-a number, but it has its own provenance, so by recording only an integer there,
-we lose provenance information about where that integer came from - that
-integer is a Swift dataset in its own right, which has its own provenance.
-It would be nice to be able to represent that (even if its not standardised
-in OPM). I think that needs re-ification of roles so that they can be
-described; or it needs treatment of [] as being like any other binary
-operator (which is what happens inside swift) - where the LHS and RHS are
-artifacts, and the role is not used for identifying the member (which would
-also be an argument for making array element extraction be treated more
-like a plain binary operator inside the Swift compiler and runtime)
-</para>
-
-<para>
-provenance of references vs provenance of the data in them: the array and
-structure access operators can be used to acquire <literal>DSHandle</literal>s
-which have no value yet, and which are then subsequently assigned. In this
-usage, the provenance of the containing structure should perhaps be that it
-is constructed from the assignments made to its members, rather than the
-other way round. There is some subtlety here that I have not fully figured
-out.
-</para>
-
-<para>
-Piecewise construction of collections: arrays and structs can be
-constructed piecewise using <literal>. =</literal> and <literal>[] =</literal>.
-how is this to be represented in OPM? perhaps the closing operation maps
-to the OPM process that creates the array, so that it ends up looking
-like an explicit array construction, happening at the time of the close?
-</para>
-
-<para>
-Provenance of mapper parameters: mapper parameters are artifacts. We can
-represent references to those in a Swift-specific part of an artifacts
-value, perhaps. Probably not something OPM-generalisable.
-</para>
-
-</section>
-
-</section>
-
-
-
-<section><title>Processing i2u2 cosmic metadata</title>
-<para>i2u2 cosmic metadata is extracted from a VDS1 VDC.</para>
-<para>
-TODO some notes here about how I dislike the inner-plaform effect in the
-metadata part of the VDS1 VDC.
-</para>
-<para>
-to launch postgres on soju.hawaga.org.uk:
-<screen>
-sudo -u postgres /opt/local/lib/postgresql82/bin/postgres -D  /opt/local/var/db/postgresql82/defaultdb
-</screen>
-
-and then to import i2u2 vdc data as VDC1 vdc:
-
-<screen>
-$ /opt/local/lib/postgresql82/bin/createdb -U postgres i2u2vdc1
-CREATE DATABASE
-$ psql82 -U postgres -d i2u2vdc1 < work/i2u2.vdc 
-gives lots of errors like this:
-ERROR:  role "portal2006_1022" does not exist
-because indeed that role doesn't exist
-but I think that doesn't matter for these purposes - everything will end
-up being owned by the postgres user which suffices for what I want to do.
-</screen>
-
-</para>
-
-<para>
-annotation tables are:
-<screen>
- public | anno_bool       | table | postgres   29214 rows
-  this is boolean values
-
- public | anno_call       | table | postgres   0 rows
-- this is a subject table. also has did
-
- public | anno_date       | table | postgres   52644 rows
-   this is date values
-
- public | anno_definition | table | postgres   1849 rows
-    this is XML-embedded derivations (values / objects)
-
- public | anno_dv         | table | postgres   0 rows
-- this is a subject table. also has did
-
- public | anno_float      | table | postgres   27966 rows
-    this is float values
-
- public | anno_int        | table | postgres   58879 rows
-    this is int values
-
- public | anno_lfn        | table | postgres   411490 rows
-    this is the subject record for LFN subjects - subjects have an
-    mkey (predicate) column
-  
- public | anno_lfn_b      | table | postgres
-this appears to be keyed by did field - ties dids to what looks like
-LFNs
-
- public | anno_lfn_i      | table | postgres
- public | anno_lfn_o      | table | postgres
-likewise these two
-
- public | anno_targ       | table | postgres
-is this a subject table? it has an mkey value that always appears to be
-'description' and then has a name column which lists invocation parameter
-names and ties them to dids.
-
- public | anno_text       | table | postgres   242824 rows
-text values (objects)
-
- public | anno_tr         | table | postgres
-</screen>
-</para>
-
-<para>
-most of the interesting data starts in anno_lfn because data is mostly
-annotating LFNs:
-</para>
-
-<screen>
-i2u2vdc1=# select * from anno_lfn limit 1;
- id |        name         |   mkey   
-----+---------------------+----------
-  2 | 180.2004.0819.0.raw | origname
-</screen>
-
-<para>
-There are 63 different mkeys (predicates in RDF-speak):
-</para>
-
-<screen>
-i2u2vdc1=# select distinct mkey from anno_lfn;
-             mkey
-------------------------------
- alpha
- alpha_error
- author
- avgaltitude
- avglatitude
- avglongitude
- background_constant
- background_constant_error
- bins
- blessed
- caption
- chan1
- chan2
- chan3
- chan4
- channel
- city
- coincidence
- comments
- cpldfrequency
- creationdate
- date
- description
- detectorcoincidence
- detectorid
- dvname
- enddate
- energycheck
- eventcoincidence
- eventnum
- expire
- filename
- gate
- gatewidth
- group
- height
- julianstartdate
- lifetime(microseconds)
- lifetime_error(microseconds)
- name
- nondatalines
- numBins
- origname
- plotURL
- project
- provenance
- radius
- rawanalyze
- rawdate
- school
- source
- stacked
- startdate
- state
- study
- teacher
- thumbnail
- time
- title
- totalevents
- transformation
- type
- year
-(63 rows)
-</screen>
-
-<para>
-so work on a metadata importer for i2u2 cosmic that will initially deal
-with only the lfn records.
-</para>
-
-<para>
-There are 19040 annotated LFNs, with 411490 annotations in total, so about
-21 annotations per LFN.
-</para>
-
-<para>The typing of the i2u2 data doesn't support metadata objects
-that aren't swift workflow entities - for example high schools as
-objects in their own right - the same text string is stored as a value
-over and over in many anno_text rows. A more generalised 
-Subject-Predicate-Object model in RDF would have perhaps a URI for
-the high school, with metadata on files tying files to a high school and
-metadata on the high school object. In SQL, that same could be modelled
-in a relational schema.
-</para>
-
-<para>
-Conversion of i2u2 VDS1 VDC LFN/text annotations into an XML document
-using quick hack script took 32mins on soju, my laptop. resulting XML
-is 8mb. needed some manual massage to remove malformed embedded xml and
-things like that.
-<screen>
-./i2u2-to-xml.sh >lfn-text-anno.xml
-</screen>
-
-so we end up with a lot of records that look like this:
-
-<screen>
-<lfn name="43.2007.0619.0.raw">
-<origname>rgnew.txt</origname>
-<group>riogrande</group>
-<teacher>Luis Torres Rosa</teacher>
-<school>Escuelo Superior Pedro Falu</school>
-<city>Rio Grande</city>
-<state>PR</state>
-<year>AY2007</year>
-<project>cosmic</project>
-<comments></comments>
-<detectorid>43</detectorid>
-<type>raw</type>
-<avglatitude>18.22.8264</avglatitude>
-<avglongitude>-65.50.1975</avglongitude>
-<avgaltitude>-30</avgaltitude>
-</lfn>
-</screen>
-
-The translation here is not cosmic-aware - the XML tag is the mkey name from
-vdc and the content is the value. So we get all the different metadata
-(informal) schemas that appear to have been used, translated.
-
-</para>
-
-<para>
-Output the entire provenance database:
-<screen>
-$ time cat lfn-text-anno.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/cosmic'  | wc -c
- 10178037
-
-real    0m2.624s
-user    0m2.612s
-sys     0m0.348s
-</screen>
-</para>
-
-<para>
-Select all LFN objects (which on this dataset means everything one layer
-down):
-<screen>
-$ time cat lfn-text-anno.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/cosmic/lfn'  | wc -c
- 9618818
-
-real    0m2.692s
-user    0m2.703s
-sys     0m0.337s
-</screen>
-</para>
-
-<para>
-Try to select an LFN that doesn't exist, by specifying a filename that is not
-there:
-<screen>
-$ time cat lfn-text-anno.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/cosmic/lfn[@name="NOSUCHNAME"]'
-<?xml version="1.0"?>
-<toplevel/>
-
-real    0m0.867s
-user    0m0.740s
-sys     0m0.143s
-</screen>
-</para>
-
-<para>
-Similar query for a filename that does exist:
-<screen>
-$ time cat lfn-text-anno.xml | ~/work/xpathtool-20071102/xpathtool/xpathtool.sh --oxml '/cosmic/lfn[@name="1.2005.0801.0"]'
-<?xml version="1.0"?>
-<toplevel>
-  <lfn name="1.2005.0801.0">
-    <origname>C:\Documents and Settings\zsaleh\My Documents\Tera stuff\Qnet\Qnet Data\All_data_Aug_01_2005_TERA_9_Vth_1000.TXT</origname>
-    <group>TERA</group>
-    <teacher>Marcus Hohlmann</teacher>
-    <school>Florida Institute of Technology</school>
-    <city>Melbourne</city>
-    <state>FL</state>
-    <year>AY2004</year>
-    <project>cosmic</project>
-    <comments/>
-    <source>1.2005.0801.0</source>
-    <detectorid>1</detectorid>
-    <type>split</type>
-  </lfn>
-</toplevel>
-
-real    0m0.875s
-user    0m0.745s
-sys     0m0.154s
-</screen>
-</para>
-
-</section>
-
-<section><title>processing fMRI metadata</title>
-<para>
-for fmri, we can extract embedded image metadata using the scanheader
-utility.
-</para>
-<para>
-associate that with the 'volume' dataset, not with the actual image data
-files. for now that means we need the datasets to have been labelled with
-their ID already, which is at the moment after execution has completed.
-that's fine for now with the retrospective provenance restriction of this
-immediate work. see the 
-<link linkend="crossrun-id">'cross-run dataset ID' section</link>, for which this
-also applies - we are generating dataset IDs outside of a particular run.
-</para>
-</section>
-
-<section><title>random unsorted notes</title>
-<para>
-to put provdb in postgres instead of sqlite3:
-
-start as per i2u2 instructions, then <command>/opt/local/lib/postgresql82/bin/createdb -U postgres provdb</command>
-
-then:
-<command>
- psql82 -U postgres -d provdb < prov-init.sql 
-</command> to initialise the db.
-</para>
-<para>
-on terminable, made new database that is not the default system db install,
-by using existing postgres but running under my user id:
-<screen>
-  131  mkdir pgplay
-  133  chmod 0700 pgplay/
-  135  initdb -D ~/pgplay/
-  138  postmaster -D ~/pgplay/ -p 5435
-$ createdb -p 5435 provdb
-CREATE DATABASE
-</screen>
-now can access like this:
-<screen>
-$ psql -p 5435 -d provdb
-provdb=# \dt
-No relations found.
-</screen>
-</para>
-<para>osg/gratia - how does this data tie in?
-</para>
-<para>cedps logging - potential for info there but there doesn't seem
-anything particularly substantial at the moment
-</para>
-</section>
-
-<section><title>Provenance Challenge 1 examples</title>
-<section><title>Basic SQL</title>
-<section><title>provch q1</title>
-
-<screen>
-get the dataset id for the relevant final dataset:
-sqlite> select * from dataset_filenames where filename like '%0001.jpeg';
-14976260|file://localhost/0001.jpeg
-
-get containment info for that file:
-sqlite> select * from dataset_containment where inner_dataset_id = 14976260;
-7316236|14976260
-sqlite> select * from dataset_containment where inner_dataset_id = 7316236;
-[no answer]
-
-now need to find what contributed to those...
-
-> select * from dataset_usage where dataset_id=14976260;
-0-4-3|O|14976260
-
-> select * from dataset_usage where execute_id='0-4-3' and direction='I';
-0-4-3|I|4845856
-qlite> select * from dataset_usage where dataset_id=4845856 and direction='O';
-0-3-3|O|4845856
-
-sqlite> select * from dataset_usage where execute_id='0-3-3' and direction='I';
-0-3-3|I|3354850
-0-3-3|I|6033476
-
-qlite> select * from dataset_usage where (dataset_id=3354850 or dataset_id=6033476) and direction='O';
-0-2|O|3354850
-
-sqlite> select * from dataset_usage where execute_id='0-2' and direction='I';0-2|I|4436324
-
-sqlite> select * from dataset_usage where dataset_id=4436324 and direction='O';
-[no answer]
-
-so here we have run out of places to keep going. however, I think this 4436324
-is not an input - its related to another dataset. so we need another rule for
-inference here...
-
-
-
-</screen>
-</section>
-
-<section><title>prov ch q4</title>
-<para>prov ch q4 incremental solutions:</para>
-
-<para>first cut:
-this will select align_warp procedures and their start times. does not
-select based on parameters, and does not select based on day of week.
-(the former we don't have the information for; the latter maybe don't have
-the information in sqlite3 to do - or maybe need SQL date ops and SQL dates
-rather than unix timestamps)
-<screen>
-sqlite> select id, starttime from invocation_procedure_names, executes where executes.id = invocation_procedure_names.execute_id and procedure_name='align_warp';
-</screen>
-<para>Next, this will display the day of week for an invocation:</para>
-<screen>
-select id, strftime('%w',starttime, 'unixepoch') from executes,invocation_procedure_names where procedure_name='align_warp' and executes.id=invocation_Procedure_names.execute_id;
-0-0-3|5
-0-0-4|5
-0-0-1|5
-0-0-2|5
-</screen>
-</para>
-<para>And this will match day of week (sample data is on day 5, which is a
-Friday, not the day requested in the question):
-<screen>
-sqlite> select id from executes,invocation_procedure_names where procedure_name='align_warp' and executes.id=invocation_Procedure_names.execute_id and strftime('%w',starttime, 'unixepoch') = '5';
-0-0-3
-0-0-4
-0-0-1
-0-0-2
-</screen>
-</para>
-<para>
-Now we bring in input data binding: we query which datasets were passed in
-as the model parameter for each of the above found invocations:
-<screen>
-sqlite> select executes.id, dataset_usage.dataset_id from executes,invocation_procedure_names, dataset_usage where procedure_name='align_warp' and executes.id=invocation_Procedure_names.execute_id and strftime('%w',starttime, 'unixepoch') = '5' and dataset_usage.execute_id = executes.id and direction='I' and param_name='model';
-0-0-3|11032210
-0-0-4|13014156
-0-0-1|14537849
-0-0-2|16166946
-</screen>
-though at the moment this doesn't give us the value of the parameter.
-</para>
-
-<para>so now pull in the parameter value:
-
-<screen>
-sqlite> select executes.id, dataset_usage.dataset_id, dataset_usage.value from executes,invocation_procedure_names, dataset_usage where procedure_name='align_warp' and executes.id=invocation_Procedure_names.execute_id and strftime('%w',starttime, 'unixepoch') = '5' and dataset_usage.execute_id = executes.id and direction='I' and param_name='model';
-0-0-3|11032210|12
-0-0-4|13014156|12
-0-0-1|14537849|12
-0-0-2|16166946|12
-</screen>
-</para>
-
-<para>
-Now we can select on the parameter value and get our final answer:
-<screen>
-sqlite> select executes.id from executes,invocation_procedure_names, dataset_usage where procedure_name='align_warp' and executes.id=invocation_Procedure_names.execute_id and strftime('%w',starttime, 'unixepoch') = '5' and dataset_usage.execute_id = executes.id and direction='I' and param_name='model' and dataset_usage.value=12;
-0-0-3
-0-0-4
-0-0-1
-0-0-2
-</screen>
-Note that in SQL in general,
-we *don't* get typing of the parameter value here so can't do anything
-more than string comparison. For example, we couldn't check for the
-parameter being greater than 12 or similar. In sqlite, it happens that
-its typing is dynamic enough to allow the use of relational operators like
-> on fields no matter what their declared type, because declared type is
-ignored. This would stop working if stuff was run on eg postgres or mysql,
-I think.
-</para>
-</section>
-<section><title>prov ch metadata</title>
-<para>metadata: in the prov challenge, we annotate (some) files with
-their header info. in the provenance paper, we want annotations on more
-than just files.
-</para>
-<para>for prov ch metadata, define a scanheader table with the result of
-scanheader on each input dataset, but do it *after* we've done the
-run (because we're then aware of dataset IDs)</para>
-<para>There's a representation question here - the metadata is about a volume
-dataset which is a pair of files, not about a header or image file separately.
-how to represent this? we need to know the dataset ID for the volume. at
-the moment, we can know that after a run. but this ties into the
-identification of datasets outside of an individual run point - move this
-paragraph into that questions/discussions section.
-</para>
-<para>
-should probably for each storage method show the inner-platform style of
-doing metadata too; associated queries to allow comparison with the
-different styles; speeds of metadata query for large metadata collections
-(eg. dump i2u2 cosmic metadata for real cosmic VDC)
-</para>
-</section>
-</section>
-
-<section><title>SQL with transitive closures</title>
-<section>
-<title>prov ch question 1:</title>
-<screen>
-$ sqlite3 provdb
-SQLite version 3.3.17
-Enter ".help" for instructions
-sqlite> select * from dataset_filenames where filename like '%0001.jpeg';
-14976260|file://localhost/0001.jpeg
--- can query keeping relations
-sqlite> select * from trans where after=14976260;
-0-4-3|14976260
-4845856|14976260
-0-3-3|14976260
-3354850|14976260
-6033476|14976260
-4825541|14976260
-7061626|14976260
-0-2|14976260
-4436324|14976260
-11153746|14976260
-655223|14976260
-5169861|14976260
-6487148|14976260
-5772360|14976260
-4910675|14976260
-7202698|14976260
-12705705|14976260
-2088036|14976260
-13671126|14976260
-14285084|14976260
-12896050|14976260
-0-1-3|14976260
-0-1-4|14976260
-0-1-2|14976260
-0-1-1|14976260
-2673619|14976260
-9339756|14976260
-10682109|14976260
-8426950|14976260
-16032673|14976260
-2274050|14976260
-1461238|14976260
-13975694|14976260
-9282438|14976260
-12766963|14976260
-8344105|14976260
-9190543|14976260
-14055055|14976260
-2942918|14976260
-12735302|14976260
-7080341|14976260
-0-0-3|14976260
-0-0-4|14976260
-0-0-2|14976260
-0-0-1|14976260
-2307300|14976260
-11032210|14976260
-16166946|14976260
-14537849|14976260
-13014156|14976260
-6435309|14976260
-6646123|14976260
--- or can query without relations:
-sqlite> select before from trans where after=14976260;
-0-4-3
-4845856
-0-3-3
-3354850
-6033476
-4825541
-7061626
-0-2
-4436324
-11153746
-655223
-5169861
-6487148
-5772360
-4910675
-7202698
-12705705
-2088036
-13671126
-14285084
-12896050
-0-1-3
-0-1-4
-0-1-2
-0-1-1
-2673619
-9339756
-10682109
-8426950
-16032673
-2274050
-1461238
-13975694
-9282438
-12766963
-8344105
-9190543
-14055055
-2942918
-12735302
-7080341
-0-0-3
-0-0-4
-0-0-2
-0-0-1
-2307300
-11032210
-16166946
-14537849
-13014156
-6435309
-6646123
-
-
-</screen>
-</section>
-
-
-</section>
-
-</section>
-
-<section><title>Representation of dataset containment and procedure execution in r2681 and how it could change.</title>
-
-<para>
-Representation of processes that transform one dataset into another dataset
-at present only occurs for <literal>app</literal> procedures, in logging of
-<literal>vdl:execute</literal> invocations, in lines like this:
-<screen>
-2009-03-12 12:20:29,772+0100 INFO  vdl:parameterlog PARAM thread=0-10-1 direction=input variable=s provenanceid=tag:benc at ci.uchicago.edu,2008:swift:dataset:20090312-1220-md2mfc24:720000000033
-</screen>
-and dataset containment is represented at closing of the containing DSHandle by this:
-<screen>
-2009-03-12 12:20:30,205+0100 INFO  AbstractDataNode CONTAINMENT parent=tag:benc at ci.uchicago.edu,2008:swift:dataset:20090312-1220-md2mfc24:720000000020 child=tag:benc at ci.uchicago.edu,2008:swift:dataset:20090312-1220-md2mfc24:720000000086
-2009-03-12 12:20:30,205+0100 INFO  AbstractDataNode ROOTPATH dataset=tag:benc at ci.uchicago.edu,2008:swift:dataset:20090312-1220-md2mfc24:720000000086 path=[2]
-</screen>
-</para>
-
-<para>
-This representation does not represent the relationship between datasets when
-they are related by @functions or operators. Nor does it represent causal
-relationships between collections and their members - instead it represents
-containment.
-</para>
-
-<para>
-Adding representation of operators (including array construction) and of
- at function invocations would give substantially more information about
-the provenance of many more datasets.
-</para>
-
-</section>
-
-</article>
-

Deleted: trunk/docs/quickstartguide.xml
===================================================================
--- trunk/docs/quickstartguide.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/quickstartguide.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,272 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<article>
-	<articleinfo revision="0.2">
-		<title>Swift Quick Start Guide</title>
-		<subtitle>Source Control $LastChangedRevision$</subtitle>
-	
-		<abstract>
-			<formalpara>
-				<title></title>
-				<para>
-				
-					The impatient may find the <ulink
-					url="reallyquickstartguide.php">Swift Really Quick Start
-					Guide</ulink> to be more convenient.
-
-					This guide describes the steps needed to download, install,
-					configure, and run the basic examples for Swift. If you are
-					using a pre-installed version of Swift, you can skip 
-					directly to the <link linkend="configure">configuration
-					section</link>.
-
-				</para>
-			</formalpara>
-		</abstract>
-	</articleinfo>
-
-	<sect1 id="download">
-		<title>Downloading a Swift Distribution</title>
-		
-		<para>
-		
-			There are three main ways of getting the Swift implementation: <link
-			linkend="dl-stable">stable releases</link>, <link
-			linkend="dl-nightly">nightly builds</link>, and the <link
-			linkend="dl-repository">source code repository</link>. 
-
-		</para>
-		
-		<sect2 id="dl-stable">
-			<title>Stable Releases</title>
-		
-			<para>
-			
-				Stable releases can be obtained from the Swift download page:
-				<ulink
-				url="http://www.ci.uchicago.edu/swift/downloads/index.php#stable">Swift
-				Downloads Page</ulink>. Once you downloaded the package, please
-				move to the <link linkend="install">install section</link>.
-
-			</para>
-		</sect2>
-		
-		<sect2 id="dl-nightly">
-			<title>Nightly Builds</title>
-		
-			<para>
-			
-				Swift builds and tests are being run every day. The <ulink
-				url="http://www.ci.uchicago.edu/swift/downloads/index.php#nightly">Swift
-				downloads page</ulink> contains links to the latest build and
-				test page. The nightly builds reflect a development version of
-				the Swift code and should not be used in production mode. After
-				downloading a nightly build package, please continue to the
-				<link linkend="install">install section</link>.
-			
-			</para>
-		</sect2>
-		
-		<sect2 id="dl-repository">
-			<title>Source Repository</title>
-		
-			<para>
-			
-				Details about accessing the Swift source repository together with
-				build instructions are available on the <ulink
-				url="http://www.ci.uchicago.edu/swift/downloads/index.php#nightly">Swift
-				downloads page</ulink>. Once built, the <filename
-				class="directory">dist/swift-svn</filename> directory
-				will contain a self-contained build which can be used in place or moved to a different location.
-				You should then proceed to the <link
-				linkend="configure">configuration section</link>.
-			
-			</para>
-		</sect2>
-	</sect1>
-	
-	<sect1 id="install">
-		<title>Installing a Swift Binary Package</title>
-		
-		<para>
-		
-			Simply unpack the downloaded package (<filename
-			class="file">swift-<version>.tar.gz</filename>) into a
-			directory of your choice:
-			
-<screen>
-<prompt>></prompt> <command>tar</command> <option>-xzvf</option> <filename
-class="file">swift-<version>.tar.gz</filename>
-</screen>
-			
-			This will create a <filename
-			class="directory">swift-<version></filename> directory
-			containing the build.
-		
-		</para>
-	</sect1>
-	
-	<sect1 id="configure">
-		<title>Configuring Swift</title>
-		
-		<para>
-		
-			This section describes configuration steps that need to be taken in
-			order to get Swift running. Since all command line tools provided
-			with Swift can be found in the <filename
-			class="directory">bin/</filename> directory of the Swift distribution, it may
-			be a good idea to add this directory to your <envar>PATH</envar>
-			environment variable:
-			
-<screen>
-<prompt>></prompt> <command>export</command> <envar>PATH</envar>=<filename
-class="directory">/path/to/swift/bin</filename>:<envar>$PATH</envar>
-</screen>
-			
-		</para>
-		<sect2 id="security"><title>Grid Security</title>
-			<para>For local execution of jobs, no grid security configuration
-				is necessary.
-			</para>
-			<para>However, when submitting jobs to a remote machine using Globus
-				Toolkit services, Swift makes use of the
-				<ulink
-				url="http://www.globus.org/toolkit/docs/4.0/security/key-index.html">
-				Grid Security Infrastructure (GSI)</ulink> for authentication
-				and authorization. The requirements for this are detailed in
-				the following sections. Note that GSI is not required to be
-				configured for local execution (which will usually be the
-				case when first starting with Swift).
-			</para>
-
-		<sect3 id="certs">
-	
-			<title>User Certificate</title>
-			<para>
-			
-				GSI requires a certificate/private key
-				pair for authentication to 
-				<ulink url="http://www.globus.org/toolkit">Globus Toolkit</ulink>
-				services. The certificate and private key should
-				be placed into the <filename
-				class="file">~/.globus/usercert.pem</filename> and <filename
-				class="file">~/.globus/userkey.pem</filename> files,
-				respectively.
-			
-			</para>
-		
-		</sect3>
-		
-		<sect3 id="cas">
-		
-			<title>Certificate Authorities Root Certificates</title>
-			
-			<para>
-			
-				The Swift client libraries are generally required to authenticate
-				the services to which they connect. This process requires the
-				presence on the Swift submit site of the root certificates used
-				to sign the host certificates of services used. These root
-				certificates need to be installed in either (or both) the
-				<filename class="directory">~/.globus/certificates</filename>
-				and <filename
-				class="directory">/etc/grid-security/certificates</filename>
-				directories. A package with the root certificates of the
-				certificate authorities used in the <ulink
-				url="http://www.teragrid.org">TeraGrid</ulink> can be found
-				<ulink
-				url="http://security.teragrid.org/TG-CAs.html">here</ulink>.
-			
-			</para>
-		
-		</sect3>
-		</sect2>
-				
-		<sect2>
-		
-			<title>Swift Properties</title>
-			
-			<para>
-			
-				A Swift properties file (named <filename
-				class="file">swift.properties</filename>) can be used to
-				customize certain configuration aspects of Swift. A shared
-				version of this file, <filename
-				class="file">etc/swift.properties</filename>
-				in the installation directory
-				can be used to provide installation-wide defaults. A per-user
-				properties file, <filename
-				class="file">~/.swift/swift.properties</filename> can be used for
-				user specific settings. Swift first loads the shared
-				configuration file and, if present, the user configuration file.
-				Any properties not explicitly set in the user configuration file
-				will be inherited from the shared configuration file. Properties
-				are specified in the following format:
-
-<screen>
-<property>name</property>=<parameter>value</parameter>
-</screen>
-
-				For details about the various properties Swift accepts, please
-				take a look at the <ulink
-				url="http://www.ci.uchicago.edu/swift/guides/userguide.php#properties">Swift
-				Properties Section</ulink> in the <ulink
-				url="http://www.ci.uchicago.edu/swift/guides/userguide.php">Swift
-				User Guide</ulink>.
-
-			</para>
-		
-		</sect2>
-	</sect1>
-	
-	<sect1 id="examples">
-		
-		<title>Running Swift Examples</title>
-		
-		<para>
-		
-			The Swift examples can be found in the <filename
-			class="directory">examples</filename> directory in the Swift distribution.
-			The examples are written in the <ulink
-			url="http://www.ci.uchicago.edu/swift/guides/userguide/language.php">SwiftScript
-			language</ulink>, and have <filename class="file">.swift</filename> as
-			a file extension. 
-
-		</para>
-		
-		<para>
-		
-			The Grid Security Infrastructure, which Swift uses, works with
-			limited time certificates called proxies. These proxies can be
-			generated from your user certificate and private key using one of
-			<command>grid-proxy-init</command> or
-			<command>cog-proxy-init</command> (the latter being a Java Swing
-			interface to the former).
-		
-		</para>
-				
-		<para>
-		
-			Execution of a Swift workflow is done using the
-			<command>swift</command> command, which takes the Swift
-			workflow file name as an argument:
-			
-<screen>
-<prompt>></prompt> <command>cd examples/swift</command>
-<prompt>></prompt> <command>swift</command> <option><filename
-class="file">first.swift</filename></option>
-</screen>
-
-			The <ulink 		
-			url="http://www.ci.uchicago.edu/swift/guides/userguide.php#swiftcommand">Swift
-			Command Options Section</ulink> in the <ulink 			
-			url="http://www.ci.uchicago.edu/swift/guides/userguide.php">Swift 			
-			User Guide</ulink> contains details about the various options of the
-			<command>swift</command>.
-		
-		</para>
-		
-	</sect1>
-</article>

Deleted: trunk/docs/reallyquickstartguide.xml
===================================================================
--- trunk/docs/reallyquickstartguide.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/reallyquickstartguide.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,109 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<article>
-	<articleinfo revision="0.2">
-		<title>Swift Really Quick Start Guide</title>
-		<subtitle>Source control $LastChangedRevision$</subtitle>
-	
-		<abstract>
-			<formalpara>
-				<title></title>
-				<para>
-				
-					This guide is a compressed version of the <ulink
-					url="quickstartguide.php">Swift Quick Start
-					Guide</ulink>.
-				
-				</para>
-			</formalpara>
-		</abstract>
-	</articleinfo>
-
-	<sect1 id="reallyquickstart">
-		<title>Swift Really Quick Start Guide</title>
-		
-		<itemizedlist>
-		
-			<listitem>
-				<para>
-				
-					<ulink
-					url="http://www.ci.uchicago.edu/swift/downloads/index.php">Download</ulink>
-					Swift.
-				
-				</para>
-			</listitem>	
-			
-			<listitem>
-				<para>
-				
-					Unpack it and add the <filename
-					class="directory">swift-xyz/bin</filename> directory to your
-					<envar>PATH</envar>.
-				
-				</para>
-			</listitem>	
-			
-			<listitem>
-				<para>
-				
-					Make sure you have your user certificate, a valid GSI proxy
-					certificate, and the proper CA root certificates in either
-					<filename
-					class="directory">~/.globus/certificates</filename> or
-					<filename
-					class="directory">/etc/grid-security/certificates</filename>.
-				
-				</para>
-			</listitem>	
-			
-			<listitem>
-				<para>
-				
-					Edit <filename
-					class="file">swift-xyz/etc/swift.properties</filename>. You
-					should add your numeric IP address there
-					(<property>ip.address</property>=<literal>x.y.z.w</literal>).
-				
-				</para>
-			</listitem>
-			
-			<listitem>
-				<para>
-				
-					Use the example site catalog and transformation catalog (they 
-					are configured for local submission):
-					
-<screen>
-<command>cd</command> swift-xyz/etc
-<command>cp</command> sites.xml.example sites.xml
-<command>cp</command> tc.data.example tc.data
-</screen>
-				
-				</para>
-			</listitem>
-						
-			<listitem>
-				<para>
-				
-					Use <command>swift file.dtm</command> to compile and execute
-					<filename class="file">file.dtm</filename>.
-				
-				</para>
-			</listitem>	
-			
-			<listitem>
-				<para>
-				
-					Use <command>swift -resume file-<runid>.?.rlog
-					file.dtm</command> to resume a failed run.
-				
-				</para>
-			</listitem>	
-		
-		</itemizedlist>
-		
-	</sect1>
-</article>

Deleted: trunk/docs/swift-site-model.fig
===================================================================
--- trunk/docs/swift-site-model.fig	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/swift-site-model.fig	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,53 +0,0 @@
-#FIG 3.2  Produced by xfig version 3.2.5
-Landscape
-Center
-Inches
-Letter  
-100.00
-Single
--2
-1200 2
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 2100 3450 4425 2025
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 2100 3675 4425 3825
-2 4 0 1 0 11 999 -1 20 0.000 0 0 7 0 0 5
-	 8850 4800 4200 4800 4200 675 8850 675 8850 4800
-2 2 0 1 0 5 50 -1 20 0.000 0 0 -1 0 0 5
-	 7425 2025 8400 2025 8400 2775 7425 2775 7425 2025
-2 2 0 1 0 5 50 -1 20 0.000 0 0 -1 0 0 5
-	 7425 2850 8400 2850 8400 3600 7425 3600 7425 2850
-2 2 0 1 0 5 50 -1 20 0.000 0 0 -1 0 0 5
-	 7425 3675 8400 3675 8400 4425 7425 4425 7425 3675
-2 2 0 1 0 5 50 -1 20 0.000 0 0 -1 0 0 5
-	 7425 1200 8400 1200 8400 1950 7425 1950 7425 1200
-2 2 0 1 0 6 500 -1 20 0.000 0 0 -1 0 0 5
-	 525 3000 2025 3000 2025 4050 525 4050 525 3000
-2 2 0 1 0 6 100 -1 20 0.000 0 0 -1 0 0 5
-	 4500 1350 6300 1350 6300 2700 4500 2700 4500 1350
-2 2 0 1 0 6 100 -1 20 0.000 0 0 -1 0 0 5
-	 4500 3225 6375 3225 6375 4425 4500 4425 4500 3225
-2 4 0 1 0 11 55 -1 20 0.000 0 0 7 0 0 5
-	 8850 5850 4200 5850 4200 5100 8850 5100 8850 5850
-2 4 0 1 0 11 55 -1 20 0.000 0 0 7 0 0 5
-	 8850 6675 4200 6675 4200 6075 8850 6075 8850 6675
-3 0 0 1 0 7 50 -1 -1 0.000 0 0 0 2
-	 7350 1575 6375 1950
-	 0.000 0.000
-3 0 0 1 0 7 50 -1 -1 0.000 0 0 0 2
-	 7350 1725 6450 3975
-	 0.000 0.000
-4 0 0 50 -1 0 12 0.0000 4 150 450 750 3300 Swift\001
-4 0 0 50 -1 0 12 0.0000 4 150 1155 750 3555 commandline\001
-4 0 0 50 -1 0 12 0.0000 4 150 465 750 3810 client\001
-4 0 0 50 -1 0 12 0.0000 4 195 1500 4725 2100 shared filesystem\001
-4 0 0 50 -1 0 12 0.0000 4 150 465 4800 3900 LRM\001
-4 0 0 50 -1 0 12 0.0000 4 150 1215 7350 900 Worker nodes\001
-4 0 0 50 -1 0 12 0.0000 4 150 465 6525 1425 Posix\001
-4 0 0 50 -1 0 12 0.0000 4 150 1065 5325 5475 Another site\001
-4 0 0 50 -1 0 12 0.0000 4 150 1065 5250 6450 Another site\001
-4 0 0 50 -1 0 12 0.0000 4 150 810 2475 2475 remote fs\001
-4 0 0 50 -1 0 12 0.0000 4 105 600 2475 2730 access\001
-4 0 0 50 -1 0 12 0.0000 4 195 1260 2400 4125 job submission\001
-4 0 0 50 -1 0 12 0.0000 4 195 915 2400 4380 eg GRAM\001
-4 0 0 50 -1 0 12 0.0000 4 195 1080 3075 3000 eg. GridFTP\001

Deleted: trunk/docs/swift-site-model.png
===================================================================
(Binary files differ)

Added: trunk/docs/tutorial/tutorial.html
===================================================================
--- trunk/docs/tutorial/tutorial.html	                        (rev 0)
+++ trunk/docs/tutorial/tutorial.html	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,1594 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<head>
+<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
+<meta name="generator" content="AsciiDoc 8.6.4" />
+<title>A Swift Tutorial</title>
+<style type="text/css">
+/* Sans-serif font. */
+h1, h2, h3, h4, h5, h6,
+div.title, caption.title,
+thead, p.table.header,
+div#toctitle,
+span#author, span#revnumber, span#revdate, span#revremark,
+div#footer {
+  font-family: Arial,Helvetica,sans-serif;
+}
+
+/* Serif font. */
+div.sectionbody {
+  font-family: Georgia,"Times New Roman",Times,serif;
+}
+
+/* Monospace font. */
+tt {
+  font-size: inherit;
+}
+
+body {
+  margin: 1em 5% 1em 5%;
+}
+
+a {
+  color: blue;
+  text-decoration: underline;
+}
+a:visited {
+  color: fuchsia;
+}
+
+em {
+  font-style: italic;
+  color: navy;
+}
+
+strong {
+  font-weight: bold;
+  color: #083194;
+}
+
+tt {
+  font-size: inherit;
+  color: navy;
+}
+
+h1, h2, h3, h4, h5, h6 {
+  color: #527bbd;
+  margin-top: 1.2em;
+  margin-bottom: 0.5em;
+  line-height: 1.3;
+}
+
+h1, h2, h3 {
+  border-bottom: 2px solid silver;
+}
+h2 {
+  padding-top: 0.5em;
+}
+h3 {
+  float: left;
+}
+h3 + * {
+  clear: left;
+}
+
+div.sectionbody {
+  margin-left: 0;
+}
+
+hr {
+  border: 1px solid silver;
+}
+
+p {
+  margin-top: 0.5em;
+  margin-bottom: 0.5em;
+}
+
+ul, ol, li > p {
+  margin-top: 0;
+}
+ul > li     { color: #aaa; }
+ul > li > * { color: black; }
+
+pre {
+  padding: 0;
+  margin: 0;
+}
+
+span#author {
+  color: #527bbd;
+  font-weight: bold;
+  font-size: 1.1em;
+}
+span#email {
+}
+span#revnumber, span#revdate, span#revremark {
+}
+
+div#footer {
+  font-size: small;
+  border-top: 2px solid silver;
+  padding-top: 0.5em;
+  margin-top: 4.0em;
+}
+div#footer-text {
+  float: left;
+  padding-bottom: 0.5em;
+}
+div#footer-badges {
+  float: right;
+  padding-bottom: 0.5em;
+}
+
+div#preamble {
+  margin-top: 1.5em;
+  margin-bottom: 1.5em;
+}
+div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
+div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
+div.admonitionblock {
+  margin-top: 1.0em;
+  margin-bottom: 1.5em;
+}
+div.admonitionblock {
+  margin-top: 2.0em;
+  margin-bottom: 2.0em;
+  margin-right: 10%;
+  color: #606060;
+}
+
+div.content { /* Block element content. */
+  padding: 0;
+}
+
+/* Block element titles. */
+div.title, caption.title {
+  color: #527bbd;
+  font-weight: bold;
+  text-align: left;
+  margin-top: 1.0em;
+  margin-bottom: 0.5em;
+}
+div.title + * {
+  margin-top: 0;
+}
+
+td div.title:first-child {
+  margin-top: 0.0em;
+}
+div.content div.title:first-child {
+  margin-top: 0.0em;
+}
+div.content + div.title {
+  margin-top: 0.0em;
+}
+
+div.sidebarblock > div.content {
+  background: #ffffee;
+  border: 1px solid #dddddd;
+  border-left: 4px solid #f0f0f0;
+  padding: 0.5em;
+}
+
+div.listingblock > div.content {
+  border: 1px solid #dddddd;
+  border-left: 5px solid #f0f0f0;
+  background: #f8f8f8;
+  padding: 0.5em;
+}
+
+div.quoteblock, div.verseblock {
+  padding-left: 1.0em;
+  margin-left: 1.0em;
+  margin-right: 10%;
+  border-left: 5px solid #f0f0f0;
+  color: #777777;
+}
+
+div.quoteblock > div.attribution {
+  padding-top: 0.5em;
+  text-align: right;
+}
+
+div.verseblock > pre.content {
+  font-family: inherit;
+  font-size: inherit;
+}
+div.verseblock > div.attribution {
+  padding-top: 0.75em;
+  text-align: left;
+}
+/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
+div.verseblock + div.attribution {
+  text-align: left;
+}
+
+div.admonitionblock .icon {
+  vertical-align: top;
+  font-size: 1.1em;
+  font-weight: bold;
+  text-decoration: underline;
+  color: #527bbd;
+  padding-right: 0.5em;
+}
+div.admonitionblock td.content {
+  padding-left: 0.5em;
+  border-left: 3px solid #dddddd;
+}
+
+div.exampleblock > div.content {
+  border-left: 3px solid #dddddd;
+  padding-left: 0.5em;
+}
+
+div.imageblock div.content { padding-left: 0; }
+span.image img { border-style: none; }
+a.image:visited { color: white; }
+
+dl {
+  margin-top: 0.8em;
+  margin-bottom: 0.8em;
+}
+dt {
+  margin-top: 0.5em;
+  margin-bottom: 0;
+  font-style: normal;
+  color: navy;
+}
+dd > *:first-child {
+  margin-top: 0.1em;
+}
+
+ul, ol {
+    list-style-position: outside;
+}
+ol.arabic {
+  list-style-type: decimal;
+}
+ol.loweralpha {
+  list-style-type: lower-alpha;
+}
+ol.upperalpha {
+  list-style-type: upper-alpha;
+}
+ol.lowerroman {
+  list-style-type: lower-roman;
+}
+ol.upperroman {
+  list-style-type: upper-roman;
+}
+
+div.compact ul, div.compact ol,
+div.compact p, div.compact p,
+div.compact div, div.compact div {
+  margin-top: 0.1em;
+  margin-bottom: 0.1em;
+}
+
+div.tableblock > table {
+  border: 3px solid #527bbd;
+}
+thead, p.table.header {
+  font-weight: bold;
+  color: #527bbd;
+}
+tfoot {
+  font-weight: bold;
+}
+td > div.verse {
+  white-space: pre;
+}
+p.table {
+  margin-top: 0;
+}
+/* Because the table frame attribute is overriden by CSS in most browsers. */
+div.tableblock > table[frame="void"] {
+  border-style: none;
+}
+div.tableblock > table[frame="hsides"] {
+  border-left-style: none;
+  border-right-style: none;
+}
+div.tableblock > table[frame="vsides"] {
+  border-top-style: none;
+  border-bottom-style: none;
+}
+
+
+div.hdlist {
+  margin-top: 0.8em;
+  margin-bottom: 0.8em;
+}
+div.hdlist tr {
+  padding-bottom: 15px;
+}
+dt.hdlist1.strong, td.hdlist1.strong {
+  font-weight: bold;
+}
+td.hdlist1 {
+  vertical-align: top;
+  font-style: normal;
+  padding-right: 0.8em;
+  color: navy;
+}
+td.hdlist2 {
+  vertical-align: top;
+}
+div.hdlist.compact tr {
+  margin: 0;
+  padding-bottom: 0;
+}
+
+.comment {
+  background: yellow;
+}
+
+.footnote, .footnoteref {
+  font-size: 0.8em;
+}
+
+span.footnote, span.footnoteref {
+  vertical-align: super;
+}
+
+#footnotes {
+  margin: 20px 0 20px 0;
+  padding: 7px 0 0 0;
+}
+
+#footnotes div.footnote {
+  margin: 0 0 5px 0;
+}
+
+#footnotes hr {
+  border: none;
+  border-top: 1px solid silver;
+  height: 1px;
+  text-align: left;
+  margin-left: 0;
+  width: 20%;
+  min-width: 100px;
+}
+
+div.colist td {
+  padding-right: 0.5em;
+  padding-bottom: 0.3em;
+  vertical-align: top;
+}
+div.colist td img {
+  margin-top: 0.3em;
+}
+
+ at media print {
+  div#footer-badges { display: none; }
+}
+
+div#toc {
+  margin-bottom: 2.5em;
+}
+
+div#toctitle {
+  color: #527bbd;
+  font-size: 1.1em;
+  font-weight: bold;
+  margin-top: 1.0em;
+  margin-bottom: 0.1em;
+}
+
+div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
+  margin-top: 0;
+  margin-bottom: 0;
+}
+div.toclevel2 {
+  margin-left: 2em;
+  font-size: 0.9em;
+}
+div.toclevel3 {
+  margin-left: 4em;
+  font-size: 0.9em;
+}
+div.toclevel4 {
+  margin-left: 6em;
+  font-size: 0.9em;
+}
+
+span.aqua { color: aqua; }
+span.black { color: black; }
+span.blue { color: blue; }
+span.fuchsia { color: fuchsia; }
+span.gray { color: gray; }
+span.green { color: green; }
+span.lime { color: lime; }
+span.maroon { color: maroon; }
+span.navy { color: navy; }
+span.olive { color: olive; }
+span.purple { color: purple; }
+span.red { color: red; }
+span.silver { color: silver; }
+span.teal { color: teal; }
+span.white { color: white; }
+span.yellow { color: yellow; }
+
+span.aqua-background { background: aqua; }
+span.black-background { background: black; }
+span.blue-background { background: blue; }
+span.fuchsia-background { background: fuchsia; }
+span.gray-background { background: gray; }
+span.green-background { background: green; }
+span.lime-background { background: lime; }
+span.maroon-background { background: maroon; }
+span.navy-background { background: navy; }
+span.olive-background { background: olive; }
+span.purple-background { background: purple; }
+span.red-background { background: red; }
+span.silver-background { background: silver; }
+span.teal-background { background: teal; }
+span.white-background { background: white; }
+span.yellow-background { background: yellow; }
+
+span.big { font-size: 2em; }
+span.small { font-size: 0.6em; }
+</style>
+<script type="text/javascript">
+/*<![CDATA[*/
+window.onload = function(){asciidoc.footnotes(); asciidoc.toc(2);}
+var asciidoc = {  // Namespace.
+
+/////////////////////////////////////////////////////////////////////
+// Table Of Contents generator
+/////////////////////////////////////////////////////////////////////
+
+/* Author: Mihai Bazon, September 2002
+ * http://students.infoiasi.ro/~mishoo
+ *
+ * Table Of Content generator
+ * Version: 0.4
+ *
+ * Feel free to use this script under the terms of the GNU General Public
+ * License, as long as you do not remove or alter this notice.
+ */
+
+ /* modified by Troy D. Hanson, September 2006. License: GPL */
+ /* modified by Stuart Rackham, 2006, 2009. License: GPL */
+
+// toclevels = 1..4.
+toc: function (toclevels) {
+
+  function getText(el) {
+    var text = "";
+    for (var i = el.firstChild; i != null; i = i.nextSibling) {
+      if (i.nodeType == 3 /* Node.TEXT_NODE */) // IE doesn't speak constants.
+        text += i.data;
+      else if (i.firstChild != null)
+        text += getText(i);
+    }
+    return text;
+  }
+
+  function TocEntry(el, text, toclevel) {
+    this.element = el;
+    this.text = text;
+    this.toclevel = toclevel;
+  }
+
+  function tocEntries(el, toclevels) {
+    var result = new Array;
+    var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');
+    // Function that scans the DOM tree for header elements (the DOM2
+    // nodeIterator API would be a better technique but not supported by all
+    // browsers).
+    var iterate = function (el) {
+      for (var i = el.firstChild; i != null; i = i.nextSibling) {
+        if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
+          var mo = re.exec(i.tagName);
+          if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
+            result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
+          }
+          iterate(i);
+        }
+      }
+    }
+    iterate(el);
+    return result;
+  }
+
+  var toc = document.getElementById("toc");
+  var entries = tocEntries(document.getElementById("content"), toclevels);
+  for (var i = 0; i < entries.length; ++i) {
+    var entry = entries[i];
+    if (entry.element.id == "")
+      entry.element.id = "_toc_" + i;
+    var a = document.createElement("a");
+    a.href = "#" + entry.element.id;
+    a.appendChild(document.createTextNode(entry.text));
+    var div = document.createElement("div");
+    div.appendChild(a);
+    div.className = "toclevel" + entry.toclevel;
+    toc.appendChild(div);
+  }
+  if (entries.length == 0)
+    toc.parentNode.removeChild(toc);
+},
+
+
+/////////////////////////////////////////////////////////////////////
+// Footnotes generator
+/////////////////////////////////////////////////////////////////////
+
+/* Based on footnote generation code from:
+ * http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
+ */
+
+footnotes: function () {
+  var cont = document.getElementById("content");
+  var noteholder = document.getElementById("footnotes");
+  var spans = cont.getElementsByTagName("span");
+  var refs = {};
+  var n = 0;
+  for (i=0; i<spans.length; i++) {
+    if (spans[i].className == "footnote") {
+      n++;
+      // Use [\s\S] in place of . so multi-line matches work.
+      // Because JavaScript has no s (dotall) regex flag.
+      note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
+      noteholder.innerHTML +=
+        "<div class='footnote' id='_footnote_" + n + "'>" +
+        "<a href='#_footnoteref_" + n + "' title='Return to text'>" +
+        n + "</a>. " + note + "</div>";
+      spans[i].innerHTML =
+        "[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
+        "' title='View footnote' class='footnote'>" + n + "</a>]";
+      var id =spans[i].getAttribute("id");
+      if (id != null) refs["#"+id] = n;
+    }
+  }
+  if (n == 0)
+    noteholder.parentNode.removeChild(noteholder);
+  else {
+    // Process footnoterefs.
+    for (i=0; i<spans.length; i++) {
+      if (spans[i].className == "footnoteref") {
+        var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
+        href = href.match(/#.*/)[0];  // Because IE return full URL.
+        n = refs[href];
+        spans[i].innerHTML =
+          "[<a href='#_footnote_" + n +
+          "' title='View footnote' class='footnote'>" + n + "</a>]";
+      }
+    }
+  }
+}
+
+}
+/*]]>*/
+</script>
+</head>
+<body class="article">
+<div id="header">
+<h1>A Swift Tutorial</h1>
+<div id="toc">
+  <div id="toctitle">Table of Contents</div>
+  <noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
+</div>
+</div>
+<div id="content">
+<div class="sect1">
+<h2 id="_abstract">1. Abstract</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This is an introductory tutorial on the use of Swift and its programming
+language SwiftScript.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_introduction">2. Introduction</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This tutorial is intended to introduce new users to the basics of Swift.
+It is structured as a series of small exercise/examples which you can
+try for yourself as you read along. After the first <em>hello world</em>
+example, there are two tracks - the language track (which introduces
+features of the SwiftScript language) and the runtime track (which
+introduces features of the Swift runtime environment, such as running
+jobs on different sites).</p></div>
+<div class="paragraph"><p>For information on getting an installation of Swift running, consult the
+Swift Quickstart Guide <a href="http://www.ci.uchicago.edu/swift/guides/quickstartguide.php">http://www.ci.uchicago.edu/swift/guides/quickstartguide.php</a>, and
+return to this document when you have successfully run the test
+SwiftScript program mentioned there.</p></div>
+<div class="paragraph"><p>There is also a Swift User’s Guide
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php">http://www.ci.uchicago.edu/swift/guides/userguide.php</a> which contains
+more detailed reference material on topics covered in this manual. All
+of the programs included in this tutorial can be found in your Swift
+distribution in the examples/swift directory.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_hello_world">3. Hello World</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>The first example program, first.swift, outputs a hello world message
+into a file called hello.txt.</p></div>
+<div class="sidebarblock">
+<div class="content">
+<div class="title">first.swift</div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #FF0000">"Hello, world!"</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span><span style="color: #FF0000">"hello.txt"</span><span style="color: #990000">>;</span>
+
+outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">();</span></tt></pre></div></div>
+</div></div>
+<div class="paragraph"><p>We can run this program as follows:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">cd</span> examples<span style="color: #990000">/</span>swift<span style="color: #990000">/</span>
+$ <span style="color: #008080">swift</span> first<span style="color: #990000">.</span>swift
+Swift <span style="color: #008080">svn</span> swift<span style="color: #990000">-</span><span style="font-weight: bold"><span style="color: #000000">r3334</span></span> <span style="color: #990000">(</span>swift <span style="color: #008080">modified</span> locally<span style="color: #990000">)</span> cog<span style="color: #990000">-</span>r2752
+
+RunID<span style="color: #990000">:</span> <span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1925</span><span style="color: #990000">-</span>8zjupq1b
+Progress<span style="color: #990000">:</span>
+<span style="color: #008080">Final</span> status<span style="color: #990000">:</span>  <span style="color: #008080">Finished</span> successfully<span style="color: #990000">:</span><span style="color: #993399">1</span>
+$ <span style="color: #008080">cat</span> hello<span style="color: #990000">.</span>txt
+Hello<span style="color: #990000">,</span> world<span style="color: #990000">!</span></tt></pre></div></div>
+<div class="paragraph"><p>The basic structure of this program is a type definition, an
+application procedure definition, a variable definition and then a
+call to the procedure:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>First we define a new type, called messagefile. In this example, we will
+use this messagefile type as the type for our output message.</p></div>
+<div class="paragraph"><p>All data in SwiftScript must be typed, whether it is stored in memory or
+on disk. This example defines a very simple type. Later on we will see
+more complex type examples.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #FF0000">"Hello, world!"</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>Next we define a procedure called greeting. This procedure will write
+out the "hello world" message to a file.</p></div>
+<div class="paragraph"><p>To achieve this, it executes the unix utility <em>echo</em> with a parameter
+"Hello, world!" and directs the standard output into the output file.</p></div>
+<div class="paragraph"><p>The actual file to use is specified by the return parameter, t.</p></div>
+<div class="paragraph"><p>messagefile outfile <"hello.txt">;</p></div>
+<div class="paragraph"><p>Here we define a variable called outfile. The type of this variable is
+messagefile, and we specify that the contents of this variable will be
+stored on disk in a file called hello.txt</p></div>
+<div class="paragraph"><p>outfile = greeting();</p></div>
+<div class="paragraph"><p>Now we call the greeting procedure, with its output going to the outfile
+variable and therefore to hello.txt on disk.</p></div>
+<div class="paragraph"><p>Over the following exercises, we’ll extend this simple hello world
+program to demonstrate various features of Swift.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_language_features">4. Language features</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_parameters">4.1. Parameters</h3>
+<div class="paragraph"><p>Procedures can have parameters. Input parameters specify inputs to the
+procedure and output parameters specify outputs. Our helloworld greeting
+procedure already uses an output parameter, t, which indicates where the
+greeting output will go. In this section, we will add an input parameter
+to the greeting function.</p></div>
+<div class="paragraph"><p>The code changes from first.swift are highlighted below.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span> <span style="color: #990000">(</span><span style="color: #008080">string</span> s<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #008080">s</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span><span style="color: #FF0000">"hello2.txt"</span><span style="color: #990000">>;</span>
+
+outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hello world"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>We have modified the signature of the greeting procedure to indicate
+that it takes a single parameter, s, of type <em>string</em>.</p></div>
+<div class="paragraph"><p>We have modified the invocation of the <em>echo</em> utility so that it takes
+the value of s as a parameter, instead of the string literal "Hello,
+world!".</p></div>
+<div class="paragraph"><p>We have modified the output file definition to point to a different file
+on disk.</p></div>
+<div class="paragraph"><p>We have modified the invocation of greeting so that a greeting string is
+supplied.</p></div>
+<div class="paragraph"><p>The code for this section can be found in parameter.swift. It can be
+invoked using the swift command, with output appearing in hello2.txt:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">swift</span> parameter<span style="color: #990000">.</span>swift</tt></pre></div></div>
+<div class="paragraph"><p>Now that we can choose our greeting text, we can call the same procedure
+with different parameters to generate several output files with
+different greetings. The code is in manyparam.swift and can be run as
+before using the swift command.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span> <span style="color: #990000">(</span><span style="color: #008080">string</span> s<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #008080">s</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> english <span style="color: #990000"><</span><span style="color: #FF0000">"english.txt"</span><span style="color: #990000">>;</span>
+<span style="color: #008080">messagefile</span> french <span style="color: #990000"><</span><span style="color: #FF0000">"francais.txt"</span><span style="color: #990000">>;</span>
+english <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hello"</span><span style="color: #990000">);</span>
+french <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"bonjour"</span><span style="color: #990000">);</span>
+
+<span style="color: #008080">messagefile</span> japanese <span style="color: #990000"><</span><span style="color: #FF0000">"nihongo.txt"</span><span style="color: #990000">>;</span>
+japanese <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"konnichiwa"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>Note that we can intermingle definitions of variables with invocations
+of procedures.</p></div>
+<div class="paragraph"><p>When this program has been run, there should be three new files in the
+working directory (english.txt, francais.txt and nihongo.txt) each
+containing a greeting in a different language.</p></div>
+<div class="paragraph"><p>In addition to specifying parameters positionally, parameters can be
+named, and if desired a default value can be specified - see <a href="#named_parameters">Named and Optional Parameters</a>.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_adding_another_application">4.2. Adding another application</h3>
+<div class="paragraph"><p>Now we’ll define a new application procedure. The procedure we define
+will capitalise all the words in the input file.</p></div>
+<div class="paragraph"><p>To do this, we’ll use the unix tr (translate) utility. Here is an
+example of using tr on the unix command line, not using Swift:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">echo</span> hello <span style="color: #990000">|</span> tr <span style="color: #FF0000">'[a-z]'</span> <span style="color: #FF0000">'[A-Z]'</span>
+HELLO</tt></pre></div></div>
+<div class="ulist"><div class="title">There are several steps</div><ul>
+<li>
+<p>
+transformation catalog
+</p>
+</li>
+<li>
+<p>
+application block
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p>First we need to modify the transformation catalog to define a logical
+transformation for the tc utility. The transformation catalog can be
+found in etc/tc.data. There are already several entries specifying
+where programs can be found. Add a new line to the file, specifying
+where <strong>tr</strong> can be found (usually in /usr/bin/tr but it may differ on
+your system), like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">localhost</span>       tr      <span style="color: #990000">/</span>usr<span style="color: #990000">/</span>bin<span style="color: #990000">/</span>tr     <span style="color: #008080">INSTALLED</span>       INTEL32<span style="color: #990000">::</span>LINUX  <span style="font-weight: bold"><span style="color: #0000FF">null</span></span></tt></pre></div></div>
+<div class="paragraph"><p>For now, ignore all of the fields except the second and the third. The
+second field tr specifies a logical application name and the third
+specifies the location of the application executable.</p></div>
+<div class="paragraph"><p>Now that we have defined where to find tr, we can use it in SwiftScript.</p></div>
+<div class="paragraph"><p>We can define a new procedure, capitalise, which calls tr.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #990000">(</span><span style="color: #008080">messagefile</span> o<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">capitalise</span></span><span style="color: #990000">(</span><span style="color: #008080">messagefile</span> i<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        tr <span style="color: #FF0000">"[a-z]"</span> <span style="color: #FF0000">"[A-Z]"</span> stdin<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>i<span style="color: #990000">)</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>o<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>We can call capitalise like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">messagefile</span> <span style="font-weight: bold"><span style="color: #0000FF">final</span></span> <span style="color: #990000"><</span><span style="color: #FF0000">"capitals.txt"</span><span style="color: #990000">>;</span>
+<span style="font-weight: bold"><span style="color: #0000FF">final</span></span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">capitalise</span></span><span style="color: #990000">(</span>hellofile<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>So a full program based on the first exercise might look like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span> <span style="color: #990000">(</span><span style="color: #008080">string</span> s<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #008080">s</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> o<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">capitalise</span></span><span style="color: #990000">(</span><span style="color: #008080">messagefile</span> i<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    tr <span style="color: #FF0000">"[a-z]"</span> <span style="color: #FF0000">"[A-Z]"</span> stdin<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>i<span style="color: #990000">)</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>o<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> hellofile <span style="color: #990000"><</span><span style="color: #FF0000">"hello.txt"</span><span style="color: #990000">>;</span>
+<span style="color: #008080">messagefile</span> <span style="font-weight: bold"><span style="color: #0000FF">final</span></span> <span style="color: #990000"><</span><span style="color: #FF0000">"capitals.txt"</span><span style="color: #990000">>;</span>
+
+hellofile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hello from Swift"</span><span style="color: #990000">);</span>
+<span style="font-weight: bold"><span style="color: #0000FF">final</span></span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">capitalise</span></span><span style="color: #990000">(</span>hellofile<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>We can use the swift command to run it like this.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">swift</span> second_procedure<span style="color: #990000">.</span>swift
+<span style="color: #990000">...</span>
+$ <span style="color: #008080">cat</span> capitals<span style="color: #990000">.</span>txt
+HELLO FROM SWIFT</tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_anonymous_files">4.3. Anonymous files</h3>
+<div class="paragraph"><p>In the previous section, the file greeting.txt is used only to store
+an intermediate result. We don’t really care about which name is used
+for the file, and we can let Swift choose the name.</p></div>
+<div class="paragraph"><p>To do that, omit the mapping entirely when declaring outfile:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">messagefile</span> outfile<span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>Swift will choose a filename, which in the present version will be in a
+subdirectory called _concurrent.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_datatypes">4.4. Datatypes</h3>
+<div class="paragraph"><p>All data in variables and files has a data type. So far, we’ve seen two
+types:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+string - this is a built-in type for storing strings of text in
+      memory, much like in other programming languages
+</p>
+</li>
+<li>
+<p>
+messagefile - this is a user-defined type used to mark files as
+      containing messages
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p>SwiftScript has the additional built-in types: boolean, integer and
+float that function much like their counterparts in other programming
+languages.</p></div>
+<div class="paragraph"><p>It is also possible to create user defined types with more structure,
+for example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> details <span style="color: #FF0000">{</span>
+    <span style="color: #008080">string</span> name<span style="color: #990000">;</span>
+    <span style="color: #009900">int</span> pies<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>Each element of the structured type can be accessed using a . like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>person<span style="color: #990000">.</span>name <span style="color: #990000">=</span> <span style="color: #FF0000">"john"</span><span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>The following complete program, types.swift, outputs a greeting using a
+user-defined structure type to hold parameters for the message:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="color: #008080">type</span> details <span style="color: #FF0000">{</span>
+    <span style="color: #008080">string</span> name<span style="color: #990000">;</span>
+    <span style="color: #009900">int</span> pies<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span> <span style="color: #990000">(</span><span style="color: #008080">details</span> d<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #FF0000">"Hello. Your name is"</span> d<span style="color: #990000">.</span>name <span style="color: #FF0000">"and you have eaten"</span> d<span style="color: #990000">.</span>pies <span style="color: #FF0000">"pies."</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">details</span> person<span style="color: #990000">;</span>
+
+person<span style="color: #990000">.</span>name <span style="color: #990000">=</span> <span style="color: #FF0000">"John"</span><span style="color: #990000">;</span>
+person<span style="color: #990000">.</span>pies <span style="color: #990000">=</span> <span style="color: #993399">3</span><span style="color: #990000">;</span>
+
+<span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span><span style="color: #FF0000">"q15.txt"</span><span style="color: #990000">>;</span>
+
+outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span>person<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>Structured types can be comprised of marker types for files. See the
+later section on mappers for more information about this.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_arrays">4.5. Arrays</h3>
+<div class="paragraph"><p>We can define arrays using the [] suffix in a variable declaration:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">messagefile</span> m<span style="color: #990000">[];</span></tt></pre></div></div>
+<div class="paragraph"><p>This program, q5.swift, will declare an array of message files.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span> <span style="color: #990000">(</span><span style="color: #008080">string</span> s<span style="color: #990000">[])</span> <span style="color: #FF0000">{</span>
+     <span style="color: #008080">echo</span> s<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> s<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">]</span> s<span style="color: #990000">[</span><span style="color: #993399">2</span><span style="color: #990000">]</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span><span style="color: #FF0000">"q5out.txt"</span><span style="color: #990000">>;</span>
+
+<span style="color: #008080">string</span> words<span style="color: #990000">[]</span> <span style="color: #990000">=</span> <span style="color: #990000">[</span><span style="color: #FF0000">"how"</span><span style="color: #990000">,</span><span style="color: #FF0000">"are"</span><span style="color: #990000">,</span><span style="color: #FF0000">"you"</span><span style="color: #990000">];</span>
+
+outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span>words<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>Observe that the type of the parameter to greeting is now an array of
+strings, string s[], instead of a single string, string s, that
+elements of the array can be referenced numerically, for example s[0],
+and that the array is initialised using an array literal,
+["how","are","you"].</p></div>
+</div>
+<div class="sect2">
+<h3 id="_mappers">4.6. Mappers</h3>
+<div class="paragraph"><p>A significant difference between SwiftScript and other languages is that
+data can be referred to on disk through variables in a very similar
+fashion to data in memory. For example, in the above examples we have
+seen a variable definition like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span><span style="color: #FF0000">"q13greeting.txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>This means that outfile is a dataset variable, which is mapped to a
+file on disk called g13greeting.txt. This variable can be assigned to
+using = in a similar fashion to an in-memory variable. We can say that
+outfile is mapped onto the disk file q13greeting.txt by a mapper.</p></div>
+<div class="paragraph"><p>There are various ways of mapping in SwiftScript. Two forms have already
+been seen in this tutorial. Later exercises will introduce more forms.</p></div>
+<div class="paragraph"><p>The two forms of mapping seen so far are:</p></div>
+<div class="paragraph"><p>simple named mapping - the name of the file that a variable is mapped to
+is explictly listed. Like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span><span style="color: #FF0000">"greeting.txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>This is useful when you want to explicitly name input and output files
+for your program. For example, outfile in exercise HELLOWORLD.</p></div>
+<div class="paragraph"><p>anonymous mapping - no name is specified in the source code. A name is
+automatically generated for the file. This is useful for intermediate
+files that are only referenced through SwiftScript, such as outfile in
+exercise ANONYMOUSFILE. A variable declaration is mapped anonymously by
+ommitting any mapper definition, like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">messagefile</span> outfile<span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>Later exercises will introduce other ways of mapping from disk files to
+SwiftScript variables.</p></div>
+<div class="paragraph"><p>TODO: introduce @v syntax.</p></div>
+<div class="sect3">
+<h4 id="_the_regexp_mapper">4.6.1. The Regexp Mapper</h4>
+<div class="paragraph"><p>In this exercise, we introduce the regexp mapper. This mapper
+transforms a string expression using a regular expression, and uses the
+result of that transformation as the filename to map.</p></div>
+<div class="paragraph"><p>regexp.swift demonstrates the use of this by placing output into a
+file that is based on the name of the input file: our input file is
+mapped to the inputfile variable using the simple named mapper, and then
+we use the regular expression mapper to map the output file. Then we use
+the countwords() procedure to count the works in the input file and
+store the result in the output file. In order for the countwords()
+procedure to work correctly, add the wc utility (usually found in
+/usr/bin/wc) to tc.data.</p></div>
+<div class="paragraph"><p>The important bit of regexp.swift is:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">messagefile</span> inputfile <span style="color: #990000"><</span><span style="color: #FF0000">"q16.txt"</span><span style="color: #990000">>;</span>
+
+<span style="color: #008080">countfile</span> c <span style="color: #990000"><</span>regexp_mapper<span style="color: #990000">;</span>
+             source<span style="color: #990000">=</span>@inputfile<span style="color: #990000">,</span>
+             match<span style="color: #990000">=</span><span style="color: #FF0000">"(.*)txt"</span><span style="color: #990000">,</span>
+             transform<span style="color: #990000">=</span><span style="color: #FF0000">"</span><span style="color: #CC33CC">\\</span><span style="color: #FF0000">1count"</span>
+            <span style="color: #990000">>;</span></tt></pre></div></div>
+</div>
+<div class="sect3">
+<h4 id="_fixed_array_mapper">4.6.2. fixed_array_mapper</h4>
+<div class="paragraph"><p>The fixed array mapper maps a list of files into an array - each
+element of the array is mapped into one file in the specified directory.
+See fixedarray.swift.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile <span style="color: #FF0000">{}</span>
+<span style="color: #008080">type</span> countfile <span style="color: #FF0000">{}</span>
+
+<span style="color: #990000">(</span><span style="color: #008080">countfile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">countwords</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> f<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        wc <span style="color: #FF0000">"-w"</span> @<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>f<span style="color: #990000">)</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">string</span> inputNames <span style="color: #990000">=</span> <span style="color: #FF0000">"one.txt two.txt three.txt"</span><span style="color: #990000">;</span>
+<span style="color: #008080">string</span> outputNames <span style="color: #990000">=</span> <span style="color: #FF0000">"one.count two.count three.count"</span><span style="color: #990000">;</span>
+
+<span style="color: #008080">messagefile</span> inputfiles<span style="color: #990000">[]</span> <span style="color: #990000"><</span>fixed_array_mapper<span style="color: #990000">;</span>files<span style="color: #990000">=</span>inputNames<span style="color: #990000">>;</span>
+<span style="color: #008080">countfile</span> outputfiles<span style="color: #990000">[]</span> <span style="color: #990000"><</span>fixed_array_mapper<span style="color: #990000">;</span>files<span style="color: #990000">=</span>outputNames<span style="color: #990000">>;</span>
+
+outputfiles<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">countwords</span></span><span style="color: #990000">(</span>inputfiles<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]);</span>
+outputfiles<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">countwords</span></span><span style="color: #990000">(</span>inputfiles<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">]);</span>
+outputfiles<span style="color: #990000">[</span><span style="color: #993399">2</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">countwords</span></span><span style="color: #990000">(</span>inputfiles<span style="color: #990000">[</span><span style="color: #993399">2</span><span style="color: #990000">]);</span></tt></pre></div></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_foreach">4.7. foreach</h3>
+<div class="paragraph"><p>SwiftScript provides a control structure, foreach, to operate on each
+element of an array.</p></div>
+<div class="paragraph"><p>In this example, we will run the previous word counting example over
+each file in an array without having to explicitly list the array
+elements. The source code for this example is in foreach.swift. The
+three input files: one.txt, two.txt and three.txt are supplied.
+After you have run the workflow, you should see that there are three
+output files: one.count, two.count and three.count, each
+containing the word count for the corresponding input file. We combine
+the use of the fixed_array_mapper and the regexp_mapper.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile <span style="color: #FF0000">{}</span>
+<span style="color: #008080">type</span> countfile <span style="color: #FF0000">{}</span>
+
+<span style="color: #990000">(</span><span style="color: #008080">countfile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">countwords</span></span> <span style="color: #990000">(</span><span style="color: #008080">messagefile</span> f<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        wc <span style="color: #FF0000">"-w"</span> @<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>f<span style="color: #990000">)</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">string</span> inputNames <span style="color: #990000">=</span> <span style="color: #FF0000">"one.txt two.txt three.txt"</span><span style="color: #990000">;</span>
+
+<span style="color: #008080">messagefile</span> inputfiles<span style="color: #990000">[]</span> <span style="color: #990000"><</span>fixed_array_mapper<span style="color: #990000">;</span>files<span style="color: #990000">=</span>inputNames<span style="color: #990000">>;</span>
+
+
+foreach f <span style="color: #008080">in</span> inputfiles <span style="color: #FF0000">{</span>
+  <span style="color: #008080">countfile</span> c<span style="color: #990000"><</span>regexp_mapper<span style="color: #990000">;</span>
+            source<span style="color: #990000">=</span>@f<span style="color: #990000">,</span>
+            match<span style="color: #990000">=</span><span style="color: #FF0000">"(.*)txt"</span><span style="color: #990000">,</span>
+            transform<span style="color: #990000">=</span><span style="color: #FF0000">"</span><span style="color: #CC33CC">\\</span><span style="color: #FF0000">1count"</span><span style="color: #990000">>;</span>
+  c <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">countwords</span></span><span style="color: #990000">(</span>f<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_if">4.8. If</h3>
+<div class="paragraph"><p>Decisions can be made using <em>if</em>, like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">if</span></span><span style="color: #990000">(</span>morning<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+  outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"good morning"</span><span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span> <span style="font-weight: bold"><span style="color: #0000FF">else</span></span> <span style="color: #FF0000">{</span>
+  outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"good afternoon"</span><span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>if.swift contains a simple example of this. Compile and run if.swift
+and see that it outputs "good morning". Changing the morning variable
+from true to false will cause the program to output "good afternoon".</p></div>
+</div>
+<div class="sect2">
+<h3 id="_sequential_iteration">4.9. Sequential iteration</h3>
+<div class="paragraph"><p>A development version of Swift after 0.2 (revision 1230) introduces a
+sequential iteration construct.</p></div>
+<div class="paragraph"><p>The following example demonstrates a simple application: each step of
+the iteration is a string representation of the byte count of the
+previous step’s output, with iteration terminating when the byte count
+reaches zero.</p></div>
+<div class="paragraph"><p>Here’s the program:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> counterfile<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">counterfile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">echo</span></span><span style="color: #990000">(</span><span style="color: #008080">string</span> m<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #008080">m</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">counterfile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">countstep</span></span><span style="color: #990000">(</span><span style="color: #008080">counterfile</span> i<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    wcl @<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>i<span style="color: #990000">)</span> @<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">counterfile</span> a<span style="color: #990000">[]</span>  <span style="color: #990000"><</span>simple_mapper<span style="color: #990000">;</span>prefix<span style="color: #990000">=</span><span style="color: #FF0000">"foldout"</span><span style="color: #990000">>;</span>
+
+a<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">echo</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"793578934574893"</span><span style="color: #990000">);</span>
+
+<span style="color: #008080">iterate</span> v <span style="color: #FF0000">{</span>
+  a<span style="color: #990000">[</span>v<span style="color: #990000">+</span><span style="color: #993399">1</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">countstep</span></span><span style="color: #990000">(</span>a<span style="color: #990000">[</span>v<span style="color: #990000">]);</span>
+ <span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"extract int value "</span><span style="color: #990000">,</span>@<span style="font-weight: bold"><span style="color: #000000">extractint</span></span><span style="color: #990000">(</span>a<span style="color: #990000">[</span>v<span style="color: #990000">+</span><span style="color: #993399">1</span><span style="color: #990000">]));</span>
+<span style="color: #FF0000">}</span> <span style="font-weight: bold"><span style="color: #000000">until</span></span> <span style="color: #990000">(</span>@<span style="font-weight: bold"><span style="color: #000000">extractint</span></span><span style="color: #990000">(</span>a<span style="color: #990000">[</span>v<span style="color: #990000">+</span><span style="color: #993399">1</span><span style="color: #990000">])</span> <span style="color: #990000"><=</span> <span style="color: #993399">1</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>echo is the standard unix echo.</p></div>
+<div class="paragraph"><p>wcl is our application code - it counts the number of bytes in the one
+file and writes that count out to another, like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ cat <span style="color: #990000">../</span>wcl
+#<span style="color: #990000">!/</span>bin<span style="color: #990000">/</span>bash
+echo <span style="color: #990000">-</span>n $<span style="color: #990000">(</span>wc <span style="color: #990000">-</span>c <span style="color: #990000"><</span> $<span style="color: #993399">1</span><span style="color: #990000">)</span> <span style="color: #990000">></span> $<span style="color: #993399">2</span>
+
+$ echo <span style="color: #990000">-</span><span style="color: #008080">n</span> hello <span style="color: #990000">></span> a
+$ wcl a b
+$ cat b
+<span style="color: #993399">5</span></tt></pre></div></div>
+<div class="paragraph"><p>Install the above wcl script somewhere and add a transformation catalog
+entry for it. Then run the example program like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">swift</span> iterate<span style="color: #990000">.</span>swift
+Swift <span style="color: #008080">svn</span> swift<span style="color: #990000">-</span><span style="color: #008080">r3334</span> cog<span style="color: #990000">-</span>r2752
+
+RunID<span style="color: #990000">:</span> <span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">2259</span><span style="color: #990000">-</span>gtlz8zf4
+Progress<span style="color: #990000">:</span>
+<span style="color: #008080">SwiftScript</span> trace<span style="color: #990000">:</span> extract <span style="color: #008080">int</span> value <span style="color: #990000">,</span> <span style="color: #993399">16.0</span>
+<span style="color: #008080">SwiftScript</span> trace<span style="color: #990000">:</span> extract <span style="color: #008080">int</span> value <span style="color: #990000">,</span> <span style="color: #993399">2.0</span>
+<span style="color: #008080">SwiftScript</span> trace<span style="color: #990000">:</span> extract <span style="color: #008080">int</span> value <span style="color: #990000">,</span> <span style="color: #993399">1.0</span>
+<span style="color: #008080">Final</span> status<span style="color: #990000">:</span>  <span style="color: #008080">Finished</span> successfully<span style="color: #990000">:</span><span style="color: #993399">4</span>
+
+$ <span style="color: #008080">ls</span> foldout<span style="color: #990000">*</span>
+foldout0000  foldout0001  foldout0002  foldout0003</tt></pre></div></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_runtime_features">5. Runtime features</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_visualising_the_workflow_as_a_graph">5.1. Visualising the workflow as a graph</h3>
+<div class="paragraph"><p>When running a workflow, its possible to generate a provenance graph at
+the same time:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ swift <span style="color: #990000">-</span><span style="color: #008080">pgraph</span> graph<span style="color: #990000">.</span><span style="color: #008080">dot</span> first<span style="color: #990000">.</span>swift
+$ dot <span style="color: #990000">-</span>ograph<span style="color: #990000">.</span>png <span style="color: #990000">-</span><span style="color: #008080">Tpng</span> graph<span style="color: #990000">.</span>dot</tt></pre></div></div>
+<div class="paragraph"><p>graph.png can then be viewed using your favourite image viewer. The dot application is part of the graphViz project. More information can be found at <a href="http://www.graphviz.org">http://www.graphviz.org</a>.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_running_on_a_remote_site">5.2. Running on a remote site</h3>
+<div class="paragraph"><p>As configured by default, all jobs are run locally. In the previous
+examples, we’ve invoked echo and tr executables from our SwiftScript
+program. These have been run on the local system (the same computer on
+which you ran swift). We can also make our computations run on a
+remote resource.</p></div>
+<div class="admonitionblock">
+<table><tr>
+<td class="icon">
+<img src="./images/icons/warning.png" alt="Warning" />
+</td>
+<td class="content">This example is necessarily more vague than previous examples,
+because its requires access to remote resources. You should ensure that
+you can submit a job using the globus-job-run (or globusrun-ws?)
+command(s).</td>
+</tr></table>
+</div>
+<div class="paragraph"><p>We do not need to modify any SwiftScript code to run on another
+resource. Instead, we must modify another catalog, the site catalog.
+This catalog provides details of the location that applications will be
+run, with the default settings referring to the local machine. We will
+modify it to refer to a remote resource - the UC Teraport cluster. If
+you are not a UC Teraport user, you should use details of a different
+resource that you do have access to.</p></div>
+<div class="paragraph"><p>The site catalog is located in etc/sites.xml and is a relatively
+straightforward XML format file. We must modify each of the following
+three settings: gridftp (which indicates how and where data can be
+transferred to the remote resource), jobmanager (which indicates how
+applications can be run on the remote resource) and workdirectory (which
+indicates where working storage can be found on the remote resource).</p></div>
+</div>
+<div class="sect2">
+<h3 id="_writing_a_mapper">5.3. Writing a mapper</h3>
+<div class="paragraph"><p>This section will introduce writing a custom mapper so that Swift is
+able to access data files laid out in application-specific ways.</p></div>
+<div class="paragraph"><p>An application-specific mapper must take the form of a Java class that
+implements the Mapper
+<a href="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html">http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html</a>
+interface.</p></div>
+<div class="paragraph"><p>Usually you don’t need to implement this interface directly, because
+Swift provides a number of more concrete classes with some functionality
+already implemented.</p></div>
+<div class="paragraph"><p>The hierarchy of helper classes is:</p></div>
+<div class="paragraph"><p><a href="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html">Mapper</a></p></div>
+<div class="paragraph"><p>This is the abstract interface for mappers in Swift. You must
+implement methods to provide access to mapper properties, to map from a
+SwiftScript dataset path (such as foo[1].bar) to a file name, to check
+whether a file exists. None of the default Swift mappers implement this
+interface directly - instead they use one of the following helper classes.</p></div>
+<div class="paragraph"><p><a href="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/AbstractMapper.html">Abstract Mapper</a></p></div>
+<div class="paragraph"><p>This provides helper methods to manage mapper properties and to handle
+existance checking. Examples of mappers which use this class are:
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.array_mapper">Array Mapper</a>,
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.csv_mapper">CSV Mapper</a>,
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.fixed_array_mapper">Fixed Array Mapper</a>,
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.regexp_mapper">Regexp Mapper</a>,
+and <a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.single_file_mapper">Single File Mapper</a>.</p></div>
+<div class="paragraph"><p><a href="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/file/AbstractFileMapper.html">AbstractFileMapper</a>
+This provides a helper class for mappers which select files based on
+selecting files from a directory listing. It is necessary to write some
+helper methods that are different from the above mapper methods.
+Examples of mappers which use this class are:
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.simple_mapper">simple_mapper</a>,
+<a href="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.filesys_mapper">filesys_mapper</a>,
+and the (undocumented) StructuredRegularExpressionMapper.</p></div>
+<div class="paragraph"><p>In general, to write a mapper, choose either the AbstractMapper or the
+AbstractFileMapper and extend those. If your mapper will generally
+select the files it returns based on a directory listing and will
+convert paths to filenames using some regular conversion (for example,
+in the way that simple_mapper maps files in a directory that match a
+particular pattern), then you should probably use the
+AbstractFileMapper. If your mapper will produce a list of files in some
+other way (for example, in the way that csv_mapper maps based on
+filenames given in a CSV file rather than looking at which files are in
+a directory), then you should probably use the AbstractMapper.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_writing_a_very_basic_mapper">5.4. Writing a very basic mapper</h3>
+<div class="paragraph"><p>In this section, we will write a very basic (almost useless) mapper that
+will map a SwiftScript dataset into a hardcoded file called
+myfile.txt, like this:</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Swift variable                            Filename</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>var   <----------------------------->    myfile.txt</tt></pre>
+</div></div>
+<div class="paragraph"><p>We should be able to use the mapper we write in a SwiftScript program
+like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+<span style="color: #008080">file</span> f <span style="color: #990000"><</span>my_first_mapper<span style="color: #990000">;>;</span></tt></pre></div></div>
+<div class="paragraph"><p>First we must choose a base class - AbstractMapper or
+AbstractFileMapper. We aren’t going to use a directory listing to decide
+on our mapping - we are getting the mapping from some other source (in
+fact, it will be hard coded). So we will use AbstractMapper.</p></div>
+<div class="paragraph"><p>So now onto the source code. We must define a subclass of AbstractMapper
+and implement several mapper methods: isStatic, existing, and map. These
+methods are documented in the javadoc for the Mapper interface.</p></div>
+<div class="paragraph"><p>Here is the code implementing this mapper. Put this in your source
+vdsk directory, make a directory src/tutorial/|and put this file in
+src/tutorial/MyFirstMapper.java.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">package</span></span> tutorial<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000080">import</span></span> java<span style="color: #990000">.</span>util<span style="color: #990000">.</span>Arrays<span style="color: #990000">;</span>
+<span style="font-weight: bold"><span style="color: #000080">import</span></span> java<span style="color: #990000">.</span>util<span style="color: #990000">.</span>Collection<span style="color: #990000">;</span>
+<span style="font-weight: bold"><span style="color: #000080">import</span></span> java<span style="color: #990000">.</span>util<span style="color: #990000">.</span>Collections<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000080">import</span></span> org<span style="color: #990000">.</span>griphyn<span style="color: #990000">.</span>vdl<span style="color: #990000">.</span>mapping<span style="color: #990000">.</span>AbsFile<span style="color: #990000">;</span>
+<span style="font-weight: bold"><span style="color: #000080">import</span></span> org<span style="color: #990000">.</span>griphyn<span style="color: #990000">.</span>vdl<span style="color: #990000">.</span>mapping<span style="color: #990000">.</span>AbstractMapper<span style="color: #990000">;</span>
+<span style="font-weight: bold"><span style="color: #000080">import</span></span> org<span style="color: #990000">.</span>griphyn<span style="color: #990000">.</span>vdl<span style="color: #990000">.</span>mapping<span style="color: #990000">.</span>Path<span style="color: #990000">;</span>
+<span style="font-weight: bold"><span style="color: #000080">import</span></span> org<span style="color: #990000">.</span>griphyn<span style="color: #990000">.</span>vdl<span style="color: #990000">.</span>mapping<span style="color: #990000">.</span>PhysicalFormat<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #0000FF">public</span></span> <span style="font-weight: bold"><span style="color: #0000FF">class</span></span> <span style="color: #008080">MyFirstMapper</span> <span style="font-weight: bold"><span style="color: #0000FF">extends</span></span> AbstractMapper <span style="color: #FF0000">{</span>
+
+  <span style="color: #008080">AbsFile</span> myfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #0000FF">new</span></span> <span style="font-weight: bold"><span style="color: #000000">AbsFile</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"myfile.txt"</span><span style="color: #990000">);</span>
+
+  <span style="font-weight: bold"><span style="color: #0000FF">public</span></span> <span style="color: #009900">boolean</span> <span style="font-weight: bold"><span style="color: #000000">isStatic</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+    <span style="font-weight: bold"><span style="color: #0000FF">return</span></span> <span style="font-weight: bold"><span style="color: #0000FF">false</span></span><span style="color: #990000">;</span>
+  <span style="color: #FF0000">}</span>
+
+  <span style="font-weight: bold"><span style="color: #0000FF">public</span></span> <span style="color: #008080">Collection</span> <span style="font-weight: bold"><span style="color: #000000">existing</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+    <span style="font-weight: bold"><span style="color: #0000FF">if</span></span> <span style="color: #990000">(</span>myfile<span style="color: #990000">.</span><span style="font-weight: bold"><span style="color: #000000">exists</span></span><span style="color: #990000">())</span>
+      <span style="font-weight: bold"><span style="color: #0000FF">return</span></span> Arrays<span style="color: #990000">.</span><span style="font-weight: bold"><span style="color: #000000">asList</span></span><span style="color: #990000">(</span><span style="font-weight: bold"><span style="color: #0000FF">new</span></span> Path<span style="color: #990000">[]</span> <span style="color: #FF0000">{</span>Path<span style="color: #990000">.</span>EMPTY_PATH<span style="color: #FF0000">}</span><span style="color: #990000">);</span>
+    <span style="font-weight: bold"><span style="color: #0000FF">else</span></span>
+      <span style="font-weight: bold"><span style="color: #0000FF">return</span></span> Collections<span style="color: #990000">.</span>EMPTY_LIST<span style="color: #990000">;</span>
+  <span style="color: #FF0000">}</span>
+
+  <span style="font-weight: bold"><span style="color: #0000FF">public</span></span> <span style="color: #008080">PhysicalFormat</span> <span style="font-weight: bold"><span style="color: #000000">map</span></span><span style="color: #990000">(</span><span style="color: #008080">Path</span> p<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    <span style="font-weight: bold"><span style="color: #0000FF">if</span></span><span style="color: #990000">(</span>p<span style="color: #990000">.</span><span style="font-weight: bold"><span style="color: #000000">equals</span></span><span style="color: #990000">(</span>Path<span style="color: #990000">.</span>EMPTY_PATH<span style="color: #990000">))</span>
+      <span style="font-weight: bold"><span style="color: #0000FF">return</span></span> myfile<span style="color: #990000">;</span>
+    <span style="font-weight: bold"><span style="color: #0000FF">else</span></span>
+      <span style="font-weight: bold"><span style="color: #0000FF">return</span></span> <span style="font-weight: bold"><span style="color: #0000FF">null</span></span><span style="color: #990000">;</span>
+  <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>Now we need to inform the Swift engine about the existence of this
+mapper. We do that by editing the MapperFactory class definition, in
+src/org/griphyn/vdl/mapping/MapperFactory.java and adding a
+registerMapper call alongside the existing registerMapper calls, like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000000">registerMapper</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"my_first_mapper"</span><span style="color: #990000">,</span> tutorial<span style="color: #990000">.</span>MyFirstMapper<span style="color: #990000">.</span><span style="font-weight: bold"><span style="color: #0000FF">class</span></span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>The first parameter is the name of the mapper that will be used in
+SwiftScript program. The second parameter is the new Mapper class that
+we just wrote.</p></div>
+<div class="paragraph"><p>Now rebuild Swift using the "ant redist" target.</p></div>
+<div class="paragraph"><p>This new Swift build will be aware of your new mapper. We can test it
+out with a hello world program:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        echo <span style="color: #FF0000">"hello"</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span>my_first_mapper<span style="color: #990000">;>;</span>
+
+outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">();</span></tt></pre></div></div>
+<div class="paragraph"><p>Run this program, and hopefully you will find the "hello" string has
+been output into the hard coded output file myfile.txt:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">cat</span> myfile<span style="color: #990000">.</span>txt
+hello</tt></pre></div></div>
+<div class="paragraph"><p>So that’s a first very simple mapper implemented. Compare the source
+code to the single_file_mapper in
+<a href="http://www.ci.uchicago.edu/trac/swift/browser/trunk/src/org/griphyn/vdl/mapping/file/SingleFileMapper.java">SingleFileMapper.java</a>.
+There is not much more code to the single_file_mapper - mostly code to
+deal with the file parameter.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_starting_and_restarting">5.5. Starting and restarting</h3>
+<div class="paragraph"><p>Now we’re going to try out the restart capabilities of Swift. We will
+make a workflow that will deliberately fail, and then we will fix the
+problem so that Swift can continue with the workflow.</p></div>
+<div class="paragraph"><p>First we have the program in working form, restart.swift.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> f<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">touch</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+    touch @f<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> f<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">processL</span></span><span style="color: #990000">(</span><span style="color: #008080">file</span> inp<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #FF0000">"processL"</span> stdout<span style="color: #990000">=</span>@f<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> f<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">processR</span></span><span style="color: #990000">(</span><span style="color: #008080">file</span> inp<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    broken <span style="color: #FF0000">"process"</span> stdout<span style="color: #990000">=</span>@f<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> f<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">join</span></span><span style="color: #990000">(</span><span style="color: #008080">file</span> left<span style="color: #990000">,</span> <span style="color: #008080">file</span> right<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    echo <span style="color: #FF0000">"join"</span> @left @<span style="color: #008080">right</span> stdout<span style="color: #990000">=</span>@f<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">file</span> f <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">touch</span></span><span style="color: #990000">();</span>
+
+<span style="color: #008080">file</span> g <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">processL</span></span><span style="color: #990000">(</span>f<span style="color: #990000">);</span>
+<span style="color: #008080">file</span> h <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">processR</span></span><span style="color: #990000">(</span>f<span style="color: #990000">);</span>
+
+<span style="color: #008080">file</span> i <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">join</span></span><span style="color: #990000">(</span>g<span style="color: #990000">,</span>h<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>We must define some transformation catalog entries:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">localhost</span>   touch   <span style="color: #990000">/</span>usr<span style="color: #990000">/</span>bin<span style="color: #990000">/</span>touch  <span style="color: #008080">INSTALLED</span>   INTEL32<span style="color: #990000">::</span>LINUX  <span style="font-weight: bold"><span style="color: #0000FF">null</span></span>
+<span style="color: #008080">localhost</span>   broken  <span style="color: #990000">/</span>bin<span style="color: #990000">/</span><span style="font-weight: bold"><span style="color: #0000FF">true</span></span>   <span style="color: #008080">INSTALLED</span>   INTEL32<span style="color: #990000">::</span>LINUX  <span style="font-weight: bold"><span style="color: #0000FF">null</span></span></tt></pre></div></div>
+<div class="paragraph"><p>Now we can run the program:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">swift</span> restart<span style="color: #990000">.</span>swift
+Swift <span style="color: #993399">0.9</span> swift<span style="color: #990000">-</span><span style="color: #008080">r2860</span> cog<span style="color: #990000">-</span>r2388
+
+RunID<span style="color: #990000">:</span> <span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1119</span><span style="color: #990000">-</span>3kgzzi15
+Progress<span style="color: #990000">:</span>
+<span style="color: #008080">Final</span> status<span style="color: #990000">:</span>  <span style="color: #008080">Finished</span> successfully<span style="color: #990000">:</span><span style="color: #993399">4</span></tt></pre></div></div>
+<div class="paragraph"><p>Four jobs run - touch, echo, broken and a final echo. (note that broken
+isn’t actually broken yet).</p></div>
+<div class="paragraph"><p>Now we will break the broken job and see what happens. Replace the
+definition in tc.data for broken with this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">localhost</span>    broken     <span style="color: #990000">/</span>bin<span style="color: #990000">/</span><span style="font-weight: bold"><span style="color: #0000FF">false</span></span>   <span style="color: #008080">INSTALLED</span>       INTEL32<span style="color: #990000">::</span>LINUX  <span style="font-weight: bold"><span style="color: #0000FF">null</span></span></tt></pre></div></div>
+<div class="paragraph"><p>Now when we run the workflow, the broken task fails:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">swift</span> restart<span style="color: #990000">.</span>swift
+
+Swift <span style="color: #993399">0.9</span> swift<span style="color: #990000">-</span><span style="color: #008080">r2860</span> cog<span style="color: #990000">-</span>r2388
+
+RunID<span style="color: #990000">:</span> <span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1121</span><span style="color: #990000">-</span>tssdcljg
+Progress<span style="color: #990000">:</span>
+Progress<span style="color: #990000">:</span>  <span style="color: #008080">Stage</span> in<span style="color: #990000">:</span><span style="color: #993399">1</span>  <span style="color: #008080">Finished</span> successfully<span style="color: #990000">:</span><span style="color: #993399">2</span>
+<span style="color: #008080">Execution</span> failed<span style="color: #990000">:</span>
+    Exception <span style="color: #008080">in</span> broken<span style="color: #990000">:</span>
+Arguments<span style="color: #990000">:</span> <span style="color: #990000">[</span>process<span style="color: #990000">]</span>
+Host<span style="color: #990000">:</span> localhost
+Directory<span style="color: #990000">:</span> restart<span style="color: #990000">-</span><span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1121</span><span style="color: #990000">-</span>tssdcljg<span style="color: #990000">/</span>jobs<span style="color: #990000">/</span><span style="color: #993399">1</span><span style="color: #990000">/</span>broken<span style="color: #990000">-</span>1i6ufisj
+stderr<span style="color: #990000">.</span>txt<span style="color: #990000">:</span>
+stdout<span style="color: #990000">.</span>txt<span style="color: #990000">:</span></tt></pre></div></div>
+<div class="paragraph"><p>From the output we can see that touch and the first echo completed, but
+then broken failed and so swift did not attempt to execute the final echo.</p></div>
+<div class="paragraph"><p>There will be a restart log with the same name as the RunID:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ ls <span style="color: #990000">*</span><span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1121</span><span style="color: #990000">-</span>tssdcljg<span style="color: #990000">*</span>rlog
+restart<span style="color: #990000">-</span><span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1121</span><span style="color: #990000">-</span>tssdcljg<span style="color: #990000">.</span><span style="color: #993399">0</span><span style="color: #990000">.</span>rlog</tt></pre></div></div>
+<div class="paragraph"><p>This restart log contains enough information for swift to know which
+parts of the workflow were executed successfully.</p></div>
+<div class="paragraph"><p>We can try to rerun it immediately, like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ swift <span style="color: #990000">-</span><span style="color: #008080">resume</span> restart<span style="color: #990000">-</span><span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1121</span><span style="color: #990000">-</span>tssdcljg<span style="color: #990000">.</span><span style="color: #993399">0</span><span style="color: #990000">.</span><span style="color: #008080">rlog</span> restart<span style="color: #990000">.</span>swift
+
+Swift <span style="color: #993399">0.9</span> swift<span style="color: #990000">-</span><span style="color: #008080">r2860</span> cog<span style="color: #990000">-</span>r2388
+
+RunID<span style="color: #990000">:</span> <span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1125</span><span style="color: #990000">-</span>7yx0zi6d
+Progress<span style="color: #990000">:</span>
+<span style="color: #008080">Execution</span> failed<span style="color: #990000">:</span>
+    Exception <span style="color: #008080">in</span> broken<span style="color: #990000">:</span>
+Arguments<span style="color: #990000">:</span> <span style="color: #990000">[</span>process<span style="color: #990000">]</span>
+Host<span style="color: #990000">:</span> localhost
+Directory<span style="color: #990000">:</span> restart<span style="color: #990000">-</span><span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1125</span><span style="color: #990000">-</span>7yx0zi6d<span style="color: #990000">/</span>jobs<span style="color: #990000">/</span>m<span style="color: #990000">/</span>broken<span style="color: #990000">-</span>msn1gisj
+stderr<span style="color: #990000">.</span>txt<span style="color: #990000">:</span>
+stdout<span style="color: #990000">.</span>txt<span style="color: #990000">:</span>
+
+<span style="color: #990000">----</span>
+
+<span style="color: #008080">Caused</span> by<span style="color: #990000">:</span>
+    Exit code <span style="color: #993399">1</span></tt></pre></div></div>
+<div class="paragraph"><p>Swift tried to resume the workflow by executing "broken" again. It did
+not try to run the touch or first echo jobs, because the restart log
+says that they do not need to be executed again.</p></div>
+<div class="paragraph"><p>Broken failed again, leaving the original restart log in place.</p></div>
+<div class="paragraph"><p>Now we will fix the problem with "broken" by restoring the original
+tc.data line that works.</p></div>
+<div class="paragraph"><p>Remove the existing "broken" line and replace it with the successful
+tc.data entry above:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">localhost</span>       broken          <span style="color: #990000">/</span>bin<span style="color: #990000">/</span><span style="font-weight: bold"><span style="color: #0000FF">true</span></span>   <span style="color: #008080">INSTALLED</span>       INTEL32<span style="color: #990000">::</span>LINUX  <span style="font-weight: bold"><span style="color: #0000FF">null</span></span></tt></pre></div></div>
+<div class="paragraph"><p>Now run again:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ swift <span style="color: #990000">-</span><span style="color: #008080">resume</span> restart<span style="color: #990000">-</span><span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1121</span><span style="color: #990000">-</span>tssdcljg<span style="color: #990000">.</span><span style="color: #993399">0</span><span style="color: #990000">.</span><span style="color: #008080">rlog</span> restart<span style="color: #990000">.</span>swift
+
+Swift <span style="color: #993399">0.9</span> swift<span style="color: #990000">-</span><span style="color: #008080">r2860</span> cog<span style="color: #990000">-</span>r2388
+
+RunID<span style="color: #990000">:</span> <span style="color: #993399">20100526</span><span style="color: #990000">-</span><span style="color: #993399">1128</span><span style="color: #990000">-</span>a2gfuxhg
+Progress<span style="color: #990000">:</span>
+<span style="color: #008080">Final</span> status<span style="color: #990000">:</span>  Initializing<span style="color: #990000">:</span><span style="color: #993399">2</span>  <span style="color: #008080">Finished</span> successfully<span style="color: #990000">:</span><span style="color: #993399">2</span></tt></pre></div></div>
+<div class="paragraph"><p>Swift tries to run "broken" again. This time it works, and so Swift
+continues on to execute the final piece of the workflow as if nothing
+had ever gone wrong.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_bits">6. bits</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_named_and_optional_parameters">6.1. Named and optional parameters</h3>
+<div class="paragraph"><p>anchor:named_parameters
+In addition to specifying parameters positionally, parameters can be
+named, and if desired a default value can be specified:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span> <span style="color: #990000">(</span><span style="color: #008080">string</span> s<span style="color: #990000">=</span><span style="color: #FF0000">"hello"</span><span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        echo <span style="color: #008080">s</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>When we invoke the procedure, we can specify values for the parameters
+by name. The following code can be found in q21.swift.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>french <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span>s<span style="color: #990000">=</span><span style="color: #FF0000">"bonjour"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>or we can let the default value apply:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>english <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">();</span></tt></pre></div></div>
+</div>
+</div>
+</div>
+</div>
+<div id="footnotes"><hr /></div>
+<div id="footer">
+<div id="footer-text">
+Last updated 2011-05-16 14:03:54 CDT
+</div>
+</div>
+</body>
+</html>

Added: trunk/docs/tutorial/tutorial.pdf
===================================================================
--- trunk/docs/tutorial/tutorial.pdf	                        (rev 0)
+++ trunk/docs/tutorial/tutorial.pdf	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,4213 @@
+%PDF-1.4
+5 0 obj
+<< /S /GoTo /D (section.1) >>
+endobj
+8 0 obj
+(Introduction)
+endobj
+9 0 obj
+<< /S /GoTo /D (section.2) >>
+endobj
+12 0 obj
+(Hello World)
+endobj
+13 0 obj
+<< /S /GoTo /D (section.3) >>
+endobj
+16 0 obj
+(Language features)
+endobj
+17 0 obj
+<< /S /GoTo /D (subsection.3.1) >>
+endobj
+20 0 obj
+(Parameters)
+endobj
+21 0 obj
+<< /S /GoTo /D (subsection.3.2) >>
+endobj
+24 0 obj
+(Adding another application)
+endobj
+25 0 obj
+<< /S /GoTo /D (subsection.3.3) >>
+endobj
+28 0 obj
+(Anonymous files)
+endobj
+29 0 obj
+<< /S /GoTo /D (subsection.3.4) >>
+endobj
+32 0 obj
+(Datatypes)
+endobj
+33 0 obj
+<< /S /GoTo /D (subsection.3.5) >>
+endobj
+36 0 obj
+(Arrays)
+endobj
+37 0 obj
+<< /S /GoTo /D (subsection.3.6) >>
+endobj
+40 0 obj
+(Mappers)
+endobj
+41 0 obj
+<< /S /GoTo /D (subsubsection.3.6.1) >>
+endobj
+44 0 obj
+(The Regexp Mapper)
+endobj
+45 0 obj
+<< /S /GoTo /D (subsubsection.3.6.2) >>
+endobj
+48 0 obj
+(fixed\137array\137mapper)
+endobj
+49 0 obj
+<< /S /GoTo /D (subsection.3.7) >>
+endobj
+52 0 obj
+(foreach)
+endobj
+53 0 obj
+<< /S /GoTo /D (subsection.3.8) >>
+endobj
+56 0 obj
+(If)
+endobj
+57 0 obj
+<< /S /GoTo /D (subsection.3.9) >>
+endobj
+60 0 obj
+(Sequential iteration)
+endobj
+61 0 obj
+<< /S /GoTo /D (section.4) >>
+endobj
+64 0 obj
+(Runtime features)
+endobj
+65 0 obj
+<< /S /GoTo /D (subsection.4.1) >>
+endobj
+68 0 obj
+(Visualising the workflow as a graph)
+endobj
+69 0 obj
+<< /S /GoTo /D (subsection.4.2) >>
+endobj
+72 0 obj
+(Running on a remote site)
+endobj
+73 0 obj
+<< /S /GoTo /D (subsection.4.3) >>
+endobj
+76 0 obj
+(Writing a mapper)
+endobj
+77 0 obj
+<< /S /GoTo /D (subsection.4.4) >>
+endobj
+80 0 obj
+(Writing a very basic mapper)
+endobj
+81 0 obj
+<< /S /GoTo /D (subsection.4.5) >>
+endobj
+84 0 obj
+(Starting and restarting)
+endobj
+85 0 obj
+<< /S /GoTo /D (section.5) >>
+endobj
+88 0 obj
+(bits)
+endobj
+89 0 obj
+<< /S /GoTo /D (subsection.5.1) >>
+endobj
+92 0 obj
+(Named and optional parameters)
+endobj
+93 0 obj
+<< /S /GoTo /D [94 0 R  /FitH ] >>
+endobj
+96 0 obj <<
+/Length 292       
+/Filter /FlateDecode
+>>
+stream
+xÚ­QÁJA½ÏWäØ=lœd’™ÉQA…Þ¤{+=ˆ¥²Ð"J¥¿oÖvÛ‹'2“Ç{//сfÌÆ•K¦/»áÕ{N˜vµSÔ]n4‚¡eÎÐm 3æj,˜Œtëåì¶iYãlqè7ûcÙ5¢³ÏýÛGÿ¼mVÝÜYª³ä4°ˆU$‰Z"4Uþ¦éd¸ïΦFOÅ“r,½‡å*ÂÚ˜‡ˆNDpðGD#Ø%/SæñgáéÂ8vYÐõõj‰Š&w'¯µüH윓¡M‚µÈ%9ª¨–išÅ558Â’³+õœ—]cqšÝ4Ë(b	ÌÇ (úr[E³øjZqÝ+³ú=-àÿ¢m'”£ÞS†2endstream
+endobj
+94 0 obj <<
+/Type /Page
+/Contents 96 0 R
+/Resources 95 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 108 0 R
+>> endobj
+97 0 obj <<
+/D [94 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+104 0 obj <<
+/D [94 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+95 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F52 107 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+111 0 obj <<
+/Length 1869      
+/Filter /FlateDecode
+>>
+stream
+xÚí[ÉrÛF½ó+p$œÌ¾Ý®$•Xªøà¸\°HɬpQ 0¶þ>
+1@CËeP©
+-ñ©û¡û½Ù8d…ÿX¦4ÑŽ»Ì2EŒf"»ÙLhvïý4a
+fîAóõíõä›Íqšëìú6ÓœhCUf©!Âq“]/^OŸÍæ\ÑéÕ‡ÕmYÿóz&Õt_îŠU¾ž½¹~QXf!ŠUé4aŠŠlÎqJñC˜Õª‚N~¸nYyRÆ1"·§&¯ßÐlOðbB‰t–eàJ¸t,ÛLƒ
+ÍýoÖ“«ÉLjþ].‰¤V
+ÔBHËúŠÁ3ƉcLUÏÑò“š(¦Ôá1¾ÛmËå¶||(4¬I]½SÜ5—}
+	ñ54$ŠZQ`³9£”NŸoËbÆìt·Øß”«Ý¶K‰qx<*T‡S§-*Iš)ír¨ƒ6Ž((î¹uñÃuhQUnÞÔáçåz½«•ùjfÔtW¬q-1ŠÚ¯¨
+*I§©Å	ŸáZ(F´¥öìZx¤UåM-~É·wûünY—ãv™—ûƒF–‘`Á¡DpÆ;ìºñ¨$)_‘ï&5ð¦ÐÀ]@¡eª =àñ Õy(9˜JðûŒ©i^ä›e¹,â"K´–BÝx΃IÆŒ<áAfs]_>åE:wÉßEfô
+EZÝ‚ðVG±zÅÞN4XFéᎃÁ˜!Nðó=“L`<aŠ%WðÆÏ‹Õö®$òí®|¿,šîï׫›¼o:áTÀXÇØ1fßó´¨y‹	r
+¦âÔœ2ÿ	/ƒ‚Çú(íW­žv5%½XôÊb-W¸è[T-záE¿QÃlð¸Ùíj¹ÿE)_÷̍°æTÛ,ÌÏ• Å€×Lžò%ûy§†!7 -=ºoi­j©tšôr7ÀêÓIgnð¨Ú
+²qÃ÷y™—÷=â60‚‡á{E
+*Á¯ŠNXŒâýú–Eh·_ ÝŽ£%|%íúÂœí˜)KÙ¢Õ®P~Ž(Šü1¶‡?RÇ¿éß;Ö<;ãšHAùIúQÏ_Ü)s ¼u>ŠUu^
+;Éxù„!%¡V&ö-ª¶†n¬ñ+ì
+ú¶ÐÜI]ðgýîhP	¶JŽrvJb”ö×ë¬ë5ЮÇÑæÀ’JÃaÅaÙ¹Ó†“D©Š,¯Ž­ÙÀŠ¯Aµ Æ‡s&º~ßœ¹½\V{Œ»Ãÿ?Þ׿«­o¨-¡<Ú¿¡nP	‚œiB,1O(ŽÒR±c
+ÄŽ6*ŽV5J‹KÚ»=Wì *άÁÅîA^ì¼{µmþX	|¹x›W+¦·›…WŸœP…ézÞ ¬Ž
+y‚}R…c
+Ž6*Ž–P8–ôâ]€t”p«ñµŽÕ
+7ÍRçvW,ó›÷ñRGYñB÷¬tN ]è„Fi~µë¬åG_ -bU-7ƒ®À2^¼8ÌJ$v -ª¶…mlñü6re„Ç0l숔HÎ(,ê˜4§ÙGMqK\dL_PEÄÑŽÁ’^>(Ð9M|æТj˸Æ2WËöËmY]”9ìVå²èýtUÜ©åY˜.¶’G%X1c‰BœÒÍð™¼4謗Ð^ÆÑ.@“úRsnˆuJž{'EÂ.DUÛPôNJ‹ª}ë;)/÷`€Í9WR¤"‚;›…ÉbxT’“¯[HÊ]I‘°UŽ‹³‡… u(H{+åÏ™†±àaŸ¯Wíñ¥?Bø0ctº+þ†m–Ø͸‚_ÔÎ7ŸZæõË]‘ßGkT.¬¥¥î<OwËåQ‰ÇàPëªáSŒÃÀÿž±Và ڊ8Z¯œÃ –ôâÉPÀ¢T+—ØUµ¨ZõþÖ	ÛVí0†b.–›]ÙèÿfÉhlp’.E2ˆÇJåÕ’TZ{Êtñçó Ú¶£ð¶ÅÑp I/ÞC	X„®×[Tí	åU±*W¯ê—þÃ3¦%±\›,Ì×s	¥A%hµ—PNx’ý2—PЖn@[G«Zê†Ý€%½|F€å¦q’%ÜàQµ$â†ËÅcýÓ»üauƒÙ„SXÈ
+XÝ…DzΘT‚o{Æ|BxÔù“NX£ñ£Š£%ď%½|*šØÁ¯Ó´â÷¨Züþ®ÉU™ú·¿zðotg+@œÆdaÚxFð¨;f5m";¥7*÷©g„®"a¯ì´Vx[T¢‰q´Ã7QØ°Ь—žZ}ýK9üt EÕŸîקïVñ—©¬!LX™…a#²”JÞV(ÌÎÄÐ9 ‰PáÓC@ˆZÔáÑÛs€ßòÍrÑñÿî¾:ô†÷ƒß]áœ%…ì0îN|• ÊEõ®§LG;_6ÕyÍ¡­9zoM­_Á­Çñ¬G¦D×{PH3A”Õú	¿“9?FôÙþ`Ѝendstream
+endobj
+110 0 obj <<
+/Type /Page
+/Contents 111 0 R
+/Resources 109 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 108 0 R
+/Annots [ 113 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R 129 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R 135 0 R 136 0 R 137 0 R ]
+>> endobj
+113 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 706.3558 126.6998 715.332]
+/Subtype /Link
+/A << /S /GoTo /D (section.1) >>
+>> endobj
+117 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 678.4604 124.7471 687.4366]
+/Subtype /Link
+/A << /S /GoTo /D (section.2) >>
+>> endobj
+118 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 648.6621 151.3174 659.5412]
+/Subtype /Link
+/A << /S /GoTo /D (section.3) >>
+>> endobj
+119 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 632.6522 139.6612 641.4988]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.1) >>
+>> endobj
+120 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 612.6622 204.5674 623.5661]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.2) >>
+>> endobj
+121 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 594.7294 163.2031 605.6333]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.3) >>
+>> endobj
+122 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 576.7967 135.3873 587.7006]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.4) >>
+>> endobj
+123 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 558.8639 122.6553 569.7678]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.5) >>
+>> endobj
+124 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 540.9311 130.4061 551.8351]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.6) >>
+>> endobj
+125 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 522.9984 209.0213 533.9023]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.6.1) >>
+>> endobj
+126 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [93.5547 505.0656 207.5069 515.9696]
+/Subtype /Link
+/A << /S /GoTo /D (subsubsection.3.6.2) >>
+>> endobj
+127 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 489.1902 125.415 498.0368]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.7) >>
+>> endobj
+128 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 471.2574 102.1823 480.1041]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.8) >>
+>> endobj
+129 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 451.2674 173.3045 462.1713]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.3.9) >>
+>> endobj
+130 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 425.4093 146.326 434.3856]
+/Subtype /Link
+/A << /S /GoTo /D (section.4) >>
+>> endobj
+131 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 405.4392 238.2109 416.3432]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.1) >>
+>> endobj
+132 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 387.5065 195.7206 398.4104]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.2) >>
+>> endobj
+133 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 369.5737 165.823 380.4777]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.3) >>
+>> endobj
+134 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 351.641 208.8313 362.5449]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.4) >>
+>> endobj
+135 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 333.7082 184.094 344.6122]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.4.5) >>
+>> endobj
+136 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 307.8502 88.1347 316.8264]
+/Subtype /Link
+/A << /S /GoTo /D (section.5) >>
+>> endobj
+137 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [70.6406 287.8801 222.5397 298.784]
+/Subtype /Link
+/A << /S /GoTo /D (subsection.5.1) >>
+>> endobj
+112 0 obj <<
+/D [110 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+109 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F52 107 0 R /F57 116 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+140 0 obj <<
+/Length 388       
+/Filter /FlateDecode
+>>
+stream
+xÚ­R±NÃ0Ýý7¶CŸí³}#H€Ä†š
+1„–†Hm©+Äßã6	­DÙP†ÜÙÏÏï½3Î{ôb"1O–[¥¡Î{÷ŠFL1ŠsÔM©®îXƒ xã¡\ƒ7èƒfˆ:  \=Í®ç…a=[|6ë4”åÜñlŸº¾©6óçò!³ÄÌâíÅ‰Cb‰P¡0›#MÓ4¬º-dMª‚Z6ñ êC==kXeJ£“Hð™Æ	ÁV1åÒz3­lÔB=ž§]ãÐéÈÃ0Ácˆd ðY ³?GýF‹Fr!gœ i§ìÂàÚ\a$#~`Çð^v©¯–éOëVçÈ]¼$”ò`Û\_r‘MxŠÙÄ9Å4Ò“¬HÈ",ÝQUùÖì†QNÿªû6õÝj¿ÌÃýVÒ4èc׍¸ôö:ûÝXtë_ï¤jW#k¯yﻺ¯¶Û¦­‡…MÕÖûª~=;»XöÍ{¿³>O؆K™h°ÈÑû|GʼnqºírÅrendstream
+endobj
+139 0 obj <<
+/Type /Page
+/Contents 140 0 R
+/Resources 138 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 108 0 R
+>> endobj
+141 0 obj <<
+/D [139 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+138 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F57 116 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+144 0 obj <<
+/Length 4447      
+/Filter /FlateDecode
+>>
+stream
+xÚí][ë8r~?¿Â	Ä
+ŒÙ¼ˆM²A&Èîd6yÈîœ`v÷AÇVw{Çm÷ø2='‹ýï©âÍ’(‘>Ý=˜KŒKT±ê#Y¬*RT5›QøÇfRUózf˜$Z11[>¾£³{xöå;æihÑ¥ú·÷ïn#é¬&µâjöþn¦8QšÊ™¡šˆšëÙûÕç_Ü,¸¤ó¯Ÿ×wGwùþ¦’óÓq·_7››?¿ÿ-pa3\”@.•Ö ÍÌŒ‘ZJn¹0¨ªÍüÖý0õÞýú}„êš!¹A€ß¾ûãŸélÍùí;JªÚ°Ù3ÜP«šÍßI—BñP²y÷õ»ß9†§¼"5r¼cÑBÕÀDš|÷éJɤ<wŸ1NjÆ$¶<6"¹–šªÑF°Y—Y"2•D&ÌPäWÛãþ†ÓùnuZ×»­¤îP/8%´¦Ðp#§™ë÷ëÃÍBTt~ãkïl©¨çëí±Ý®Ú•§Ùù§ EµîvÛÞp9v7§C»÷•ùñÁ~h륗·»s¿NÍØœÜ,¤¡ó¯Ž ð{€GÇ=´ê´(ÿ¨ñí~Ýv™‚äÃc³ñ-io˜œÿµûåúÐÞº‚æñiµ Ÿ û{Šûü°^>€ÖšjþqwrËfë.Žûîân·4ûC»¹swˆ­Wsß6+ÿh³ÛÞC++Æç_Ü[_ßv^ü‰R¾?ÝЁrŸ‡Ž+ÐY® E€íf³sužwûÍjd°«š0*k_¡ÓâÏ ^-PèÞ‹mÂÅñù†A†v6Ëo|[ ›f{jîÛ¥íÇ… 5BÈПÌJÿ•Ô÷©`ÕYwîþ®mplý@æ…	&œz|½Ü¯ŸŽîIl™+i¶«^%èôÓö¸~ô7 ½|qæê
+bWÀˆú´ÛкïÖûÝö±Ý?sôp²:%öâ/°Ø®·÷îæ/»¾x·u¿«õNª;§­·Â‡õ±=`³I”«I-¼Õþ
+2*%«qÚ‚~>6ÖØ‚ð{ߏV*Þ4Û@}8Â|é’£:Óè°ÈãÅöÐz¾Üm§d{/:ä¿;­AŽÍÞßyZ¯Ú¡a¬À‰šŠ8¢+©œet¿™…«ÿ<[ÉXcÑ­’:¶”³9ÇãÓç··ÏÏÏ7JÎÉrM`XÖËæ~GÚÕéö€ðo^™5Û®«þèÞc3·ßÆÖÙòôð4lSLð`
+L×´µú‘jÑ%KÛ“rC48•Ÿ ¼`l@·î¯ýµ¯V»åéÑiÜ=?´–’{[E
+úï¬­t% ¶0;w§Íæ£q
+ü<
+(¥gÙ›«Èùi¿»ß7î)ŠkW®„ª‚níõ¯5L£úýÞ™,Á¼o %l6‡+i\Aœ¡tþ?àþñFÊùÁݏê¨8¡\kˆƒ 岨±Æ¢[%¯”óÅúçUýè
+3óI«Ð¡sTñø‚EªàŠt}¼ÑVRœðÇ…ëèÇ]‹UÅëš¡|ß‚ÁB%
+“H)þŽ
+MäÒ0Q­:Xm¢‘:îžl˜€×˪£ÓI á:ZÝÆ’Çf{j6Äy·/6›³ë(òìÞrsZM1­;!>_sùÁƒ¿Û¶ƒºL¡S~8î×°[N!8zµ7ûnVIÚõÙ§Á/ìÛ%Àúh5h*¨–²&TóÂÚ K•	n#åSÁmVdn"f(ò?|¼ˈ?Ü(p‘ã1ÏT€ë;4„WÃÞu^1>ëÑÛï¾lw:>ŽÞK7î'Dbpé‚'DfoÁjºIÚpy׫‡üƒä%xÞvÕáGŽß§–/R‹:]-ɬ_-Õ¦†ÕRUWDY…’þj	PÀœ÷.gœ™«H™¿ŒUúÌÐU
+OÑ9I2´•:¸,:†¥<”Œ ƒ% eÓ¼\=Î^†}V°¬ Â(‰.Ý­AdT>Ý]C#tÅ!v†(–+îƒ×Ž&$ƒb\ÿVj(á0ÌiÔ~üùÛü(ѺÔÜ3Û·³»³é¸õ6šhÆT¨›ˆ|LE4‡Ut¸]¢ÔPWcœ;Œ† Ühí˜Ó ‡!F¯IþY·Â'ñŽM埾˜ÿ`Ÿî_¤ÐÙþ~æ.~ß!J5pÎtaÍÝŽJÕÓÅ@ec£OIcp:
+=ë²¢“Dèº.B3-‹*Ad=hÞÜÝA$ÄÁtºÄE¤*HO¹¡øšœ™¦—ÕUáßZáƒÝZ¶×þÑM
+MÖº“¨pâ4OɲBkb˜0³.·4žóD™Ñ:ueâ&LbÆ‚Qé	½ÀTåŹ^lª2m·ÖÔG…Ih»À•O£§ŒKj0°h’ñü¨¢¢HKÆ’aaéFM¸fæÒq‰ô%	_»·²o[»95\¥Ã–š•ŒTÙž®N•Òí(*Jçô'•Å—× êÍ­R`*8+G)Þ¤,ºC‘±<Êî;,v‰ŠS蘀ý¡ÍGPDFtö²7®Bq©›ézÿ>Ç$©´EWD⪁$œ—܉y„™£yõ"0¡n	M"ÃísNZêO†Ò·ß—?Ûò<øhË»àã;š^¿`òE}ê–à8:Õ‡ów)P Æ^6¬¡nŠ¥“%mǨ²fâS&ã¤/ªÁ¢hë
+óÐ]Úá¸Ú/f“T’Ê,¾E¤*HN¹¡ä_%B… FÐáøL6<Ò—Ä'|Qü¿b`´mÓ½rÃñ¥»(´=P•„'ܦBCp$Dñš_Üü@_D0ä;xñZŠÑB¶Õž¨$Ò‘±¤Ñlz+ Ò–J_Ž78dUa$†‹.Î,›Ùß&‡‹+bjm®ÃuÝoøåï7@äX7S| *-¾9…	ÆëY—íK}?LC.¸)aŒt=àøG*ð—5Ë\Dª’è¸îŠþçD¨®ˆ’L„惲P§!á=”ÅPu¤Ý—‡ªy(1TíBy[…pª€‚Ö/ëà8:ÖGC¦÷%^€ä¼[‘Gw+ºPŽßgBÓ€9¬y0‰ŒQ…9–¹‰Ò	SóBn(ô_¦#&XÐ×W|uÀ¿|,êŠPÎXÞGªŒo«íÁÍjÖå˜ D¹~Gm øWS;[}‘Ó.=ìf„;2Ö>µ³6̳͎»êÉaW½'9ì+Oš+£^Uê<;@_qlÀ?î?ÐÀÔð}0òð|ìàÌàug9°Íuû¾î«OšT5xØí¡µ4¯?³Às7Ôh…måWŸÕ9Ùö„”ƒ™âd‚P*µ{9þ‡Cçñ°Ñ6ž>ÎÖ‡Þ¨þ)廆`xºÿðy¢ÂÔ¯…‡ZWz\…%ƒßŽ©p|H'>Ö +ÊeñôËù»,›ŸÁá—Ø’QîñéOk+ÅwoÉo•¸#ÍÅĺ¨Ä
+•ø†Ê§84³.¯®•†¨–ë®@ÖõLvöµæÕ[ 3,ž‰ÉsdUXÛùÂ¥¿Ì†îLdñ-"UA´§ȾM„
+-†Ž¶'tÚÙú’xG'úâGÏê¡{®U…vª’`G§íŽRT¤RÕÕôüø¦§3Ó¨ò¦§;ª¯5=Y\Ñôtqª9„BröØ Üׂ— yª²»µÿŽmÄðTYh‹HU›rÝ¢9žžÐKO^|4<Å9žl»©$œ*ùóX^ÿÿ0ü*•º`**À×c
+¼x—ßˏèÖ°+ad=l‡ï¶éÙIcæ- áyXhé6OgàFgŽÀÒa!ƒ·ˆT%Á	7¼;ä¢õPæt³=yI¸#ßãvÊØ™;QC¡Õª$XKX	RÑ<öž·à+AùÅ-ô%	ßÉ瘅€×ê-ô7Î5,èKð"]Þãnµ¾[·IpÏ¥$º2òM*F7Å!Œt=„›~8ô1=®`ˆ6:p©J¢J´'9)ŠŸ~K»w™öDú‚”¯]uí’­<Á%QFÕù†Gª’XK§¶BF¨RæâFú’tG7p.{®eòõ«ñB³iE¸²Ÿa^£‹(ºðY×þÉÄo”it]ˆßN±ßŸ¶_ýûdüÖá— ;oÕd¥&¼PêçîÐ9§ŒRÉÕ‚Õ\.Lz xòŽiÿèR¾ˆéÿrzú–}{åí¼e®3~½Keu?™ÉÀkŠ§3sAÌ
+ŽÿãË€öpyQ¨«g~cï	-M^¨ß8è
+|ÃÀµvÙU~t=²#‘7©žÆ&¥Yo]Æ°1ƒzæõÚåpU ê :›ãidgœ.™ÌàZDš¬È!§QÝŽëÑ®¸ÌÆTXåf;*>‚õá¡]M®÷
+ÃpÁ§nFSBfi(ë
+C7¹L²Ð¢D@¤žŒH“•ì©to0ؤ¥QßX_-͏oi:#‘±5*»SßÕWîÔçq²®e3¹)øÈÎV0‹,ÚÁ.²Ñ–x†ÆhL:‘·ˆT¹)·ñúh3{B3G|£%΋OøN <Ûã\«aÜЖ\ÛŸŒ™öK@^0jòãÆ8!;ü¦Wyy©	¯Ño뺾Äé×qž¼ ;á:ý	bœ¹&wæYVnÊmôcÃèg%#•–?à™!úŠãB!ìËN½u”O`Ûìi-.(‘²â|UZ¹\©x)!^õ	PÝ›œŠýÑ-(9Ý‚W(m®)¸µYcìÕªÅlFÛ5æ äV†Û–öéi³^úžã²]y‘r´ª#ü‡5ûuóa3"Æs·ù	‹Ë9W{‚{ØcéÐB¾¬˜-â™^#RC”PÕõÚÕs\æ9(°R²ä9ÕT¦pÞ«Ëîµç½òÐÂy¯´lZ÷Ž2‡ðü"3/;á5ž~ÉÏIfOµš_¸•gf€ŽZy¦¡S”æ~QnSŠŠÍŸ[÷ëͦ¿kÜO'³6³ÚÆl\LˆÅ~ä]NA›E[Ì¿Úú*>½7ä€JDÁÏk—*›aêîaµó3òÈ“G6=6^Ø„˜îó'Ž{/cõÕ¸\ôˆ
+‚…ùª96!›¢+ég›…‚ÇSHïø¡u%ˆgõ™»~~h1¹¬ç᫸³Ï<ìn’0þíãÎfû†ëݾ›™aJÏo&@å>ƒ:&I%19(–ÎÝÈz²Æýø”¦^Àa
+ÕnؼÜóÿ/L‘Úï6ÿ)‡?Áý쥹q´‰¢[_äÒ´Úƒß;˦BwžÕ…ƒL£dr&cZXÅ®Þõê]/ó®ŒU„c6Ö¬wTSÉÈ81Äv¹¥ÉÈ<QA¦sÔ²/s4™wÃ}¡e¯¼vOü^;×ôKÏfU†0I‹£ézGN4BS5ùQ‰T%¡	·éld–@^:0‘¾„ÀÑ©>‚ÉldáR¶õ‘ª ;åvI6²`”© Bø¿ sµvoù±+ƒ–es‚ÿEw(2¦'PMe#¯N{#ûŠddá€gŸ§«û G’‘ù3žcð.È‹æ· „ó¡=(ãùÈÂŽíKàÄ÷i8‰Œ‰|dÞX2’þh^˜K-šó<öhλØÇ÷Ã!—te<hR€“ȘHGæßK¾J<“Z€’ȘÈ|a_l~ÂdœNFÆ3uyȐn0`S©È© †Ê¢[Dª‚Ü”Ûx*2nˆÁ?¼Õ:}Ä5ÐÅ
 [ºøéTdZ®L¡éž¨$zÈk:'ªÒõÅmô% 	ßñ<dÆà)5:P…¹Mg"óÁFí3^c7^Y©š€_=éôðôŠ)§!óce~Ë^ÿ|·Ý$,é$ËãVøoôçgŽAÚÿü—ÄÍendstream
+endobj
+143 0 obj <<
+/Type /Page
+/Contents 144 0 R
+/Resources 142 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 108 0 R
+/Annots [ 150 0 R 151 0 R 152 0 R ]
+>> endobj
+150 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [427.3941 660.5925 567.9254 671.4964]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/quickstartguide.php)>>
+>> endobj
+151 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [55.6967 648.6373 165.3344 659.5412]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/quickstartguide.php)>>
+>> endobj
+152 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [199.0314 618.7494 421.0166 629.6533]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php)>>
+>> endobj
+145 0 obj <<
+/D [143 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+6 0 obj <<
+/D [143 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+146 0 obj <<
+/D [143 0 R /XYZ 56.6929 731.2722 null]
+>> endobj
+10 0 obj <<
+/D [143 0 R /XYZ 56.6929 580.8258 null]
+>> endobj
+153 0 obj <<
+/D [143 0 R /XYZ 56.6929 543.8291 null]
+>> endobj
+154 0 obj <<
+/D [143 0 R /XYZ 61.6742 493.2291 null]
+>> endobj
+155 0 obj <<
+/D [143 0 R /XYZ 61.6742 492.6512 null]
+>> endobj
+159 0 obj <<
+/D [143 0 R /XYZ 61.6742 481.6923 null]
+>> endobj
+160 0 obj <<
+/D [143 0 R /XYZ 61.6742 470.7334 null]
+>> endobj
+161 0 obj <<
+/D [143 0 R /XYZ 61.6742 459.7745 null]
+>> endobj
+162 0 obj <<
+/D [143 0 R /XYZ 61.6742 448.8156 null]
+>> endobj
+163 0 obj <<
+/D [143 0 R /XYZ 61.6742 437.8567 null]
+>> endobj
+164 0 obj <<
+/D [143 0 R /XYZ 61.6742 426.8978 null]
+>> endobj
+165 0 obj <<
+/D [143 0 R /XYZ 61.6742 415.9389 null]
+>> endobj
+166 0 obj <<
+/D [143 0 R /XYZ 61.6742 404.98 null]
+>> endobj
+167 0 obj <<
+/D [143 0 R /XYZ 56.6929 354.9229 null]
+>> endobj
+168 0 obj <<
+/D [143 0 R /XYZ 56.6929 356.3824 null]
+>> endobj
+169 0 obj <<
+/D [143 0 R /XYZ 56.6929 345.4235 null]
+>> endobj
+170 0 obj <<
+/D [143 0 R /XYZ 56.6929 334.4646 null]
+>> endobj
+171 0 obj <<
+/D [143 0 R /XYZ 56.6929 323.5057 null]
+>> endobj
+172 0 obj <<
+/D [143 0 R /XYZ 56.6929 312.5468 null]
+>> endobj
+173 0 obj <<
+/D [143 0 R /XYZ 56.6929 301.5879 null]
+>> endobj
+174 0 obj <<
+/D [143 0 R /XYZ 56.6929 290.629 null]
+>> endobj
+175 0 obj <<
+/D [143 0 R /XYZ 56.6929 279.67 null]
+>> endobj
+176 0 obj <<
+/D [143 0 R /XYZ 56.6929 268.7111 null]
+>> endobj
+177 0 obj <<
+/D [143 0 R /XYZ 56.6929 210.4646 null]
+>> endobj
+178 0 obj <<
+/D [143 0 R /XYZ 56.6929 211.9241 null]
+>> endobj
+179 0 obj <<
+/D [143 0 R /XYZ 56.6929 123.7896 null]
+>> endobj
+180 0 obj <<
+/D [143 0 R /XYZ 56.6929 125.2491 null]
+>> endobj
+181 0 obj <<
+/D [143 0 R /XYZ 56.6929 114.2902 null]
+>> endobj
+182 0 obj <<
+/D [143 0 R /XYZ 56.6929 103.3313 null]
+>> endobj
+142 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F52 107 0 R /F91 149 0 R /F57 116 0 R /F92 158 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+185 0 obj <<
+/Length 3679      
+/Filter /FlateDecode
+>>
+stream
+xÚí]ëã¶ÿ¾…»(P/pfDêE5´Ú<P$i³@?$ù ³åµ¯´‘äìŠþԃôù68à`Öc4ó›!93”fîè*€?t'$ÉX¶â4&iBÃÕöñ&X=À½/o¨¢Ù ÑƤúÛýÍ'ÿˆƒUF²„%«ûý*a$IƒxŃ”„KW÷»×½Û°8Xÿð\î;yxÅëSW7e~¼ûùþàBW¸$¡à¥)Hã«
+¥$‹cÖsaðhÊןÈŠçnþ~¯!"Â4£$Œ ½ùñç`µu¾¹	H”qºz†“€°(£«Ç›˜Âa˜0¼r¼ùáæ_G¼Ë"<ž7i9Í—Æ	Í›Oëe„±4߷ō×o”éžù»+~
+V©³\þ<5õ¶Øuu›ÅN?4EÑ•Õ¹Û„FàP¶³Ï<—Ç£:jÊN]¬OJzwPWnÅñX+Â;`X7ÇÝ­<,Ú6P„]m! ƒ–ÙPè(éÕ¼¿ãÀ¨ ÞÊâŽÅëß„ê…¼ØäWâ0\—¼$-ÓÓlO]!4J¨	·OUùFuå±ìÞʹ=˜œ¦”Pô(Š­àv¨Õ¬4‡QÂb†„ÏewP`åÏSÞäEW4ÄíWÂ@=^6Xè·òn~G×ÕNïʦØv-*©°·]^íòf'Ï` žNJé²êmj*ªn£nhÆHÓWíá:ìŽCšo»S~4‡ÉÁS«.àÌiŸŠm)(qŽ½~;š%MѝšJÍ3mŸ(X¿R„s€Ôô1!€~æégrö‘îMwûŧ3,¾*úé%r¹€³1–\ÍåÅßÄËÁ	½>ªzÅÀ±*–LÀ•¡àF÷öIq­÷êŠ\Mp4f¯ñŽ¥Ö+…£Ú™0iÒý[ùdwÈ;䯘mëª+ªN±‹i„v1¦Á°º_+[¶à…qüj5T»²ýE
+u5³z§ÎEÇÌXŒÆîsÛýÄü¥s£øm-´y¶ýž;šeÈkäÏ^¡CëªP¦kõtzBöPë'q¢kÆ#裱f©vú‘¦Ø×ÍhÉv™Øwnæ'Ý]3‚±¯…«¦ÐP
+Ç×l˶hQÙâOÂÕ ‰Tä(˜z햏O¨Åœ+׶|€Uk+µ+ëªíš¼Ù¥>)æû"‡u_ µ÷Fü'Ka;NBB“È=
+"<ÙŠ2’Q›Ñ©„I'iBš”‡Ô)i<òƬ„¼æÕÃ)V„‘¢A» ]Ù‹+h•%„”DiàÉ¿L*) WX„&ë@èX(g"¥¡n¡Hä:a&„~ÂAŸ󰝉©01HJx/¤\®ƒïq	‹”	¯\ɃC~Ç‚!)€+:ª´à¥£ˆ¯¿®äÒ¶îÉóÁ¹ÂI)èԍ~fgèfÅ“FN”¡›Î’Áqø¸KBÄôÝ©±±Ìhåºë]œ^u!ã†?gqš›"ß½•'’[u¹’¿ˆ°rqC€Ò©ßçC¹=H²²Ú•Û¼CNχeõö˜"2eÈ€ÒÓÔ mE0øtÙÎÅ ²²®^Ù~}ˆLùn‡ÞƒöÖf’5ç±íP°?U½(gÚ³­wxt€Å‹^kßԏCÐkÚŽ´Ãþ%GG(GøÛé¨À!MâõÔÙ…$
+"ºŠ`™Ò8“;
+°ŒXxâçK±9}GB
+ù
+\
+ç|Õ«½±)Q7ƒ…íHH‹ñÑ	ÿÉÞÆÍ\I’9˜òyæ`ixœ§©ä *èxf+¤î™¼o­É,w}÷bþ/€}Ѽ
+	VÍÃJü{Îëƒ!çƒΘÜ/G¦Ó×Tb‚÷Yê8øq˜;°…1ٍÁÅ$L³Ì‡$ÎXèƒ&É"šJ…÷åq‚FŒ¤)u"Ü ‘Gö„—ýéâšS³,ºNöŸìÊcmíÕÂڝ°„Äâ=Û •X7ùÓÓÄ›0ÂCkr›æÒŠÈ#Sz¦Ø–)6‡“ÄUù[ènÊ)^»)Sü9nÊ¡ú™Ž”‚w¢qàMgaì&ÈÀŸÅaÀÝ£¢©|B'ÜÔ¸L6°",âsFÓûHºÄF ó¼
+&Þ;CîÖ^SydÃŒ„ؐ1+å$àÙÙÓRÓ{ôt£‰	›ï9Ý〄	O^bR²öe÷ŽŽ¦³ñM %”PÆ#Ï° •Oè„›ž”›$Öÿ]ñ4&	¥×|ö¥P”Q°pì@˜€nÌ¡pD¤’¯æåkysd³Œ¤!Í쑽Ð1¡”r6E—Ùà&SžRñÁ‰¦/
+Xð”&^hHgCëvõi't8qà3ƒ“[ò„›üùrp²„.+>„)·ø	_!þ/"rWùc1”dQ曍¦òŸr[Œ::§¾§<Æ|gSƒ!œ9ÕF*ŸÐ	7ôÂË[¬ "IÌÒ«ÿ}é
+@’ð5b™&vdöH%†ìKÃf!‡ü:\×ñǾ#9x³0Êë&\i"ßîã°ÉõÒØß—ÐØQÓY !ðÏŒáA¸n4•O4nÑ,ÑŸMwˆ™(ŠFBkÝûC{—¨žñBón'Ò˜@\gõöAÁg}P&2ô·¶˜\€gHÜx¦2²˜\E§(}žòfš©0N¸(Ⱥ>ë3‘1;eX“<„s¥ ‘O䘗øÅbº¦°«J¯»ÕkøýøÃoNSê¿HäˆlY$Š?éÊd8‡D±ýËf‹ý|qŸoKtìå½G¸¢ã¶ø¥÷žzìÔ{ØN{dO¸-íh‡DÂÖÞH‡´Âƒ¢§Km·‹/žçT÷¦øÚEg8&Y¿1†“‰zRHìÞŽž§@–¸/•ö( é2[ç¾æd{CÁª¼ÄžúYœ©ŒùØ«C´kVß#tÌÍûÂ"Œ#GAòûÕiïQ¢ÕéC©Çˆ|=‡´8KÜ%eaÔ†»kÒCH^hÆäkžÿˆbm¬±‹²Dx½³ê‚uyN[>T}œ]è«ä´‹}°^	ŸÍ;,ïTWò_új»Ö*]m-<Ε"c¥Æ¤Ê'FåâQ$Ür˜¨*ðáK̸X<4‹ÅeÒ&J`^E‰U‡¤-I£±%áŠeI8—–‚ƒ²Øô5£ìKKáz_λDZ¬Ãò»$Íbù|Ϻ­QDoyFýš–7ÁÊÑã©°1*²åÏdpmÛ®ÈwS%9ý1À,š¾ŠN°_ÖÅ‹rÍ(e£‚è¡2®JìÂyn›Ī
+½TãeLꧺ¬ºÙŽ‰]¹æÛMQÍ°ôÕ_¨Áìü2–‡½RÛz¼óY2(³‰àôôt,‹Ýr^’bí뾿‚c)3\Rõ„Š2W¯õ'Ùh‘ÊböĬ‹Œãu_ÖwGE+Ķþº›eÄ-‹Èi®ØžZ©vk{쏏yµ39eºm$5Z:RQ\Qäf¢–ÊE™¨&ÿóR¼ba@V®u…×}×9û.Æl…¨§®PS‰iøÇñäK	RÆW&¯_v&)‰Äg	.$³pÉ%·°|lj7聦¨,dƒ¿Yúë‚g|ƒu‹žr›}ѧ7w¶Ð3¾ÁzÄOø.Ž
+åD…óèÍ `³DLÂÒ$þ¸“pœB__(Íba>jâ)F^8êê90qp¨ë¾u‹ÒýF^4³xZ5
+½’ÝS²éŠc„ƒƒV|Wïyšiº/#3¸d5Mvµ‚ST…j(¼ÞO™ÌñÔìqF™µãv¯™Ä	µnuì¤	 óì|ƒØ-p¼í‘[= ØTµÅ>l©kNØ5×⍡5³k[4pUÙÂbç M#@À¸Føk„?+ÂÓ$!‹w„×T¾Î“Ýûv¸¡aI®팒\¡sÀ-{ÂËÙ9 vÕQ_ËZ®j>~wE$îq'Håé0¹-w¸eb­¨%ÓÕ9`=ÃM9Åk7eŠ?ÇM9TçÎ7DMga\îpŽÊ°ðpóvœ90ÃGühc!ðv8µŠ.ܲu¥ƒwVêN€3µ:|T瀅ÀÓ9ð“rèðàC:ßbç€{Xtç€Gè„Û™4„Ù¥× ôá;Ì¡pD¤òuX#û¾nlºsÀ·Ü9ðÐtç€ÒÙÐܝ.|fprKžpswØBÏxkå?á{^ç€S÷¡sÀ-|ÊÍÛ9p¦úFœò óuw¸ÕÖe€¡nÞñ”1rÍÿÏÆÃÂŽ¼^9ÛÀÅ‘$èu°®Ûá~;$I)sÖ-j¢sÛL®ïÝ6à†¨é,Eõp,ÛÃbµŸ Qßç­÷g¦èå¶[è™m>cÞ9½Ïnð@™ÈpÄAߐ¥€¦2úpÿz	½—õ@Á½¬	e®o@Ø_‚Kø=PÆš`^b÷BÑT^™cnî¾[ÊÂktøÐÑÁˆÅà€4çÆspß748ñi2á¾)ªíaqsæ gìÈÜb±êÛûÙâ;CK♵Þnù•Lù·‹AiFã³c“G¦þ)mËüyµÍËv1¼;œ!8áL$¸ƒÁ%80xp¨P`âpD‚€` pãñw‡׺¢€Gàˆ—;¤œ¤qxýÇÌ>x0b1 #ãÃB6s\Ûšœ2U…š)s¹©ÉwFO“S²ni2e{;š\1Å-xÌËÛÎdë}^7“‚
+k&„å^¦¥ÏonÞLîF¦°à£,‚,óXœœÓ@wAyäx-¿vÄž—\P˜Î—õÁœâ²Âé…þ›‰ÍÀ¥ýø%A endstream
+endobj
+184 0 obj <<
+/Type /Page
+/Contents 185 0 R
+/Resources 183 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 108 0 R
+>> endobj
+186 0 obj <<
+/D [184 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+14 0 obj <<
+/D [184 0 R /XYZ 56.6929 584.6307 null]
+>> endobj
+187 0 obj <<
+/D [184 0 R /XYZ 56.6929 547.9207 null]
+>> endobj
+18 0 obj <<
+/D [184 0 R /XYZ 56.6929 547.9207 null]
+>> endobj
+188 0 obj <<
+/D [184 0 R /XYZ 56.6929 520.8533 null]
+>> endobj
+189 0 obj <<
+/D [184 0 R /XYZ 56.6929 457.9878 null]
+>> endobj
+190 0 obj <<
+/D [184 0 R /XYZ 56.6929 459.4473 null]
+>> endobj
+191 0 obj <<
+/D [184 0 R /XYZ 56.6929 448.4883 null]
+>> endobj
+192 0 obj <<
+/D [184 0 R /XYZ 56.6929 437.5294 null]
+>> endobj
+193 0 obj <<
+/D [184 0 R /XYZ 56.6929 426.5705 null]
+>> endobj
+194 0 obj <<
+/D [184 0 R /XYZ 56.6929 415.6116 null]
+>> endobj
+195 0 obj <<
+/D [184 0 R /XYZ 56.6929 404.6527 null]
+>> endobj
+196 0 obj <<
+/D [184 0 R /XYZ 56.6929 393.6938 null]
+>> endobj
+197 0 obj <<
+/D [184 0 R /XYZ 56.6929 382.7349 null]
+>> endobj
+198 0 obj <<
+/D [184 0 R /XYZ 56.6929 371.776 null]
+>> endobj
+199 0 obj <<
+/D [184 0 R /XYZ 56.6929 233.9081 null]
+>> endobj
+200 0 obj <<
+/D [184 0 R /XYZ 56.6929 233.3103 null]
+>> endobj
+201 0 obj <<
+/D [184 0 R /XYZ 56.6929 175.9241 null]
+>> endobj
+202 0 obj <<
+/D [184 0 R /XYZ 56.6929 177.3835 null]
+>> endobj
+203 0 obj <<
+/D [184 0 R /XYZ 56.6929 166.4246 null]
+>> endobj
+204 0 obj <<
+/D [184 0 R /XYZ 56.6929 155.4657 null]
+>> endobj
+205 0 obj <<
+/D [184 0 R /XYZ 56.6929 144.5068 null]
+>> endobj
+206 0 obj <<
+/D [184 0 R /XYZ 56.6929 133.5479 null]
+>> endobj
+207 0 obj <<
+/D [184 0 R /XYZ 56.6929 122.589 null]
+>> endobj
+208 0 obj <<
+/D [184 0 R /XYZ 56.6929 111.6301 null]
+>> endobj
+209 0 obj <<
+/D [184 0 R /XYZ 56.6929 100.6712 null]
+>> endobj
+210 0 obj <<
+/D [184 0 R /XYZ 56.6929 89.7123 null]
+>> endobj
+183 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F91 149 0 R /F52 107 0 R /F92 158 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+213 0 obj <<
+/Length 5154      
+/Filter /FlateDecode
+>>
+stream
+xÚí]kä¶±ý>¿¢a\ 3ÀŽV¤DJJâ ¾¸ëÄÆÂN¼sˆãÚnÍ´²=Ý“~d<ÎÍOQdQ”øÒ(³°á4ØéV—꾊¬bQ"‹þ‘ã	¯hµ(	K
+N²Åòþ"]ÜÁo¿» Jæ…®M©ÿ¼¹xý9KURqÊ7·N^¤lQ¦E’U´Xܬ¾½üìêš²ôòÝc{{”o®rvy:îöm½¹úîæKÐB%há™Ð’ •‹kB’Š1ÚiÉàÖ¢¼|-ÿLÜwñæFSD†EE’ŒÑRüëŷߥ‹çË‹4É«’,áKšÐ¼"‹ûFàcÆ)^Ù\¼»øc¯¥y’§%sWÉJÙâš>c¼ÖBNüù¾ex¤‹kPP…Ôž.hR•e¹ B®¬ûfq«…Õoæ
+ÏÒ­KäÔ®­ÿ¸{+8Et±¿[È߸zh‘W	IY¡{hEeßÊEßÒÝ¥DߺÝ7ÛåzÜ£J¸« ta*´è¡P¶ÊE§$CØOLjðKB)GÞ2kùº’•únß4Çv{g±ÈË„°´
+\KÅ°-mûÏ)K-\–%,K­Ò'L—¿û8¨¼'ÆÂÒ-X|bS€[HʝERQ÷F©trŐÊûÝö/»ÓÞ"Tñ„	[8‡Þ#da8놦`óªw-µµ©nA~eYö,)ÒÆN=)çåÙľ¸‰å	%™˜p•Ús
+ÿØ“-RU`ËZHûæp¨ïšÛvÓXFÖleAøÂÔ:æÈ’¬¨ª(CBIBa1ŠZn@ò/õC½m6Cž'´JYáµ–ŠaóJ.CØ¿¶@–À4”@Ã6ï‰Q°t»ç›–¥YJåŽQÁ{cT,AeÛ®wÛ»eäI™¤e•Í!¤ïRrùPbQ¡Y’Ãh˜EïQ‘r£f:~´ÈdÐ¥€ô,2xoŒŒ…ជó\X¡"<V´TTÊ•CÐßø'a1WÐóñãÏ}Cø'%2½U•™p
+Œ†“C™0hïe°Ÿú'#Ð?ß x[Šl¯ƒ£Wù2Ëù °^ÍÀNïFOqƒr-|?ß)H1> `O5rRÌ]…ŽòP·Æxà´kðø°ÛnÛåº}¬ýöýÙ„ó"d!¸í)-“RDB½AÅGºâNMZE ÌeP…%S+seVF†Lý˜#S©­Ú2…>
+ “谍%4:«ÂQC(jB9ËÝQCã%t a at D­}µ;62Zx\×*nø¨®,ë­üÐnÍþ†øFý²jþœ¦tÛÛÝö /ínåß¿]QvYïÛúý¦Q?=¶Ç5*ºÊ;_ÖŽ»ö»e³:í›C·P'EÂsšulÿwÝ %R1`Ûä'¸ån_ß‹/ür]««ï”ÜŸ¶¯@yÊážfßÈ‹‡õî´Y¡¨¼÷¸C&/mQŠGùEµ+‹øÒj|%úxE€þþƒ0€šU»o–ÇÝþ	ïfi5×Ö	¬x•Û}½]ÖíA\’rõVÑQKFñ‹èÒºŒ mS/U….wÛcÝn;pñ½–´IÆZ7\µ·¢t·P[Õâ›z{w·ÆYé_ˆÛrY¯V]ƒ‹oôò¸“WͲ½}’`ðý¡†Æh ¿¤ÜÃîÐÝUo6OWœ]Š
+(Š‘Q}
+>ˆÖ÷máçU'Ìe݈‹í­Z5¨eu±Æk·¢)êÓæ(/Èž¸9)…#Å\4.*ºV×›Æõæ,òÁ ãlJp6%îÕƒ)(Õ
+HQnÕ^[õáëYƒòÛ®ˆaX}–¯Ã“,elÄu<í¢T„¢­ÍéD`IXÅáÖª›)SJBvkH0oƒjÑbݾDB­À1ûaL%ƒ«êöSV¢;­TÇ.¡5v€¨/›VZ0µ³bÖ4SRÖùIZ0ei•M‘&öBûf3°§Í`œj#Ô]3 ‡–2¹ºÎ@Õͺý04æCˆÇ¡—õC{¬Á<!8þpD…Ê­Ck¢o·'eG¤©tZ‘›«´(.;TÑ^9+äthF(§mû½º´G0–ÁŽ6õ±éL¥<¶›öØÙU5¿o°2ÚŽ,ù·Céûúþ'6œ‡Nm=n·õ2Zîîïõ`Ý´ÛF
+zŒ¥®ÛŸû¥oÂr–°2Í?Þ:ÅXdÌ[¬¨8ãçm¸Ý?eY‘T)¬ŽƒÛpZJŒÄÿw>NÁHÑraêš·äE’3ZÄx¡Ø€W³\ï|›ƒ/@
+÷#ÔPl at mÝl67{
+‘3"¹a\B¡­2’ÿßÍÄ–?!#P¿cò1x)G‡ðǽw×ò-2mg1Âåü~á‰9NzÓv‹8•1† ò­71‡ŠID¨X‚Jí
+JÌ¢‚Q‰•1† ríÝ
+˜CEï
+D¨X‚ÊÞ]9Tô®@„Š…!¨|gSaIIæéîŒÒR)‰žŠ$¤¬^npë­ñ=)WEèéÍìõÔo˜‡©ØÎÁMEæçauo”ÊC¦yY{IÖŽÕ,;£ïQ±0œƒ[oMÍ¢‚ÛZ1*j[k@åOÞ°ç*:î¡ba8·ŽV΢‚Ñ•1†{ey/
+¯XÀf1šWç<…ŸÎ*‡•˜Ñ«|”mÿû7oß~m-§aUCn곃ðU¥‚ÞþdÁæ!sFÄƬôdº*‡ñ¦I–eD20àc¨€9Uø3à´³Tw5uÍéåøŸ\~ƒŸ³"ºðå›îué!û?ú3
+ÉÞš¢7x7|þC÷ù/—Ã2(K	W€)åQj©n§Ïò!Ó„0ÓAQ(ÊYB8¸,Ð.Òs»Ûß1°e}¬7»;o0–pÎ#ÑHS*P(­€h_AP]&¨|¿Ù-?t¡6èé9#–ÂÂ7#2Þøy»?ˆðå2·MZ†O]ôþÞïVí퓺¶VbVUÃ5¬êÁÝFL¾ÕòH͍_|.åßQè.¥*ªáäØ!‘Áþ¬Á~ø{»;u:øتŸšãòõq™¬@K‡ÆÚ^É×úÃfßÔ«'ùåÐ…dÿ&¢†Í¾+£Ð³=îÛn¯KH˜Û!ðý±W©6ª” ›¡"òÙJq­åŸ>_D€Q~êÚAü]«2þújX#Òl
+ˆ‰€kGLš²Âè{Eš” JÙ2 o
+ãÃ25ªZôGŪV!ÚÓáÔíý‚ǯO‡ýë÷íö5FWß‹=A#·êï}ý4Þ²ÆbŸD.o÷éðt86÷"
+ü
+ðD@¹é#ÍÞ kVà/Òòt=/Ç&-Dz²J²Ò˜¾\YAZH0Õõf½;½gLc†°Zç°n‹gæà¦$FÅ¡>¹…¨¼(† ¨¯½!ˆ!¨¿È(ƒrÕl×¯–¹÷àà¶6g™µw=±Ì½×·ôvG Ú­×C
+—Zû¢XK›»ÔʝZh%ku÷m·*18Iгòè°£S¼b¤’ûâ«w7Ÿ½}ûæ¿Æ3
+^GZ	¦D9f¬<hŒ£’ËÆo޼ͬø¬‚õ)ey¸ßh©´¥M@ÿÒš¶ó”ÃÏŒLí9Z>‚¯äFÍóö‹¯þûÿ,
+™˜dr,¸Ì/(û¦ñd‹äÐÓ<Ï¢ü¤Ü¨~¶§ÍÆ¢ãYÄrç°<,™‰þ;8úYQ$9‰xy€”<W”Xæw¾
+ø#[•½¡2˜xyÙÞmwÝÒžç*i~ëòà‚\‘s™<ÖlºÜ	¸,ó
+–ÍÃQþªÄrp,–»nÑÌU&Ø@	¬^÷kÀ2åÁÅþ–Q”ô^éÔùM¥X^ï4qmàU¯"ïÊÁÃácu¬Ôê{ e&Ilv¦ËŠéúgË©•5Ô9XËÓQ$:³IÉ4væâºî„ôÓ†é/+Óû‘wïúÜô[ 
+óôò•'R'§ Ÿ‚^M—Ûñn¹oŽîôE‘3ÖÏýÑ=¯Æ);ÈpÝê„@èŠ]ƹZèõÀʳü¨)±g¯ç'íõp°¤¨DÀ·„54‰D—µ”/õÓHLu¡T%—b#øÐ)<Ì·Ò˜y
+OådD8j¹I;a$ƒ²BƒÔ®µTTÊeVÃ;gCú{F{‘|)F†øF:¡ïŒu¸ôzË8‚nióuK½£;±øýNq˜’+'÷LÊÁ…UãKôLÊ¡øi™EI¢Ü€dkQC&Ø6½ŸE?Çî™×<M/ÿî›’À‚Å§ùÙÖ¿°­oj˜ÅC\E	;Ïh
+»…¥ëLmPX§ÞT2Ý a­co˜˜ÆìNÇÑ!¤¿'°Bá;÷¤—îIE
+CšÇ³-ñ,£ÙþFE!O$’ˆÇ
+‘bجÿB^’>íf§åü>ñ/9ôbTtzh„Š…áN:Ô+‘9Tôj'BeŒáN:Ô«Tú5P˜Š^™T®½I³³¨`mŒŠJ PùÁ»›ÁD¯ËÂDÆîŒCÌãEŸIc2Æð<
+Hí DGw91¥Gèao„æØΩ)Ç¡‚g‹#£slgQÁ<Þ•1†3ëPçØΡ¢óx#T,÷èÆÛ9Tto„Š…áÌ:TÙ¸³ˆÈ<Þ
+µ‰ܸ)6‡ˆÞP‹P‘j‘±£½´é÷¿,H¬÷÷Lj‡ã*°ï¢gì{E€-mÎ'3àÕ3¾ïkØ¿nhÐs(iÂ󢊥bØ–6¯/^–IJ‹rráQ>Ê`¬×íæVY’§E)6JÅ@-m¾ L–æ	áE>µØZ>Â@É1««ïNV¢A–ñ$Ïy¤ìZ*†lisöõ,'II9Ÿ\p”Á[zƒÝ=«Ä“G‹”¥bà–6_w×;šS‹¯wJcÆzñÆ,aš²,\l-µµEŸºA¹HàÌϱû»7ª8§A)Ñdÿð6Ë“,WOœ<7×Gi.£Š[-(n.p¯R®qül÷í)¸³YIIxãžÒ")hÉýÛ¬ËÚ÷ăgdŠv‡?Ï?gŠNË¥ ßå…2EµÐÔŒšZcÞ”'éȈ;)öqG“äm»­7þR€ž<
+먐	ükïC憠SD
+ 2)DŽrO…©è ‘IEY²ƒ7‹u£>·5ÌÈÆp?^sPçPÑy®*†ïñ¢ÚCŸA¦„ÉXîÇá¡¿+½ï†ë
+?[”TU’Ãþ<;|ìÙ!öx0³%ü«A-åµ¼x¬sв֣°”PŸ¸2@ýÔ÷8Ó!b|70Œ­vЁ„œ!‚ÅîÏ'„±mmþ(¨écbáûé&Æ@M7Ý£gœé$h€ƒÅïÍyÜÖõîI•%$¯ÊŸ·ÿAÊ"É…·ô?HA“2­äQ»w»A.çí	=ý¨ÊîÄ[}ÀlTëÑb"#TžÞ¦Äî—Úk¹oïÖøôÆÝîó]¡õ2^]™ód5É•!ŒÁ@ˆ….´T·{z°Ìf™êfîõ3ZšˇÔBn–Ú@1ì7ãÃØ–.í·¨yž°ôüê•ó«Wþ
+ÌIÃ2¾zE˜”ò$Ši7XS›Å
+…"˜,`º€z¹= `¦‚ðÚL™ðSÌT èSóÜuL&LQË
+8ýóP«ó0¨¥Í›çŽÁ”‰
+Ó_"0ø2`à{íA¿’•ÞX—±ul#Ú+õ´&–¾àVŒzàÖ€Áá¸w•¥IÆKþ’”Yäe´u´ÜŸ7û>Ü,(µ´MLq'”&çù秐án´D`.PB¾çÓê8ˆÑ¬3m°~Éd˜~û‹ÉìàM˜~^:W:Ìżœ™(ý,â'gNIAر.÷Ëpôb"6zf
+bµ†S®0--Tê>Ç-ˆléòŸ}¹hRÁI)?Òê\ô3W¨À:ÄF늧Ix–’³¡ýh¹fVð(Ìe išð‚Ðss=ߟ»ç[šÐȦ
+Eü^C—ßí
+âJÇ9½ĸÏÄF—×Äžàñ
+ýl‡7ÈO‹™wÞÕE¨1ú5Eq¬+êëNkÞÕ
+ã§kÂûwà´*yïg¡µ›ëˆú©ËÓJÞ?Ì9¯(ØuÎû¿Þû$÷0C3úS܃M¢3ÜÈc]}\0)ËΧ¸|×h	¿åG!÷Ù[Ì0uþÉ[}Ö;È¥LfŸ8]o'¯yc„ÂP»û8ºìÏçÐ{ûAý»^
+µ×ÛŸÁoðbå€Çµÿ³3xè÷φyŒÜglõKÑŸÏ£ïzÇÁ}JÏág±#<FîE<Mý2c¸?æ†banjM7£Šp6Ìb¤ß=q7‡®$#4FîCµ¸ú›ÁC¯/Ã<ÆßÜ<ƒ‡~Ÿs˜¾ÏÙàñ'ÿËœŸÏ£©s‡~©sp ë—:Ïà¡_êæ1Bp<=} {}ð9ÌÅL^î³´p3ŒATK—û -ˆžšÆk
+Guq(Xj½©Fëòz@øP§‰×ÏŠŠÀ´†Ÿ,°~PTŸ5*0ñ:[¬Ï-‡áÇZ‡gÅ[BhœA¯µPÖÒå>9‹ÿVd-Ák
+›å EÃ#e"¸#MÞ³EžÀšwjCkñúX«3Œf3ÉKV„‹‹B1ÄN¬´zö¯|ï*É88œYáNT…9[½¢æ¯ß~—.V óå…X’Ã{ì¦ *ŽÜ_ô9•òÊæâÝÅm·öº×ˆhÿßÿpøendstream
+endobj
+212 0 obj <<
+/Type /Page
+/Contents 213 0 R
+/Resources 211 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 108 0 R
+/Annots [ 219 0 R ]
+>> endobj
+219 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [55.6967 627.2638 187.3018 638.1678]
+/Subtype /Link
+/A << /S /GoTo /D (named_parameters) >>
+>> endobj
+214 0 obj <<
+/D [212 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+215 0 obj <<
+/D [212 0 R /XYZ 56.6929 760.0646 null]
+>> endobj
+216 0 obj <<
+/D [212 0 R /XYZ 56.6929 749.1057 null]
+>> endobj
+217 0 obj <<
+/D [212 0 R /XYZ 56.6929 738.1468 null]
+>> endobj
+218 0 obj <<
+/D [212 0 R /XYZ 56.6929 727.1879 null]
+>> endobj
+22 0 obj <<
+/D [212 0 R /XYZ 56.6929 614.4478 null]
+>> endobj
+220 0 obj <<
+/D [212 0 R /XYZ 56.6929 586.3528 null]
+>> endobj
+221 0 obj <<
+/D [212 0 R /XYZ 56.6929 547.4086 null]
+>> endobj
+222 0 obj <<
+/D [212 0 R /XYZ 56.6929 548.8681 null]
+>> endobj
+223 0 obj <<
+/D [212 0 R /XYZ 56.6929 537.9092 null]
+>> endobj
+224 0 obj <<
+/D [212 0 R /XYZ 56.6929 398.881 null]
+>> endobj
+225 0 obj <<
+/D [212 0 R /XYZ 56.6929 400.3405 null]
+>> endobj
+226 0 obj <<
+/D [212 0 R /XYZ 56.6929 307.6807 null]
+>> endobj
+227 0 obj <<
+/D [212 0 R /XYZ 56.6929 309.1402 null]
+>> endobj
+228 0 obj <<
+/D [212 0 R /XYZ 56.6929 298.1813 null]
+>> endobj
+229 0 obj <<
+/D [212 0 R /XYZ 56.6929 287.2224 null]
+>> endobj
+230 0 obj <<
+/D [212 0 R /XYZ 56.6929 276.2635 null]
+>> endobj
+231 0 obj <<
+/D [212 0 R /XYZ 56.6929 265.3046 null]
+>> endobj
+232 0 obj <<
+/D [212 0 R /XYZ 56.6929 219.8846 null]
+>> endobj
+233 0 obj <<
+/D [212 0 R /XYZ 56.6929 221.3441 null]
+>> endobj
+234 0 obj <<
+/D [212 0 R /XYZ 56.6929 210.3852 null]
+>> endobj
+235 0 obj <<
+/D [212 0 R /XYZ 56.6929 164.9652 null]
+>> endobj
+236 0 obj <<
+/D [212 0 R /XYZ 56.6929 166.4246 null]
+>> endobj
+237 0 obj <<
+/D [212 0 R /XYZ 56.6929 155.4657 null]
+>> endobj
+238 0 obj <<
+/D [212 0 R /XYZ 56.6929 144.5068 null]
+>> endobj
+239 0 obj <<
+/D [212 0 R /XYZ 56.6929 133.5479 null]
+>> endobj
+240 0 obj <<
+/D [212 0 R /XYZ 56.6929 122.589 null]
+>> endobj
+241 0 obj <<
+/D [212 0 R /XYZ 56.6929 111.6301 null]
+>> endobj
+242 0 obj <<
+/D [212 0 R /XYZ 56.6929 100.6712 null]
+>> endobj
+243 0 obj <<
+/D [212 0 R /XYZ 56.6929 89.7123 null]
+>> endobj
+211 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R /F52 107 0 R /F57 116 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+247 0 obj <<
+/Length 3478      
+/Filter /FlateDecode
+>>
+stream
+xÚí]ëã¶ÿ¾…ˆˆ‘E*m
+¤h’&H4·@>$A µµ»nlË‘älEÿ÷ҨIßî^\„û°~Œf~äçEš‡£þáˆf(ËIqLËpmWqtß}~…ÍZ­mª¿Ý\}ø£åÉ¢›»(#(c1xÌP’Ýl¿[}r½&4^½zÜݵòåÍuJW綪wÅþú‡›/Ž8pÉÁ%e¤ñh1Ê)%—e|õ¡üƒñÜÕ§7¢FÈrŒJ¸ øóÕw?ÄцóåUŒÒœãèÞĈ¤9ŽWÃË$#ú“ýÕ««õõ·$EiÌéüÄàB£uò)Í:"@-èÄŸÏÍ#ÃO5ƒ8ZΘäGåœó:žGuÝbõýÀñ6#šån¾}2ÿÀ>cy`^˜é±4G8¦Ì˜^N¤Ñ¤ÂhŒþ5•0šÿN¬$A,NqÄŽpšñE]/­.œ!‚±xÛe†_z†¥Ç‰µ8ªï#ùâ›9—ÍC˜³Ü³n’ȉes(›¦¸/ïvûr¼€0øÎpÙ\Ç)JXžb‚¡˜† ºȇr¿¯f!‚Ç€(”z!®
+UH8£(¦ñh†þ2Ê!À$1	5£ï^ƯŸ	A˜ðÞ›B ÕàÙQtOaªϨa…`~6§Ocž
+À™ÊpÐ
+G1·-üM ¨gƒP:ºt¥ýµ€IRX»ù“°¨GCPÆfM…$`ü€Ø¿DUP昛ú×?;ƒ¯ˆd‰¿}dèáŠæâ¸`)7°†‡]aÁ‡¯
+»ÝQ–l)${4Î}ØÖ†( Œ˜&1HF
+Oàx4~¬	ÉïÈØ@þ4dàò˜Î8„C?À!ɲŽMqڵž™¸Q’<{ó¨ÎD‚#èñæ8ú¨äÅ1–à
+„#.JÎ' яŒ%8
+ž•ÑG¯¼§@ˆ)"r‰%,õ×;e³<E	ÆÄf
+‘¿´eƒ1æ‘ÍsÊ4U at 4Æ¢)†ÙPøÇ¡:Ð…^PÖÄOø
+ñ÷uY¶»ã½3¤ù‡n¢W@¶_ÙßC¡ç¬&G£÷ÇP][†PŒyÏGs]‚Î
+=E?‚2‘á.îbŒò4gO€3Ì ß0ðÀÐ
+pWWgìýÿà×Ñ3 _‘
+ÐË–ù~†&<}Š5˜gCh&2泇,C4æ‰Mª Ð17µ&±3Èx"šýÉäÞvsÔj}³4ánÎ*g­4‚fÇè4Q@*‡—Œ¡ÔIxËsÄœ$:£›&ÈîÈF¢Uy´k¦q]W•Þaª€ì)7gpÓEç…ƒï‹ÔU¥8ÓšÞwû†oE¯ð)·°aÅŒÎn‰¬rjµšFëW}{÷ã)ë‰pqÐېRú
+¸i„¤þ½ÛŒA•2¿wkÖ(¼H•˜µo¯y¼*å®í¦8ÊçF}Ò>¨M¿·»©‡â¸U•ü[ŸÕ£;Eµßýt
+çöa× §nR ðötcMìÓ¤¶€,[6€ûz+_@åbð„"M%ÌüOcãËøÂ#›×w¹2†RJX—&àjæ@‘Q‚_›ŠRh:–
+•›ê¸ýñTW›r{®KÇf”£ÙvòK7ÛNùwsHYyžDºC™¦‰tùj1›Eþ1Cá™pJ–þÌÛ?0’†ò<¡G ©:³Bî8„!GHÒÅÁÿöÞÒ„G¯šÊïàm­>×Á{qoãÚ­³z>2] I²dŒl~/'0s¢8÷á[ª€hE7’=uî‰8OˆG‹ÐãÜ5}P|GG†âgökú’Ê7j”œdlñí¿Wg¢°œ4TBûÿøô«¯¾v.J‹ß³¥›i^ØØ>ûæëNwÞuÿùØÌ.~ œ¡ {õíŸÝL7ß	b{Ñ­yŽâ,úB„eô],ÃÅúõ¡ã¬±XšÒœõO»Êh>¨Ò
+™˜øMŽCs"Î,G6·é¬KšÈ1«îL÷±:^“xõúPy$ûû8&û²Qç¹íÎÔøˆa*Z8¢Éeý…h	$¹j"$|u‚*‚ÐÕ/;ɾ‚"£ÝUÇà]Š{B)I’èí"$œv÷íN=|nÊ­ü¤:î_+Y•ü¤i«Z1(ŒÝ±-ëC¹Ý­S—ÍyߢkÐ[Ö7B€t[ß¿Æ|Õjºb¯l
+Ã÷¯n¯×xUÝãÃnó ¿<‡Ò …	ÖavWØi¼º«êQ¯EŽþùÆtZÇMš}ÙNÎÝoªjÒ»XÁã\êøFY5p¶•~ªh•èê ›9†Õ¡8ÄÖ]÷¦<¶»ºì&Fà{(°m¹Ùµ!ƒé‘#úÈ•x§Vaý²¥´ý‹‚>DCÄSB½î†èÒƒm6×gxöC4t°Rfêž¼ Õ¹ˆÖûhgã<åÑ,{·ûæ)ë`©¿ožf)ÊÕ!²œîãn¿ŸºßÂvæ ý¤¢W~¹W
+xUùæ—kLWeÝ@|˹-‡”¬æ|»¼Ø÷Z‹ý^š7Õqs®k€\¿­J°KW×O—EåÉ`™Ì`RGã•©3˜€È1+!ñïE[´¯Oo°|¢çwgø‘¸@P+nE4ŒÌ:/êÞ<Í@'=+Eä"¶
+¶wb‹¤¨¯Óx¥­£|ÿÚè^iµÔµ}ôUÏ®ùȥȄcDy°{›Êm÷†ªÛeƒ5;iµÄ³œû…j¢€ÐŒ"œA]?Ú´}:±îw””Š†~+²Öónß®Íò‚™åZ"=4%wÅ¥ºS•B¿¶C38”±¶2ªõu8ëÅ<ÜðÒT°¶k½¸«ûº8ŒÜ}q¼?CPjœJÌÀCÇ”hQy”¨©‚Jô	í•èj”hU!Øäöè²äZ¨s½í;jWÖk´Ï£õN䡨šY—zY‚l‹ÝÑ(A¡’I:‹4ã¤s)‹óÞÓ¿ÚÔ»S+*"—x'Òo‹OŠív'ê˜b/¿Ú  P«u‚QÝVÕ¾,DÑ“à¬+K„©Ý;é˜	¿"¸ þ¤*”P‘—ˏïÎÇ®h’ŸKŸ÷(éË]-¿ØTgQúœŠºmä—U¢­S|Ö¹*XÖ›5ÙQ=ÁeÁ׎´¸o”RNUÓìnµÚµª6PXµ¥¥jU>LtÝè تÅvÕ\¼çM{®ux5K\®ßâpò$ÏËøRx,…Çe…}¬œ6œU×k¾jdŒƒí@"i³{j³QŸ”òC“déÚ¶W8³ ‹<«ÔñKÆf%Á#Ñÿq.I˜XV‹­¿´­‹rÅ4lìÚ8׶*¦z•d´W˜•¨¹Øå>·í‡gèøº¶œkëɇÎÚp
+ȝpó–×$c"£b‹¹¿uswpíÍÝR…ÇÜ5•P+än®³;ÅΙ:¿ììŽ8ˆêG¦ï€v¥Ç­{ ÙnÝ+uÊÍoçTüh,^®ãx{‡aì)öä&šÊ{{
+Ikš&ïvۏ¤)¢eê­œ	ÉQ"¨ÄŒ}Zèz¿Ü—Ó«3]ƒ‡qY2©XÍþnâ›
+Ô šðܘbKÁªg4=Pë.kpñ–,UÍRÕ\VÕ@ÁÏÞCSu¦¬›ê8éèª#
+6ÃiKWð‹ðš=7dÂí@¢;¤*ò€ì	Wgîh²L߈­œÕ+¶©¶Ü´FƒöþJÐ×
+@ÐǵÞsçÌ3ãB1™t Š:º5€òïêáèÜ {
+³m@£·Í£žê7ó#Ö€Pý#ցPw’SDßù¨EÂ+4áÚ˜§R_ÝAÙ¨ÝAñsWBW]”m*Ñ"l;¬›ô]o6Q½G¼BÝypõaunOgÙIÅ"F&æ7ÍÝ;ÃÅËB’—i/[|e2ù€LºW•üûPíé© h µnôhjEúPÎ2Q½mgž€³JÔ,_…%Q¸(QÀ”¢4¶4T¡ö§Íî¹íO?4Ýþ@ó	Qg}ך( {ÂËëÃ1Ô$4^î­\îMù¸“–eê½·R¸Mt'»g»/4ãNlh¡Ý<«íæ—lvS¢»)˜´˜úïa3ÅÒ„»¹¬‰.ØJ±5ûܝ/6Cfƒóî£x YÅŸ_蘗?fBÒ›%Ë]c¿ƒM[;×TM”bŸ¹‰âG¦6QÀ¼›(>h¶7÷JróÛyeÃd±ó·¶‰bO±'%ÑTÞM.úËÕEK&ÿ¸g˜#F“À…šH,šâtš¤ññ„Z¼&À4_ 3¶À¹Ë‘t¶?®
+¼²ui`˾ Ñàô¥é\½±_U²ÐýkhŸ2úÛªüǼôeMî;/Ò‡u±W¼¹ÇØﺃ²¿eØ3nëÆbŸàþ¦à€öØ_4nëÎz¿x}e½%ÞQ£JK9}3ì/ ô£ÓdtÎë½ê0·$Žx3\gq<SB›ƒóà 6¿a–Íecú…þ'¢uÏQKû.cÚendstream
+endobj
+246 0 obj <<
+/Type /Page
+/Contents 247 0 R
+/Resources 245 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 281 0 R
+>> endobj
+248 0 obj <<
+/D [246 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+249 0 obj <<
+/D [246 0 R /XYZ 56.6929 760.0646 null]
+>> endobj
+250 0 obj <<
+/D [246 0 R /XYZ 56.6929 749.1057 null]
+>> endobj
+251 0 obj <<
+/D [246 0 R /XYZ 56.6929 738.1468 null]
+>> endobj
+252 0 obj <<
+/D [246 0 R /XYZ 56.6929 727.1879 null]
+>> endobj
+253 0 obj <<
+/D [246 0 R /XYZ 56.6929 716.229 null]
+>> endobj
+254 0 obj <<
+/D [246 0 R /XYZ 56.6929 705.2701 null]
+>> endobj
+255 0 obj <<
+/D [246 0 R /XYZ 56.6929 694.3112 null]
+>> endobj
+256 0 obj <<
+/D [246 0 R /XYZ 56.6929 650.5091 null]
+>> endobj
+257 0 obj <<
+/D [246 0 R /XYZ 56.6929 649.9113 null]
+>> endobj
+258 0 obj <<
+/D [246 0 R /XYZ 56.6929 638.9524 null]
+>> endobj
+259 0 obj <<
+/D [246 0 R /XYZ 56.6929 627.9935 null]
+>> endobj
+260 0 obj <<
+/D [246 0 R /XYZ 56.6929 617.0346 null]
+>> endobj
+26 0 obj <<
+/D [246 0 R /XYZ 56.6929 580.0902 null]
+>> endobj
+261 0 obj <<
+/D [246 0 R /XYZ 56.6929 552.6807 null]
+>> endobj
+262 0 obj <<
+/D [246 0 R /XYZ 56.6929 501.3419 null]
+>> endobj
+263 0 obj <<
+/D [246 0 R /XYZ 56.6929 502.8014 null]
+>> endobj
+30 0 obj <<
+/D [246 0 R /XYZ 56.6929 448.9002 null]
+>> endobj
+264 0 obj <<
+/D [246 0 R /XYZ 56.6929 420.6588 null]
+>> endobj
+265 0 obj <<
+/D [246 0 R /XYZ 56.6929 298.5969 null]
+>> endobj
+266 0 obj <<
+/D [246 0 R /XYZ 56.6929 300.0564 null]
+>> endobj
+267 0 obj <<
+/D [246 0 R /XYZ 56.6929 289.0975 null]
+>> endobj
+268 0 obj <<
+/D [246 0 R /XYZ 56.6929 278.1386 null]
+>> endobj
+269 0 obj <<
+/D [246 0 R /XYZ 56.6929 267.1797 null]
+>> endobj
+270 0 obj <<
+/D [246 0 R /XYZ 56.6929 221.3203 null]
+>> endobj
+271 0 obj <<
+/D [246 0 R /XYZ 56.6929 222.7797 null]
+>> endobj
+272 0 obj <<
+/D [246 0 R /XYZ 56.6929 164.9652 null]
+>> endobj
+273 0 obj <<
+/D [246 0 R /XYZ 56.6929 166.4246 null]
+>> endobj
+274 0 obj <<
+/D [246 0 R /XYZ 56.6929 155.4657 null]
+>> endobj
+275 0 obj <<
+/D [246 0 R /XYZ 56.6929 144.5068 null]
+>> endobj
+276 0 obj <<
+/D [246 0 R /XYZ 56.6929 133.5479 null]
+>> endobj
+277 0 obj <<
+/D [246 0 R /XYZ 56.6929 122.589 null]
+>> endobj
+278 0 obj <<
+/D [246 0 R /XYZ 56.6929 111.6301 null]
+>> endobj
+279 0 obj <<
+/D [246 0 R /XYZ 56.6929 100.6712 null]
+>> endobj
+280 0 obj <<
+/D [246 0 R /XYZ 56.6929 89.7123 null]
+>> endobj
+245 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R /F52 107 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+284 0 obj <<
+/Length 4406      
+/Filter /FlateDecode
+>>
+stream
+xÚí][o丕~÷¯(ô“
+t1âM¤²ÛA`“Å Á"ۏd[¶…ÔÅ­*Çòßû(Q$ÕjObèÒåð|o‡‡—#ÃU!þÁ-AY¡jÅ!¬„xu»=+VâÝŸÏ ‘Y[¡µ/õÇ˳ßü‰«
+T%*W—÷«’tÅp…ØêòîêükD‹óÏ/íýQ_^^zþ|Üwm½¹¸¾üAh+.´”Xj!Œ	4¾ZC*J‘ÒBERÆÏ£ –éÎþëÒQ´Y¦ˆK‚_ή®‹ÕÈÎg ‡«qS D*¸ÚžQ(.q‰ì“ÍÙ糿õí[D )8.ˆBtµ.>¥¥¬¥œüù³K2|j«µPÀÓÚ‹ç|¥¯V]³ºwÂ束à«t»MjwoëîA‹z¢IQqgPŠU÷°Òÿë	2DD\
+À‚2×D+¤‘K‹Ñ•“’«¹}܏TU†aµòՍÙQ€YU9j€:rêÒ§'T !Ïñ3rՐà‡1;eƒ†l’^ŽŠM›£¢åøÊ7›MPXËá":6mŽN€!退
+A€±%L†µ9;á Ò¢Êr·rîÿ¿îúe%m(ùNü-p–¿•ðßÕÛ&à_•€Jëý]ø£B¤Ê6e'7àßÆì…iÖ¦¢KÚ±K›ã`Löp9(x…¿Æ Ål#B1<f©Y¹µ»€â€Ë3Emí¤² cm“ýa"FÚ±=ŽgÙˆçÀÇZcíQáøNßj<@%ñìxåä2­Eø´àxQõi³TÆ’J½Û~ aÕw²\táfé[¹ý×ýó˜>.€%ûN& „eKßÉ
+è?Ö?McŠ²üN&ãRfM°“z^õ±Ù(1À¤\äM¸´9:Æd¿Â%LLnÞÀcF¤Š¬Irri#,0°G,m„TTÉñŒÆœ ^Òr®vò9x-7jOmŒÐ¤(澕&b’ÉÊì mÅÒ­…@ !KßÚ¥Í2‘rtFIaD²ˆŒM›#£åh¦ÙB at AÈ¢ÑÉ¥ÍQ	0¦«H¼%ˆ ·èÑ„ŠV[¬­qrj‡ãÝþùðãL¸}˜¤»µ“Ê!Ú$ò§ ´BÂïÃhn·vò9x-7ª“ßß·›fÊÇ¢¤ œ£tݬT<Ô&ÁÓ½æ$æ(þ´0*æ…"FÐ_< „!#³ØcáÖËJ}’’Ÿ–‚Þz)ˆ	̔헕¨ Ìä˜çUEØ@¬˜“’ÕtHX`@!+‡õ:ææ¤2˜¡6Ó(áDÛŸoúÔžÞ¶=ѲdrÄõŠxإe+%«ìŸÑê‚¥šQžjëkK–+Är[À¨=•ð[—°ÞËÈ™W·Ä
+
+#d¼Ûˆ¡ß
+©YLs¬ÛMàªVDîÙÀ•¯pÒ'ãyÛo–í3ä”’{jºÃ~.m#P@ˆ’äÖN*ƒkäFŵý¥,©öÔÖOÖä[“’cipzvRñËE*&ü~_a@Ï
+e`]“ó[k¿†ˆqeÄ3؁Ö螤€¿#c'•…D!â~ŠÚÅQ¦Ó[}ÖJf(X+9 ð!ºë8•ïÙ»Ž9*JnÔ~Ø?†©`Q.bcÓæØh9–+˜’ T4Ó ¬TTË•CÐø˜Å(1LNõW·¨^M$,ª•šaQýª[Ô$l +mQˆ3,j;Ð[;í-j*ÇžEMÂöÕÇýt±.‹âÇ;R	Á„ž:ÒÉù{÷¦Š€0}~.:•tB²ûl›Ã¡~häZr¼÷zZ®ñ»¾›¡Ø÷qŸäþù8Iй
+	‚¾S†vã³ýŸÑ“ECд_bÓd)ŒuOû%öÑT¾gUÊP	0$•/†'• €\4%dlÚ)W
+©€è‘©EDLÚ,%7¢rüù=µ€L*M&ÄHŸ€Jö'•Ur£&ú»øè‹+ 
+vN£ï»}”2ž}­Pb`s¶§0 ×;ëIX³D;€ý==DŒçîìsܝ}À?tMslwáxŽÅOçÛIå°mþÆõ´13÷½G‘a`—|‘õq7Œ&óÞ˜id3`Žrß-ÝÄ­Œº…ì½ÆÖ˜®4ê¼æe‘í(BÕA÷i°$}BFØ“ùdØM)¨â³é°7“/dìK¥Kíó±{¾=>w͝º9¾>‰y®º¼­wúâ¦1öÛ§®=XÑý½þÝÖÝß/`qÞtŠû½yöcQ Ms k,$?7FãñÑ\lê£M~hníÞ@Ûßmý$ÛÕHëvß™ôíN<ÜÖ}ÂúFžš1 íāhÉDf0]°¾”.Xd΂J։ɒ½3X A2D(idrcU*„ªëêTœ¿L¸”_û¢( ƒTºB°–T¯.üß7ªï»FV×Î<®…ÖWSòÏiÖ†UwumêíùþQUÓ?ÛJ1ôÏOòuݵõͦ±@·›ºSµöÛXÏ¥1o€¿\ÏõºÝ²îkb»„XyŠìúÕ½*ºèUÒKqBs×|­ß¼F¦èä†$jHdC’¤¶vRYб6	zuQ)¬D½@ò¾GTÅ…`žQIṺz)†mÞžºýCWo?ê»/dp«¹}i7ß
+Zk»ó¬îhœÕÍt4 Fª‡p0fèd6Ofs–Ù$\ÖC™Þ²BjUH¸yãÖg£k=e%îS…p†—–"^)kn‚>ôÖV&
+<Ö”Üê$¥˜£žùièÝ›Êe $ÊØ+¥BŸž;‚ ÇÖ×p³BLÊ?ÀœZ&±&g:ÃB%ᝉòáçبDÖç:œ.ì<MÑÉ
+8£ËWÉZé—¯2 6»ˆ=¦2³bú+vClÀ ¶x‡äÇJPU¦sï¤2Øno#Û*ÝÆÅÌÜ÷9f£cÀàpì¦òN€K^¾E£tÒ9~VnÈ/Œh6ÏéjqaÔÐ@›ž©f©Îaü#:Ș,÷ÓôÆñ<¼]Š–_á2zU‘0ÈV*öi÷-–AÕ.4ÅnC!MÎÉ
+ØÅ¥¨yr cmªÕ×Ñ“”CØx®ÝéÉ{z2“k;4&3íü÷4¤ƒ£<Ãëøè33Ïýè“&àFŸtží‘‰t¦ÝŒh¥?½5Ì5ºŽn×Ì͵۸ÉÐ7Ã<OF¸ºŒ$3Þ²$j›Ü't™™íþã%9x%7‚F¸"Æ *y&ëF(=Öu4ìç8ææÝÊçz'½K÷ݍt¦ÝW<r cmÙ-B‚K1Ÿ(N’¹ J¿ˆ“C+• $H
+Z§c¯§E•÷¿¨‰èA(}ìÕ	ÍÝÒòµ~ó–Vš¢“Ì{Mô©d ŸåCǏ½Ag{ÍQëN{Ê÷ìc¯*†:öJ§0û1¼túî¥é„Óusk/K¨¸™•1Fìè«s%éÝÕ4™ cúè«sWS=ÅsR3 ÖIõAãG_I…Ã§£¯§øݏÀ¸PaiÏÕIÅ—Rm\›¯páàëȦÉY±¹—}w®5ØQ:EÎóÓ¸¡6½–ª×QMXÛUt“aÈ!k·2ŒÝÓã°õ,¦Šav„nŽŠ9:; ò¸‰:KÈ8§ C&À˜.^ ‚”iV*h“ CPá­Â¯j
+:E^J0—g»®µ¤øÝšX†Š^‘çbNÐ*½”¦bDBnÌîU²%ôq>Ð@ÛdKp[_ÑúÍ°³–É·uË–Tsý2T´Ü¨3N|a1«¤‘±isdŒér!DÄ,Ó¬TTˍÌtü$"昞¾¤wòCß¿Ê (X™>Üì„f„`ù
+ã!XiX‚5€‡`
+g옦Á]Ö >‚•Ì·çP¦±mÙ¬¹¹ïýÈëGú¦½{ãI%3n}§4¨óFÙŽo®àR~Û¶xç§ÅÅ 8B™Óâ˜`À×¥ö?7‡¦ûéR…Sñóãc-ã–ªÊDØÈGò¤­ºRGÁ•P£ežê®Þ6:vJ>ßë_×ü•:.žîö2çEߨƒæò×4rV»ž¹>ê`-3U‡«kó´ÝŽM}çÓªT L/ä7¯K%‚ž*ñÂ(Rù­F–±ÿ—œšM³mvGAS¬ä¯Ê¸¼0´1%:nI>»1ïºæ¾éšÝ­T“÷»çmÓµ·õfózQÒs	Ì*E&_7²ô®·O“þpU\!ùg°¬–…ÖÐlwí±­7:FN>0SJ|7J†Ï7­¨¹zóq*ÿWuu}øøAÌÄÿÂüp
+dC¼Ô߃O¶P_*ÈæÄt [	dKbÚ@¶äX•Dü«Šö“Õ2?’í¦‰µ»VGˆVqԏîZ˜fÚ„~vÓ_šf§oÔßû|ÛµO&…®uq±•ÝéËM½{x®dd£¼mͯi¦>ÖúJ7H…¢UƒT!–*ÉÞ(ßY~‡¿[eÝþùáQßøárÔ¤¨§Œ6"	9´ÛvS›8É{žY]t¤²2ôDqöcõ¶Ívß©nbb5ÿ$ÕÚ€K¯«|¦sá€õÍ^
+9“6Le"c^Ì›G¯èËT­d¢UxbÛ{nZ€ÚÇ{FÃ	åŒF˜hvŠ‹9yܳ<n„€TŸ3ˆzÜNhîÞ«¯õ›÷^ӝ܀dnï5EÐóN3Ðvïu ß{‚ÎÜ{ÍQëNï½Nå{ö2k†J€¡?9„£GÎÍ_ZÀÉý]«4¥ !ò7µÌ*Ð""v¥)ÇdŒÛ~µç—qgÏ3dŒÈ_Ó2§Å“¥?{ž
+´¥·_‘: Eß÷Œ
+A1\WŒ¤gT¨ r'šúñ·†¸Þ©KbgUâ¡0|:vV¿°²µ¾•Ñ¡1¢¾ë!݈Ï_ÛÛÇaJõiŠ;³h끰þ’…DPÞž|"'$6áCo€hô@ΑˆË
+{A*µQxcÔéû6wS¾¡âU–îû
+âò“üaÚ·µþéÝFq3tÅ«FAËÄð|·6.£zâó”$åý'&DÂ[›ò æœR¥®qåWŒ¸U9¿®x¥ÈN3`ÆݏLqŠ+?ñ—aqê‡7¯SESû¹ T›?%Å@…Í_'¾ó éÌ—\mͨ›×ýóA?xQåõjîÔ”UP•šõ$P<T¼øõ¦¢˜D78¿”Ť4쵈ü ‰Q5t“¥ÒzÓ‰Ù÷«~}£g2âêà®,ÐQ5!ueþ”²ÂÃçÑ_\‘o´®§·bîj³##Ô'J¬Ý»ýÝóm3þ‹b+>ã›Û:ùñ·dLa
+燽?‘élˆ|óÛ!˜ÀmøÉÎäéê»	ÕëѬEÂ0q¯\»¢…m­©Ù‰
+þwíÖ›nÙwºÀŸ6ííqój§0‡csgæ\™?Ÿ‘A*¢”éÏ£°·™ÏÐjñÿÚYŸ?ãàKf4Kô¿÷oŸÑTLþ
+òô‚•™;Ÿñt~ót&Éωùs“™;o.“ƵS7>“ ÎœÈdðGšÓÓ˜‰ϞŤyŒ’1³vûýëéô;÷I:nãÞ§¢ûöx¸mû4»kï󘚽ØiÎ&n&•f2FHïاºF¿aŸF´ûõ>b|ÞRAiþw‚¨üƒp„L¿Å€r½l÷åìêºXÝ	™Îä%‡«UÇHžÅÝžõ\ô“ÍÙ糿…L×½F‹ö/£ž9õendstream
+endobj
+283 0 obj <<
+/Type /Page
+/Contents 284 0 R
+/Resources 282 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 281 0 R
+>> endobj
+285 0 obj <<
+/D [283 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+286 0 obj <<
+/D [283 0 R /XYZ 56.6929 760.0646 null]
+>> endobj
+293 0 obj <<
+/D [283 0 R /XYZ 56.6929 738.1468 null]
+>> endobj
+294 0 obj <<
+/D [283 0 R /XYZ 56.6929 727.1879 null]
+>> endobj
+295 0 obj <<
+/D [283 0 R /XYZ 56.6929 716.229 null]
+>> endobj
+296 0 obj <<
+/D [283 0 R /XYZ 56.6929 705.2701 null]
+>> endobj
+297 0 obj <<
+/D [283 0 R /XYZ 56.6929 694.3112 null]
+>> endobj
+298 0 obj <<
+/D [283 0 R /XYZ 56.6929 683.3523 null]
+>> endobj
+299 0 obj <<
+/D [283 0 R /XYZ 56.6929 672.3934 null]
+>> endobj
+300 0 obj <<
+/D [283 0 R /XYZ 56.6929 661.4345 null]
+>> endobj
+301 0 obj <<
+/D [283 0 R /XYZ 56.6929 650.4756 null]
+>> endobj
+302 0 obj <<
+/D [283 0 R /XYZ 56.6929 639.5167 null]
+>> endobj
+34 0 obj <<
+/D [283 0 R /XYZ 56.6929 585.2655 null]
+>> endobj
+303 0 obj <<
+/D [283 0 R /XYZ 56.6929 556.8801 null]
+>> endobj
+304 0 obj <<
+/D [283 0 R /XYZ 56.6929 534.9973 null]
+>> endobj
+305 0 obj <<
+/D [283 0 R /XYZ 56.6929 536.4568 null]
+>> endobj
+306 0 obj <<
+/D [283 0 R /XYZ 56.6929 490.1654 null]
+>> endobj
+307 0 obj <<
+/D [283 0 R /XYZ 56.6929 491.6249 null]
+>> endobj
+308 0 obj <<
+/D [283 0 R /XYZ 56.6929 480.666 null]
+>> endobj
+309 0 obj <<
+/D [283 0 R /XYZ 56.6929 469.7071 null]
+>> endobj
+310 0 obj <<
+/D [283 0 R /XYZ 56.6929 458.7482 null]
+>> endobj
+311 0 obj <<
+/D [283 0 R /XYZ 56.6929 447.7893 null]
+>> endobj
+312 0 obj <<
+/D [283 0 R /XYZ 56.6929 436.8304 null]
+>> endobj
+313 0 obj <<
+/D [283 0 R /XYZ 56.6929 425.8715 null]
+>> endobj
+314 0 obj <<
+/D [283 0 R /XYZ 56.6929 414.9126 null]
+>> endobj
+315 0 obj <<
+/D [283 0 R /XYZ 56.6929 403.9536 null]
+>> endobj
+316 0 obj <<
+/D [283 0 R /XYZ 56.6929 392.9947 null]
+>> endobj
+317 0 obj <<
+/D [283 0 R /XYZ 56.6929 382.0358 null]
+>> endobj
+38 0 obj <<
+/D [283 0 R /XYZ 56.6929 303.8744 null]
+>> endobj
+318 0 obj <<
+/D [283 0 R /XYZ 56.6929 275.4889 null]
+>> endobj
+319 0 obj <<
+/D [283 0 R /XYZ 56.6929 241.6509 null]
+>> endobj
+320 0 obj <<
+/D [283 0 R /XYZ 56.6929 243.1104 null]
+>> endobj
+321 0 obj <<
+/D [283 0 R /XYZ 56.6929 107.1553 null]
+>> endobj
+322 0 obj <<
+/D [283 0 R /XYZ 56.6929 108.6148 null]
+>> endobj
+282 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R /F98 289 0 R /F101 292 0 R /F52 107 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+325 0 obj <<
+/Length 4310      
+/Filter /FlateDecode
+>>
+stream
+xÚí]mã¶þ¾¿ÂÈ'oóHŠ¥¶W$E^šàšCsWE:[»gĶ6²œ½EÑÿ^R|%JC­ï’KFX+
+çyÈ!‡3$¥–ÿOQšÓ|‘ŽDJ’Åz…·òÙ—WÄȬ¬ÐÊ—úëË«'_p¼ÈQžÒtñòf‘R”
+Ì(É©X¼Ü|·üôzE9^¾¸ßÞ4úòå5ãËSSÕÛbwýÃ˯¥²È¤–4QZ˜-[¬A9ç´Õ’Ê¢"[>Ñ?$Qå®>é(Z†"'(á4S¾úî¼ØÈê|}…Ë3²¸—`DYNû+Näe’R{gwõâêFû”2ÄpÆÇÆ
+¹&›Oðá4cãÍçêÀrD0×Í÷òõöx½J²tiOÇòæ´S×|yÿº<è»ÕI_Ü_¼,þ«©ôoyMøòÍÝn»Þ6»}ïPìK­f{¸;™Åa£/ªSãn~1Ý•ÿ¦ªd­ËßÕÕm]ìÑõJlù…²B¸Øßíʏ¯WŒb¥Xë³Ø¾ úOY¯·ÇRYX6_¯üíógÏž_'|ù/UÉçß>û91òÄt¹âP”¢‡}uR¤	[î‹»»íáVý‘,WúÞ¡ÒšvwÚ&–wŽwåz«H–óà ›×¥‘u_›RëjSʪsŒUgo5Ùß÷E³]»¶ùå£ÛòPÖE£!Ó¬>†n¥V3±ýÀSiúÁH3µªh®Ú¶)ë}¹ÙJu‡u–T›×E£ou©oUEOݪ˛².kÅO×Õéöµþ£Í/Öõö®¹&KiاËãimG­Ã3µ¦£S·ÂŸ~óü›ÿýù?_|ñճϑ–üT?úåšJ¥Ò_¼Ú
+úi+¼)×»B¶å¶:h£ÚHý*³·à¸ß+ÚZÊ›¯Ìoµßo›¦í!Z¶•ô”ÔúzSª
+¶
+êc}k·ýIõÆRÿÕH;ý1ðN	˜‘Ešq”0Öz',é+G¡~¾TnIzœQ’dŠò,Ëu¹¸ñÜ‘yˆ'Q‚(å¶h ?ðj°š•KÓ1šºÀ¸riY<BëÆ–
+QrYÞ¯yæx”nW“QíîéÙúß÷ÉæÅ/êÛ…¾øvlÂHÕ\(’ÔM9Õ3%sF²pBj(ìË㱸-o¶z¤ø½ÈÉ;$]øZ‡eyeH(A”£èäz$¥_%ÈeA‚a‚+'ƒÖr¢ý§É±)däòëMüÃÒÆ"ÝðÈÈþkªF iÊ#9‡#”ËxIpÝbÏääa¼ßÐq/{¿ÝíŒß=4uµ9­3¬ä\fŠê°äÁ”¨n:×êœîM]퍗ÝÒWÝ|¥|kåÅ’föioøóÃqd:Œº–ÉóÏžÿq”ç'¿èßãá)Þ ©à2ÅÒ+
+*"MìIé&¦^tèRì”"2D•sÏ󪊠ºthYêpúÛRZ€XóÞé›׳žŽÏýN²¢R¯V+')g­®¯Ú )o§?u•}E	‰OK-èY@—3u[îÖQQªÌÌùRCD¸`È=Ò:êâp”±Ïþ¨ÿ.ôϱ©MägIÝÕÒI¶±‚z~:šÇ®„áp’1ÅX1S)_'7,Ú:©Yî´kú=ßÄ^êÊÒöâ—b¨BWúCAÖ4î7#:šì+Oe³¯²Mä¨n£4a@ò6³ÐwZ’ò†¶¦ºjã$ùänW¬õ€Í»A=ö¬ôÝBÿtŸp¦NbԝWÅQ–RËÁ‚iSKõèfÀÐ$*êžÖ/Ç3ÃtÙf"š†pFLd+å¢CQõX(¿½ Ô´—k
+Wì¸U©NW‘U_3¬ƒåLçY¦äA‹ß÷ÍàµH¯Cª'Ã~ìAôj#ïuªFZÂY§]º‘Ð\ù†ƒ¾Ý²â°▕¼XW§CÓúõªÞ¿Çˉ––¡ÌNµ-SyE´„Sc4ütÔn=˜Î¤ÜëSÜ$ªêù±©ê!µnÄY…àd¥¥I.dåì$¦+\N·î·A7dm}­‚º.×*'OùÒdÅf3€¹_ëßS³Ým›ë8>O:£ÔôN‡àôï“Ó±~òj{xr¿îˆY&ÍmŠ¦Ÿ0-´ìÏUÝã­^mŽlÂÓ´IØd"Ä2ŠRnU.‰Ð%Š%BL0	%0rBs!_ë['B0E'×#Ùú¶QŠi®ÖRHqå¤bà‚#é,-ôç 4“a‚é #îjß^öêoËÄ(º…B
+Ò4d´ÖQ"mÉ(
+%…IŸÆÏ$¡XN,çPqe#dBE…T’ÓSzS6Jeˆ¡¨4oš€M“cò,2¶lŒL€1ÚW¨LD2µpŽ'må ™\/`)C˜êµüËÜðNç3Á¯¬ÚK¿ïÙWvzœz«F£³¯R㦍‹G'6Ì!$[ø:ϝ{‰ÚÖ#"FÐÉõ)N‡ µ•“Šº	ß
+ç\*[/!l 
+ÄF>
+?Ô«—nË7w?îÝÚNJž"®v^áú[©@¸üÊ•ý_Bíw=ØSEdƒçõ¬Délõ,+¦k6D§Vô{æ^я ÚòÓ0vfˆæ˜@§+nåcðZn ÿÉdOI†p¦<#Ty'Aµ)ô'ÇSBáD\ÆÓï`<y¶€Æ“kÓ×¢Y¿‡S‚x‚Eߺáp2R1`-—õŸNá(œŒu#:Ba¨{<+t#z¤Þ1*Ý膩¸ÑíSQklz}Lv"ÁUNGÔ´¦—ÿÐ>1ÑŠw¿]j›ÈlϨÍlaþ.³õùep.ë|</³É„ãœË:¡þìå°С6ØCRŒHN³‹‡üxHϐ‡´bm׶ûfÁHs«]¾…/i¥bà¶q/éÖ·z s×Î`
+npíl¤Ös=L„†õ0>ïIÂÔ¿dÚÏ<žçg at J!†K>§W‹Î Ó­!ÁtŒq·—È©FæÕpÿ”Fç”å—e_m$Íeð!ÔúÎ%¿$eòV,²2ˆ%#.؇x’·Ç?²,vP<Ie¶’g>ã¤ì!:uÆ×7}F
+téP
+Ó7íùÍ͏E]×/¼’9‡_Ú½Ò„	«Œ/ÛC½,[*ú™;©¢¯F@ßØm¾¡¶U­*}äšÙíüAßñ¯ô“²P§oՍrWîËÃ@_c9º’™>Il©m†PÕ¡ô©ØÇú¡Sç•9`°ÙªÝíªn··Õ6»lé¥w¨Å4—f¥dÚ
+d45¶93™¸\6Ž/K׳–®e؈cXºVŽÈJµåÃ]°–#2Ùw([øêÎ\µÎd֝Ó$FM‹±>5hS›Q$®¬P›°L&PxÐ.ÿùïä¨Ä	’Ñ!½t÷÷ÞÝ=K ÝÝJE»»oØ·íî 5×Ý}jÓ»H	E˜
+\9©6IÔûj¾6¸»ÓœJ«¤É¥»_¶~ÿosšÉ¬&öNÊ.†ÇD*‡˜)¬¯ðV<¯ÅðÓÞÀîïöIœ¹§l·wa†N®G±	·wMîQó‘E@m“«ÍÖõÍ´Kç*#´\2b™{uvbM
+®½Y}Š ç‘Òí;Ï­¹ÛÏŽá·r@@F9G‚eü]ôJšÊÊ«ÃF’N®Gò& –ʺà,í⤢ Cm®Wª×R–ÿ™œGF	?|ñòo³/ÇŠÀ<7Ú8oå›"´°ãÁÚ·¬ï͙zù~`Ø!9+ÁÌs$Ú‡œîI<G	Ë/ùö;ïI²ùIßÊi­ETXáYbÚ¨VHõ~==Ÿûf…='¸½ÑÍé »nN÷ù}4=§Ð‹Qéfz˜J€¡¨¬&OEÅž$‹Qb´V›Ž8ΠÒE0}ÀÒùyLÿ™ìŠI„™#}fŸ¨¸ }-Rä<©``¸rR1pùÐphÔCEð‡zÇ£»YVºÛúƒACmS±°œºä,‘ó¹Õvò1Þö \³©Náî#S‡Ê³XÝ­TYË
+üiÊ¹3ÍÒÙ·ò1x-'fvvšgHd‚Gên¥bàZ.w÷3DT8:³úN> Ô;šú%8Gœ‰®¶“Š‚µÙî>¹IY&Ý ¾üQt§‘°ÙJ)“M¯*ÊY‹%—›¿¦¹¼&Ö¼¬l.1q9>vYþðw•¨LŒd¡<2n¬”ƒÚ¯nsÈR‚Ò…¯ðÌÀ¼[F ɹ%	Ÿ\{dÿª„ë•vçb¸rRpwº‡>ýÂBtæ±æ{¬¹Gá£É÷Çê¥bßBŽQÉõ÷!{TÔ1“‰Eã3¨Ø¥d˜ˆ=ÈØ#‚¦“´3ˆt©LŤn>‘Ñ3Ûæhóã©ô‡Ó¼ãŽ]’ï ýûjòìå-ٝ½Œ	0Æ_¦6g/ÏabŠÆˆ¦lê²³ßĦv7"ÆÞíZôè¿®Ë0¯Sñ`⼶´ectŒq«Ê‰S‘GÅ”RbL¶ËOÆËAA2!ƨ[ï²Fh:órÐèPøJ'•9¿ìî¼ÿð­3½¡Á›g×·Ý f.tó˜éo7‡n.Øšæ·rB0´ûv¤ýt:hòçÆJ þPóxÐf_M©qŒ‡{ûæ1D˜ŠØ\¨ôx&]¤21’ÇM¯oŸÁÂ-uÃ,ì! ÇÄë&æ&ærÎäÞÅHû.Dò؏…kn±úÑíè­`ƒLÜ6dÏ.Bz<n)äáV²£öÑ4ûmÌÙG yùæ‹Ôº‰ûÑ
+éÅ— aÔ ê8qN=‡‡-á1D˜4hÂÊhzNçrE#\†ã!“§œ¶œPq ŒÏH®Îܦä ]V0?ô˜(_™
+~ÁÈ	Íý~ ¯õ­¿Str=’îÛ#ÇÉØâ腁ô@›Bÿî}ÀïÏ“X|ÆAƒ
+~õhÜlߘ—÷&¾lD¥§cXö0°1œT„E¨mÔͺ
+홍Ðm€ÇàÍø F:AB9’AP×ÛIE€µÜ ÚAR”$á4m{'C×rùÈ M“Œ¡,åi¤îV*†®å•Ÿ~˜"¸ìòŠÈû÷üž%¦=¿š÷íºžußöÛu0A#—õ)êeqÇo— ’Þ:DÞîÙôàÇo’ù>8àømò¡¡³ÿ‰n߮؂MÑ­ÿÂBmnßÎóšÀ›u`ø@/àöÕ™iAàz;©p¨mÜﻹf^½½Y'of°ÿGü>XùÎïÃèÎïûð€ßO1$¿|ö’S}ø3+Ë‘H1üUX'›¶\Nåi>¾
+ƒ‡ÚÚi›yëé䱏>:p*Ü ‰ðô¯˹CÍ`+tG¤aôPÛÔQYw¾`fý»O²ÅõÂY«{
+®¿{.‚h3½ <6+Ê0¹¼KôþŒg‰ic…f;ß¾€ƒÁCmm×"qÓCŸã``Þ¹jÏÁ€è¡¶¸ƒ™WÏÁDõÎu0`ý;£ÚL/€(côrÐûý;ÏÓÆ
+Ív0¾}‚‡ÚÚ®E㦇>ÇÁÀ<½sÔ
+žƒÑCmq3¯þžƒ‰0êë`ÀúwF´™^q0ê[Ä)ý@?@(r”p–?MÏôw×ÞÑÿþ}Õi´hÿìÖ™Eendstream
+endobj
+324 0 obj <<
+/Type /Page
+/Contents 325 0 R
+/Resources 323 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 281 0 R
+>> endobj
+326 0 obj <<
+/D [324 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+327 0 obj <<
+/D [324 0 R /XYZ 56.6929 687.1731 null]
+>> endobj
+328 0 obj <<
+/D [324 0 R /XYZ 56.6929 688.6325 null]
+>> endobj
+42 0 obj <<
+/D [324 0 R /XYZ 56.6929 616.4486 null]
+>> endobj
+329 0 obj <<
+/D [324 0 R /XYZ 56.6929 590.6535 null]
+>> endobj
+330 0 obj <<
+/D [324 0 R /XYZ 56.6929 484.4867 null]
+>> endobj
+331 0 obj <<
+/D [324 0 R /XYZ 56.6929 485.9462 null]
+>> endobj
+332 0 obj <<
+/D [324 0 R /XYZ 56.6929 474.9873 null]
+>> endobj
+333 0 obj <<
+/D [324 0 R /XYZ 56.6929 464.0284 null]
+>> endobj
+334 0 obj <<
+/D [324 0 R /XYZ 56.6929 453.0695 null]
+>> endobj
+335 0 obj <<
+/D [324 0 R /XYZ 56.6929 442.1106 null]
+>> endobj
+336 0 obj <<
+/D [324 0 R /XYZ 56.6929 431.1517 null]
+>> endobj
+337 0 obj <<
+/D [324 0 R /XYZ 56.6929 420.1928 null]
+>> endobj
+46 0 obj <<
+/D [324 0 R /XYZ 56.6929 383.0424 null]
+>> endobj
+338 0 obj <<
+/D [324 0 R /XYZ 56.6929 358.0792 null]
+>> endobj
+339 0 obj <<
+/D [324 0 R /XYZ 56.6929 323.6435 null]
+>> endobj
+340 0 obj <<
+/D [324 0 R /XYZ 56.6929 325.103 null]
+>> endobj
+341 0 obj <<
+/D [324 0 R /XYZ 56.6929 314.1441 null]
+>> endobj
+342 0 obj <<
+/D [324 0 R /XYZ 56.6929 303.1852 null]
+>> endobj
+343 0 obj <<
+/D [324 0 R /XYZ 56.6929 292.2263 null]
+>> endobj
+344 0 obj <<
+/D [324 0 R /XYZ 56.6929 281.2674 null]
+>> endobj
+345 0 obj <<
+/D [324 0 R /XYZ 56.6929 270.3085 null]
+>> endobj
+346 0 obj <<
+/D [324 0 R /XYZ 56.6929 259.3496 null]
+>> endobj
+347 0 obj <<
+/D [324 0 R /XYZ 56.6929 248.3906 null]
+>> endobj
+348 0 obj <<
+/D [324 0 R /XYZ 56.6929 237.4317 null]
+>> endobj
+349 0 obj <<
+/D [324 0 R /XYZ 56.6929 226.4728 null]
+>> endobj
+350 0 obj <<
+/D [324 0 R /XYZ 56.6929 215.5139 null]
+>> endobj
+351 0 obj <<
+/D [324 0 R /XYZ 56.6929 204.555 null]
+>> endobj
+352 0 obj <<
+/D [324 0 R /XYZ 56.6929 193.5961 null]
+>> endobj
+353 0 obj <<
+/D [324 0 R /XYZ 56.6929 182.6372 null]
+>> endobj
+354 0 obj <<
+/D [324 0 R /XYZ 56.6929 171.6783 null]
+>> endobj
+355 0 obj <<
+/D [324 0 R /XYZ 56.6929 160.7194 null]
+>> endobj
+356 0 obj <<
+/D [324 0 R /XYZ 56.6929 149.7605 null]
+>> endobj
+357 0 obj <<
+/D [324 0 R /XYZ 56.6929 138.8016 null]
+>> endobj
+323 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R /F52 107 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+360 0 obj <<
+/Length 4405      
+/Filter /FlateDecode
+>>
+stream
+xÚí][ã¶~Ÿ_aìK=E¬ˆ¤¨KšIÓ6m
+¤;@6‹ÀkË3FlË‘íÌnƒþ÷^EŠ"©õÎtƒT6#KGçû/‡‘h–ÂhFó$¯p5+MŠ‘Ùj“ÎîáÙ77HÊ,”ДúÓÝͧ¥é¬Jªç³»Í,ÇI^¤tV¦EB*\ÌîÖ¯æ_Ý.0Mç/·›³¸¼»ÍèürnÚírwûúî[Ђf%hÉ	Ó’ •³BIE)æZ
+xµ(矊?ˆ°÷nþr§)*†E…BqÉþtóêu:[ƒ9ßÞ¤IV•hö?Ògšío(‚K’cugwóòæ»N£zŠ³$KK:œ0Jh‘JópòY• ”]òáh(hÅÓO¡Ä˜å$)úÆ–˜1š™ÚL)ƒì«bˆ›[œÎ›¶^®nQ:.2
+nL
+^[@â é"îá—«v{”~>¶Í-¢óŸ·ëú$î,ÅŸUs8·ÍNü8ÛËê|iëOÄï
+G~¿ÎøÛëvy®åƒøËääÕ®Þ׉Ûl$š[¶íòÝmNç	3’g
+ _Nûï Eh9??lOâªf¬ß.÷ÇãDJ:¬Å“Çín'®Ú‹~M>;¶õ-fÖ6©ç‘%_ӮůUs9œ·‡{CÜIÅþW·R„[Ç®¾OS¬ä¶w©þrã$»óCs9‹KæÅŸ5 KÈø¸Û®¶ç|q·=uÒ…NØF:R¨”>%·Zù95—vU™U³–wÁ™â–L]Ò·nˆ…°L¼ÃLON,?Ù0LO[«÷Gn,Ü	túìv‘•9d:9¿=3ßÑj~n`w¤1‡µ¡‹ß·lGÜöeË`ªl~º!µê50)22ÿjsæªèü]s"2­¹óÄ#‘=à‘HB¸™áG J–QYŽŽA¦8p·–×µTv~Xžµ¶VÞÔüTŠÀ%8_$	<ï’„V%Ož% J~O¼Ì’e0°DRïbHYê2ÌËñr{àygHËt9ŸÝ– ìÏ–èªiÛútlk­F:–=V@Ò“´˜ÿë¶LçµÒ¹³=HRš_Nò¯L¦è-wÐúž›Ø/ÇZ²ñÚ.+œ–gÚ{YvÔ«TÖ(V;Õuš¡Yjžg¢Õ ¬zf¾a
+´-y‚)g8©Ê²œµõlc4<òaêirH‚1U¯:úö+¬fby>DS¼0¬
+^/Ùö¤Š
+bree$Ÿ™/¼—nmÉ výôjýOÀÝ›¼©IgíýL\üs(4È3Èxé"«
+‹˜(3#-ųç»cÝÏE	yg3S]ŸMHQUQj%Ih…IŒšËljûútZÞ×›íÎaˆ2œ
+2\(¡6ÊJ?Ò^ºüòo©$(II–MÙý£gwÁ쮤¢ÙÝtì‡f÷ 5ÝMj¼…Ìì')B8Hp¡¥"؈°~•©-’Ýqš¤¥Svòì.›è…R;¥ð§p½MT°š"…®)!J ¦PR¬D|ŸÒ´_&r(b.g¦º@m Ä#ðB¬ï¯
+†@EÄUÕB4)”Çj9‹âÙ¡†Q‚)¢Aj-u´I· 9Î/FUf äÈ€g¡crrx”L(b½‰!W(A#2$ªò„²q®±–+ù(>—ë1d˜Ò¤ÈJú¹ç`<.³I-g‘Ü8Ôr°%-IØ/Z*
+Úצs%¼™Îñµ£Ðƒ†0SÖ_S-ÿtµ<T†Â47ª8oaºÂõ°£ÃøHÎñØwl•±Aâžcûä”P³ª’‚`ÒŸ“Ê*‡¡nû”“>,'i‚Ê<š‘¸· z^˜žð;U	1§>®¼í¹åÖpÍ™PM_·éavZÎâ÷ÂۦыQÑ-}„ŠƒÁ¨,\*§”]GE¾¥ÒÇà^óF×PÑÑG„ŠŠ>"ý9ô>ùǨ“3!†lf_²¸à°Ü»+fJ€1\h©¸,è`hd£Žbø}½ÃQGŠ’*«ÂÅz¡¥" ®6_,M´k¶–1pô2§óšMõ9d«c¶+©²ë%ønš&$/óц+ù¼+FfvMxQ4b»’Š¹<žÝIš%(/²±ækùWï`׏@4L³‚„ÍÖRQо6•Ýÿà
+ŠŠ"ŠjDy¾A3‰a³’b.óŽ*Òœ4yëù¼Õ¥°ÄK	…}E¡ƒñä¬iø7?¥D3­=ôÚÂÅFI‰¨e«úË«à­㙩ðʨ¼C’Óã&9¾⧸ƒ•jÚ3Äp¡¥"à*JÒÒFw‚4”g	®RÚ
+÷—Ô;1
+B.·)¸ý%¨!s¨×íŽR‘ïF©Tb£E¥9Ôžãk¨Èqä.•ö2Eâï¡]A¤ë·…©È~›ID.›²ûMНÅU~»8"oô~‚ä»ÞEÿ±qèã2)Ù:Ð+RR¿#ã`:(ø*ŸªWcDú>Ÿê®Ùÿħj*"Æ^ÉÙôùJ¸¾%Nò¬¸.-Õ»1:Æ°W¡aIqQ^GE¾¥ÒÇð8¶ë¾?£$ãbVë]—1ÔœÐh_õw>	[‘)~›"äß|„ŒQ’e4´è
+ŠŠ­ãÓ“†Ök¯»Ù† Ån¶Á$ÉeFÑ
+”š¤4%AŽ-Cw´1ôW¯ÅìñçþQl|Ì(v˜†šà·hl¶oûK›áM5ä°`bh©WÛ`5ۍ©ŽKct5¯FWíDÈÓ"˜*l·–Š ¹žÙNg‰°zy>Ú÷Z>†.䪁0ØS$e–”9Í#¶+©ºëÿGÛÊæGá…©æŸÚÖ)…§þ°è%ƒ®
+eUo(zÑB¼9_’ùVÿ˜
+—rür’09¹œÄ&çÄ)MBeœ×˜Õ¡reJ„˜”+mjÛƒw)ɤ™\§A¢ÜÔzŽ7o°W‚-$ÅAŽ-CWÃoºwaÿh9­¦…]O^M¤Ð?Ï)Žf«¼H2ŠYŽ7\1°b[Ši©ÈŠmÙɱüû¡œ0î¬Y½KªBÔŒÅS1о6ú¹wñ”
+:b¹v^-˜²àÛú¾î>·ô­Ò	Úß­Ò	pµG2þ¹:EO¾Ž3+“œùä=J“ðE´4)1>ñ'¾Vïçn5fªt‹”’Š!;Ú†çÕ(¼‚Ò¼ê7\ÉGá¹\aùñNª…ÖÓgTGCýÄ[Ž(ô¦+4•£_C92|*GJŒ.Ïn|­'ž-ïú§§#ÀŽ6O1R¥Í
+Ïv%9LÁÑ=<=­Kò€ÝQ*ºTG¨¨RmRa«
+Åæ&bkhî#«ƒ~ÏŸÈ(Ÿ?ø=–¢¯°¡­Ã68ž9*="z
+=š!ã`ú¶‹ByÚˆ6‚ ®¶p-™eÐœ¦¨~
+•dçŠP)¥x¾n—‡Ó¦i÷þ†×po Ý
+"÷u
+בjÃB#=7Æïk® uÁw-_·yôx=‡HÆþ!ýòþ|ºê%ÈGÍÕ˜|Ä~8ÎêýÜꚴѯ†¹8ÝZ¡Ê•Ýr—"³ýӁ‹"›«þ
+ÆPWÆP”Ôà E“’àÜvkŸšŠ ªêâ¾…›6¢Ç)Áb¤g­ÿKrù!VÐlýµVÚÑåýbJÉãL7‚Þá¡k îÂí0¨£-ú	I†!±§ªã¹>J0“Ø¿¼ZK?KÈ4‹¤,žow´ô6FSû~v¬õd åKèfÏ3’²	ƒÈV "œÒ*²¨[–ž­@MmÞ­@#}U|sÌÍØÝ?ÿ\¯¶§ms;}®Ôæ›oäzûåZ^]NrÍ=d!d¨EꚌ2Ïò‰ž!h
+Ù¦’r‡ÐÝöG¶Û TÎö™üÌ—íH–'$ÍŠiS¾iÊùFÜ“­#žr&:ˆ„DöÒR]¶µv’Ñ’©Ì¡¦#¯0¤£Ë¨¸Êõﯡ°0¼£•6íaà+=´»›¨#ë‰ê¾å±½[. gœM{·|üN…éŠ@ÖVRü»›Ëð´¬Z*ay×É[J*‚Üå-úïtÄ QÞÑËàïÛº>+õIUØtýáU[}xeaö0ÔSÏúqß\ÅXôu©A¦!ÓGcE¨8ÜM³ö½?›k¾ŒÑ#ËaþR®——=U4&î)TW$¨~7FÈÁvR;J³u·ïDTí;ÑÏÖþ$ ‚ÚiÏóõ Í$DSJj°©[	Ó]þH®k{‚ØŽV†]ïNµo„Ɇï÷·Ô¸RT-C´@ýq4f¤å”??~c¸"—”Ô¨8Æôn Ž	"wqŒ	ˆc,Ð1qLÞÑ;.Ž	šÞÅ1alǘØá8ƶ~daÑ׉cLÇ„©8ñ8æ½Ù|XäßÅ1&ÿ%;|ãÐ4ïgÊW$i·›T„’ƒ1ɨo“ƒ»ûÒ9Ú׍d04,Å´ù#…ýqŒ
+„³Ïµ! ¿Áðn}_ÐÂsh˜N¯œ}¹ž—rMÿsQçÌ°¡å4ã‡HÁÍÓV!Ä®­3…˜?ÿ°áà.+:ÿúÍ›ýq«Dø1 at L†ŸÕÃîØ ú9?‡‡=çð°[[ùW¸#y½àµ+¿/û[/8t6ÿúay¸ÇÛ¤òH Cjè䙟Ù	AËv»|³“Û›¶ÙË!îöRÛ‡cmØ ørw’·Å)UbþrÒãµ>•ë¾]î{ÇkÉ“ƒØµ²ƒœ¥êÛ‰ïÀ5ŒqBQ†#YÀ
+Ìvh11ÛQyf;‚˜j¶#ÙWÅO0«ºÔ‡3;–Ž3·=³CǶ¢¹3	"Ϻ[‹“ÀøqC»æ؝L&Ï÷bó$öQeÆéxKqÀ»„ò'.X £Žë^F˜¤b”ýÚ²3ÕÖ—Uוּ“iÓ6©£ØÄlƒg£ñc·p‰æ›f·§V‰l·ì27Öõž+[ž9¸³tIe·ØaZ+Nà³Û)°:NŠÉë£¸âÉRªã›àB°†,ˆ³;=±“¿nëc[ŸÀheçÆ7ïÎòJ/ÇéBå£è˜G¼‰ÃëêãïØAP'³}¢Êáùa0Ñá×~{XŠÓà¸äC}èaI~ÜE•øçlÊÁÿ®ÛfÐk«ÛÚ$Õ/úÞù1”A*4͏Móc£>ÉD„°½Vªp$¤¥b§ø˜ê>ôŸ05uŠE´º
+ZbØ-ê	c;º‚_!Ö@MŸOxÿÔ&Ðøæ$ì{ª¥<g;ˆ9j:3µy–Ò¦Zvha*©jÇQKáu-e©¥¦ÞN^-SÔrdzw`Ð+ÝÁ¨£Íû9‹?é˜n¼1Â@7ZêÕCãÙ&2l·Ü2‚©¾HæF½¯ãX«õ>bHxU½Öü	²b·Ø<ÌNËYüö¾½ƒÑ»(F ûºF.JA)įš–«~ü…LW %å+æj#˳WV½zº'ÌMÊU6¹½wÖSPÓÔD¨)9‹Úð‰]àg¶GadG[økQ4ðѵn™ÂðŽÞð‰j6$h{7gwµù½SïHóµ|”A_ï`4 ·ä
+›­7ø€:Ú¢S$%”V„§*ŸoŠÄHa(¯„‚S$Ÿa˜Žl~®îÙ"c#àU1<¿ÕY)FÚ~ºyõ:­AæÛÖ¢@ÀúȧV1‹¹ö7ÝН¸³»yy󝛋N£Bû/áÎþendstream
+endobj
+359 0 obj <<
+/Type /Page
+/Contents 360 0 R
+/Resources 358 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 281 0 R
+>> endobj
+361 0 obj <<
+/D [359 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+50 0 obj <<
+/D [359 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+362 0 obj <<
+/D [359 0 R /XYZ 56.6929 738.4887 null]
+>> endobj
+363 0 obj <<
+/D [359 0 R /XYZ 56.6929 651.4927 null]
+>> endobj
+364 0 obj <<
+/D [359 0 R /XYZ 56.6929 652.9522 null]
+>> endobj
+365 0 obj <<
+/D [359 0 R /XYZ 56.6929 641.9933 null]
+>> endobj
+366 0 obj <<
+/D [359 0 R /XYZ 56.6929 631.0344 null]
+>> endobj
+367 0 obj <<
+/D [359 0 R /XYZ 56.6929 620.0755 null]
+>> endobj
+368 0 obj <<
+/D [359 0 R /XYZ 56.6929 609.1166 null]
+>> endobj
+369 0 obj <<
+/D [359 0 R /XYZ 56.6929 598.1577 null]
+>> endobj
+370 0 obj <<
+/D [359 0 R /XYZ 56.6929 587.1988 null]
+>> endobj
+371 0 obj <<
+/D [359 0 R /XYZ 56.6929 576.2399 null]
+>> endobj
+372 0 obj <<
+/D [359 0 R /XYZ 56.6929 565.281 null]
+>> endobj
+373 0 obj <<
+/D [359 0 R /XYZ 56.6929 554.3221 null]
+>> endobj
+374 0 obj <<
+/D [359 0 R /XYZ 56.6929 543.3632 null]
+>> endobj
+375 0 obj <<
+/D [359 0 R /XYZ 56.6929 532.4043 null]
+>> endobj
+376 0 obj <<
+/D [359 0 R /XYZ 56.6929 521.4454 null]
+>> endobj
+377 0 obj <<
+/D [359 0 R /XYZ 56.6929 510.4865 null]
+>> endobj
+378 0 obj <<
+/D [359 0 R /XYZ 56.6929 499.5276 null]
+>> endobj
+379 0 obj <<
+/D [359 0 R /XYZ 56.6929 488.5687 null]
+>> endobj
+380 0 obj <<
+/D [359 0 R /XYZ 56.6929 477.6098 null]
+>> endobj
+381 0 obj <<
+/D [359 0 R /XYZ 56.6929 466.6508 null]
+>> endobj
+382 0 obj <<
+/D [359 0 R /XYZ 56.6929 455.6919 null]
+>> endobj
+383 0 obj <<
+/D [359 0 R /XYZ 56.6929 444.733 null]
+>> endobj
+384 0 obj <<
+/D [359 0 R /XYZ 56.6929 433.7741 null]
+>> endobj
+54 0 obj <<
+/D [359 0 R /XYZ 56.6929 396.929 null]
+>> endobj
+385 0 obj <<
+/D [359 0 R /XYZ 56.6929 369.589 null]
+>> endobj
+386 0 obj <<
+/D [359 0 R /XYZ 56.6929 348.133 null]
+>> endobj
+387 0 obj <<
+/D [359 0 R /XYZ 56.6929 349.5925 null]
+>> endobj
+388 0 obj <<
+/D [359 0 R /XYZ 56.6929 338.6336 null]
+>> endobj
+389 0 obj <<
+/D [359 0 R /XYZ 56.6929 327.6747 null]
+>> endobj
+390 0 obj <<
+/D [359 0 R /XYZ 56.6929 316.7158 null]
+>> endobj
+391 0 obj <<
+/D [359 0 R /XYZ 56.6929 305.7569 null]
+>> endobj
+58 0 obj <<
+/D [359 0 R /XYZ 56.6929 240.0692 null]
+>> endobj
+392 0 obj <<
+/D [359 0 R /XYZ 56.6929 211.8972 null]
+>> endobj
+393 0 obj <<
+/D [359 0 R /XYZ 56.6929 143.0474 null]
+>> endobj
+394 0 obj <<
+/D [359 0 R /XYZ 56.6929 144.5068 null]
+>> endobj
+395 0 obj <<
+/D [359 0 R /XYZ 56.6929 133.5479 null]
+>> endobj
+396 0 obj <<
+/D [359 0 R /XYZ 56.6929 122.589 null]
+>> endobj
+397 0 obj <<
+/D [359 0 R /XYZ 56.6929 111.6301 null]
+>> endobj
+398 0 obj <<
+/D [359 0 R /XYZ 56.6929 100.6712 null]
+>> endobj
+399 0 obj <<
+/D [359 0 R /XYZ 56.6929 89.7123 null]
+>> endobj
+358 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F52 107 0 R /F92 158 0 R /F91 149 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+403 0 obj <<
+/Length 5072      
+/Filter /FlateDecode
+>>
+stream
+xÚí]m“ã6rþ>¿BI®*Rba AßÙ•»JîÊN¥*w»u÷ÁÞJq4šõv¤4ãu*ÿ= ñB€ ÜÕØ»µ'o•Å‘šý< €îÐ É‹dÆ
+TT´šqÂPYl¶ÚÝàÙƒøí7DË,ÐÒ•úÝ››W¿gxV¡ª ÅìÍý¬ ¨(1›q\¢¬¢åìÍÝwóß.–”áùëçÍýI]¾Yäl~>šM½]¼}ó­ÐBf\h)2©%/KÆgKBPÅí´pqkÉç¯ÔÉä}7ÿñÆR4ËŠ ŒQ.	þíæ»·xv'Šóí
+FyÅÉìYüÍ+2ÛÝ0".³‚šo¶7¯oþØk4¿Ò嘳ñC2D)›-ÏXÑ		ÖRN~üÁÞâkàÙR(àe©´ãEç|F¤¯fÍzvo…õoî
+ï¥Û–hT»ýõƒõ¿ ÷èÆÏš‡™ºøÓX-ó
+ÌJÛB+ªÚV.Û–m&FJ¶­úx6§’"ž	XW[ÀÍ%0KŽ(quIÌï1ÃCPž!VÑl -²OÀ+±Ü‡_ÎûÓº¹ßl×C$§¨,	Xt†²²ª’•BrŽÃÉZ±rÇSÀŒ‰¢d˜Ãµb¥R 6]/$À-rD+̦VŒ•O1PrÅHÕ´§uÐ&E#B%®ÒJ%ÀCm±fI	G˜W“Û¥•O2è䦷L*-øK´LÊ…«ÊËdË´rÇMÀŒ‹¢Ç”¨#•j³-sY`<ÿßÀùe¢*sÑe3яò‚_½Ð{!ˆ'ÌÒnHÙú\\8U¸#%+øyµVl•Ë`fP±c-ž'™U*3R¥˜ubÔ'öo²3îë݈«0vàçz:Ô³H½éöpã¹w	0ƒ@ïho'LÜB¤Ý‹m¤’ \{ÄU2¾Î'Ûȧ(96±Ö{ ßñ xïRµNi†r½M-¾•O1ôŽF”rÄå0.¶‘J‚µ™ZÿuÔºÓ.|ÑÕº¿ðC´ÿŠtÁ€óˆÁƒ‘’UöÑê"…¹\këåG„â¹’LÎhµ×'ü±Çܘ!Zbtá-ŒPjüIâ¢óÌ\­: ¥QFXŠ¢•óHÖ5*Š’‘¤¶´RIС6	úÝÛ…Ð ¢üßÄ£}JÔóôJífwÜ®ÿgWë&á8`@¨MøuÜO+¿ãŠðC½þجï7?
+‚å‰`¥Rȁ6‰üUZ †y6,8b¶èÝ¥WxsO’ÂP·¤ðáЛ aKÈh¹ST̽)*JnÐîÛ»Ã9ˆÆ2\!–—Ù‡²÷&…£ÏFtaTÑ2ѬT
+4Ð&A¿ŽF……#B¯^ðg|îqFÁ39’ÁṕõáE¸¤|æê
+˜¡b «sàø­š¦û*6›ãCÇgl´x‚D U’X¯ÑÀ
+,º•JÀ†Ú¢³5&¸”2Ñ}à–`è5Ñ6Ô+z’Š	çRT†’JYe¬äU–³2_•+¥´*>„˜½7A,ÄwñfA lýòB4Жœß(JŠ2ñ¤®vöêÉ>{O&"ÿ\pÄl…ºYh1\®Oë¨Oq^ºB “Ó+¹§ÀàŠà•ÂA^K+•€$D¦oÒ.ƒLˆ—×dŒ—o昊:£É¦T”(g´NUŒÄOZÌJFl*Í¢ð«u<£H!ººˆ-@Ô«x>bzÑ/­ý<ì§XXZ›ú#šÔñ_I,>íCºiåvBE†–Ôs4ÏÁ¦O€ O²H€›$|4N5ËeS‹o—×R†zÇ'K†«DÍ[©h m´¥.~Í0\f#Ÿ‚ôŽ»	.ZI”XÉ$¥&>à[8àÌ*$b£òê'^ÜO”ˆçŒ¤ý„g;UŒ³T·@ÛÔ« â⦒R¿jë©…¨®˜á°1˜
+ŽÝú±=H!Ð<:r3ÙH™S4ԝ)ýÝÏòù‡)z™Ìü%äÈøK:Ó†æ:U1Á_‹
+ãfŠ&vü2ì{Ó·Ì¥ÿToÏáÚYEá‚Ç/S€ª@¬ËÔNÀÈÁ͘b‚ª¼*áÎk¥ ¡6	úE|Æï¼ÑE¥~Ò%?ÔÛåÔèn3ÒöìB\z»¬“€´E³jÌêÌÔ`WsÌjŽÇ ŽåtÂ¥ÖBIȁ®ÑÇ¦tN-°MM zGC›Ü	—ئŠ¦@‡Útˆ/8ø¡1V^sE¾l"÷ËFj4›È‘Ýêš2ð±­[Ç6ÑTPä>šQMá‚ŽÄìäÑ´B;ÓH ¾–<rÀ&÷#Q¨ôŽ‡á­O> ;bœø ú‘h‚ÁPob$
+»‰Â ¶ÄHtb™û‘(èG¢`‰ÍH4hF¢. 6Éjæå7_©Ï”…¦Âöèy›#M£žÔ×vj`õܵ†CՁmi0›ãúˆŒ0¶å8¯à…… ÊåœâèŽBk$åÌ#§¼_ÜìvnZõyz\«‹öTïïêæNýuÞo~TWò$´¤EDhVj“î=U‡s£.êãq»YÕ§Ía¯¾Xî4ÊRßr2?È™¬“ýyw»Öª÷êóöÝi­å6ûüa¯/¾Ç˜nõµ(Œºxn6öÖÓcíÚúât0·„îf‘côvßl7?,ˆxF˦ý2Öô˜è³%ÁùÏ×ôœvóaíOï»bÅu¢ÿ£¯g±BÄ¡YEáPÇJÉž÷«Xf†«ëó>mó2b/Ñåcsò³~NÆ4³J&B¯¢A:!‚ñmäÙ{dS+ÀR‹GÈò2¿.-ÿüÃ	K Ìq"ûÉJÉjý§xÛÙìjƒÖ¶Ìgݬ«yè·ÂÉEæg}ôØü,Œè’˜¯b˜‰åµC;ÐÚ•·n£kj`‰…écwvíEŸŽCË$,`žèlF*–sg–†]uáÚµY?†AÍj®ºŒö01~ˆ€ík0öP«ÄÞGûPÚ‰ܬLÀ´´”ÇêWqO
+U‚ã?AÈÞº ££x“µ2±*¬|Š’ã>ƒçU܁ƒå¶™–	T“Þ7?’‰(N¦£O-´‘OÁ+¹Ì‡_Eןà2©¨Y8ò@ãs¦–ÙnÌIÀz»ö?Ÿ.´¦J šiªaד_G¦N¦^O¢$H˜I¿è4\ðÒKKpÑE=ò‚•WÿzM1ýû‰`¨èÇ8+Œ‘‚‡äŽ®‹‡ä /;$wyEV6"¨9Ñ
+jãtI³ðÓŒ<Ð9VõÌåÕà ±>Èp©=®·ÛCÜçBUáø\Xçtx¸_Ç]î´Úp\.Œè_!1‰"p‘å>\\‡uŸQ”7äyât8+EG×ÅFäe¢ËkdÊÎÎS^ά·œ 3k…]fut\x9/kVAZƬº¬nãf %€PŽËkèø	õa,×EY"­ÂJÁ}ØÑuqyÙ>ìò‚Ö.gÖ÷a™íÃ.³Ûhx-sŒŠü:øä‰t-'Y)Y¥,¶Ú›ó.C#ÿ¼
+ò²BE–gp¢A^09¦žØ7ûöTo·ƒ•úúö° lþ$ÿ§¿²YíªÙõJ|{Ø­”ÍŸ×Íp=¿¾3ZySïÛûC³só
+j~xÐ	ûSóN]
+1“€ËŒàù›Çµ¾§9ó
+֒揵<ÌE}qlM½{œ1Äæל€«Ÿžä§syžcY%& ¬è§]]—úi˜—óxµÝáåøÜLTSÓR³È¶`;Ú†È9crXË
+ Qìäh8ZïÞH€›IøtØüF¸Ô„©³æ¯aÊ'c*D£'†åVJ6€×c
+ÀÏ®¾Kƒg˜›ó¸µOñ9¼ ÖÏáÁÜìžOn´çX{Ðsíh_+4öÂÃœ`/`pk/\ð&˲<n/^ Rl:t‚ž‘óè­DœÛËW‰‘JÁJ¹*U!f5mjØ
+`)ðNn ßÐ’ÑèÉ‚p©EÅ•#W~]Ðûûq’"nÉ0MÌ{Y)ÙÅþtÞóïQ'éè‹g³Â¨.‰ú¥J ˜`Ìh±¥¬–qÛëј°Çfd3÷(=œ¶?ñŸîóè¡Wàà ¬B¢(×,×O¨3`1úʳ
+<@É
+É&ðßrÞcݶ£ËºÒ5:Ãnæl$׌Ð\Üè„JVe(Ó¶¥Ø–œŠˆ6%#c‡¯ÕL_,Ý×­ÜKÏ®ùY1—áèÙöý 7çe0êP×hK·Ëä"°HoÞ˜c›f¸Ø±ó(L„úõA;2Øùo ÙY1—ÝØ~ó~ŒË[JÎ6ÌL‰ùmyô	Ê0Ê
+¶â¥J 2†Êœûíó½ÿ±@8j9E9-ÈÕ<~tóèÔDÜ>¡ÉÒ­ß‹-$H±7‘.É„è¹F´%̤:ÅNÂðÖPºðIKù“6• ÁÞVºAcyy«q¬%LΚK—\Â^B­Æ1˜0°µ˜.°6™°˜%„ËëIðßb:5·˜Fh²Åtë÷b‹	Rì-¦K2a1z®Å„m	‹éN±˜0¼µ˜.|Òb¾GŤ-&H°·˜.AÐb^Þj‹	“³Ó%—°˜P«q,&l-¦l‚LÀbX’uµ˜Ûb:5ŸÛ´R²z¿Ù×ÑX¯f/\ „¹1[{ªOç6º!bçÚh8Ô6n*ÍZœ
+lÈ3k|	x“0¬”Mû¸¾‹žî“¬˜ô9åfY‚ŸÙAæWÌyµZ·íýy»}·IPõ86	Ä×rå zò¨-Ê刪ëÛ®+YŸ¿µÏ¸0Ó˜%¬½‘3Ã\]—f†Á¼Œ˜ÇkÛƶü¿ 1»3xÄ"ïMë½@ÏõA ²£­DØlÓý—¨£¥ÜC~ÍÍüø=Щ‰øÕ9í	‹ÿâ#T·~EyK6Å»Û×-Á­\„%‰lSŽ6ï%ÁÑä½D8†Ù/v ó,û³‚a–V.Â2xiUFê"€dwNpÅ»þ-ö9n.}›!B#çEÚÞFEôËõ;ÕÖa]¦è8®Ã³bòùbY ’gdæ*’ÑB)È@™Î9mvr/@Éç÷ݾ 1Œiց‹³„EÌšU‘7…õ¥w¤,•®
+{;/¬XWzô_9ŠEAP
+4P&Aÿ¼iÏõvÓnöê¨MââyAñüÐüð½è
+Ýægõ}ÝêOõñÐÔÇî¨Áæ1h@%–4CëÄ€¿¸»6ö
+´ßò,Ÿ¿…”ÛH3G9nÌq“ÇCÛnnÍÖsöãÃz¯²Â]…ÇÆÙ¶²¯÷+ý³"­$OÃã4ëQ-F4“ŠŽJx™]·†\ÏIáÅ\žVNà€• ®®K 0/#æñ·†@Üú£æ`TSä.£éå>â„Ó"ap{Ú•´†nt¦éjÄæz'è™\oÞ8;“?ÖIŸe˜ ´ïˆ1ÉÞS«Å&‘'à½þîpŠ&‘¿DØ¨7AÎD½¹ûMÓž¢ÙÞ`¥ôë0p¨m´RìûÞ'VJÿùüPoÔ>Ø8.7&.ϯi§ŸŽã"U)ÏtOœsl¥@ÇåêºÔqÁ¼Œ˜ÇkÄZ˜ù&ˆY?)cšuss”>bútV;Ð*±ãnÁL#€eî'%`àPÛ¸[0‡N,vHbÞ’èÁ÷ÑE{¸ÔvÑ>kM‚ëÚ.ÂO-µ]´OÁëE{þÍX±Í*T²ëM_…Jp3«P·Ñ–h·"€uÒ¿µûB“&0±N¬|¾“Ë“&‡f¹°À©†(ꍉ¡úç<—äøÙfŠ¼€ª 2ՁS§A!Ùâ—YNæ«z¯.NÝC–ÓùíZ}ó´QgR¬ïÔßg5Û!/ßu¯¾ÂÝÜO-ç<žº‰³|û„ÚìꇡªfÁ˜hZKÆsy…úUÖuwá½G£SÑ*”cÝhù~MW]tåùó¢ÀóÍOê›csøëzuÒ(ÿuhÖömDÔ3‰0ÁúâvmÏ8Û38F÷sV
+Å*$fWOê×fæê?ýáBwÃÒ¹#¬³@ow–ÞétüòÕ«ççnbuE~Úü„Í‚ðùCø~8yÒ>f>·àõpZæèµ
+¶¥	§–e‘hµŽ0ËgÅÔ,Íò v–/(Ó³œ{;Ã×µ“~¯Yï'=ç×nÔ±
+“æò~+Û4åóÕa/ßßòpnº&¾¹}§>ïÖªW·Ñп­ZÀÊÃeä¯=ÜvÊy-ÏŠ‘_uG¹È‹íaUËt…Bu²<Ÿ³W²ª¿‘cÓuŧÍᬉ8Ǿ´X):ê?/¶çÖH©Í^¾FuruŒf­^±#¯º#käÅ©q5wJVçS}»]kæ÷Ía§D¤!ñzg˜.qnŽ¢‘§Øp"MGÛ=ûlþ¨>aGˆÞ®»ÉRq¥Ž¸Bý…ž¥ÍçòÉÊg¥þjßµ§õN]Ëã¹µXf&5Å׫Ãîx>uoé´ÞçÇÍêQ}%L¢­õÝpN†¬IÿeÁ±á¨Œ¸¨·íA‰ïj}¾Îˆ±²oR4:«ÕŽñ1vLÏáÚöÙ]·BÃjí·™ðxYVŽ{"±q5ú·›ïÞâٝùöFž úËs÷æO*Dz»›Þï©o¶7¯oþzÅe¯Ñ ý?ýR$lendstream
+endobj
+402 0 obj <<
+/Type /Page
+/Contents 403 0 R
+/Resources 401 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 281 0 R
+/Annots [ 444 0 R ]
+>> endobj
+444 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [168.8613 156.374 268.5368 167.2779]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.graphviz.org)>>
+>> endobj
+404 0 obj <<
+/D [402 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+405 0 obj <<
+/D [402 0 R /XYZ 56.6929 760.0646 null]
+>> endobj
+406 0 obj <<
+/D [402 0 R /XYZ 56.6929 749.1057 null]
+>> endobj
+407 0 obj <<
+/D [402 0 R /XYZ 56.6929 738.1468 null]
+>> endobj
+408 0 obj <<
+/D [402 0 R /XYZ 56.6929 727.1879 null]
+>> endobj
+409 0 obj <<
+/D [402 0 R /XYZ 56.6929 716.229 null]
+>> endobj
+410 0 obj <<
+/D [402 0 R /XYZ 56.6929 705.2701 null]
+>> endobj
+411 0 obj <<
+/D [402 0 R /XYZ 56.6929 694.3112 null]
+>> endobj
+412 0 obj <<
+/D [402 0 R /XYZ 56.6929 683.3523 null]
+>> endobj
+413 0 obj <<
+/D [402 0 R /XYZ 56.6929 672.3934 null]
+>> endobj
+414 0 obj <<
+/D [402 0 R /XYZ 56.6929 661.4345 null]
+>> endobj
+415 0 obj <<
+/D [402 0 R /XYZ 56.6929 650.4756 null]
+>> endobj
+416 0 obj <<
+/D [402 0 R /XYZ 56.6929 639.5167 null]
+>> endobj
+417 0 obj <<
+/D [402 0 R /XYZ 56.6929 577.5386 null]
+>> endobj
+418 0 obj <<
+/D [402 0 R /XYZ 56.6929 578.9981 null]
+>> endobj
+419 0 obj <<
+/D [402 0 R /XYZ 56.6929 568.0392 null]
+>> endobj
+420 0 obj <<
+/D [402 0 R /XYZ 56.6929 557.0803 null]
+>> endobj
+421 0 obj <<
+/D [402 0 R /XYZ 56.6929 546.1214 null]
+>> endobj
+422 0 obj <<
+/D [402 0 R /XYZ 56.6929 535.1625 null]
+>> endobj
+423 0 obj <<
+/D [402 0 R /XYZ 56.6929 524.2036 null]
+>> endobj
+424 0 obj <<
+/D [402 0 R /XYZ 56.6929 513.2447 null]
+>> endobj
+425 0 obj <<
+/D [402 0 R /XYZ 56.6929 502.2858 null]
+>> endobj
+426 0 obj <<
+/D [402 0 R /XYZ 56.6929 457.679 null]
+>> endobj
+427 0 obj <<
+/D [402 0 R /XYZ 56.6929 459.1385 null]
+>> endobj
+428 0 obj <<
+/D [402 0 R /XYZ 56.6929 448.1796 null]
+>> endobj
+429 0 obj <<
+/D [402 0 R /XYZ 56.6929 437.2207 null]
+>> endobj
+430 0 obj <<
+/D [402 0 R /XYZ 56.6929 426.2617 null]
+>> endobj
+431 0 obj <<
+/D [402 0 R /XYZ 56.6929 415.3028 null]
+>> endobj
+432 0 obj <<
+/D [402 0 R /XYZ 56.6929 404.3439 null]
+>> endobj
+433 0 obj <<
+/D [402 0 R /XYZ 56.6929 393.385 null]
+>> endobj
+434 0 obj <<
+/D [402 0 R /XYZ 56.6929 382.4261 null]
+>> endobj
+435 0 obj <<
+/D [402 0 R /XYZ 56.6929 371.4672 null]
+>> endobj
+436 0 obj <<
+/D [402 0 R /XYZ 56.6929 360.5083 null]
+>> endobj
+437 0 obj <<
+/D [402 0 R /XYZ 56.6929 349.5494 null]
+>> endobj
+438 0 obj <<
+/D [402 0 R /XYZ 56.6929 338.5905 null]
+>> endobj
+62 0 obj <<
+/D [402 0 R /XYZ 56.6929 301.1713 null]
+>> endobj
+439 0 obj <<
+/D [402 0 R /XYZ 56.6929 265.568 null]
+>> endobj
+66 0 obj <<
+/D [402 0 R /XYZ 56.6929 265.568 null]
+>> endobj
+440 0 obj <<
+/D [402 0 R /XYZ 56.6929 238.7753 null]
+>> endobj
+441 0 obj <<
+/D [402 0 R /XYZ 56.6929 218.0156 null]
+>> endobj
+442 0 obj <<
+/D [402 0 R /XYZ 56.6929 219.475 null]
+>> endobj
+443 0 obj <<
+/D [402 0 R /XYZ 56.6929 208.5161 null]
+>> endobj
+70 0 obj <<
+/D [402 0 R /XYZ 56.6929 143.6746 null]
+>> endobj
+445 0 obj <<
+/D [402 0 R /XYZ 56.6929 115.8506 null]
+>> endobj
+401 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R /F52 107 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+448 0 obj <<
+/Length 3528      
+/Filter /FlateDecode
+>>
+stream
+xÚ­Ù’ã¶ñ}¾Bo‘ªVàéJ%å8vj8UÉŽs”írQ$5b–"e3«¿O7º^:fÏ<h4F_hP¬\ø+?p‚XÆ«HøNµJîêÆþô gk¶c¬?<=<~㻫؉¬žö«@:Aèú«È
+Ëpõ”ý°þr³•¾»þðZì;j>m<ÝwuS$å槧oŠXE@%PHÅCX-Zm…pbß—šJSÃhýH?Bἇ¯Ÿ,‹†Ã0Žòe„þòðÃOî*ƒí|ûà:^‰Õ+t\Gz±X|MH)><üm hF¥çxnä_ŒPN,£`µ‘ˆa„5ÇÒñ|¥VJ9ÂrÉ¢ŠabQıi'ŠÃÀ@¦,º«­Š7"æV¿ V
+_Ûz¥a–<¾?ŠÕk ·(nyá‡ÒuüHxÃIËÑ	ª*鄾§ô!ýsã¹ë¤©Šêù¹ºÓ}:íf4ÖùF¹ëOÉñTæÖf ÊÓ¼m“f³þº(Ï=ÖMN­—ô×ÉsÏÓºCRÑÀ©Ñ4_Šº_®Ñn€Ú; Gáz—§Ißše;Fnò_ú¢É¹—¤Èµ»šP›üXw¹Ánë¾I‰®ƒŸoõß‚©{RÞöP÷eFí¼j{Ü
+¶ýŽZçÐSÜ”ž×ïŽc$ôóŸzG¾E™3¦÷\Â(êÛ-àmIŠ=ûÑõݺ™#œíkû{À°AÏ[§õñ˜TNiê̍Ï(M°iWýÿš=èá˜æÒã³·ã g‚Õ0r×x8®·ÎðÀ\µ®êŽ UžgÒg	cû3Á@Ö €3
+h—õ!mŠSG£i1ÙŽÉ6(OÔü›ÀB‡¼áQÖg³õB±~_µ]žd¨z"\¿æ„tìÛî#–@Ò%eýÌõ#N[€
+NԍöÏè°ªò#¶3	J«á±ÞŵE[J;~)²œ±²¼KŠ’;õž~I© QÖ@¥ÀÝX«,´’Ó©,h¨%ʯEYÒ؎炰ޡƹ0Öf„³|¿à=ú’)¶yׁR3#M¾Ï›†”œípÁWyÉöŽIz(*<å†V5¤Š
+ƒ`™FðÕ0½ôõÂSPB]ã¨M'M[Æ?pÿû¯𴁽çMrª›ŽFÒNèûè94‡ï÷„{Öö«5¼†VáÑúš*tgT=4d 	¿(mO¤Øó\’ö›‡Ó‡Ž>}øMx¬Ø£Ãyä‡òѾ}רƒo¸Ç95ýô0/¨kŒlܪžX~3tbũÓÖtð@ZÓÉ‘nSGÇ	øÕJ©Í‹4¼¢fÞ¥8µu>KB?6›ÐO“— ¼¸=âQ\¹k’âùÐíëæUëgÃóÿõÝ_¨#GÜ6¶t]Y¢®ù±Ü°‘{##‡vºI-”4þ¢Ê\8ž}]–52÷ª- at I”u“çÔDKM£±|žäùÜÙ¾;Ñ0úí×C¡—‚nQeh¨:º‰x} º4FҁÆ+ø¦žÄ	UG"íxdSµh—9OÓn0ÉEÉÁF¨Mº‚!]™
+1~AdIžA]/ìzĸ”јq)GŒãØÌýHf‡´÷€vÕÐÎK2“°†ŒX#&™4ʇôù×ÍÇRƒ²×3O¸Œ§\FFãùäÄ`¬"°÷Ë.¼"Ëرµìë^óVYkˍ2ÿþTÈε$Ù÷Ç—^x;×c™râЏ'¡×¢!ßž³ÈÌ#‰é³¸½¨Aº·è‚˜Ž÷MÑÙô‡3£#hiÕ,c )9Kh ³ï’Q<¥ζ0*Â!B¡ÕtMõ©9K»¤$Œ6^©ÍËë©mmôM{Gh™»ª/›ìÊœÐ;F·þÚdƒØ"Ãà2)2šT÷†s>2ˆm{ÊÓ'¦#ELÎíEŸû%Ú¸ï]%  T™Ý!{6huÉG$œ¹ Ÿü#µ´“ƒ¡„ºßrHñ!&:ÑFbZXØ*0g?BÄig„¿³G<V7ôލ@3|×s$¤¤o4üÑ^€þ<螝±OYæšKÊ(¯Cם¾x||}}Ý@^⤅ÓC‘&ϵ“gýãVËx«bP¶XÌ.µ-êÁãFrÈêôñ%k?>Bn. 3O~:l %­ ^>¢äAïyï˜6ºc9‚Œ"GºR­¼X:2¤[ÜÂè,ÖvŒ¶Ü¸„»mˆ!ï`yC)&¸z—RyŽëºÂhT¤1¿oû¤,µ·4‰T¿Á-v§´HÿÝáÜ©Û±…ŠéÊ4H.ÖôÍg¸Ùákpî<á…Á„9è;m²’¢«&BÒºJ›¼3=TT3Ÿ“YÄõñ¢7ß÷•v*IYtgÎ~Ê®ܱ[ͳ™MFC¤³¨ò¼&Õ
+1MÑyIÇs‡´!'¸<	NTDw
+ÄF„Ñ„ëW1ƒ„Œ_6Ñ(t‚0ð§ëÏã¼qM7rühRX¾X›_Ž”pÔ;ÌçRNRçŠ{}'†¹8C§¢_­F˜§‰wzÁ—tD×^PãŽÔòîPg†š~G:È|Ù\Ø ¹C¡	Ð}7¥H®Á@¤<Aé­œ]eŽòF=%݁ÀúŽßSV*×IKÐ}]ÿ ~rvIcŠāÆ11.¨JŽ9&xß“a8=äéG…Œˆo¶{ÃlñDó©h»óèÈ[ÿµ®˜0eÉ|ž˜\q„ýâ5ОçÔµøÖµ\Òˆ‘kѽ­ÁÓ7ù!Ö íMJs=6Q›¯Í²ù+æ{5{SAà„žo·ÛñŒëFd±t0±”Ëv,$?güÌì˜qÞÊ‚9‘Or2Hæf> V^a821¬~Õ&ÿÃkÅ$4¤Ø’h2e÷£‰€”<ѪbR¥ÒŠdž^ îx_›’¢Ô'mäÌÝ@Wé.ÞîýãHˆ&_8n!”ãù &8‘ïÉ»`&lÇ3–â_ÐÕÐ4Éùæñ‡®#‚;s0X÷xXPC&Þ-õá…ò3d`fÜe`NøêÃ?nÉ@JÓqÜ–ÅºÃÂ’ÚEH%8Œ?CìŒ{,(#ߟtM„ýÝ]ÅPÂsB¸àފźÃÓ’ÚE¡(;¡ë‰·ÅθËÀœ22ðwížÉEœnŠ#RŽ¾º#ƒu›59*[܇\PëP©·ËÅθÃÉ’2ròœcɁî›Â´®ÜÕà:/\uGQ,Ö=~ԐŸëaTD™„ÿat4ãF3Xã0Š’¸âEÙX¹s~æ^Ô`ÝaB¨Ø	”ëO¹0‘T,")Ý~àg¨ÂF¡ÐäÃá8†Ž
+ibÝæe®³„PŒjÐÙAz™QSWS,.WjÜ):e¬#†ÆU6è–…uØÕM8éX…Á4Œ¾×Õoz=”Þðzx&°ð ÆÒMN }_Ó-»}@ò	Ͼp ˜ëðÁ¢ æÞãê‚’IÚT¼dóa]ôÇiŒé4Ââ3#Fæøtþ+¥2öWñö4b<ãza±tC'Û?¯¤žE᜕E
+ÁX÷Ö_P»’BÄN¦úû73î20§Lel­ççöŠ¤‡O RÝ‚źÃÃ’Ú,>Lï"xá뫬N{ª?pÝ?Øèš>íú&Ï8ÔõeÒ|ýéÔ€Qu5ª@‘M
+L^¹û¤œøˉƒ@YåMRâµK¡5AÙ±™Ð‹ˆ¯5=ÔuË8yÁ7GáñP(ëb¿3EI¬¯!ü0­ª<´Žã]nú`­~Èq…~’C"çºo&\^0Bª«Xšë‡$¸)G‰CÄV,ˆ69H½j©Ãn›ú‰ðêŽ$vÙA2JÅsvR˜î™¸¦#<¼øóBúH,Kx…g¶øÓ#I<Z•¸$…éb­®§« ÔÚ¦C
+~CA"׎Ï:tÑH>ÐàJµê’0>
+O|Š„vkÖ02
+Š	ýŒe6¡xL:]ôPO	ÜS½Aîw]ÞTæñ*Ö®ž©cQóBÆ~èéÀ»KvºŒ =*DÆrAAéMØs%½	) ¶l(‰„y¤ˆtm“Ÿ("Š£Nj鰍ãnÄ¥-øåPˆhdcˆiŏp{vØ™žŒ"KèÊæ@Ê“6¨ªuÚ¾ü<„EÉLj#&ðHñ4QMx=Ø2ŽfƒÊRØ¥ëۨ„À&á-+<£¬k~šâOQWÄ†ä›üâzVÁXO$½éVÃCüÙX=ñݱžŒ‹IÖ_ϼq¿—\í\æn¾ò±n¼òY4zåó®½òÝ\Ô¾òÝYtAìÚ+ß#(Ö™º 3Eú?½ÿa˜Â/$8‡Rö?¡x~3¢â!¤Ï# ÂÞŽ¿#1¼¨X[NRë–¿ßè1´-‡ZoTêUö•p²VyÇ+Mª¹°Õ\ýK5ûPå4~º”vØðûPùÅ/BŽgþ˜¡ûÔqöPæÏTM—O„+HcG·>‡Üäí[«¤PË‹•ÅÒ×LzÑ	\ˆ2ISÐó©"—nè$®ñ†_ˆâ'›obm„|3ƒ„Œ½èÏ‘ßnoýýNŸ
+œýy_”¯×{©ÔÅwsw¥?¢Ë_ék×í@Ѭö_n•
+Ùendstream
+endobj
+447 0 obj <<
+/Type /Page
+/Contents 448 0 R
+/Resources 446 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 281 0 R
+/Annots [ 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R ]
+>> endobj
+400 0 obj <<
+/Type /XObject
+/Subtype /Form
+/FormType 1
+/PTEX.FileName (/autonfs/home/davidk/dblatex-0.3/latex/graphics/warning.pdf)
+/PTEX.PageNumber 1
+/PTEX.InfoDict 464 0 R 
+/Matrix [1.00000000 0.00000000 0.00000000 1.00000000 0.00000000 0.00000000]
+/BBox [0.00000000 0.00000000 160.00000000 183.00000000]
+/Resources <<
+/ProcSet [ /PDF ]
+/ExtGState <<
+/R7 465 0 R
+>>>>
+/Length 466 0 R
+/Filter /FlateDecode
+>>
+stream
+xœÝR;N1í}
+×ÆùÙÉ	¶f÷,ÅlÁRp}ìL2Ä@™‘_^òžm9oȐ}ÍØoðxV¼¾C¦‚0Îð|‚ûrf"ïÏp€¾îWÆþ~üòð+}™¦¦ª‰©rÀ<ãí`’
+)¡ÖB"SbTû=vÍ”R;‰Bk‡bí—§Ý^LÊÒp©K
+$‡ïÂVÆÅ5NõÏš»÷ù?yµÙ('YckဘEÖ}+>Ì"´MÕ«3¨\ý¶!Ñ4K)ö~ÜУÕVvfmî³ó5~é»[G#Å6ážy	GIî7À˜ÆŸïÁñŸ›²)endstream
+endobj
+464 0 obj
+<<
+/Producer (GPL Ghostscript SVN PRE-RELEASE 8.61)
+/CreationDate (D:20100125210321Z)
+/ModDate (D:20100125210321Z)
+>>
+endobj
+465 0 obj
+<<
+/Type /ExtGState
+/OPM 1
+>>
+endobj
+466 0 obj
+252
+endobj
+451 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [450.0885 501.0735 567.9254 511.9774]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html)>>
+>> endobj
+452 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [55.6967 489.1183 289.1986 500.0223]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html)>>
+>> endobj
+453 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [55.6967 423.3649 88.6727 433.9998]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html)>>
+>> endobj
+454 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [55.6967 363.5891 124.9163 374.493]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/AbstractMapper.html)>>
+>> endobj
+455 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [112.4627 333.7011 171.1622 344.6051]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.array_mapper)>>
+>> endobj
+456 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [174.151 333.7011 228.9948 344.6051]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.csv_mapper)>>
+>> endobj
+457 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [231.9836 333.7011 315.7191 344.6051]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.fixed_array_mapper)>>
+>> endobj
+458 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [318.7078 333.7011 384.3116 344.6051]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.regexp_mapper)>>
+>> endobj
+459 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [404.177 333.7011 483.1001 344.6051]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.single_file_mapper)>>
+>> endobj
+460 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [55.6967 315.7684 137.9272 326.6723]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/file/AbstractFileMapper.html)>>
+>> endobj
+461 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [112.4627 291.858 175.8841 302.762]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.simple_mapper)>>
+>> endobj
+462 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [178.8729 291.858 241.1885 302.762]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.filesys_mapper)>>
+>> endobj
+449 0 obj <<
+/D [447 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+74 0 obj <<
+/D [447 0 R /XYZ 56.6929 564.6668 null]
+>> endobj
+450 0 obj <<
+/D [447 0 R /XYZ 56.6929 535.9077 null]
+>> endobj
+78 0 obj <<
+/D [447 0 R /XYZ 56.6929 201.2083 null]
+>> endobj
+463 0 obj <<
+/D [447 0 R /XYZ 56.6929 172.8229 null]
+>> endobj
+446 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F52 107 0 R /F92 158 0 R >>
+/XObject << /Im1 400 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+469 0 obj <<
+/Length 4851      
+/Filter /FlateDecode
+>>
+stream
+xÚí]moãF’þî_!äËÉÀ¨§›ïÜ7 wØÙ½`s˜=8²Á€–h›‰$:”4ŽqwÿýªÙ鷺š±gàÙ„ðÑd±ž§º›UÕ/d³…?¶H3’•Q¹(XJòŒÅ‹õî‚.îàÚ_.˜”Y)¡•-õ¯×oߥtQ’2‹²Åõí"‹H–ÓtQÐœÄe”/®7ß-¿¾\E)]^=6·Gqx}™¤ËÓ±íšj{ùýõ7 …-
+Ð’Å\K’G$gQ±X1FÊ4z5ŒÂÍy±|+~XÌï¼øóµ&©8æ%#q
+·ÅŸ.¾ûž.6`Ð7”$eÁð%QR²Åî"epg‘:³½¸ºø»Ñ¨®F	Ih‘zŠ&# ËBe£é%%a4eó_—]Ö¢T÷íi»Ç7ò\u³•GÇVüžêĽ<ØUu'Žå¹Ç®9ÊÃf/UYÕpµîšY]{×U;ñ϶ùñ’iFÇûæð»Q1Ç$§	[ä1ؑĬ/¨&^.üç/¼|¡è2±¸XD¤,ŠbÑÕ‹[«\åEz¾DYL¢(U·ŽôªW³±,;GSÜp^9]¬àö"Ï…nªØ0.W”®Aòš}Ã/Ò­-9«]_}¶þOÀÝ[¼TÐEw·ÿyÎuä1#IÎJýx”‘xèçñPRüñ8>=ÔÃö—Ðv¢da«’KIœ—eZ“´Œâ5!–¸Ôn›íˆ<Ö„1V ÜVZ* +åEò{ïóQ’J÷=·ó×lç¦"f.…|MI·r«V_ÚÈ1^JÊá5$U€|E©•’ÁáÊ„‡hæÀýaW–$h^3¥p ÖÕÈQwOn›îpü Ãèð‘. mˆ)n³ÂÑGºúçùOþ'š%üyH?_„¥/®*52Az O§´Í(s
+M?­hÖ”•1‰Y"|à;^a¢ÐB$<´\îN‡K¶<ŠÖ÷mÛ§I P‰Ÿ›ê %×Ûêp'Wâçë›Ã±«ÖÇoU"çÚNH«kïš-该Hš.	\/s“Àq¨®ÞÿË%+–’Û]ÛìïÄaŸ½ºÓ€Ö¦éê5$ÂOâßms8Ê{JyÈÔëf#ok÷¼±ð¢©1ëË£=q¶,îSAq?‹zëà\_BðìÄù»ú(Aà¬È"Ý[ãåm×î„ð¡ÝID%Ì ×RÛ?hJû“ßÆsG(¬7ðo™çQ2h¶[!|#uÝWÝF­ÛM½L–çUë²V÷Ʋè@É ºúºP…’“2†ÌŸJ¯©L–ûö2J—ü0b”§…á¥eœäl€H’PS±p×QoêPíåùJüð–wº¹\±åŽdó‚óí­øµ/PTí7âb³{ØÖ»z/ÀH`ûñ’¥Ëº«¶ߺqWïÛ
+¤å«Š«9\«c³~ã6Ñcª¹–ŸE“z#;ûî4€¡1Ô×õ}­ºR·íäÙM»>q‚õÆíPèÈÕ%ÔöGN¼aqò¶íbßZý”Ôu²¹Ôƒê=£¿ÖJè ~¥"QKò’*<Ñr{!%¾³Õ8Š–ïO}'µd„)ÉòI<Ap¤[Ü~Gæ1ÍÒå¡eW™®’h
+Ž ÐÖ­ßeG÷íÿÊÂO–‚‰Í–7+‘kQ·£ëÛ§ÞZ€]	ÄQ2PœEç“ĹÏöÌe™J¦Øù\6£1¨¢Ifã…âÍõ¡ZÿXݍòY•ðÙ
+Ï&´E0¡í“8$'s=‡ÜÑtr²¼$"yŽ³[)¡ îHÚkƒ¤›”%‹æ¦þÉ›ºôW+¥v.áWv&iGž±–êƒßî¡íŽ¾~¨­ð™½cå—䔘Cî‡êc5ò$,%EÎ2”ÛJK`ÇÚ8î(¼³ˆAŠ¥P¯ÑZ>?ÒËáOÇÆë@q«•
+ u·9)Ki9Ùf%Dêíç0º®z:xp³õè@ y¤
+9#4“Ù¯½º_³jñkJj‚_³«ö¥~
+%§ýšM÷k7Û¯¡°cm¿æ€Nñk8üHoЯ¡Vk¿†£uüÚD›_ õrøk·[è°6b\ÉæQèƒ&eŽ›®¥ècm¸oË(a,Igßöê¾Íª	Ä·)©	¾Í®Ú—ú6”œöm69Ü·!Ül߆Žµ|›:Å·áð#½A߆Z­}Ž:Ôðmm6¾-€>Ôëú¶Ãعå$ŽÊ@k© üXîÜø4G·æ.ÿ¯?|Äðd–YJjBø°¾8| ätø°ÉµÝÝ8zð…e,G©­´T UÊ.,ñ‡,ÔïIMð
+À÷r¹×5÷O£‘GKcZ,WR!葶ó–§p£Ó-WòAø^n`ùÇÍ8læ)¡)V+©ìHÛy«õØÀD«Í˜?ÒÛ¯‰sÁèÉ
+B‹2`¹–
+ at K¹$`yÅ$/1Õr-‚rƒ‚ÿúæðîÌjœ(c„EE°\I… GÚð|!Ê!äÅÍ^=šY5D3%5!šÙUûÒh†’ÓÑÌ&‡F3„šÍPTÍlX$š9 S¢Y ^E3>ÍPËM4áGÚÑl¢å&šàU4³áÑh†Zm¢;Òˆf­6Ñ‡éÍ0Ë­h†B›h†Zn¢Ù4Ë­h†ÃëhfÃ
+¹”É‹<
+€’
+1r™ËÀÔx_-Ÿ»h_ at P³j	jJjBP³«ö¥A
+%§ƒšM
+j5;¨¡¨&¨Ù°HPs@§µ ¼
+j6|0¨¡–› †C´‚ÚDËMPÀ« fãA
+µÚ5v¤-Ô&Zm‚?Ò;)¨a–[A
+…6A
+µÜµi–[A
+‡×A͆_ïG’„»ËÀ®¥B¸BnÐÌý¡Œ‚W›p½~ Óõ€„1!3!ˆ™J}iChé fh¡áËKÊ^ž	]	\Ü”°…« e€ƒ!±Ö,t )¬&YkB
+¬•FÃb©	Rà@S @M²Ô„'x sRhò[k&Ô„%ÄZ”¦Xk…$X$üþþéЬ«í»¶ÛUG1Úô°0lÝ¿2Øސ”pÇ’16¥yŠñ×ö“J1<ðk©þ…ÓͶYûB¿­0ü=ätðÇÉ)1‡œx?Ñ·Z䗐ó®$2‰Yb§åzî›GCšeFÒ¬,>Eš¥e8M)W¸4럏õ~3^ø—$ƒØ&~Åt'UwÂ!ˆÍÅ%1ÍÊs¥¥â(%uü7xäI’¹G3¾¦Ðt³4
+>»YN’4ânÆHR$ž%ùJLK!sÄú³¶ÊçºhÝ›ÃùéþœCp÷töã$r‰FÏ,÷àªwî½}+ÓëòMï* ¯úWü¾~ôö°>EèQ€œ’›Òht‡­Ó-¡uÇȁæoè{{Gƒš!©6¿?<ßG
+°éæ,¾S(HÁ¿¹uÎô yoÊÃÿ|èUÏá£W~øŒ0Î÷]3H£h?Š¼7HeˆÑ¿ ûó¸[D$KòòYdÔ½!2#ŒóMRtåEàiQRAС6ù´0¿:£t~çjNþùS#O6©ô•Ò,K©‘’òw¬å›ø¶¾P—Ë— èO§áäô§Óv7m»­«½71
+ñ›#èütþdóSs÷ª!je‰2\i©6— ó;¾ËUF)Ò3„pšÑ|~sáS?œ¢@	§áQ/õY¸•]ã:b©©0^É]}<u{ïä’S¹Ï²1sA8=-çð»­¶¯agõZpØ¡.|å“ùÜØ?u$ÊJè½õI¡UÄH„QR¼ºþÏ[]4#YQΫ¤çÔìןšÅe
+)-ñGKS3[ß3GÃMj†“Ó©™ÃÎÿº
+rœže	‰Jš9
+¹ÌåXËOéy_&ÅZ/“âØcm¿ A‹‹"Ü<rÿúù™UþôL	õÉ¿÷k»v¥z¿¶‹â©yFïܨ ò6`ðƒ»8²«Ž#BíÕB8¨‹Øñr˜˜ïQÀØDsµx»sMî=ÇxNò [Üd%€b騊¹Óè‡Ïcä1)X<¯ùä.£€+Iš]†y„­ª8ónå
+”Ò¥S‹œÊ}fX‹ â=½XÀáçùl–é?k2(€¬&ƒäñã®b¿:%WÀáu®`ÃW‡¿Á#ï]®¤BÈ#mÞÙµ”bh{péÎ`¬×3§'°‚-2œÄ™i¨ 9µXÏ!‡®G«Å,÷àªåîwß{R7=3±]šù ‘^¯ùj7_ϪpGÚÎOq•|)JžO6[ɇàGz9üŸ¿}ýßÞ}ý×ÑB›$'Íp_¹ÒRô±¶~̝S‚ÈEŠ4™“ö/ i·ªÉÚ•TŸÚ³T(vjvÄ.“Ó<ªòÅ$`)#E™ÆLIMIÀ,/OÀPz&³ù!ßÀbE
+.
+¥¸’2!è^Š2šx§±\H¿åzB+ /&´páðÿöïW×þ`n{{¬
+Sˆh“q6¯ø|s
+v#C£J
+Sˆ#Кçóg(ç9…ßÀœ+	eExp”TxNÁÒ÷ò9”œ™S°ÙáoféešŸ‚§
+“8K&m–»êÁß]G¨Ùtv¬Í?L ¦\ŸÌLiõz»¢j½f°R&ŒÄ	‰øBrRÌmØÞ÷Fð*QRAÌ¡6µò04¿C¡s–óš„/ ¯hUÒWTR)»^ýs<(äH—w–GÍ9 áÙqø‘ֳϑŠ
+˜½zb	Çh:ßåPd¢­VÀAÁMÀ±áëŸNÕöàŸgÂŒ¶¦—pd=¿ªfµÚiªéj
+U _ˆ
+êùœ/7î¨Ýf˜ÇÕÃìx…ë9µ‰V›éµ ¼š_³áýÊz5ÞÊFÑÇÚT¼À¦ö¢2'ŒÒyEÔë,ÙUá÷ÜZjÂÈ’S¹/YÂéé‘%‡Ÿg_MÚaü¬©½ ²šÚs½£+Q‘–°¹3ùúÙ‘]þìHK…FҝšGÒ¿|—C~TÒ•Ðogô=÷Íãì0nÆ×Yäö§íÖ»•BÍzê½Ï„¢d^±óùƐí"ö…i)t9‚ƒˆÄÍÕõÙªË*bÿ`´^]Mú	Ï¶C2}ÁæÈò²µÉò@J^Z~Vúf´Z¾BÒ4ð”. 4³(sJœ!ÍrÑÀÿCo£Nåîìð»¯ûMÁi$7«—Íþ¶ívâXlØ
+WÍíQÈÕû»f/OW7m¿¶-ª÷,¯÷ý6ÜpK¿z/Óo–Mcwko¾AºÞ¬.nZ%^IÌ›'©{ÓȍÂmDñ–w·R[wÃMk¹;Õ›¾7+w{n¹¥pÓîûýîK±S7ß©»í.Y±¼{Ûäî2]>íß~ÜlßîªK¶|xà{Å7p´¿{;†Ï»y¥bóð(YV›0"»ŽÃO×—Ú/µNï²ç×Õv+ïÞ¶û»CÓ­ÔáÀÞ"Þ«ë̦ä\óAî)¿mÌFè´¯¥ßùž.VF„•ç׺Ìûÿ?îåéšjGÅŠ„¤|xÛ\‰LrØvÏ.3·#ëÌq|½ÐÜapv0N
+ﹸèÇ̐`ˆÅP÷ُ'¨¾s–‡˜¨±Á 56èÙ=}¸å_û°;ÿz5¶õ^fü'6ÆÀ¿H‚6óí‘èP}ãY´ÿ´–šc
+ÀôöÑê!¦©¶Þ|à¦ëÏy°GÚίUKE§š®— †à‡zƒ®‹ÓœßðZ*@@ÊÅûã,&q’œ‚¯«åCð#½Þï
+Æ%„‰$Mv+©ðH[ð‹*Œ%çWDýzòm–GÐ÷(
+<ßf)Ÿ'OD©]÷)Zœ,yî	íVüóPuÕ®>ö	üÛ'Äq*ó98±‡«â¨ÏšãÄ\کĐËCî)Òcøç±é³D¹‘¢§CŸÖs€½øí3ø«5$³ŠH×ÞÈ¿cš²‡zÝö‰*è=ËÕ"Ý Ù£€TS&â}nÙs†£G™mþp:¨3]{¬‰V `ƒžˆuõ
+ϬOÍv#N¨¾	ž"î‘$ÀWÕþ¨îÜ@bñ•¼^‰ü¾> sYy¤lŒt±,dð¸âiø#O¬«Nžê«~ŸÚSwF»Ó+ŠáFÝ+‚‹ëj/™×ªÄù+:a=‰ã½ïîëí¶•×8“¶S|eõ{ý²$iÂÒ9ÏŸóüIy~ÉHÁ§aÑ%Ô'2O£Ù5û`){æÚ¡"&iÅ^B*qxíêẫ±0"ôL¦5¡ãÅ|ðž±y
+ëçjã«$!YžççÓh"…øÓOß}Oùæ‚r§`‹Ç¾ƒñNÂîÂx,qf{quñ÷q¬zÎú³ÿ•‰hendstream
+endobj
+468 0 obj <<
+/Type /Page
+/Contents 469 0 R
+/Resources 467 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 513 0 R
+>> endobj
+470 0 obj <<
+/D [468 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+471 0 obj <<
+/D [468 0 R /XYZ 56.6929 740.9713 null]
+>> endobj
+472 0 obj <<
+/D [468 0 R /XYZ 56.6929 742.4308 null]
+>> endobj
+473 0 obj <<
+/D [468 0 R /XYZ 56.6929 731.4719 null]
+>> endobj
+474 0 obj <<
+/D [468 0 R /XYZ 56.6929 613.4495 null]
+>> endobj
+475 0 obj <<
+/D [468 0 R /XYZ 56.6929 614.909 null]
+>> endobj
+476 0 obj <<
+/D [468 0 R /XYZ 56.6929 603.9501 null]
+>> endobj
+477 0 obj <<
+/D [468 0 R /XYZ 56.6929 592.9912 null]
+>> endobj
+478 0 obj <<
+/D [468 0 R /XYZ 56.6929 582.0323 null]
+>> endobj
+479 0 obj <<
+/D [468 0 R /XYZ 56.6929 571.0734 null]
+>> endobj
+480 0 obj <<
+/D [468 0 R /XYZ 56.6929 560.1145 null]
+>> endobj
+481 0 obj <<
+/D [468 0 R /XYZ 56.6929 549.1556 null]
+>> endobj
+482 0 obj <<
+/D [468 0 R /XYZ 56.6929 538.1967 null]
+>> endobj
+483 0 obj <<
+/D [468 0 R /XYZ 56.6929 527.2378 null]
+>> endobj
+484 0 obj <<
+/D [468 0 R /XYZ 56.6929 516.2789 null]
+>> endobj
+485 0 obj <<
+/D [468 0 R /XYZ 56.6929 505.32 null]
+>> endobj
+486 0 obj <<
+/D [468 0 R /XYZ 56.6929 494.3611 null]
+>> endobj
+487 0 obj <<
+/D [468 0 R /XYZ 56.6929 483.4021 null]
+>> endobj
+488 0 obj <<
+/D [468 0 R /XYZ 56.6929 472.4432 null]
+>> endobj
+489 0 obj <<
+/D [468 0 R /XYZ 56.6929 461.4843 null]
+>> endobj
+490 0 obj <<
+/D [468 0 R /XYZ 56.6929 450.5254 null]
+>> endobj
+491 0 obj <<
+/D [468 0 R /XYZ 56.6929 439.5665 null]
+>> endobj
+492 0 obj <<
+/D [468 0 R /XYZ 56.6929 428.6076 null]
+>> endobj
+493 0 obj <<
+/D [468 0 R /XYZ 56.6929 417.6487 null]
+>> endobj
+494 0 obj <<
+/D [468 0 R /XYZ 56.6929 406.6898 null]
+>> endobj
+495 0 obj <<
+/D [468 0 R /XYZ 56.6929 395.7309 null]
+>> endobj
+496 0 obj <<
+/D [468 0 R /XYZ 56.6929 384.772 null]
+>> endobj
+497 0 obj <<
+/D [468 0 R /XYZ 56.6929 373.8131 null]
+>> endobj
+498 0 obj <<
+/D [468 0 R /XYZ 56.6929 362.8542 null]
+>> endobj
+499 0 obj <<
+/D [468 0 R /XYZ 56.6929 351.8953 null]
+>> endobj
+500 0 obj <<
+/D [468 0 R /XYZ 56.6929 340.9364 null]
+>> endobj
+501 0 obj <<
+/D [468 0 R /XYZ 56.6929 329.9775 null]
+>> endobj
+502 0 obj <<
+/D [468 0 R /XYZ 56.6929 319.0186 null]
+>> endobj
+503 0 obj <<
+/D [468 0 R /XYZ 56.6929 308.0597 null]
+>> endobj
+504 0 obj <<
+/D [468 0 R /XYZ 56.6929 297.1008 null]
+>> endobj
+505 0 obj <<
+/D [468 0 R /XYZ 56.6929 286.1419 null]
+>> endobj
+506 0 obj <<
+/D [468 0 R /XYZ 56.6929 275.183 null]
+>> endobj
+507 0 obj <<
+/D [468 0 R /XYZ 56.6929 264.2241 null]
+>> endobj
+508 0 obj <<
+/D [468 0 R /XYZ 56.6929 194.7397 null]
+>> endobj
+509 0 obj <<
+/D [468 0 R /XYZ 56.6929 195.4818 null]
+>> endobj
+510 0 obj <<
+/D [468 0 R /XYZ 56.6929 101.3698 null]
+>> endobj
+511 0 obj <<
+/D [468 0 R /XYZ 56.6929 102.8293 null]
+>> endobj
+512 0 obj <<
+/D [468 0 R /XYZ 56.6929 91.8704 null]
+>> endobj
+467 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+516 0 obj <<
+/Length 4609      
+/Filter /FlateDecode
+>>
+stream
+xÚí]mä¶‘þ>¿¢±ÀM‹)JI8w±ûöÄ;‡àFïŒf¦³=ݓ7‡ûï)J"EŠb•æe±ÆDØÛÓ]ªç!‹,VñM|‘Á?¾P+*Q-J®˜.x¾¸¸=É×ðÛŸNx'³´BK_ê?ÎO>ÿZe‹ŠU…(çW‹B°BgjQfšå•Ð‹óËNÿp¶*;}ó~}ul?žŸIuzÜí׫Íُçß‚¾(AK‘-R¦¹(KÎY¥”hÔpëòôóö?ž›'O¾:w$-G]q–+x(þý䇳Å%èÛ“ŒÉªä‹÷ðGÆ„¬øâöDqø˜Â~³9ysòç^£ýUH&³RW
+Ï™j±, _©¢ÚFÎü÷'÷Hø­U-–  ÔºÕž-«Ê²\p#WV‹}½¸rÂÝoþÒíJ4ªÝýúhýÏÀ}¤íA㟖ã™Ò®ñU¢m6Ò4g+eZÍ_3•
+
+´ÒLCûðÕeÍoûëEûá{ߊð­Ø þ¶>V×õÕzSYpÁ™P\
+h„…W,×UqŠ\@Ùs.)ŽN. yŒ¨åPÎJmé¤(ÐV.Ã#\	_󩆱â~+ÆCüë}]×ÛëˆC©Xɉ’·2n#•ñ¸A6e_Yvú‘Ë™Î$<“—ŒË¢œ½É3{ðòPÃJ‘}J—Lpaº”gŠØÊ­˜ê
+fŒ¼º»¶’fPvHÎ
+˜UÅt.BÈtKšñÜçÜ’ž¹%é*¶ Rc-n†/Ïi£Z!cÔúâf—7|ÃŽ¥£Æ”#×|;rŠ_?vø_¥ÇŽz•~DÁ©¸ŧrSo6qm)xŒgÅ£èØg):ÆxÍ’‰*›`¸	>ÄDiK’š•¨Ž—»ûhÔDÛ²Ò(¿¥“"cmù‹2Q
+í“,¸“'á‡z
+ü—&Û®n£`L(Hkd©ˆ²[)
+<Ò–
+EEÁd:rrñ­<Å Ò;è	ÈYTVæD±­	:Ôf½ß&'^@ò4M1gêk	^:!c¯ÿOÚ*SLhˆggc}4cyUŒ$¸V
+5Wa‚I3˜Îæzfs™ÎÂs3=Õ©kø¹k¸R£¢ 7+Y”¹Iœr¤ßä'DMÌpÈÛÁ#.|­ž˜é‚u‚¢“HB6JÐÆ›A/z% Û°´¡G¯]$‚NˆP)øª3Íó᧫õþpüéRéz‡kË‹’¨'EPˆµ
+¿ý}2j)´`y•Ë¹ãÏ®õÅ»VÈ$d.îZ­âµìÜ–¯0=†Ãvs%ì±7+>\ÓËÊà\Â'ç“Ái¨<+ñr;)
+;ÒæÏ)§$¤0Œõ&ÓŒ»N×µ©A+î~ÌÐů,Võƒ”»ÆÖ¢È@Ç(ÁÞJàK“…¬˜ä¼_š´bE.áCÙNš~¿mW$7ëCûén¿»Þ¯n?kÿZm/Û7»»úê~³ùÐþùawß~x¿ÞlÚOÍ2a¥7uûáU3)õªýãpÜ›Òê[uxoëºã ýæî¾[!]o»ª›Õ¾Ó~±»¬/ãgM'|û¡ý‹>þ&Ù*„„êÑùÇkžM×6º¥U+æ…ÕO?p
+¡bA¤§NÊô°_¥_}]®ͤšâeÅ^«h2‚?UAð÷ÌJ@×BP̬XÀìöºZŒ±óÓ
+8ÖfYÚMù‡ –¡)ø¡ÞfvòçcjA-tY±¬(ª9füåø‰¬`y®á'¬TrñÆõHO_œåUJeúºP/;ÆQͤžÌñGiÈ©3Þ‡oL !%«ã¯Ï”:5‡T§«ök'@¢Ý~÷3®Nëý‡ö§Ãúö®	(às—‡7RÍ×·õöX_²³%D£§ÿ¹»½[íkT·r‡Ýýþ¢ûÒÄ,í·Ç] f`¶×›ú§6`ù) Ú[„ÔP~ð™}›êj~·°ŸþË_¥ížXúÄukn*¯áö58äÿnyAý±¿­ÎDu%L%F›Ð$Ä奌ìÙI¤bmÎOã™fZª"Ü&w~Sï» Ð†´Û]!ÞÞ_ÜtŸvV¨3Œ‰4‡gÂ0ðËÒj9mD빬W$oºý`šÎê¶>vµ›ÚÖ§ pç]ÓG:ˆ'ÕÖgãjµªÂbÅL•I¦"Ï#̆?ŽƒZ!
+4RÖ´¬ãÊT&TI›è²K6àþ>¿¶[$ý†õÆ4è'Œç²µýw;Ó&ߛΕ^CoÏNÛ^ÉO¯w-Žì_ÛŽÞdÝ7mŸÌ:Ý·«»ÕÛõf}\ׇö—fOgãôéÿž•Ùi÷x—ÄíêÝw߯Ú/ß›¯vûwÐrŸ²qQC—õfý¶Þ¯Žõ¦c{ež^­7&E“yWkÍÓM&eôû4L_ÉÂ>bßσ	yß[ðj]Ëw]auŒv¯^¬¶¶ÉoÁ<÷u²‘”³èZxC	úoùª¡ôõºuÂæ)—ðµnƸ䘬IRm®¢¹ój··ylgOvh
+–HÍŽef6æ„pô¦z²¹Jdè9©&Êÿp%7v«¯î±™W2ÔZ1RÍ»2>ºÆmé¤ØNnP%Éi;©ÀiAî37ôyáÅ»ÉË%áJ¬Tb—­¬ÌÖ×q³B¦Ý`Žmâ²>'à¢Pxç¢|xÜE!…žº^íÖ@prN.d—\JGíá¤HС¶äA;Á4Ñ$ýÄÁ ÒÛi;“W¥Ö}ð¢»u8Òö€³2ÏX&óÙÉ}ú³¾)c¥Ò­Ëõy߶Oîó(;·îÐûò*9Uqó¦ª	ÔH2ñŠÙ“zsSÿ{½FÆéNÝ¡(³’G7”Îáí‹oóJ3^PK"NŠo}méðÇ´ƒM€‰…·!(Þâð6¼
+àÑð+ôƒ‡:œœ“Ù%Ã[Ô}xKµ‘áíD“ôá-Á ÒkÜíwõáð:¹#/½ÛJ`GÚRí‘kÅàëÉ
+ÒÉS"½É&YÄgi’ýy*œ“Ø­·‘¼„¡·Êq³8)
+¶•“#O:òÆ shz>uÒ᛬Têà©=ÇXoôèéJ7gŠóss¦ÁWÉÝžcô(*ý°€S±P@%émÎþFn^€`aŒWŽ=ð Û¥7öwÇX)jö\A at müèiïP~K'E!GÚGO­G
+@§xj>Ö;ž'C¯ƒŽ\)¼ÐNŠB´¡yrƒÕ|„áã%Ê~#!¿•BSåÜvºÙ\sªüÒSehôyΉEe'E¥Êž6$UF1]ˆäc¢©r :!UFá]ªìÃã©2R臧Ê(¹>î
+Ø¥SeÌ^ªL€µÑ©ò4“x©2Î Ò녂ߧSe´ô}ªŒcGÚèTybéûTgé¥Så§7I/ CÙõ˜ÏM•1³x©2ëRå¨Q©²PbÞæñH•=S 〕2~»ß½«·étÔ7î²åÞ3¢{Ïès|•\££G^eWî*†ç"Óê#¹“î¡VNSucc혎>OP³§àjÄ=M?ßY¢È±6üž¦tÂ=MüPo*Y¶®-tïªqTçª}Ôt²œs&M’0;菖,{UŒýV
+O–ø^%çTnN–_~²œUgP¹r'D¥Ê½.$SÆ ]€ä¢y²8!MÆ°]–ìaãIrº¸Ï‘1f},èSKgȈ¼0Gè¢ÓãI–ð²c~¨ÕÀÿmçã²d\e^f+D€u%“b·f2­ÌýR
+?Ôšl.w~zû+¡aå™ ¨Y1ŸÚ¦¾B"KÄ^`‰Fºègé5I¶ðCPì¡Ö”-D.›{Ÿn
+‘›š%ÕH˜Ïl¿¾¾I_͉ÚÂÝ̉£uMœ˜U	mZÏô>ýÄ„oŠô¸ë¤¨5üÀ²Ï±†óskøÁôþ½Ékø»†Pœìmԏaãn²&ØØ›¬‰ŠÉÍûT8ˆÝÈ·&Ì:±€Ø—c£†›ãxrnš`gåBzãžÔN1<¿~ Âù9¹€_b>GJãF4Êoé¤(äVnо¿HÞ ‚¦îîR$à[9=0ÌUòâk¼Ðîºk5Ò†Î瀷fJ—óÕ¸o>ǯâtbê¤Ðù¡AœWóVÂy>çÅÏçˆB±¢ÈˆMCN*•ØظÑW÷Ôõ85+R‹&~ºÏ0^ýíi8¢½+4@ü"9ÝB¦#>¤EÑûÖ‡?¬çI¬Ô^Ȉ»Ñ&¯ JšÛFæd³}ùNTB£—‚˜wR¤õÔ=Ù‰¢Ôœõ©]'(ÂËs¢(¢s¢>"âDÈ)NEŸÜPogxÑ‚÷ÓÅv¤œ0žZz7cL0ˆôŽ/Øí
+x±Ý&
+´Û1,62tÀˆ£Ë|ÞŸôé[k	ʱY)Ò±yêžìØPjαùÔn’Ž
+áå96Ñ96qlädž¢÷ŽÍ‡Onu®+¸çØpìHíØ&–¾wl8ƒH/áØÐb÷Ž µŽmPlı	ÎJ!gÇ6ÇÄ/è ø²PÄ+'Ežº'(57tøÔÖÉ¡áå
+(¢:|Ddè §(z?tøð£Tv›Zè~ρiKn>cbÉû™
+œ›Ùð\§ÃÐb[)´‘!èg©›è§Ù-²áàC­£aQ? £îÃs¨'3ÉTYå/ûnu^•¬”Þ«2GïV祹p¹{ù¢»ó¸¹\Û^à{Y7·hïníõ½ûÕö`.å]×;{‡ðê¸Úìº{ëíq¿®É¶ðæŽò²˜ïçýIƒ>/
+¦…–èË»œP³-lw±ÚÜìÇäpçë2„FÆóJ?ൈ8C'pŸd·n
+ãç9IØ^^ žÜú‚N8BÁwÇAøûCô"D^*Vr¢Ì­ÙHeœ*qÅ/«jr‰­<oäªümò¸½h‰ûÃ'8h¬m´Ìn3ÇÄ2÷›DøHo²u»}ƒhïk^9@÷¾~/ÁÏîåø}óÝ›ó?¼~ýÕ#Ž0~êR«gñˆ²J˜×vàÜ€ãùW¯s1d! Ä1EŽ·'EA·r2„þM4zçEÎrYð©ÍÇÉSø‘^ƒÿú›ïþç/…
+†3©Ô„æSö¦á–øÉÌ\A«Èúqr¿í}ûN†à­.jRÈ’°KñtÙyRá—_(ÅtQâ/uBãOç3Ä(Ã>¾ð9&NôÚIMŒ 7EJ » ÃGFŒ tJ€AÀÛ #(øÈC` e¶é¼Ä.À”8፼ ‡ïü¸¿¯Óƒ=Ùz¤&¥¬ÈºéäDH/=ÒjÍDQ>Å*g2ÓI±•ÓCŠãmÎÍ;ùˆ¾â¤èX[b •f:¿(¦v'OáGzÓ-ŒQZ¸e†aZ¢eçºb²Tš¤×Ê
+ªgtœu#2j	QqÆÿMިǛepE¼5˜‹Šeywí~ÿš-ïmMî­PûþÂáÛšÒÓ:¼2>¿‡w»&†]œ³ÂÌA¢k9N
+}¯¯ë©ïáÅyY±€WóB²Ô«âŸ[÷¦x‚Z'0³¯ÀK­>`ä¼ÕØ­>Ð,µúbÒ«x+Æ'X¤CÑRse”çs†öËq¸l͉sNªy3åX°«°¾¾x}Õ®èâ¨v6@…'† Žããøî`@`¼Ý»ÞŽ•Ûëí8p¤Í /“½}b±]oÇÁ]o÷Á÷¢,²toGJýà}=+лØ]§DÔ$}ZˆÃvi!n{‰ÝT‹¸‹Š)ðF®š$/Ë(å~• J
+†ƒˆÏxÞÙôo3ÄiHóTNœ˜²B¦ƒ}¿ý揩ÎÓ–ßPÈ¡¦f²¢½iAdÐ}•(L`V-óäÕ ‰	®åi5„Þ]ÿóŸk®’³_X5p¨ÔŒ›yR¯ôxú›Õ‘&[üûÉ?f‹KùöÄ½%_¼oNÐ37v{Ò§Ÿí7›“7'Ž›é²×hÑþáe¤endstream
+endobj
+515 0 obj <<
+/Type /Page
+/Contents 516 0 R
+/Resources 514 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 513 0 R
+/Annots [ 530 0 R ]
+>> endobj
+530 0 obj <<
+/Type /Annot
+/Border[0 0 0]/H/I/C[0 1 1]
+/Rect [473.4009 576.4484 565.4347 587.3523]
+/Subtype/Link/A<</Type/Action/S/URI/URI(http://www.ci.uchicago.edu/trac/swift/browser/trunk/src/org/griphyn/vdl/mapping/file/SingleFileMapper.java)>>
+>> endobj
+517 0 obj <<
+/D [515 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+518 0 obj <<
+/D [515 0 R /XYZ 56.6929 760.0646 null]
+>> endobj
+519 0 obj <<
+/D [515 0 R /XYZ 56.6929 749.1057 null]
+>> endobj
+520 0 obj <<
+/D [515 0 R /XYZ 56.6929 738.1468 null]
+>> endobj
+521 0 obj <<
+/D [515 0 R /XYZ 56.6929 727.1879 null]
+>> endobj
+522 0 obj <<
+/D [515 0 R /XYZ 56.6929 716.229 null]
+>> endobj
+523 0 obj <<
+/D [515 0 R /XYZ 56.6929 705.2701 null]
+>> endobj
+524 0 obj <<
+/D [515 0 R /XYZ 56.6929 694.3112 null]
+>> endobj
+525 0 obj <<
+/D [515 0 R /XYZ 56.6929 683.3523 null]
+>> endobj
+526 0 obj <<
+/D [515 0 R /XYZ 56.6929 672.3934 null]
+>> endobj
+527 0 obj <<
+/D [515 0 R /XYZ 56.6929 626.7955 null]
+>> endobj
+528 0 obj <<
+/D [515 0 R /XYZ 56.6929 628.255 null]
+>> endobj
+529 0 obj <<
+/D [515 0 R /XYZ 56.6929 617.2961 null]
+>> endobj
+82 0 obj <<
+/D [515 0 R /XYZ 56.6929 551.6516 null]
+>> endobj
+531 0 obj <<
+/D [515 0 R /XYZ 56.6929 523.4973 null]
+>> endobj
+532 0 obj <<
+/D [515 0 R /XYZ 56.6929 472.4201 null]
+>> endobj
+533 0 obj <<
+/D [515 0 R /XYZ 56.6929 473.8795 null]
+>> endobj
+534 0 obj <<
+/D [515 0 R /XYZ 56.6929 462.9206 null]
+>> endobj
+535 0 obj <<
+/D [515 0 R /XYZ 56.6929 451.9617 null]
+>> endobj
+536 0 obj <<
+/D [515 0 R /XYZ 56.6929 441.0028 null]
+>> endobj
+537 0 obj <<
+/D [515 0 R /XYZ 56.6929 430.0439 null]
+>> endobj
+538 0 obj <<
+/D [515 0 R /XYZ 56.6929 419.085 null]
+>> endobj
+539 0 obj <<
+/D [515 0 R /XYZ 56.6929 408.1261 null]
+>> endobj
+540 0 obj <<
+/D [515 0 R /XYZ 56.6929 397.1672 null]
+>> endobj
+541 0 obj <<
+/D [515 0 R /XYZ 56.6929 386.2083 null]
+>> endobj
+542 0 obj <<
+/D [515 0 R /XYZ 56.6929 375.2494 null]
+>> endobj
+543 0 obj <<
+/D [515 0 R /XYZ 56.6929 364.2905 null]
+>> endobj
+544 0 obj <<
+/D [515 0 R /XYZ 56.6929 353.3316 null]
+>> endobj
+545 0 obj <<
+/D [515 0 R /XYZ 56.6929 342.3727 null]
+>> endobj
+546 0 obj <<
+/D [515 0 R /XYZ 56.6929 331.4138 null]
+>> endobj
+547 0 obj <<
+/D [515 0 R /XYZ 56.6929 320.4549 null]
+>> endobj
+548 0 obj <<
+/D [515 0 R /XYZ 56.6929 309.496 null]
+>> endobj
+549 0 obj <<
+/D [515 0 R /XYZ 56.6929 298.5371 null]
+>> endobj
+550 0 obj <<
+/D [515 0 R /XYZ 56.6929 287.5782 null]
+>> endobj
+551 0 obj <<
+/D [515 0 R /XYZ 56.6929 276.6193 null]
+>> endobj
+552 0 obj <<
+/D [515 0 R /XYZ 56.6929 265.6604 null]
+>> endobj
+553 0 obj <<
+/D [515 0 R /XYZ 56.6929 254.7015 null]
+>> endobj
+554 0 obj <<
+/D [515 0 R /XYZ 56.6929 243.7426 null]
+>> endobj
+555 0 obj <<
+/D [515 0 R /XYZ 56.6929 232.7836 null]
+>> endobj
+556 0 obj <<
+/D [515 0 R /XYZ 56.6929 221.8247 null]
+>> endobj
+557 0 obj <<
+/D [515 0 R /XYZ 56.6929 176.2269 null]
+>> endobj
+558 0 obj <<
+/D [515 0 R /XYZ 56.6929 177.6863 null]
+>> endobj
+559 0 obj <<
+/D [515 0 R /XYZ 56.6929 166.7274 null]
+>> endobj
+560 0 obj <<
+/D [515 0 R /XYZ 56.6929 121.1296 null]
+>> endobj
+561 0 obj <<
+/D [515 0 R /XYZ 56.6929 122.589 null]
+>> endobj
+562 0 obj <<
+/D [515 0 R /XYZ 56.6929 111.6301 null]
+>> endobj
+563 0 obj <<
+/D [515 0 R /XYZ 56.6929 100.6712 null]
+>> endobj
+564 0 obj <<
+/D [515 0 R /XYZ 56.6929 89.7123 null]
+>> endobj
+514 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R /F52 107 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+567 0 obj <<
+/Length 4426      
+/Filter /FlateDecode
+>>
+stream
+xÚí]mã¶þ¾¿Â(
+Ô[Ä_$Rê·¶IÛAÐæ¶h4´¶vW9¯½µåî]}I‰¤HQªwWì6Qdùñ<3¾ŒHΘ¬°ü—¬rŽxIËUAr$8a«íã^ÝËÏþxE4fc@õ»›«ÏÿãU‰JNùêænÅ)âç«ÄJ*V7»ï׿½ÞЯß<7wmysåëK{<5Õþú‡›¯¥²*¤Δ”LP$-VBP™ç´C¨ü²(ÖŸ÷Sß¼úòÆ*it%A,—_—*þóêûðj'
+úú
+£¬,ÈêYþF4+Éêñ*'ò’qjîì¯Þ\ýeh>¥Êp‘O?Â¥ùjÃ%žó$ÕV8õçö+þ]# ¯6R@!D/¯(*‹¢X…+ÊÕ©^ÝY°þÌýÂ%ÛZ4)Ý~úÁò?îÑŒ
+	^îWýÅwSmTd%"8¶–´o]™j]Œ­,Hµ­?ŸŽ÷§ú|7©²D‚‘råJô3 o£>ïo‚6̐ÀY	V ’ñbiL/Þ˜OD“sJyõÍ¡×\Ïå%e¾gGÚ刉²LêVH~AiJ7ót;·U{	Ú9¡Ñœä v‹J‡Ò&Û:aj’ £Æ7ÛâSô=ŽNiÎõ.ТóÃ4í˜"éRä¨Hëס09æ²ÝÊèî²ß¿ë(çLÄxÁa÷XT‚_ãÄÈ=Y|,"¨˜MEjàˆV˜9ô‡œ:q(:EbÌݳO`ä°R œI¿€ \z…LÇ5¶›™9ë[Ô5É×ÇË©i~<Þžû«ÓåÐ_lú?íñ²}ø¬¿®·G}y{:¾½&ò–FW‡¾èÿücªÆû=t½aDÝÏñáØÖZøCÕNËk·_]“b­?®¶í¥Rmkü¾n¥\‚TPOŒ„I–wv~{¼¦ùú¹>kÞçf¿7¢êê­Q¦ž/ÎÈÈsmYª§§úpÖf~W?í«m=¼«»ÇÒ´Íј©ÿ¶[´«ZýìiEž›öÁˆlÎÑéWö"$Dö¿kòN{ý°v¯ƒN	ãKÈùâQ%ÂêM
+9-Hõªýq[íŽç6˜pŽ!ÅÊ•9ÖPΰ9)Ó
+9ªq&_×j\æë¨zì9csù=‚9¨àÆ¢RÌýœéñ~PÊW:RÈÐȧŒ›mð)r…+GF7ÅT½ÎÒ2a±E%HCi“6S5×`éã±ÍÄØL<›->EÈUôwÕþ\*°q\” Ýr¼#LZ“jŠ4Ï‘ÈŠ´~=nôx¾úöÍÍo¿ùæË/Æ:2œ!ÂEê(#B.£ï¤Ž,“¡åIZÜHÇ›/¿a4ÐPb¤Ýn=•¢îq…Oý›`*c¥ZÒÈó¹]ÆâSü\ÅÿÍWßþõïc2E,K4ŒDîÆÖ‘æQJœ%ŸÅyúdX¨'ßÄ3šÑ„_JÙ©ŒÖ7r^<ÿiGÁœ$H™Áa0—q’œÐÄDxø`#­z
+ÛîYdÇÓ[É1ý]ž¯?K„muÖQ杺]5{ |Ë2ij’-áÛ¾ÍßG¥(¼ÈcQªÙÿrÜø8EXÐbåÊúÀÙ	³œŠ”^æéuî–ÙÇ똙Z'ŸB7½Œ™PM£<ÍNõ¹­NmtRÎYü‰íâGÒLAb̏'5<EÞÃÈ^ª­’,a5Éû]‘éËPñ©‡
+=Þ/OøÕƲÑcŽYb06(ÕÅÞLu1³âîÊ´3 «YK÷X¥ÅA·&j—‘ˆi|`1ø¿Æ¾Ó#‹O!»ñ&¤)âMt<i¶Oar;žºä'ZpO«gNqDH9N6
+‹óÔÛïãË K†E˜V/ZÀ)9ÊyYÌöˆÁ'É;\9v	+Š`õ€2”ɾš°Z:N¾V‘e ^¦¸ŸÍ——ÉÁ-ƒ§8‹R]ì»Ëá«/bSœ+/>ÅÁ¬¬~ÓvÃ1^SL0Î)—ó%›èØë«k>¡‘Æå¾Jíù¼Û®—‚ƒä%’¦dKgx=¡ rÞc9¸wbAsŽë¸ãÇu`^ýëñFœrA¤ÍÙ²’óòÉñD¼1ЬÆäú6Þ˜@^Ó˜\Þð<Œ“
+AøˆxwÐøy(·{ej«û:ÆC6Ï
+¢³‘'ÅyÚ5ñ]GÐîc‚µÇ‰‘KHôtÐ\Ÿ|Š?Q²‘ô'ð¥*ÔQׄ†7Ò<¥$çÝ{È¢Rü´ÎC4:s9~q}Ds‚_rv<‚
+HyõËwõöÒ鉝…ð¼û’]j´K-žŠwU³Ÿ8<hÆK@½a±#Á;–GY‰^òæ.]/ŸpžnoÕT½Ä8®ÝÚÃòÁa}ƒßÖO“
+Þœ×ñüû
+žQ„å[JCc¾Š3°i Ÿ@µ!8€U³Á«ZäX’RýÜ	f¤ÁÝ‘ˆeby›|ùÙÇñD|ö1 .?éty¬í9>û¸Þ
+Z”A%¨5®ôÉõË÷Ñù>7pÐÏœÍOhÈUZ<ŽÛ‰W !æÀsÃÔ6æv©ˆv)*[Ög^A¬UjréŸ&NµšÙÒõêX³aF…í„ê0ã²Ù¯óèÒ	5 qbqü¯Ù7ƒ.RyËRä«iê„«YŸÀ“‡©ðEsª·íñô>>y82¡É¤&—XBòHç,!Áô\è@Ás†S–TŠ:ÖíwÂ;”eÒñåÜÇ`à	U©àv„ò5.ñ(E<–5}`¼ ˆ«iu®ÕŸbä*ú.ß)v4Ú¢¼—Ì&áŒb¢2×p‹O)ȍ¿}°œ¢¼à,aºA¥˜{\6jôÁò$ãLFR|¾åŸâïqÔçoøå®9ÿœ£ÆDm©¥LÏä<ˆÕÛè2Û½–ÙNN*™ 4ÙTŸ>¼«O§h´åƒd´¬Éó›æ@«Ï?´ªá	î@j7À¿k£§¼@ƒGuXpti£K
+™Ô2'”-ýç¥ûë‰xÿ±(ÝŽ—6Ö<×FûLÈûÏ˜î?0w 5Õ@ƒ‡þ³ÚþãÑÆû|B”åÅO;‘'“ï–D§+Åy2^ªõU]!át|¼Vûƒ:	‡–kÙVŸ.móYßÛV‡þFŸÂÝÁ»nùY—êÞßì3½Õ½
+S™Û§³Fª„öþööøø´¯Ûz§2€[ß^S¼6¤mŸO$¯n¯7d}º&ëãÛkùuyqè%™t z7">k‚³.<$oí
+:5AÕ¶õã“U¿¿Y«Ìþwê?j_ª¶IñN5"›§4‘¦?‘CóPŸÂÌùÚKø7¯SÝÿì÷aƺƟ«G}u°WÕyê΋Å;#ˆ0.–©e®›7×uGò<1ט!åÊúØ
 )X/óôÚŸc‹“bÃê$LÙ£T²*JÞŸYüu7&è*2D îߨRç*3DKœôÎUj|BEãþc‰.d˜tuðéÉï0·#mü|&sÎ4}H~OÐr»…¬}xfß,ö€V«]ÂœfåòRûz*éásž¨
+XǴѬ#1< h#c75cÓ¦—ø
+ÌH[u	åÂǪe¸Y”~•àÖ¸ÌçFE»ß<Ûí
+n‚~,5ÚûM±
+Øj,g´,Ë~µÔ:¸€_)X¡Š>äD‡½Í
+n·ÇC[5©ÇËýƒ)ëtw<=VC'[Òé<Ôíâuù÷íÁ¯AÐlµ”'I©…ïÒetᩏ^Lå*÷$Ïדñþß®õýÞÈÊ”08½÷õ>Õ¶:B£Mjë]Sµu/\WEØ7}-„¥«'²‡qºDöË„9kÂd²åd$Ø×;’>6¬•2(W)°ì Ø0ƒ”ú ¿Ë¸‰îøztñéÚný‚Ìvç×å–£é屎ž9øxGØ3«°n&?w¤Ûä®°9P9c8óŽeÍÙ–ã"¡E6Ó;kH…B)»ñ	=‚aw$¶›£.ñDe÷0ç™=lÂìc©±8ÊÊúø&©6)–AVB5›Ñ&Y‘¡‚çvˆ%x{˜?*¡hU®™î°E¹`î±ÔèˆhKrsùY†—„á%%ûg1‚²R$6Ã-*YuÄ•OɆYÍ^žÇ
+UñIg¤ÂÀüvgÍS ®:Ú=TIÒÀª#sͶA
+Ln£—®:Yý_WI¨gpžzPÕØ%¶êH‚¶¯:’pˆ©"2×#¶êHŠ\W¹ª:[½TY¦¸ŸÝ‡K”‹2QuÄ¢’UG\yÀ²²"UGòˆ®ûzÌ`A•B¹J§÷ï𿾋nTc©:òê:-Ä)†«ŽXÐœB®Äx¡˜W¯3y¼Ñ¥^ùˆçdYC}ùÆäx"Þ˜h^Ê»çݏMy‡´q¾§"œò©7DÚ	Þ±,¸¹./èRááåSÞ]WÄ3ô,j^Ê»çߏMy‡5´)ñ”÷O¡šMyO¨fpžj‰”wH?gQ=ÁHƒ»#W[äl©@ñò³ã‰øìc@óRÞ=ïƳaj»wå‘'SÞ}î)ï	-¹sRÞá`SÞÔ&åÝ£Ž¦¼Ó<C¢È–·ƒ—ïRŽ'â¯Ê•Êz÷=X
+“ÚYÕ%&¾ûŒéÌw˜Û¤¾{ÜéÜwÐì%ùýµµùŒ¡‚æpåš—üîÊ„¦z˜F\òxò»O:#ù=Aȝ“ü[n“ßԁ´à¤ÃĘýÙ®™ÂâÚ„r¡…1³>›ÿž Ë‚óßçšmóßìÜdþ;hôpÂæ
+¥MšÝ-<f‚Í5Ûâ“ôc¹Šþ1 '*© 	›
+*EH›¶Ùœ?™k³=Ö’ äÎÈø‡
+·ÿ	f“ñï÷ôT¨¯ÐÙ†|’^ô?4ã;û| ÷PÆ?lú’ñÿê¦xFQÁE"ªÕ t¾¿#.ž®rŽ%ÉÊ]:W$ËLe*C¦:ˬå°ÊêpÆ—Wä[k‰õ™ü¥Ó¼d§q<ôƒJ§ù{®÷6÷qF×¹©ÉÎìôuè>.m¼ÿ¨F£êW/ýg9Øñö„y‰d‡PY¥¥¼*ÁŸBc+ê"FùO¬K¢DXýÈ÷â°¥KüÄ'm"
+•””Hk²(Õu~_]Îá~·™h]úÓ©fz…•30O¹Ûø¤™³Æ“Ú565:».$œ-GO^~/ÞuE|×À¢ú½ø¦bò<û[ÝC›uÚœ«Üö¸«£g í6•â5»ÿ/‰·uŒ
+&ÈO;»›¨Œw!ÙÝ$“ÍS
+NCþÆábÝž•Í°è’›Õ-£Øß{¨û›SI×
+ ‡·îs?åº9Ü÷ÿbø5ø_ôÀêþ:_WÍ]«RWë¯ÚØxRŸwž:ê“Ýë%ú¤ïn<íúªUêžJ2Wm­*õy_«JÝV‹¾ŸÉKJ×·õV̓}E¢¦“ÞÏÕ{[¬©j‡¬ti´Îßéüð¾J•º¨Mö¹I¿sÔ‡§3‘›þ;û,uf½[@Ëù²É=¯+U‘ë_3¼ú㩹olí«icMò´¯¶õ¤:ßúÉ÷ã"YÊïFÄO§ãí¾~Èò[I÷”ÞºIm´[´«ÚʤÜê±—Lë=Oò]ýxTŽøWçSï§æÜZ%Bmʾ†Y§x÷àüS%ÁlQ‚	Sꃭ<PÝ:*†³»9.G-ÆÄôhÂÔ:u7²þóêûðj'1__©ws9Ä<«1QõûRWÃØÕßÙ_½¹úK8²m‰†í?‚žÕÍendstream
+endobj
+566 0 obj <<
+/Type /Page
+/Contents 567 0 R
+/Resources 565 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 513 0 R
+>> endobj
+568 0 obj <<
+/D [566 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+569 0 obj <<
+/D [566 0 R /XYZ 56.6929 760.0646 null]
+>> endobj
+570 0 obj <<
+/D [566 0 R /XYZ 56.6929 749.1057 null]
+>> endobj
+571 0 obj <<
+/D [566 0 R /XYZ 56.6929 688.5546 null]
+>> endobj
+572 0 obj <<
+/D [566 0 R /XYZ 56.6929 690.0141 null]
+>> endobj
+573 0 obj <<
+/D [566 0 R /XYZ 56.6929 647.1948 null]
+>> endobj
+574 0 obj <<
+/D [566 0 R /XYZ 56.6929 647.937 null]
+>> endobj
+575 0 obj <<
+/D [566 0 R /XYZ 56.6929 636.9781 null]
+>> endobj
+576 0 obj <<
+/D [566 0 R /XYZ 56.6929 626.0192 null]
+>> endobj
+577 0 obj <<
+/D [566 0 R /XYZ 56.6929 615.0603 null]
+>> endobj
+578 0 obj <<
+/D [566 0 R /XYZ 56.6929 604.1013 null]
+>> endobj
+579 0 obj <<
+/D [566 0 R /XYZ 56.6929 593.1424 null]
+>> endobj
+580 0 obj <<
+/D [566 0 R /XYZ 56.6929 582.1835 null]
+>> endobj
+581 0 obj <<
+/D [566 0 R /XYZ 56.6929 571.2246 null]
+>> endobj
+582 0 obj <<
+/D [566 0 R /XYZ 56.6929 560.2657 null]
+>> endobj
+583 0 obj <<
+/D [566 0 R /XYZ 56.6929 549.3068 null]
+>> endobj
+584 0 obj <<
+/D [566 0 R /XYZ 56.6929 538.3479 null]
+>> endobj
+585 0 obj <<
+/D [566 0 R /XYZ 56.6929 527.389 null]
+>> endobj
+586 0 obj <<
+/D [566 0 R /XYZ 56.6929 516.4301 null]
+>> endobj
+587 0 obj <<
+/D [566 0 R /XYZ 56.6929 505.4712 null]
+>> endobj
+588 0 obj <<
+/D [566 0 R /XYZ 56.6929 432.9649 null]
+>> endobj
+589 0 obj <<
+/D [566 0 R /XYZ 56.6929 434.4244 null]
+>> endobj
+590 0 obj <<
+/D [566 0 R /XYZ 56.6929 423.4655 null]
+>> endobj
+591 0 obj <<
+/D [566 0 R /XYZ 56.6929 362.9144 null]
+>> endobj
+592 0 obj <<
+/D [566 0 R /XYZ 56.6929 364.3739 null]
+>> endobj
+593 0 obj <<
+/D [566 0 R /XYZ 56.6929 353.415 null]
+>> endobj
+594 0 obj <<
+/D [566 0 R /XYZ 56.6929 342.4561 null]
+>> endobj
+595 0 obj <<
+/D [566 0 R /XYZ 56.6929 331.4972 null]
+>> endobj
+596 0 obj <<
+/D [566 0 R /XYZ 56.6929 320.5383 null]
+>> endobj
+597 0 obj <<
+/D [566 0 R /XYZ 56.6929 309.5794 null]
+>> endobj
+598 0 obj <<
+/D [566 0 R /XYZ 56.6929 298.6205 null]
+>> endobj
+599 0 obj <<
+/D [566 0 R /XYZ 56.6929 287.6616 null]
+>> endobj
+600 0 obj <<
+/D [566 0 R /XYZ 56.6929 276.7027 null]
+>> endobj
+601 0 obj <<
+/D [566 0 R /XYZ 56.6929 265.7438 null]
+>> endobj
+602 0 obj <<
+/D [566 0 R /XYZ 56.6929 254.7849 null]
+>> endobj
+603 0 obj <<
+/D [566 0 R /XYZ 56.6929 243.8259 null]
+>> endobj
+604 0 obj <<
+/D [566 0 R /XYZ 56.6929 232.867 null]
+>> endobj
+605 0 obj <<
+/D [566 0 R /XYZ 56.6929 221.9081 null]
+>> endobj
+606 0 obj <<
+/D [566 0 R /XYZ 56.6929 210.9492 null]
+>> endobj
+607 0 obj <<
+/D [566 0 R /XYZ 56.6929 199.9903 null]
+>> endobj
+608 0 obj <<
+/D [566 0 R /XYZ 56.6929 189.0314 null]
+>> endobj
+609 0 obj <<
+/D [566 0 R /XYZ 56.6929 178.0725 null]
+>> endobj
+565 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+612 0 obj <<
+/Length 2914      
+/Filter /FlateDecode
+>>
+stream
+xÚí\kÛÆý¾¿‚0úATãy?\hŠ<àÀ0Úx‹H‚B+Q»L´âFlÜ¢ÿ½w8œY’CΨÛ58‚‹’ï9—wwþ‘BH$
+5…&)IX±¼»ÀÅ
+|÷Õi1sšwQººxù¥À…AFRY\­I‘TX+ÄUÅÕêÛÙg—s*ðìýCµ>¸Ë«K.fÇC½«›Ëﯾ+¤Ð`E2k…+Š¡º˜‚Œ´1Cܬôì¥{·pçÅWA¤×¨ALÀí ñ§‹o¿ÇÅ
+úú#n4)à
+F”RÜ]—LRÿÉæâýÅ_-úo)Gk1þhC”Šb._Ù€@¶ÅÙ—¯,˜’ˆ¦ŠŒÖºØ•ÅºÃÓ~‰“í­‘ýHnÚÌ`rT¦»aÜ8.æp»VÊÙÆ^
+±8múµßuoø¯lOF­‡oŸlÿ´O>^ìIp±»)ÜÅ7c]Iq‚8ã"t%C]'à¶40Ví›z¹ØÜÖûðé,!D]›C…LAû44+pè~ŠäzXOáõ®þ±ÜFò”@X`–”7¨1¥iÛY{Ì/‡¤”qˆ‡pNzíá9ò¡ÕÆë*r†9Ĥ–i—*ÇYwYÀàÌaœúL¼Ï¤ï³Çgé‡v-ýaw,#J!*Óí;Œ̶CjŒº*ÿpNõÕ½y÷þê³·o¿ø|(‘JS)Oè+$«‘)ƒàÁ¨œÆ§‡¯¾xËèP!'
+ÎMºíT†Úá±{õ*"¥
+ÌÕ©ý%àsô‘]ËÿöÍ»¿þ=’ 8Ò˜“tëÁH	£#3Ѷ¹HH˜SsúnУ·ÇÍ&’§šeF1΂hSÈUR|¼t ÿ™€Ïk3Š¦Ìö%ÓAE
+"³ñt0dd„[>÷hßÕ—TÌ\&¸;nÝÅâæRÌÕ6j—‚!Õ´	6Óçôêœ^”^IW˜ÊDz°€²MówÃÆë¬`%ѵ5T&lw7Y]R!.`E”Ñåa=]ûfé4Ðf¸]吤¶¹eXAŠÑ>é|2Éì3Nç‘Ÿ!oqƒXìÊýñ.Ê/³KBž#"!ÏÍÈs0É;,vq"®a•É0MG% rÔ‘µ&0Œ•°<¦$
+•Á♟¦€Ïˆ‰í6Ià~¿Zn~¸‰²,®‰T<ý *ÃÝâDŸaÑRH”±"§:ð9‘ݦlê›ÉôòZ(ãMc)²ê<î”&Ê4dYRÈLd<*Gípƒ+Ž‹±!NŽ‹Ççè#»“ãeÈ—Ó~KXLp¬›i¼™½ÎùsOäm6v~¿šTIq$5×™TÉ£l{?ÖÅ4CÂPVtíEê<(êáRQÚg£—غ.QÒéYßã3ü-N÷ŒŽ,IIÊï€ÊGÖƳ±6{9Õíì¤ÉC²Ó%ßQ-q$@[ìçI¯OMÅBé/#Ïãzò–ñ,L$+Ú˜LH<*Gkq&˜V„4úäˆx|–¼Á™aH˜ÖQêGaò‚¾šñ§¤ çø<Åýv¦8›T™®ÙöÍqûæóÉ	îÑZb~KQ-5EÙ˹ÄxÖ]Þéùô°ÛÕ0=ÊxxZN==z³>þr
+®” ‘|Dnðsøõô»4Åš$7ȶ€?ïêXFî£Ú“­Ù±c1®=µ ¯¯=uy'«À’a»÷GύéÿÞ˜:‘HŒ¨e£úeµ]l&‡ÔndŸ–Eú%CF[XYtµí‹Ã1jç„DIuó€ÊÇÖFÛúã G:=Ä?.,Òô7püͶ:T‹MõÏjô˜ ÍJ»PþØZã>ÎbOó?àsüÇ¢FYíoËU\F…´ë¦Îïd+Û´ÎF¨Å
+›æq¹„1x}Ül>Du5&ç2¡€ÊðÇÖÆ#FcÊ‘PT}Ú{œ’h¢IïqJÌ,ªh§:2§šÌ»ªÜÛK:;Ôî#·é	/ìq™K‚gåö…ƒømPt9ç˜Ï®n«}k¦º+¤j
+?ØëݏûßÛ÷f¶Ø®`Ifµ»ìèXÖÛCµ=z-u+Ák*/‰˜ýbÿ+—ÇCKu¸-Ý·ßaLíØݼ¹¯Êe¨×­ô¢àöy­_­ÕÚ¶%ûä»Gû¶õáÖ?ÍNðíbå.J{ÿύ¤ûä¦Þ–îêaWooÐÔ	@aóR%i:®]”‹+ÌØÐZŒÐÀ˜U*†”J"¥ISzPŽ22æö“ŽRŒ”*ãhX›c½`£ˆD35µ‡ IšÔƒr¤‘±æhÀâ®\¹ã®5ÃE}¨j×öàÝýb˜4hûöìh·;Bë@Š ×Æ&&s+™íò¶Þ½ÚZûÿ6 M2Xo½Ùº×ÅjUY.÷Îvûº¿/—ÕúCÓ<íûáÝ÷õ¾r
+at–b½‘Á–‹Öîué^--¸qÖ~Ý£y]•ûjW¶.ügkÛ¹ÇÍa¬ýl{Ëbsl;HÃg/®Û?l?.W“Ù5W0žz>Âú[]HèHD{zJB@x:»(Û ¿ÃOŸèšK‘házÐßAŠ´¸)×Õ¦œÌâû2žV©¦à;×9²u ¾ÈRÒæ•#u8†L휘°{á÷»=þ›]YFVD¤IÆs‡Éñºú|¶9†’û©n‡}Ž¿-Ñ÷ì!õYSùÓËÏÐÙå´<ë«‹ÏK$±6é€T–shÍ’¾ŽH9·c•F‰àssÙóÚß““àpº/áÅäIí1¿sRÂù팇S})·åfSO ~ŠšöÖœ˜!ÃøcMr•k•ãŒ¬…‘©©yÿk2%0 h*Îsý3Ïõ0ÁùŠŸÒØQ;áuBGØÁÄcÀš¼ûþ~êØb/°“ÇÓœmé¸G9Ý’ìp q8·¤çnI
+#¢ó¿çûm$2Aõ Ô–oÓY]ÇÜtm¶ÆrÚ³º®ºýtV—“vBª»i×—vXÕÇÃäbJ_gë0ÃYêÃٍ>é	gB2ô‘]KÿG»°kìÉêrÒ÷Çšrš<¶6•{>æ}§¹ðYC»£&½ùdšrhËÏå˜{ƒ»ùyìýˆ+öÎ#NÌÎeCöïÉpA«ÆX¨s¸>^¸:8Q`ñ¨t¸ˆDŠŽoŠ:Û0¼©™Þ†arAûcPûÄþv[Ú*(‘³‡Ò½VÛKŽm­Ïڝ÷¹ÛÀ€‹û]½,WÇ]iwU(7ºz*\´õ`÷&]÷îýºÞ
+íuêÀöýu{§š\3»òØum׃vÓÄm†XÚz5pÐǦFî¼j^‚”¨9¡Š¦š
+³õ.ÎÞó)“Ny0˜8ˆb&=L”ítë]¹]ÞF›Gí¡‹®ÁxóÈàHÓúÕaöõäÏÕú”'ü\-Í~®Ö£Ÿ,rr 	lÒŽTŽ;²6Yê„/>Ý{Ï)ˆìŽ¯€ÜB°Ì¸íQYÒ§r——,†>§jfážœ‡“}	/&WVc~g¥øõVNJ{V³'åºÞþPwñXR#Ÿ"(Ü›sŒWý±Ñd›¨id-»
+aöxQüÓΓ˜ÐYŒÎäIô)á~LP·ç+†›Ç›²ý‹M.Ÿý]èæƒÁ¾óâþ~óarƒÙþ8FÏùÇ9ÿ8-ÿ°MƒÓä‰ei
+…Û›Mµ¿*:wÌMל“œmu²Ëùzò'i=º~‘–d?HërO¦ašNxÜ™ó“ÄC[>çH¶T!,Å'ù÷O°ÝøâHNÆ¿†¦ÝðñL€nþhѳý̳S…endstream
+endobj
+611 0 obj <<
+/Type /Page
+/Contents 612 0 R
+/Resources 610 0 R
+/MediaBox [0 0 595.2756 841.8897]
+/Parent 513 0 R
+>> endobj
+613 0 obj <<
+/D [611 0 R /XYZ 56.6929 815.7613 null]
+>> endobj
+614 0 obj <<
+/D [611 0 R /XYZ 56.6929 759.0684 null]
+>> endobj
+615 0 obj <<
+/D [611 0 R /XYZ 56.6929 752.3934 null]
+>> endobj
+616 0 obj <<
+/D [611 0 R /XYZ 56.6929 706.1021 null]
+>> endobj
+617 0 obj <<
+/D [611 0 R /XYZ 56.6929 707.5615 null]
+>> endobj
+618 0 obj <<
+/D [611 0 R /XYZ 56.6929 696.6026 null]
+>> endobj
+619 0 obj <<
+/D [611 0 R /XYZ 56.6929 685.6437 null]
+>> endobj
+620 0 obj <<
+/D [611 0 R /XYZ 56.6929 674.6848 null]
+>> endobj
+621 0 obj <<
+/D [611 0 R /XYZ 56.6929 663.7259 null]
+>> endobj
+622 0 obj <<
+/D [611 0 R /XYZ 56.6929 652.767 null]
+>> endobj
+623 0 obj <<
+/D [611 0 R /XYZ 56.6929 641.8081 null]
+>> endobj
+86 0 obj <<
+/D [611 0 R /XYZ 56.6929 574.5297 null]
+>> endobj
+624 0 obj <<
+/D [611 0 R /XYZ 56.6929 537.5329 null]
+>> endobj
+90 0 obj <<
+/D [611 0 R /XYZ 56.6929 537.5329 null]
+>> endobj
+625 0 obj <<
+/D [611 0 R /XYZ 56.6929 510.1788 null]
+>> endobj
+626 0 obj <<
+/D [611 0 R /XYZ 56.6929 476.3408 null]
+>> endobj
+627 0 obj <<
+/D [611 0 R /XYZ 56.6929 477.8003 null]
+>> endobj
+628 0 obj <<
+/D [611 0 R /XYZ 56.6929 466.8414 null]
+>> endobj
+629 0 obj <<
+/D [611 0 R /XYZ 56.6929 455.8825 null]
+>> endobj
+630 0 obj <<
+/D [611 0 R /XYZ 56.6929 444.9235 null]
+>> endobj
+631 0 obj <<
+/D [611 0 R /XYZ 56.6929 433.9646 null]
+>> endobj
+632 0 obj <<
+/D [611 0 R /XYZ 56.6929 387.6733 null]
+>> endobj
+633 0 obj <<
+/D [611 0 R /XYZ 56.6929 389.1328 null]
+>> endobj
+634 0 obj <<
+/D [611 0 R /XYZ 56.6929 342.8414 null]
+>> endobj
+635 0 obj <<
+/D [611 0 R /XYZ 56.6929 344.3009 null]
+>> endobj
+610 0 obj <<
+/Font << /F50 100 0 R /F51 103 0 R /F92 158 0 R /F52 107 0 R >>
+/ProcSet [ /PDF /Text ]
+>> endobj
+244 0 obj
+[94 0 R /Fit]
+endobj
+291 0 obj <<
+/Length1 761
+/Length2 1025
+/Length3 532
+/Length 1573      
+/Filter /FlateDecode
+>>
+stream
+xÚíRiTW…S
+uA¨—ú(‘l A–€DSŒ" › Œ™“ÌÄaBƒA´î•j=´„¥
+ˆÊ¢Òº DÑ´®¸wj­n( Ö¨ÇSú³ýÕÓyÞ½÷»ßý滏åá.A‰PJà”;ŸÃƒ`¹\ÆçúÎã1X¬`"FàS
+Š_$òŸéÔ@àxÞb¡‡XèÍ``B›FbIÉp
+f÷‚¼DILà@ŽPÉPCs(5ˆ ¤Ò8@¢VƒðÞŽS ™
+QƒÏ(¦ À˜„án¯&®$€÷›4ªÓ¾+¥B2…\ûd²-%pu@¡’ÁIÐÓ ­åߐ՟\ªS«g"š^ú>§þVG4˜:í-‚Ðhu$œ@!‰÷‡FÃ7âäÅtšþU…¨1…ORCàÎ÷äð<ßä±)¦‡hF)’Q§À¾<ÄÑþJhÿútpÃã¢âbCÝÞ®¶¯†`8™¦…€÷ÝóßÇ´I$¦syOéóî–ÐoX® PO¡@HIcЏˆŽ„ÀÀŽB=€zZ1—ƒÝhg– %A2z÷ê)\º‹ø<™ TovF×ÿ¡  Bop÷ wÀóôÞBÞ’¿ :’„8Õ÷hh[ÞÅJŒvB=T0Ì	…ïÊ…9ûV—f„Ÿ)³e§ŒÍݶòāU{r}9÷¯ûŽ8OVŽ„?¶_e¿+n|ºƒ‹*…7™û$é&CwU³½iˆ#»0/âƒÅýøy7m¦)øò®y|«¶Ê­ã²KçÔ¶»fÜã{1¬³)½tñÕ“ÕÒ“7Ívß¡.·Œ„Mûgdèßnlüµ§mQL˜KGÅçu:üaf6\kR]’+ÊÜ$x!×ïå`[¯l9Éàç«Æ›c~}!4Öë|Ôæ\`5ÚÏ97Æ¿¦:TÞ>Èr–-²8ç~Ø$[¾Ä8=Z6çÙ˜²ÂŠÒ1j¿i%LkXÙW¯ñÇ­i­œ½|„ªòŒÀï[¾¶*›žØýŠõøÓõ6O^¼¸þüu&³¾Cap¶rÚ9 ÚÍ'? ÕÕí>ûi{n­É9Iþæ.%	˜~Ý.0ó¨æT at KzM—Ĉ.,s¼¸}­‹YÀ¸'îÖälž,sû©Ú”¢·ÅÁ§´=üýH}f¾`ž4xîõÄÚÈKn{Ou¨Xc“`ª–J‹?­D4[‚F9û;Œõýh¸$¾5$o0jÒolK®K!ìéW.ö*hzé{û´qŽ©êÁ6¯q¶·WŒQmà´EN2ø´<Z‘˜vƧb·éØȉ9hdºûìUyihéjMÚ#Ñàì2QåCþÀÍéuO%Õ¿(7‘Á.×Ð¥“ØGYóW<¢†o{Q”È!cjëpoÝÙmHÔΚ/ôOú£É[ø–Ã×K;]ò÷å|†Ø®¥Ù"bjC3^¯|Ö<MggR}b®¿[–{íØMLdYQ·Å^çâ³c‚=s×Á[]³ÝöÊHOë¶Îº¥‡…Öi*Y¨ckc’äjv2ÉËž
 :á¦mæj)ÅÚújw±1Š›ÑÚ¸ÇË™šÑU$Æ#&Èö©'Y
+¸fÓõÄèÔÚI~Qpnº÷ÞÍЀ«…aqÏ
+{ünœíÑ-s8þ`ÝÉ+û=äJùë¹Ù‰£”©åUcê†ÞVÍ8’uNû$½m‰åus…ÅÚ¹6ªä7Öe»m‡ƒ•­ÃHÙÁ®z=Ú}·²fÎ.™2'®¬ ¯ÀÁò¼ ¤kõÕµ£¾]ÿȶ²(O`¥hiï:Þ#xPåa‰Û‰Û½c붽ï<[ñÕè<Ïœ®ïÏw12·ÞÉÑ6o˜z,᎗]yê@	_/¸Ç–×^‘v_Èž¾;nÓ[뙤[¶ÞóÇÎÑ
+Cs¥>üŽ¦n/v­~!PEn­ΙŒ«¶ÔkÓý¼~Ø廍k²¢ƒ8Òü羞ŸÒnia‹íó%ãg=î\¶(+fßiã'¼ø1þ'øO(Ô!)Bƒ*ÆŸþáL±endstream
+endobj
+292 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 636 0 R
+/FirstChar 45
+/LastChar 45
+/Widths 637 0 R
+/BaseFont /RZVZYK+CMMI10
+/FontDescriptor 290 0 R
+>> endobj
+290 0 obj <<
+/Ascent 694
+/CapHeight 683
+/Descent -194
+/FontName /RZVZYK+CMMI10
+/ItalicAngle -14.04
+/StemV 72
+/XHeight 431
+/FontBBox [-32 -250 1048 750]
+/Flags 4
+/CharSet (/arrowhookright)
+/FontFile 291 0 R
+>> endobj
+637 0 obj
+[278 ]
+endobj
+636 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 45/arrowhookright 46/.notdef]
+>> endobj
+288 0 obj <<
+/Length1 753
+/Length2 637
+/Length3 532
+/Length 1177      
+/Filter /FlateDecode
+>>
+stream
+xÚíRmPTU.‘̐‹ zÔ!ڏ»°,³»
+aò¹Ršs½÷ìra÷^¼Ü…]ùÔDtL…’È/¾œÒ¬PlG…Š0"—	~,HˆR ju'üY¿œÎùsÞó<ïsžóœã½2NÉ—ôvAS, !@­Ü‚Š *!ÞÞ
+b,ISë0† 482  ’†ˆE!)â
+tº!Õ),X£X;K’™2$ŽQ cS –ÓÀ1
+PÒ8	Yƒ È40Û‘`d2!!@P$΂íPMRˆpÖQ¥¢t~›Ð¥?†2!“Á™k8“kg‘ )P…chî,È9ù/L-Ði41˜vV~.¥§pLKj´6]ÇBDÓd¨…Ô·á¼¹hH:íB4ŠÅ4$.£Ôøh€@ä/™ÈŒR‰8’ÅS€
+ÓdÀ¹}H­pñÍ*d‘	›"ý½ë‡‘»Éè	{®FŸÔ\J©[E‘åˆÜ|¼JZpØz
+§	’R±$`ƒîq•d£€¤¨PÏ9
+(šåZ M.PÑ2û¬þb äºè,
+T±³òô]ärZŸÍ~p §¢@*•äþƒˆëRìÜwáy\«H.EõG,Ý4º;µüü{õyëOvœ¶:<hûì7‹}ÓæƼ£$‘«”TůT³§†[JšyiîðÐîÌWK1’'N¸~ÚP|¬fsYÄ,¸©ävqžñóŽjÞñVEå«gˆ™éÿhßêW-«óÛœªˆ!ù;'/Oõu;.ñM8è»ÊCj©³ï}ލgèýõÇ¿7æ—·†ác?ôlŒŠãeDûtª^wÜ>Ý@’T™~ñƒ²+]CÖ,wbÚ%ö€y«~Ô«hÕ^ïñe~²8Ï3ûçïÒíy7ŠFŒÇ'sb³—üjoGóîV«°´ ò²×Æemýþ)z´ùÅyI-êó·ùb°qé÷©‰ç΢{ÿ²÷¨Î»_ƒ¥U^8äµntçŽZSØT"Ϙ+xó|Å–;§L͎ݦ—Q×ð.‹¢ôÁ'1í‹ŠÅѺ†{GSJF„¼[·Ú»;"OõhŸsZúqN|ÒÄ‹EÌ,2^¹Õ·ÿjºôŇ–|Þ„,nQ^s¸æSw©Â2ôÊ‚Y~ÐôKyIÑرú+oØŒ´Ëî»ÈKë.–ñ1YÛÊ÷€>´,z¬gü†Ÿ5<ÒÎœü‡gj(é´w«*t
+6 ú’é§[Ïäú|¹ÛžZï4çòÄÛ—;âËzÌËẨ…›Ý^+Do¾¯®s3Uo;7¾¡CÎyMíª¾>tæ]÷ ¬mÖ ÇÞ!Óíßj}ùÓM¨I©Œ?[ØØ-¶û2Ø
+èiíoIV}pÈ&ÓÖóó¼K/¬ºã<¶"î¡<Ñs07Soc5Ž6.h°½;)\^zõúÎoŒ-ùe¥=#'‚|êw"µ²ÓY‹§L3×’í±9¡]¢9ÿž	\1†¥µ“†ü
+pð–Ùendstream
+endobj
+289 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 638 0 R
+/FirstChar 32
+/LastChar 32
+/Widths 639 0 R
+/BaseFont /CAGRTG+CMSY10
+/FontDescriptor 287 0 R
+>> endobj
+287 0 obj <<
+/Ascent 750
+/CapHeight 683
+/Descent -194
+/FontName /CAGRTG+CMSY10
+/ItalicAngle -14.035
+/StemV 85
+/XHeight 431
+/FontBBox [-29 -960 1116 775]
+/Flags 4
+/CharSet (/arrowleft)
+/FontFile 288 0 R
+>> endobj
+639 0 obj
+[1000 ]
+endobj
+638 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 32/arrowleft 33/.notdef]
+>> endobj
+640 0 obj <<
+/Type /Encoding
+/Differences [ 0 /.notdef 1/dotaccent/fi/fl/fraction/hungarumlaut/Lslash/lslash/ogonek/ring 10/.notdef 11/breve/minus 13/.notdef 14/Zcaron/zcaron/caron/dotlessi/dotlessj/ff/ffi/ffl/notequal/infinity/lessequal/greaterequal/partialdiff/summation/product/pi/grave/quotesingle/space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright/asciitilde 127/.notdef 128/Euro/integral/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl/circumflex/perthousand/Scaron/guilsinglleft/OE/Omega/radical/approxequal 144/.notdef 147/quotedblleft/quotedblright/bullet/endash/emdash/tilde/trademark/scaron/guilsinglright/oe/Delta/lozeng
 e/Ydieresis 160/.notdef 161/exclamdown/cent/sterling/currency/yen/brokenbar/section/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]
+>> endobj
+157 0 obj <<
+/Length1 1612
+/Length2 17647
+/Length3 532
+/Length 18565     
+/Filter /FlateDecode
+>>
+stream
+xÚ¬¶eTÝÒ%Škp—ÀÆÝwwwgwwwwwwwÜÝÝ=@€ÀÍ{Nw=Îíû§ï÷ããYUµfͪYkEA¢¨Â djg·³uf`adæȃlŒ]œäìle”æ.€¿Fv
+
+G ‘3ÈÎVÔÈÈ
+Ð šD& VV @ÄÎÞÃdná VSÖ ¡££ÿ/Ë?! cÿéù»Ó	dn üûã
+´¶³·Ú:ÿ…ø¿Þ¨œ-€ 35 ¢ ¨%%/ –WH mŽFÖ Eck	@d´uÒ ÌìÖÿ^ LìlMAÿ”æÄøKÈ	`p²š€þnº› íÿqÑ쁎6 '§¿ÿ ÀÜÑÈÖùoœí  [kÓüµ›Ùý‹½£Ýß›¿¾¿`ŠvNÎN&Ž {gÀ߬Š¢âÿæélaäüOn'Ð_7ÀÎìo¤©‰Ë?%ýË÷æ¯×Ùdëpº;ÿ“Ë09Ù[yüÍýÌÞô/.N [óÿb@pš9šZœþÂüÅþ§;ÿU'à«ÞÈÞÞÚã_»íþõ¿8€œ€ÖfŒ,¬sš8ÿÍm²E`úgP¤lÍì ,Ìÿ¶›ºØÿOŸ+Ðñ_
+¢þgfhþ’02µ³µö ˜Í˜äíœÿ¦Pÿß©Ìøß'òƒÄÿ-ÿ·ÈûÿOÜÿÔè;ÄÿÏóB‹»X[ËÙü€_0€¿7Œ@ðÏcmäøÿ
+7²Y{ü6üg ðß$ÿ?p¤œþ6CÈÖü¯ ÌŒÌÿ6‚œÄAî@SE³‰ÀÌÈúo§þeW³5:ZƒlýW3,ÌÌÿáSµ ™XÙþÓzö»€¶¦ÿIþ¯Hÿ¢Î¤ª¦('¤L÷Ÿwê¿¢ÿjï¬êaÿ—Øÿ(EÎÎô-þÁ¶sx1ü=¬lœ Ž¿	¿³°øü²ý†å¿ÖrFÎŽ w€Îß’™YþUøÿøþk¥÷0b¶&v¦ÿÌŠŠ³‘­éßñú_†Ü&.ŽŽUý׉ÿ[ðÿ\ÿkЁ@w 	ÂÚ²	O°ezV†s=NÞȤ¨Î`?äHˆ}Y“jq¡­]Ÿ_zø.W•á{]có4÷G‡ÇÒ¹ýŸCiÚ£±~lkª¾Tàu¡Í@!Úe'ÝQ “~RÆ…F´×Í¢ì”6³úÑÞ¤’²~é;Ì×é.6G¸›g2×BLò'{d_“´Æ8¬nÔf0ôú¢óʤÓç'ª¡Ÿ£#Ã}wЇt¹qð<®PH”Qþ¹ÚjU^40-_î:o>ˆ5z½ôó)ÈñÉ#md_ÍÖm;eß“¡3:x“ä%Û«5±o秣x…’¦¹æò>7\(Äœpx[§‚ïg­Èƒf²`‰F~AÜR:…{ÕÛÔÒ¾ ç-ŒÎ(u—5ºµÁR03ŒF¸T#‹´Û;Qxê®ËX ßËsÂmãR†ž5Œùºúç¬ê.dMóôë³pÏ[ÃΰÎZ8ŠŒšïDLÉŽµÜjËOH’•\(ytù^G¹'T¸Ã=±Diê Ö¤?25—©u·É.¨>'õ–t tX,爑ûr%}	''CÆ6^ÈÓù<ÿq’é¾m‹ž^uàyê2„MŠ0»Pô¿f¢Å©, ·²Ñ,fꢬ|h}Öd«‹å®H%‰©+qx_CžÎç
+à‹ÃŽÖízEAÐm²eg8ÏY õs†¶zÓ·ú=‚é‰,jŽÃ۝‰÷à1Ó„è@¬í"Áý"~=_g\äG5Ûƒ¾Ézì4rÜtQtB”‘ÔáùýEQ2É7%ŽpõÝÖURÕˆ]½õ•ø	­Ã4ŽJ•áùã6d{o3:xR„#Ó1²ˆŠlo΀öåöéL݆CäñÑîLV«}Ü<Þãç—ùnebÌ@JÀ'½v”Ño14ÇIÂn¢È6XFèêÚr¿†€æT&2âü…–¬KÆÍX¦Ô39,Ö¢ñjXz’È¡;×TK~ë>ó¨q†Ô
 Fm›ãè:ž„h°]³|n ò’­äƒ›ÌÜv8e½Vøå/eá«ý”ªÑä5ð ,I¼ó½x˜Û"¦^&OŽÏ8*°?Ûvjé4êºçóPvÖ[Ò<µ~-z|]QCw[Ð;1oæC–±Ÿ¡”§½ýØ÷æIÿúÅÛ’sU2N–± Ê¦ùçwr‘QɁgjw»AŽ@Qyý='ö&Ît·ìÈi¥­½?«ê¯ûc–ø¢öµÁÆØx¨”½ºV™ùsg×Q\Õõ‘]¬KÇù)^Þ¦§Y-ÙÒ;_*FùnG•n)'x†„”Q”>öÅ­Ò	e)ÖÞtáfTŒ×5^»¨6­3i0–¿Ë˜÷'¡e×X’ÚÊ+£6^{2ˆß
+üø_¿ö6¯kÀy˜ÐŽÌŸ*=u•š<8ï€m'äX]r$#z‘Ô´³þ<“H¢¢d¾F˜ÃÞfkjÎ~Ðô˜ÅuB™5ä-"ê"®0bXÈvõŠ‹¸é^¡>ðÔÍ%†±Ê¾‚}wøEç1BÈmž¢¦Z.5|ÿËÇcՏÕ鹘lY;©í÷s~ðj_žˆx®Ç2ïU0\:ã¬4Oø»ìÆLŸ¡iÅwÑ3HVõ8c»&'OcÖCw~‰>æíÍ6„øa«|-âÐĽӉŸ„òýG„`2Üù ¡dJŸ*ÑD¾i쩨Űëúpš2XA„µ¿ø{3¿ZŒW˜°–ädÛÝñ',rÑ—¿Ù]?'fBŽ¶«ì*üp}HŽ\lÀ²‘Ù+jÚÑfÆ$(˜@íÊ ¡ÎÁ³«ÐUØ€£ˆ¿kýJGãËX=Á
+î5K^Jmç
+ä5ì ?Ÿ%¯êeȺÿõÂÒ£‹zµÃ'òe®Tø†”ƵÍðë—åó©ÛcI'’ß8¼‚
+¹o+aRó—`UÜFo¼a,b‡^ßý‰‰!à !'=Þ;ˆ¼•<>ân1©Ñáò&÷ ää?>£½oKZ¤­gúî¯åËx1¹ZèA‘ Đ	eÊu²¸#òÅ8’ÄaÌóóJ1Ð7ÊQòm
+ÙIî¿®g<¹®LºNI|ÀG‘I~-,Õ?EÂn4’\¡Oà4˜AÚÛŸ=됅Ð{!Ò‹“2×kAށ&—Ó|½(ªÈ¾²TF+ë°±a¢|v» ×>zéõñÀ	öínM–Êãn¨*ðZ%CH×‘!ÄÒè•Roœq]ƒµ­G<¶¢ëËê&Š(ÆQ¦y÷ŒÇ_þn0•·²ÑÕ]Ó_–~Ó,\n /Š™ˆÝ	Úã‘o4tàùhHNÇÛs'TIß°ô—¾ÓL–€ýÑÿV—F\ÊEj/ÇäœäML©Rä+)^(ùçÙV[M!÷6¿˜
+ÒñýTÒ‹Aœ`ò†'ÍSÊ§X[΄ʳ–ƒÝ˜¨,ø­:qõ/«R) „ËÈ”„
+¡’N3®uÜøûSòwÐç<­_”²"ëÈè„„ÂB,˜xë¿J†¼GvžFYs;v9–ü6—‘R3÷Ÿþ,¬E;s\ʈ”úÌ‘'§#>…Àöj3c®{OµJN:mÚ©u—óEBÄé}eŽɼü¤U± …,ƒâïéöð¥úi#ÃrWáìn§y¿—¦‡®puÂpä§Î³Éi°Ô˜,j†Ejóíšâû9ÑSûùEaȘ$&R0Vç3PŒFá}l3 _8+Stçû½RáJDCÚ4,ñè#P/ƯæćôVÛü§¶q:oü2é·¹Õ|,¦ý«»×ª.Åþ·#æÊÓ€sÅ}’7{J
+|Ú9–çZbÍZbÝ~Ò á,6W¨ô1—SpÄväüÚ½œs~¥Ë–¡§wRÏüšW$c½`;ÆÜ~S«˜Âú½½G ñ6T{i/þ2xs´¯ÍÍ<•™‚£âN;Y®ÑèDGß­Ë©K÷à²ÅP‘ò‹î’od.]í•Î#N¾»99¯ ‹Û»óØÜ»–ÇK1Q“Ö¼µD3hä	ß×Þ7˜~Œ‰$Ùðk”Ø1%«é²à%ÜÅƃÏÎçÈ']¹«ÂµŸ"VÃ|9œÐ´¼:ׄj¸
+÷IÍHKVÈ%I¿<¸  ¨htõ{ã[?Jé'(„®C?±º3	„K¿í^.%¿õb/ܨ*Õµ
+÷aÃýü ¶´ZTrYœ!ÿòµÛ6íO§Vý°`Ìf.mø“-‘©§:Šj•ÉyP´½tKO5q‡£„.*'¥–¬âGhÌG 1òý]K9kzúŒàÌ“fü3©|éVýÄÓ^Ü{)ÒzÃUc+4'IµÐ+RãößX‘êâ{ê×[µšX¥¸OõOåõ3)­wÙ“ Îgv W×ѯՄW±¤œQî±¥9¥­2ÝDw•ACØ6øÆž„_ÙYyµNýCæô³8\
+1¡™Gߐڪ]D|")‹|/a=4dO‡5FóB¿·íÁ~g/hè	ï™ðÙ®D™uÐñð ê½ûöŒòÌb?ú y“ë×UdÎÏÊs´Ì¯5!Í`ehß}›ý®ê×ËäTH†­Æo8¶]£ÿžc]@úxVýº\CáÖž}¨j$È“
+V‚'SàŠa»—UµÈý{6˜åAD–ô€xãsr$ˆ„ß5²çæ8xÂ¥qø
+cÔQu¥±7†Ñ20©èó(ŠòÕ¼¬8ÌtŸU\T²ß>•Æí.¯¥%á4I|Ž±fàH,GiKVr&F©<îA†-Í´ñ-„–å¢\(&áÁÓÑUÏ,ÕùK§åwŽ§Y9t±ö2¢[´Ñ0ºW6®ºß‰œéØÆb·”vãs*’æÈÄź(^ˆÅåÚ˲G9ÐP¬.óìâ!ºâIHp¶()¨‚Ià
+‹Æ,Ãlš'´Æl/n2X°X‡ÐÕqðkè«Žì·:.×Ôq·!i™}
+¹A…™l›Ëbƒ—¹…戥Íù
+3$8žmFœ#8ÒÑw>hêèt…ñÒ™ÝÑ“Ù¾v€X(ü¨þ'm­ââæÈ>™ =6‰	E —´-Â?žbv…djlhKÛOÊ
+Ìüa éFÞ]ç;©ÁëÆ4¤äé_Ã\OˆXU$þMAW29Õª±›ìÀ†’åÒ"8øĦô!]jª '^#_j
+ÏY#ø­BeÉ»•œ à X|£jø†ÞvãkÚA€Õ8ðw«xóí­Ð¯z­âÅ‘¿lÀàBòò*w¿kâi榧¬Ä ÂJÈ}ï@Fe0uaíìTmõ‹a›µ«\G®˜rÍÜoËæªxÖ”ªSpÙO“8w+ZlÆ#2ZŸÝ⋧²¹ïט%,rê>ŠÑ+´÷ùú¬ÂNš~»ÃZ
+‘¨#Ÿjj1úˆÖ0|<Š¤âµN"ó'qKÏ–îëyþxÞK>~Eœ¤gbÁ’U#ŸM£¬NèçÁ,º"CC˜Ä…0úÔ³·*+Ø/¶‹ÖÅ—ÂÍÚÙÊL‰§|³Ã”?gLGér6Ø!A)¤ÃwâP‘k£7×āƒ°yð(?mÑ°ª˜ÓæŽ)á©ÅSÕEBÉ—¿€g†íÈí¹jËC+a
+rcsp"}à4ÝüÁ³ØrŽô²ÂoL=0UuuàÌÇÑà£wSü¹ò8ñ—„%”,zgù$‰ÎŽ°²HŽ›eVü©M\nïŠ=²ž3³¶Æc:…ãáÔÝÈQg~;D7›OlŠ?xü~ÅNÉ }ð€·]ARù¨“­h¶sçû¡AQ©-ÙI^–Jnù±’ùYNPòVwîê÷ë0xÖ§ù€ÛßC òXh cs-l
+YðZ™ ÷h–cº|#™‚ÌZW÷ã4ê±¼Ž»³”·9Ý´ù¤þ*¢ã‡É’‚^> Zd·3÷?m¯óúe
+“©Yÿ/öQ@<DÁï	­ÊQ“lÐlƒ’·Ý2âIßæƒptØMáñ\YÏ÷$`… Æ饶ƒ+’³6P>èkÓÉxbVÞOËê7¹­®2
+ÇÔÇÌZÏÉt+|A‡žÛE©­4¦©k§€BÀ`¡tH™’þ€f8¸)]V—öë»ýô6ÒjT3Œ|í)›wíD9˜õöacçÈLQŒÍg”kKȘ61wºXsmÆ©_?õF.ÜœU8vzU9ebÐfÚ}&ŽUË,”ò碱‚ªô=4Srz˜ ¤|‘.œÛØ}8‡©nYjtñ ¾1ÿ‘h–;j35% Ž¶¯XÑÎïÛ,ÇϬ?›–&ó¡ª#ñ~Ì–0i$Rž{¨Ðkpd†œcÜNü-O?šÿÄ»Íï&FÒäÁÃwm'2Ø…9 ‘V1­û¡xu×aúÓ6»Ê…ÐOwú+á‘SGÁÛŒÙòíÊ%ëäQñ>hÞr˜P’'sÌ5ÀX<ašiµ”¢¤ÐÚÇó=Œy
+réç2'q¤5ò$¢3>oÃFõW‚>øö]ìΘ-èIÃ~2+ÓdÞH‡ Ä©Ñåž8=7ÚETªññ=–ô݃óÜðð5ÍtÈx‰„U7'é,ùIîì0~õX4~¿éÞ–óyýÄ_<öžöÒ›¼foÃÜô‘lW@§ñ¼Ÿ7§Ê”ðšž÷‚Æß4s)yžT#›÷kò‚ÛåëxCïpª ¸_£?l7ðM¥ú`ûƏeö?Ž“8‰€p‘t8<µž4c¶"!‡•=ZÝbT¡À[Å!ÂR\(yejc
+&Çœ½æMH«á±“ËÒPušª¥â£të~5P6{ô {\»¶Æ™PW}²b½|°?ùxꀦŠdŠ*?""‹ÄT7Òá®]£mÚm‘INIã›606é_‰ü•Ç2þmDüNå
+W»+Ý"h©9x¿ŠÛå-VŸH\*˘\£á!xè΃Ķn5(=LGÇ@\¾‚µ‰¯dsK{G›–}f{¢Œ^’5¤ÁqXýÙèʆùÈp<IÐä()ˆdØ«%zj϶DØø#ÀµDVga“œݤÃe&SŽÀµïUö‹ØS\§êLKâwGˆdƒ‡ø/“6Ma¾“º+á&•›Â°íBˆ«ÏÒ÷3÷J(Þn²{¡´ùs~é
+ PîÔÑêhü¤üЦ']ÿÁõŽŸ3ö«ÂQz-]?eñËêL¥6ú¹‰‘uýŒqWA»Ú“T¯}8Åhgqk^ä,ù†üô–Êvüï.ßœI#“bøYbsuÀØ᧲¦¦ê@tX&ú“šip4ü ´7ÍK$g^}ëT¥¨ tÊ{µˆEëÍš°,»õêUƒWÝu‹¢¾¯Ð|ÑÅ3Yv*
+§¿meŠÃ0úèÝæRÈéæõ£N›{U›_¡Õí}÷’­7Zcõ¾Q37üöwñ#É[Û3óC/·’Þ(’-råo‹.Gn«Ñü‚X1ì¾5~Mhܘ‹›ûÏ|L~OÒe݈|<ZÃÙÊakŒøÑ-)–‡ou
+{‘ø5ãôe2zue_¾g•{Dñ6’ç‚ý 
+¸¶5í!ÊVúpd~Rªh}(ûp¸yJ±é!}7pÕŸƒ¦Íâ
+ŠéÜËøFy8c^Ž[
+BD ™M~·¡Hµ!F™÷8»j{̦…@+¶àKÓ¢Áá}E5®€›tsŸH3êRüÂÐHVÇõvO…¼®¡ÃSا»†/§mȉ'ïºàÐæÕ“4ðâyºsi(Õ[CßÓ¬=–ŸÝ’貂ºûÃ@GQ—ö$QÒ*~Ûô¢–‡vßfìr¯Ôiq|‡LÓpÊ uÜŒ2Þ4ÓNÎficþGï°êÙÁ‘30"™1Ïк¡¨|Ø3˜Æ‡×»¶&w) °â5`”îwèüŒð›„Z÷VUþä„òGr¡ê‘'õ¡± ­â¤Q9LŒæîmed@„7EÐFò•c).ù.gA´DâóIôucš˜^m´ú¾<øaÆ7•P„WóP—8UÞ®Í̼¹++%t1ŠäØJ#>zOâ]˜—@ÒP*IùÇ•¥ÄŸ^ŽÜ­£_û}Þµ“¶°‡1LSzH²-íäwŸG>©Û?Ó¶yˆ>=úYìæ¿aÜaD at +ÓÇžfQtj)²Ë7}À½•Úwø8I¨;Æ @,§d«mu2¾»mDhÓÓÒ¹_,Ó¾¡‹Ün蜽,™¨ Z=eõùë?q‹\?í¶U=eF為©t–…àÞôç–¤9ŒÖ'Uu½a–ïãnw᡾
+ÝÉa`¬r{l˜†fPÇÆ!>6ºr!ñG	U"2omE¬yð™Ö0¾§Àë6@­øsß0³ãЬC­~1|ƾàz¨²Ê 
+(lÑè(Wª;òÇŽ?u²¨½Ê#—³IlÅ8~ÏÿI©Îå1¾ÈÖ‘„Öˆ7;J×úÈ‹HÔ,9×ÁÐ¥ü÷a5¤ƒeQs?¢—ñ!ÇñÞ.k®(ÐÛò"Û	ѳN‘03?Y Ëp­A·Ž©y0¿qsG|ÐiÝ+ʝÏ>3¼€ßE</…»UÔŒ˜fLÇH[:Ê»ýFÑLëa¯¿¶µ¡×X“6J’§í•µÕ;úÍ5‡»$uIîô¼ª…ß–#©k‡È…hÆžQåÂQ€Æ’3›Gû—ô—å߯y™Ïk6_ œ%;–P¢Ô´údá¿$ðÿ¤¿5›@þ¬F™®Ö6Z~¯"ûÌHB})˜qvyõzAÃ9ÂÝÏÈbTÐ!Luô„:™úðìIÓ}r'ëL%Hiû0öçïæ®t¿•˜žxÿŠQfòÚBlŽ|hÅ—@±RVvA¾ü¡m›·«"¼ÃÀ·L=ÓqçÁ[ÍceÓg$4QÇíúÀSs{1®åRGÿ„Ku4z›æãQ­ä|V­ZQ?lGò8T'Á †6ÍúMÂm¸Yg6ˆ­¯Øܺw¬éCƒ.sUºÃ
+T°ž…€¿iýò•í£‹\‘7	žtÍw‹Ë¢æ™ÛuSÀVy9Úú8¦–FïjÌ/-2ºä×ί
+ÓcEý‡›RÕ‘¯w3óvŽ7ù³lÆ
+Oì¯WÇýùÕgæ…&˜û
+«sÎöØCˆÀ­×EË°Ya1…O¯c¹®1’öf™^4æ åñÃëñÙu‰!­6c´žÒ }*¶ydb81²h¿å¹ë)¬Èæì—:'Œˆ¤yŸø
+Mà¦ýìõáîyV•øFƒP¢‚%wx_ùf O¡)0w²zQEcÑÇØÝÁu(«ígµŸ7ÉëÆ-uìË’AT‚Ðo9
+s$S²Z˜Þ$Ûœî‹.EM']g
+èS¡cZຍ‰Iò—½ %ýØ8ôæXûYS 2›ÙC.f´<+q옦ÞACOL̈wê½\·¢‹û“ç2“Ì_ýÚ
+|´äy¹f7ñés5TGM.·›¨Fn·÷|%b…F§JÔ¶ââXÝQÛꘓ}ûh:1±Þ`ŸÆƒ“zGLJü'ªRV¬;ÏH¦îbÊo˜Ü¼Wgí[9{53e^oó'x÷)ÖS³¶È]Vø©^ôŒ–	\ˆ>>ðP­¶¬0µÝûøYð¥Ô§dîFó.<
+El†Vk{ÚZ3§·3r€j¿6­£È’¼“ƒ	uy6!Œ¾“EÃk9m½| [œ°/÷F¤Ç77ÔÀ圛^:­X¿àêÛÓyCâÛ¹°|ké<&âÁ9`	Úe2;Ê4>— Ô©d2ǁâyͧ?µi¤5H*	I1˜¶öhEI-x’AÛ6°ˆjc_¤Ã&̐“”& ù :Ù?kŸÛ`bËñ’¹-öŒwßèéq‹Q.–~fhPó«)[ã§|¢µÄ-¿H¬¿¤ÙXÅûÄeo’xÁÌ«ù]*)iLݺ¾ ä´’·lr~éTóÝ>>^H­ä~.»÷¸S¯AM†5°àq~¹_ÞÖ]—ì‚?ãÞ—ÇÏs÷fÌköY‚8¿×Êûº«”¨³ÿfˆ)L,€ˆi}–9…º	¦¿â<ÔÖ6‡ ì€àY‰ô‘KŽ`s?w.€^yËey–ÞЁˆ‘Â;ú™ýDëüÂ¥\ÌÂh¯4ø*ôŠþ­Þ?QùÛÒ5¤‹c¸Y>(Öñâä}ˆJPÔV\ØßEwýÂID(ù¡7ÿ±ÑMÍÐd¶¤eñ•DadP¾°$ƒ3É’^~2V¬.ûQÿ*©¾xcZ“sK!UAa£Å‚3"ßG“Ì	¶.sR‘6Þ•>)2/{°;8ÏÌm›¼¬q|ùÛ$u¾Fr)ë0¸Ѧ»|¿±FìÃ÷óÚædov#¢tF—™:°Þ´Ço_\!„jëE&©˜Ja‡"<v釓=’ecôTÈ•N¹ äì[8L Ð‡/,ÈdˆnU‘QÓòV$øNqÂխ颃ÖP=vF×±´tÅŸQÌîêæ‹«<?ƒæ
+)ä£Aož¤5ß]ìJ ‘SHüźzósë]"b(`l?IÚ¼4z¢ø\û£<.˜ ˜Ñ%¡ëë;Áð7bñö¬7ã?âú(#®¼›Ý ÂÚ™EçÅôÛInÇC (?œ)T$µƒ‚h3l§ÂúM0¹´*j"±ó`Âx9®Î3Â"´Xb.\Ý‘²G„ëŽYj~a˜îé	ŽØK¯yD·bá¶ëw̨”à[¨œ Ñ£u=V`¼¤xøG“Ðíª+êèÙû»hgÃæµµoyò³wJ/¶ßÆÁŠ}½!VTa— $0Ô§¼7Â"óS šRC½Ó2›µËë²›QQ½º{evæLDêžíüV<-«ïΗšJæw`=oûH”Ó…ÍŽõöŠŠq
+O&#\vÌFÅÎ&² ÔÝŒxΓ;a³:K¼˜&ê
 K­(­{NÓ³z_u-ì!ËÇ yŠáÚ³|å:êi‡Ø¬ý	3øáms¥ÒD¾Ó†±Vo6$/Šì
+„‰£\꤁g‡·ž·§t}w鍹PÁ¥u'#¼7ŒNÎtÆýžmµ  QGˆIÂQ@åK‘:ᘫ¦Xu¸™Ú–@ØÈrý8uYò•$´÷&ø•ÞвßFö=VÑ–$[®¥Ãén]ƒ½ÀꟋà©xVpÄî•
+ÆN=;YûWãh¤c÷˜ë§÷D/³Ó‰š ~ŠX˽LYšä¶¼¶åÎŒYq°ôÇbð›B»-ß«&%¾Š9‚kÙ¬¬|äp;’Pݧš¬_•å^’¨ˆŽ\ŤCó±Éw·–-§Å,¦Z
+Ö¡gåö
+×$HS,Ø4£k®R§n·`¸Àš»=H›<
+käï~Ñ”|Ó:¤_~içy·!p…)Ò[$ l”]Àêf'‚fè­9c`”ŠÙ›§ÑI•Â$èE•HYZC(V8Ë	jì3ç®åt£í¿òF–™r÷³Æóhâ0}·!ÏO(ÓÑÛ¹þ5€MÖrw£íÈÜ<‰_ðxêGŒ«`÷8oŠýãwçÃeüß·•ÔWm†Ú½ÁŽ¤ýí°ÊÀ9åfÙ^êî…§¾%È%mKO×:9S+¤?±ÒG+W¹5åpè\nzsAvY·ÝJJoðiȨ
+„Œ‹°§˜¤.™t©0§»Î­Î´¸ß¾,‰äi•¼Æ”~¥*$wĽw‚øY€‚ñJ	1Š	þìÚ‹”É~ìª1Oáû•*AÉ ^ýOy,·“v	Þã
+WÕz0`X„×'ÉÒy( [Ñ’-QO„Ž»Òãá}5¤kùÚ(ŒùÐ/^ðdØ¥råù“ž2Z¥×ù@° ?m·à‡&·¯ŽÅ‡ïPNž./˜z¾g`âã‹Š’m‚n{¶o©Ì§ˆ¹+,1ÛÉÞ27*5׶¯÷­c·Õ%éªë桁ãðVhÐMyËEŸ£5^Tö˜¼z°™à
+O­S°qLo‹tzŽ®ãÔù‹1ÿ²”ÖZû—|¥ÅÞÖ¯°=æ|å}y_sX[Ò—~u÷+?4AÆêR>ՐÊ2Š3Âá7‡òL¤’׶Êé €Ô¼úÉ'96æ“	€µ;Ø»µGð#¯¶ü¡²„ÍÆ"„-mTüx­
+ß(ÁÜÉíqŽò+΄FÚ ŽÃXíA96N aËqÇn;ƒÙmåà·vd4òZÓμgÇË-…ññÄCƒHÑÄòµ²µ	À7£‹Ã³;ÿL÷·–Õ“ýÍÇ)ìfž½è!wl‘íק]&ý]Ék
+þ
+œ°×Ù™I>{t’a£ç>èërW•ir:ï(°f{©£‘ó0›Z#¢ëõ”Ø´rïÅÙ÷ +”ÀrÙ9±	kV
+؏
+j—ºCÜóßSWÙï&ß‘'Ÿ¤ýÝô!¨byp½¹(œ~	§m÷e%K^yrêø 2Ésš“Ï0Cj½ \hâd5Ž-´N¸Çç¾ÚEE—RCëôq露Ÿß”µ\ÃÚåmN†É$P7Íéœý¦
+5š¶ÎAufÆÀ_*¨^»Ð
+è´ÁEî玡i7šH¥Ÿ‡'•[J÷eùBµ!ƯÍ*–<›ä…ÓU/	ãÕʝê†C@™ëÊ–x.ŽþýóEMKã†spƒÆÒU"…t'wo8[ªf“¼åR"éëñI	<‹ÝúHæ/IØá¤?90Uï—x?ðhݾY‡–Ìu•S+K·ÛõÜ•3G¥daù|\è)Biû3¦>2$¼Ë­Lô½¤j	ÉÒ1öÎŒäYÕæ¥eæy¡f/yõãŒßò¢À7“Îj[5ÎâuU¶&éeÚÌ}(¢ãëw|”ƒ2ƒ®ÝŽÕ"×R+ÈcÑÇ[Q°<î†àýŒƒ :_¨5–;Á¼fþ:çDĺöôXXER𦟚 AÛ'¡lYô“ÂdŒ„€x³^fÔ
+ÞËËM5WoÛÑñþã[¢Ò†\âÉ°°«!>ð<W“š"W´®Æ}ÖE<€Âä éØÀxäMrÍùL²¹Ðj÷ÌÑzZC¶M=[ˍt鯾óñM>çÔòÜÏhEºß¿	}{ÏIWt†'¾mD«¿¬vïë'c^¶rnÛþ"H|<° æ$'p+mžpÄ+ƒ`ƒDÖ¾ìÛÍ"сÀhm¯Ç©4¸G!á˜iBOHe€ß5·Œµ7Ί’6^£y“6ãñh,óêüŠ×1°4Mú"[´
+FéÎÞ©†äÖ°8dkg>?"Å\žÕԐ䓒•^~–æ?;ÜvÿN‡#>U^v
+ØÊg¹Í=!)„hæ/èFÀª²ûÂéêzoùeÑSµ¾“϶ŸÛP¯bˆ”m,xWnÐ#êƵ-:F¯·}ÓrG¥>5.¾:hgƒ@GÓ–>²	rÄ–±6fàxB’]»
+¯S¥Jàé÷§fÐ@œJ¡©Ú‡Ñ;!H‹®})ǧSÓ×| ªµü«/“srÔ4v<瑉k
+Ð<Þžûc¢Ø`XŒëbLð£MõGñÎÚ.Y)$Ü‹V©ôj,iŸ„@ òBE,EDFEA3ûûcÆ21*gºY–1뺃>O¢Ok?ŸÕ<Í‘„/B
+Êl at +)¨S‘¼ØÖóójOõ<‘c6\Ìî665ã™8›çýˇçƒº–ÌBIΕãÍÂÀ)àZߤø¡›)TGpdÚooCÓ;Šat·’p÷ú‡;¿	Ú(­tÛÁxöv™ãbŸiÓ’Õõõ€ñ~öy3¦z]7±¥àT€HÿYutL
+.Ÿ‚”<ÜþŠ9Å*¢­(7Sè«vz*r·Èî뵊œÔçovL4 ‹ÛúY1Ú´j­œÁP6#Œ¡o”q-ε·–5MQÌì:ÄΫßÀ\‚Åø$/Ýù`˜œ=Q‰:Âþ¼&O&#SÁ],mÅÁÜ“§*YéWn*UèþEÔÎvàµ^ª)fí¬™x}égrbÔãÕªñ½GÂþA*{ Ü[;J•²Ë–žü*±{¤F_7[lÒ½Ä`´#´-’×[ßƳZîi´?ÔÞ-#G)-ÄDͼéÌ5¿H¦Úß獂\èÂñŒS	›ˆ¯ðS§,ò‹É RòZÃk†ïCo?‘¡~~È_%—z“øMbVÅL™èºë›¦QŒÃÙuº)'î@[¿V{»èðPKØ(“._Á…€Öøœû2ÏßØAë룅4·u~ ~ M“,Ù‰›¬¿èAñ ê\Oì[ÏÕÒc¬eY¾J¤@Ô™hì+€S‘¾Q2å·
+I¥Þõ]f.{Œn4ažñA9«–-1~KY/?3ï%Âcì¢-ÈÌ-sŽà¥Ç
+2÷]3ëݨ¾·–”ë”—Þy_Åå€l?/c*±ì—mëÑhLñÇwºöÅÓó©N¾»QÇô]xû;€†Gn¦î%8—è(FTP€zkŸ"y®öÊe#.Þ¦.ô]û7ìc„uõSWOd¬iùŠ2§C9ÏãöžøÂp÷ç>:Ȉ˜®kZüº~òëòËÖ7l$Ò‘/äîs„}oŽ»ð³±Í¶ ¹ûŠxæ%!?¹TíV]©SuŽœ0ifrŒs¼(,冩scÒÒ|&Ãï¹É/–Ä…_*ëˆZ/»ðÉ2íóP´óÓ
+µ™pN
+K¸riÛ§î¥røG‰i•N,nÌÕzÖýC<7ðj¾òäÛ¡†ê²ë*Ü×þhΦB»B	¯QÒòö7ŽwT‰k¶ì.ÂtçädFÉ\²G£'šeh¸ƒ#¼9¯à¥u(2;ÔìýŒ’”Vt€N®á‚úyñ˜øäFØe°ß§›÷yPn’²¿UÕ5Yž¡£~¿P‡CYÎcʹu6‚W—˜3}-o%?xª}”M+òÕææÒ~O¼&„¯çu³ä| èSyó¤÷ðl‘P‚§>Kù‰UÑÃë)vWí—5WI»k¦Vë•ž2BQ²XO>½\,ʃ¢>‚%”.ãåDÄý+a|ý¡ßUé®;›ÞÞ÷Žº/ÈIû¤®ÝïlĹòóz›ú0º?±6ß[û¡¹R]*î,±”)ÔÿeÚ¯V½ߝ%ADÐÆbíÈwÒf6åÑf`¶_<E•Ôú7sý“9mSøûÈû㬫WÙò«{WB¹¢¨ôPÏ¥Ó%Qò ¾ºÜ:®Iã.‡)4`FŽ%Mv`‹ÿaª•,Ópofk(f±PºHÈÜ –7ñ7{ÏO‹]ì»u˜<Ùæ°ÉðŠ¹‹£dFÇpJŸPW\úÃäŸ$Šn&Å›Œ &÷¹Cê­½dòì7Þ’
+­B<:C4%žÌýŸ;ŒÁOx:* »{H†ÕЮh•ÆØ?•JÓªœÂoZ>½£›ù9…ïú<žaÁjv"µÛz}%’EU%n­´¾¹‘×~>Óëg l͹èÇZæ„vàp`ìG‡äÙ–¥>3gu0ýÇfï“×4ÝXÎ`¡mb«}îa
+É2oåtKŠ O)xøUÿÁ/æŠ÷=øÅd¡Ê×	¬¢­TñÊ?¡t“èØŒŸì)’ªÜ¢]šª6ñ¼¨|Ÿq"ìÛ!Ø0,et2eƒüW2
+ß´ß´£ÀêF¾=GY¬`ï]½‰M™‹>›ý@ÿåDl¹ë”
+'ZØ’Í㐥Þf¿0ʤ“Qþ«˜
+ßßýEƹJÓsÅ+?uì¥
+oÂαôÒEò£†l&ÎÅŽñϹAŸ"å¹DÝh/rGÃÓ“õÀqµÇšÝ0ª•Ê’í»yt¾rÍ»ÃðKúœP¯³Â½˜â›+”(î7lטƒÔ—Y¯Fa‚ªØÍ
+AoäXÆI2•l Æ[z
++Æ\·0 G錢2Š¿2çBzŽ±%2dIÔ»¢eà…NqB•Y=ùìÀ1þ#Uä—|eìOPò?«‘ñw°(§ÚÑd&ÇৄoÈjÁ¢·8㨜0šªÃÞÆ8؆¿:`[n&×Û*¿'QªSi6)?*¹tm¹2?\9\nWѾr÷b
+7ù$ÑÏ™ muÔ·9Är’!¼šmÇS_
+%q<@¨S† q¦ê+Õ¤õ÷ÇÜFj~®ÖË‹zóOÉi<öE>y²K¤FœÝtõ;{,±@œX¥ÁÙÚ¢ïÂÄ¥¸k áñ©d=Y4Õë„ã¦ô=‹Rž›´¹.Õ𦀠d`Nj8+7‰sU³HŠ¸E"\²
+Ö$ðé'ʆ!î¥
+Uj¿­§NsT0_õj½§å/•²	Í0—vžVI(ìS8êÊù7Œ¹Ó-U–{US¦Lòý³Æ„»FŠ^Þ+)gØ´
+cﹸ‘AòñÑ=ÉA›’ƒ*Õþp*²ç¥¥Às^¼¶ÌM-C-xé”ûÏ¥·o³%(EU™ÐL}†çì­I ±ðÊa¬Ï€–¼Ï¤é†úýÅPbïwBÚ¬éKØ'pßôDz0½X¡q›F^ÃëísÝÜ]O(wƏùª…%¨32~Þ¥s>/GLØÇå¼¢Pi­•„:SñX—gÒÿ¬pvgŒ´Öü„ד  ‹-»VŸ‡?OæI’žÂ—£Q’ߪ,L‚;Ðdû}ö
+õÓK·/5fËC&¶¦âèzò…&³«,ýèÙ+Šã=}6|yEèÏ 'Õg½EFÿРÌÅ{€›†ÄÖý!ü¯)ƒ)¾ a"‘#pî¢C¶¸!Š¤aãŸð@›a[ïo‰3
+GÁ|ñ5lv¬Ú¹ze™]º×%PÂ$RSŽHFÚèÆfŠYz7]aq´":þŸ¸Ámp?s"¿Êù‚óN’‹§EÑ=0jWÐ`OÜÂ%c«.(ôAžÛæ2„ýªÎŽÌ}²ïn>(ƒð=š‹L zËæ®·„FB8bå½°µ¸_$ìSt©厷ç³Ûó$Ç9ÿ¾(Hýö¤«ÖqÎ=¶ºu=Ü
+ù–sk­ÜŠ‹½[)Åê[È 82–âpôÚ“öC§œôU‚Ö¢w¡¦“ó)ãE荁|DÅF¿K•^šÇºi~’oòßð¶·yª‹X‰ž‚IŒš¿8D„x¹aŠÔÅ_»ÝƸCþT·&½³-âJQ‹èfžBçÕÇê„C…5âõ³¡¥BñV͈çNûlxºÈa„Õ rƒÆ6` Ï°!‡=íÓ™³6Wõezä?¢9ýÙpÔXBÃuFB›À¢-‚ʽùT,uÁ	lCÇ‹¶tÚX^rû#EsßÜ$ƒzyWè¦nÅs­òׇCÿÌl¨]¤ý–2û.*¿„D­þèpÁ&Óô"þ1të=€Á8€…L—~#˜uŽF°ï¤Ó­ÝXµ8KÛ›Uƒ)ÊêÞñÙLÎG‰U‡ÜOÊ÷¯¯œ¸\çIJoh0'Ø:]8y=’¸ @¥²ÈÁâÁ•DhAñ±¬¦²-ï6û(<å8Ö1§Etß.Ñ×ÇcÝ™©ÕÀiÀº®Î\4ÄÙüÜžqˆã¶úFÁßT3{øš†'xw 8Âæ9}ÙÙI}9„o‰  Yïä.~hTUQ²ÔÜÿì='ºŸˆçFVÿ (hv=—‰>ǫ̀›WIXý,=¦ë¦²6 4¾Œ+!aÓÒϐÜݾÞLÃa灣Þ{¬˜V½Š·4Hˆ,ÂsØpQeéÛ¡áá¹Ö¡«B…wZݬô3iˆë'²Åî›îˆºj³}iZ§(˜LIìÕ·ÁHØóEsâ½íŽÐ[àîÜËñOäÓ$lŽ±BÜG¨ÿÜ9„»îuáËÈhsòi¦Û%™zº«Š†ëîÏ`;4(ò´Aúÿùd²½u
+"›{Iâñùå_¢õP¤‹‹|"’'@ÈáÑáæK¾è)ÓY”Á÷¼êò#n¨Ú×|jmÍ,=«%è‘­M
+½dŠ¤‡ð×Pòa&ŠW´»ìI[¤õI/,•6½9ëb,—K?V©ŠX »œ±­ó»ƒÂùçeVËïÌ1ÑN€X‹Ñ¹²\™pAC«œÄeúãæ'„øët'éÄŸ2ª§†¨‡èù‹íþìcs}ÏÑ!ee…µãÂÚw¯òõ¹	Ë„¨âªbß|Tò²tùX^ÍDøSô+ìº×zeH­³IZºÄس^U!{¢ë*r/GØÏná=Ãô-S°&:œmfb]ÿÏ{à(ž§-ûçemxÒÀ]èßçZBTÁiUmÅZžE­ü¦TÙ_ÅŸñZ §Û‚])¯éÒW#õ6̵xþÔÖ†H± ÍBÁF"–çnyÅ>©XX^¾qÈŸ÷´;Òüøaz‹ãiœU|&ïré#mþ¥~ȼ;ä(2Sü¶4Îwt‚Wdmo:õýëgàÞaFËÕnÒYw¦Ê*ä’X‹Ÿ©jîœZgr2È·³ôW¡óå¦SCŠYUš=àvÀ§þúk•©n(¥~2ÈŠR´-[ƒ™±9Å5úý•ÖÄÄFÝÿÙ0©QÊß}¡à:—>f—’“W›t°dº¶}®[v“SkŒR
+Oàxùa‰y¾ÀT8{)d¡ñõ@éU'ÖÜ_þLÞÞq ÑÔ†VŒïùC§çgtE”jFAë^B}Õ—¬2˜ŒAŠ#„ÌËa(WC’úôr9}ÔÅSëkõ¼C|nÚšVæ½2¦µ´ÏQPq9#ÚD	´4u'—Æ\âÇ1™'¼þ¶ ,³
+ìx‘øa:Ô8ézà÷w †>0¸q—åºÁ“þ*oäGâ[»ãvé FÃjiJý"Kÿ;š£¹ÊÍ ÊÀl’
+ãäàk¤
+uc6°¬aУ3qù{ãœ$Шõc:œî:þ´Áͱ9~·K61¯8nwß{j0]ë±÷­Ú[Âòè»
+æîÒ·‡-Rô´ìÏzOôú웲f×Ú5øMª¨Ž§Vu‚ñ®íÈt•&•”ÖACŸy‡/`‚hH0©ö-N&Ѹ{˜9¸Ë‰yl×A5dy¶n±"Ë´3um„_¾.²¾)sî½ÆrLv22Èxalã71Ïdÿ±©}Ζ2°Yâ5–åÍà&LÛñSÿ¼­W*PL ÒðÈÑ+ÃLžÀ:QUVR €VÌy÷3P÷`üÌuËu_Š¢Êà—‘ùN‡"õ†ô-0eÏž<‚Nî)Wcu
+v©¤‰Ãyœ¤¯•§¾ßGcdä7’Ja¥m#XÚŸøè,­qÇìï_4¹Eõ#˜Ö¿ñ«ÙíAKyârú腝k¢‚¯òs{Ï‘áÐYîw#Eà^qýÑTâå>!VYoaŒ–ÀàÆe ûtÄšWzíPù•¥EgGë;ŒZß¾€?…`‘¾fªÆŸ‚7Pƒ<ت³*ÝÿQß&ûÃ,?íiÐ
+Ú¼ciK7­V_–N¢}š¼¬²¯¯s Èx$§ŸOšå¬l™SOÝ׏™<#;Ã4›¥Þµ;…ð=¸˜Ê^]÷Èw}Ÿ9»Q{Ýog•‡ãÚ4ìg…£mÄz¨7Õ‰0?±Z…šÐ²D/"¸Ý(\ûEgvbgƒpSJSblÕÅK“L\ïkOÍä,çi˜^í £H:…ẽÔëS¹»¦‰^Scý¨/|÷å
+Øëõ؆šwÄ€ó“ÉJ¡lÏ
+;“¢@c’Áéî’ˆé1B8ø1Èñ½¤CDóZf‘LK¨G¦±’Ý‹víÇÔß‘¬$7udžy,PþÇK7ôOóMaﳌ{R®cð‰ôøþHüL✖SØnÞ±p`Ÿ!Ú4dÉé§÷÷Õ"7n£/àÊ,ìéõÝnŽ<"Òq*°N›Ì‡nŒ•gäsS©„¿»£Q0§ÎꝉïxÂ8“G&2æÈmyÉFÇæ”þ¾±.—*<#ãÎÑqS[吻s¼óH–òéû³v:
+òJ.a!D—Ì“«9#ºŠ‹úÃ,°‰ˆGø缯ôìÉTß­ðÙÆÕ3Òœ%o[kê„lcè„ãŽ)½§ò·‰¸ ’1~ÈِCÆmt¸"íài´§­Dˆ£ºôdÜ›j¹\XCã2ë"c=(íb”ïQ€õ7=$Áµ%UåÞ4ÖN ˜‡*úlœYK~	œX·n*ò`ˆµýª…n©±Ðý5g•\M­z¨
+ýf™d^%j¦¼×—Å¡CÃSAè¾´³´>3^—W»—%¬î&Žn6á*~Ðót.I›)Òæ à¦ÿS±ÓÇÙRôëY®ñ'êF¾è1§r° ì³—‘5ùÁˆ`[¾Ô0xüT~d/}‘½·ûžÑû縏–,Ò~RaòbZ<Úe«xëÑô‰,/ŒáÝ)›(ZßXR¡«÷˜œ©X¹á7FZ¸¼jSºýcþ—ÇF6†T~¡QkôÐDvÌÍY/¥‘yL$‡uóÐNömÄöF£ƒR”ˆ;ÚäªTôÇ*djãŒÇ [W™“0ëÈߥ.Úš·_ë#Þ©U•OãjwO‹N¾W½‘â½±&ߥ7ý€ÉH½ ½œï@Ì ¦~±»cv+Ì”À÷â¢õÖ“sbHpÜåF¢[©ú¹ANɵ=&V˜PX6¬S^›¯ÌkƒEÂuäܬz㈇ÅFËh™<vˏ´¶¥î®aeQQ:q2?4a%˜§@/¶•¢×j²ÁÕ7¿TJ`™®Q÷òý‡º¸³i››¦´q³ÌRú²+×®¡ºŠXFeKEÁ\êðPvƒîµ¢§ýur“]â+œÅгβÉFÃ(I–BÆ.¼÷ÓWû°‚:_˜<¹°Ç´Q*cyIýT×MhrÛÓü7½¼ÑÂÙR­Ò‚Ù®òÁY+Yo»jQçüÀ™ Âð¢›y§ÂüM÷
+yKâÜ€•-M±Ì{Ûåóé£ ²iy¹âcÁ¨˜DQ[Í·ªÈèÄ¿d
 Ê
+ƒõôMX\|qyZLÀù½ÙO{àûf‹áwmRÃÜ裼šI	à躊#„Fe¾dâ¾Þœ°Ç“w|£%‰1J§k>9RkÄS#)¼Ç§Cü˱Ú-õƒŽáª„³z-a¸,c2ô‰F‡.nš¥eFùá¼Wö¶;“ÌÂôCô+`ìãÀA0à(]Ò0ÑǸô˜ˆØ¾tú×»ÀÕ¾5:ú·Ìp¦cŠÙôžmâIžH‚œ@óU‡$¶mƾŠâ™4"­	›<bÁ;ùi3Á}C+ymÆîì	eµGòëÌîüë9X‘ßdp”Â%"²^>Z
+G®AùÍò"óÍ÷þ¦wøËðý¸¿!@#¶à=}…ÍÊH˨MÇÍÑ÷²;ѳ#‡ºkþÞ-¯Äã|W±@áfóG|aÒ\M8á
+øAÔ•ýWmFFäµÇ¨·Ò>_ïÞû[ì—ÞÉÝ<ôm׃x‹(sÅƇÍÄ¡Uq¿°"†%uîî•Õ0á·&Susÿï+tØ:i”àÜî¡ò6^µ?¯…öcþ\Üñ-¼FCi7ßu8!Ú3+„{Ÿ¯ªÄŸî4f~ß”`Ÿ
+$l-Wh±VˈQÿL­gg%lßëqcnr•3U…þRÏoŠyËøn›G¡‹ÖTÀ3'Úóª~öãÿigÎÿ™` €;ÃFš3“[\O-"G(†yÜÂûdÍÒ–‰‘û³9JÄj†æI®lÑœ¹™†ðDaîJîãù#ÞßÞÏûý¾üN	>Ž?Qorá"è¼,ñwýq«±•3öbDƒ~窟Å[+ÞTåÜqy8îo1q%eFÇ#„£¾»ßË^ØMhÀBŸ¬ûnù.+ÞÒs®¬Á;Wü®¤>«‰vúû;c«d*k{™xiÔP¨lØ SË}WÙ‹©“­^uG¶½Cž‰•)»ë¬Ö&i”Ý€q@Ö¿þ“’2bPÍ“~ºªOÞ\œ¯rtퟲEøÒfm“ÙF±rç4#¢¾x¯	æN+]ÕT}Èú¡Þ¹=nÔ¢NÝýà=Ï_}ûî©ì/^5ˆæmc÷JYFb󠥞Uúò>€ÑM³´ä!™JX¶ÉS@ň6ßfŸ§knMIìÈXr܏ìsýrlž#«T8E®ÐÓ[Í—nßW6k\¶5¼£i˜<fp-ô ïùékfË}qSÉ[|‚‰-SùauRchð÷êy^­Ñ'£ƒò³ó$f“Õ±‡´i'­é‡Å
 n¤N­½žuü”ü²4‘A¢ŒÏšH-CŒJT:”ºNrw6{‡In¦Uš­p	 ÍjÔ, ÃswrÓÑÑù¯ü;ú™ú5gYi}ÜæñÞ$în#V°)Ý*9íŽM£0tóÅq¥›@YŒsŠKWY.œÄ¾c¬
+«0áâ\MØoC>K²øc£–¯±”§	é-AA!ÜšÒþV“s¡±}ô˜.3$žº=\rØÊ:Îå íA΄¯B¢’Y?)Éñ⎇¯{È«Ã^jçLê,—֏
+~Ç…=g7'©*Ù`Ž9àd)ë0•KÓ2«âóå!»ÝöÔÌÓôН:Ët#ØA×#vÞûrfڏøîƒEÛrzaë’v5³ lÅD	}+ÛÒ©(ëw¿Øå	“–0aPµ’…<Ò0’b1h½‰nóñ¢Yx-üz½ø—ÈB4:ÃgН»ÂõÉô럃–pÂœRÇꝅï{åTÜrÃ^qƒÕÄû¯?•÷iÈ`œ(¼3{–iJzsí
+a±Ï&«ÿ”±µ“Ì%Uî_Gƒ#áã-=Ùª·åË®‹dé™A&Ô/uu?«i?LöV¦a~Ÿ×í»É¨j
+ Ú–ñ݂Ґ¢ëxòZ†üɃ|…'ÎG¼Î ßÔdÊÌÓD*uÜ°pÈ’öž3šG“Üw‚'ËnwâÙænÕ[díÅ6<v#2ª`Î6w•tùèók#ß”½@:Éã1~ãä__¨9õ)Ævf,ÓîçC¢è@×e2’P*óƒ¦w<Ä÷ ÖÊæo,ØÈ'fÏbõ¶Ö÷Ê{z+×­=¯!ØØ\c\´Bzº—Gýl‘ÙžóñŽMsêgm|ÆQÜ´R:×Ç¢•ØjB¾XÄLûÌÆÞ|q¸hu1Uô䁥2¶ã"øGÔ4!2¯8´šr¾P/'0C…úÚÀ3©ß‚Ç] ‰¥çÒíCž¿ÏWñþŠ‚!v%ô“0³é¡Óh­êu4/o”F5Åû|%p0Œñp®5BXâãî¯Ñ"ÅfŸr;@YNìñ¸§êVÍ)›=^)­ZSx^ÇG‡ÌÌÓàfüž>æ¶åÆqÎS'£:¯„í ¡úTûXõ·+)úšMÁ˜ú»\·}SsB* 8šÿv÷wþ—2ύ”0s\o%,•31¢ÚëJäªß®ÞØ<d¬ä\ìx1k
+¬"Š–µ¾£óõ^£síî·,Ï0G³£†^2ûáž õï[”3a-Ã>îMz:óE獿´~… I0Ôn1Î:r)÷cdÅo9—«<ìçLÓO+ä…©`öUïËð¦eR(
+ø©¨›”÷`̉¿æ\'<ïÝP‹O»@ïVÍnMÍA¯•îȇ$¨v%¶‹Jldµ[/OR;ÕÆ]¢ŸäÓšŒ™.χÏR~®Põžn~®¹ Ÿ“ü£ô“º·³­=_ro6éì†þ>þJ •/㿹Êקp °ÏÐÜû%]-!¹VœNuç;ït
+kÛ½!ÿÇ+û‡úø`Ô#þW#vüû‡‚xU±T\îÇæ´Ë[:¨Î¿»1ɬSP‘}ø">RŒñç—";d¸þJhBÏ…'ž‘y/^ãZ‚N >ͬ¯žFxÔBÒÝä8zŽH­]gmÒŠ88˜t ÷ SÚfýÝ! 	]Ïîi%žP¿HŒÙ‡L™G¶Ùñmª¯H "Þ-9¼ÂÓ?‰ZM‡‹gâ\íɲ¤hå¼®’SóàÝå‹+‡u—ök¹C10^XÇiM-I[W°òe‚ìçÄ$þ1ÉPÃÞà!܈xs] -ŽO’$ÂÎ÷û´âú+¨O%—*ªOLt.ý— ÿþ'd 
+}€EàîþӍendstream
+endobj
+158 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 640 0 R
+/FirstChar 33
+/LastChar 125
+/Widths 641 0 R
+/BaseFont /TUPMAR+NimbusMonL-Regu
+/FontDescriptor 156 0 R
+>> endobj
+156 0 obj <<
+/Ascent 625
+/CapHeight 557
+/Descent -147
+/FontName /TUPMAR+NimbusMonL-Regu
+/ItalicAngle 0
+/StemV 41
+/XHeight 426
+/FontBBox [-12 -237 650 811]
+/Flags 4
+/CharSet (/exclam/quotedbl/numbersign/dollar/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/at/A/C/D/E/F/H/I/J/L/M/N/O/P/R/S/T/U/W/X/Y/Z/bracketleft/backslash/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/braceleft/bar/braceright)
+/FontFile 157 0 R
+>> endobj
+641 0 obj
+[600 600 600 600 0 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 0 600 600 0 600 600 600 600 0 600 600 600 0 600 600 600 600 600 0 600 600 600 600 0 600 600 600 600 600 600 600 0 600 0 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 ]
+endobj
+148 0 obj <<
+/Length1 1647
+/Length2 6901
+/Length3 532
+/Length 7764      
+/Filter /FlateDecode
+>>
+stream
+xÚíteTl·6¡ÒÒÝÝ©¤t#Ý0ÄLHw·4ˆ´tJ
+HH+-ÝÒÍÐêAŸó¾ïYÏ÷?缿¾õÍZ3kî}í}í½ïkß›…AGŸGÎbT†€á<¼ü’ -›-¦qÓ‚HhðèªpWÀ=&‚Í¢ ÚÀA°¢
+(	0ځv AA€€„„6@âî
+9:Áì†zF\\Üÿ²üvØzÿ¹„Á Öû?/€®w7 ~Oñ?Ôp' Àä
+(h똨j=°?Ó2<‚Ðû&t¶® ;€È†9 (Àõ¯À¶ýn
+Æ{Ï%Ø `î@;Ð}ÐËèþ⸡n ìþ? 8BmÀðû;€C  °+Âþw÷vÈŸ‚Ü¡{·{ìžLƒÃì  w8à>«Ž¢ò_ulà¿sÃ@÷0 âpïi±CünévOsÂm@` ô‚ÿÎe؃`î®6Þ÷¹ïÉÜ¡ ?e ` °ã¿*à@Ž6P{W vOsÏýûvþÕ'à¿toãîîêý'òÇëŸ5€à0 «/¶€à}N;ø}nG›ï÷¼¨‚  þ¿ìö÷`/€Ð?Äþ{f8î‹°±‡€]½ö@l>-ü>%€ý¦2ï¿OäƒÄÿÿ-òþïÄý»Fÿåÿoßóß©•®®Z6n÷ðמÜ/0à~× 4 ¿—«
+ð{á€ìþP7«÷üwo#à_Uÿ'çßá¿RȁïâáùË‚)ƒ¼€ö: ¸ÀÁÆõþòþØ
+Áö@¨+¼ùÏýÞñóÿ
+3pÙ¹€«!òÛÿ½‡{ÝþtÀg¤£fª­ÍõßlÛ?Î:÷S7ðvþ3“‘&ÄþŸ‡ßTòò/€/€¨€GPŒÿþ1Þ?G	AaÿÿKÚ?Dÿ:kÚÀ¡ /€?/?¿ àþ÷ߝ,þF£¶ƒØÿž#}¸
+Øþ~ôþiø
+Û! Ð{ÅÿlƒûÎÿqþó€@/ öÜ4ÄN*Ì93;^÷8¯ï‹¢Yw§ z_¸{iƒÁ›Â HG`fÔªD¥õ]m8oãˆäÏ÷ÞS{î?6Ô87:É]Ù:ҁG4þL]…DK¬­b\›!|–¥xYûFq¾Ç_5V˜Šò?ß\û¢«gYr÷ˆv¤UŠy|ÅÄô¢0ˆ”ùÒ?À.£>‘¬°…¸®hoŸ5eçê’­g°¿¯·ù°kƒš+7‹EêÅ<ÖØ \ê'¦†•¾	$šM•#“¯úDæQ貄»2KoÞ¢°—Y¾Z}À°2»WÔ*¥®±aHAgò¢Àú©……òö¨^´ªÌ7ïrë}j	öÅ´ßùöçžæÂàÆ>®EºSÞUÿŠ9ö•faÓ¤3fÌC{þ÷ðÇN’§>è1dà'`_°6o°§Žô,Ϲ¡ôèù€qÏÕñ¡k/Ca¨¼‚Kš¬²N“7׎eáMô¾[&èa	}QlúZë ³"ˆŒ ®)³4õGÐ8¦;¦Z$V®Ã-ü|ó
 .‚–ÚŒ-ß7¹l :Ôz pÀ“ÑãìþZÉ–Bõâ²c‘_Ã#¶2o{§lsb°d+¨éùјkÝOX÷áÏY<æÃ’4iƒÞ²õýzö¨ÿK«'
+ÉjeêI··²±¸Ç´Cð=l'n±ÝZþëtõ‚ÿPëj<B]Ú%`.
+…]^DŒÛ}ø]8Õí51¹Yü
+ñ0ª,=Ž°·c¤«S†ÆqÌ8Ò=É–]ÃAB-'ƒÚéöŽH`=°Ëk?£«>ÿV=7ÓÙ‘ªä€i^—¨˜‰™ÂÏŒV€I·‹pu™=0»UKÏ’Oêçį	»E% f#¶jér³~N{ÝêSºô3Mµ¶—.Z^žÔ:oYî){ò:B{Bx¤¡÷çƒN—JŸ
+üÄåÞ‡&-Â/Â$hX‘A<z=~t8VŒ<»ùGµG”3é¿ÄLéèNj©‡zÎÃïjÖbŒ-¨r‚Î)<–ÞXÓÕ„ôFPdúîkæ
+›³õËåmYªè7>›e\×F®¶³SNÐ]bd›ìä>-œÁœQ7®ÐF¼êÉ9_Z®Ç*ôúiÝ΂Y•îÌüêá;½þjGÂpÝÛòÙWÓÃ_$Oªôe[~ZóâÏ•Å6¼Î笓ÿ¬f9‘@zŽó—à
+/‡’’Ší“?Žê[ðó~n2¢£=B1›`®ë§›E£KÅ¥ôxk"\cTýDNM©~
+è½›äÈD³µœ ‘ed½ óìÖhÝ„ƒƒw—$pm:’‹R€¢ªYg.ȶ~"Jq?@*ÛÈ,ÉՏ~èx‘FxfMS=Fíë1ªo|W­?Áí„Ü»M«QÀ:3{ÔÖ¼2´Å©ÇY·¿É…æÍ®£ê-™Þ bZ¾KȉïTLªŠäC'Xsào*?/­/eîÕkŠ=Z¸›Ú} ¾Æâ(¸ÔE‰}I
+?–	<©FiG>C¸>öçûUšÞ.{émF”Û$5%2ËÁñj—B×1Ègä•m[ eŸF"I-ED17î¥&(™_&@¶S3륢]-¬rÞz7mÒ³¨Mº\à):¦oòÀc¨HmRÈñîµ “ha]Þ5ýè/\Ì¥Êä“>T¢k`+á;–”åb·Ž“øKê QCاéòc>Çà°³ž×+ƒ&„òËjªþ”vö»â{føâJ÷̃0%YïîÒd?å„
+‰gKJOvâHJ)ð‚¢ö?}nàžíН^k4úT…Ê͏æÜD1þQ"§!qÉ­•©WÕKìúºG­zk¥«Ío²-mÛ°®ËsvMíPûQòVí­m5­æ­Ðv‘ÕOï	,çDñ ¦O¹óÁ˜£Ý×:͉Uζ3#Ò‡¢p>°(´=<ïìÏ°ã²$ÏÆ¿*áÙ-qn=[|–>^OŽ­ÓÛÒþ6ÿu¾uc.’©©@Íre¼gH‡I!wÄRèû~jºJY3`‘aÃðhë»õ&j î´Ïþ÷ýæ›ý`™å“êdÖTz읡ìÇ¢	ŸÂb”gt[WÖ§KŸ{0þYˆS¦‘OÀK`ëtû+}…%‡ÚŒ­ì#,ÏÊd!¡(Ûa& Â¡ëðñ‡jWøÔ}nmj&ýûy8[…÷1D2‘ð°	l¦`hî‹:JÀ`Óõê·áÅ£f·ÞéÎÍ;§~Â$ôÛjÍÒ.T[M¡F¶ümDiÌ˽<½Êî^1¬ûÛ4
+ÞŒÁ˜ÄXêÐûæ‹ðòÙ¡+žß¥a:7ÖîÀS¢©ê%垪èâ)RÐYˆ"‰ŠA“Š8‹é¥€x¤òn‡×ivõ:Ȇ6;nì:Ô¥*ÆSÑSfï²´ò‡c‹;oh¯ƒÔ áfƒî²ÂŽ ¯Èد6c^×ËÊ.+/ì««‹õvé' ºgª?P„üBzõt¹îåCu,ûàÖh®”F
+tÃêo±š4
+¿§å´7MåPx‡
+BxUãðçËOS¶YÕ©ºLWá’ó5ŸéٝÞVëcb
+ àø†|«WôÄòêíû6X.d2 À;]3çL¸XÜŠÓüJC°'¡»Ïÿ¸;»\98éò°:ŸºŠSž!**Âÿ]ëçt$¿2R+¿í—³jaë€è!(dŽ¢?õk»W߉ñ›Ó7«ùš;÷=7ÑšT:Á$o)“DOjãNB&åòÂBÒŠNÚ°åM¸ì`jKªÁÜh~ÄËá+£§i¾
+Ü_Žä7Ÿêß·œóÓèÓX¦ìŽŸt#M®OjzÀ(Dó#üŽê½JTp\]ÞAõL\\$ò3¹©®×m7•Ô:âk rÒê°G
+¶¾;¯mŠEhŒ®u7žy/žÉ[ùÔ=¥ÝD¼£——È´¢‡4µ'£L/85c³jé<cùÚê.òøØ™$1$ÇwþÃ.K‚¹}¯Îdk¿P6˜à·×ŽÚ·s½3'ñ+¡[Oz®Ï]¦MIìúx‰¼(é	’;ÚeÙÜåWÇBiFÍ»†	W©ÃZ"æˆá2­!óÛ’åE °ÚYŒeÞ„z^1mÃû–ýe‡ÆíRºò*¹jƒ
+U&בìèÙ)Gÿ8Ö,N,´DÔT-U©”¾{I®bzàk÷¶DCUcò!Áà”‘c?qœ·¶g;£4R±óGÙ‹6Àܘß+Ê°è
+Z‚"ß³a½í»ˆï7lzWª1Qº0LIó^!ùÏ®ñ$ÞS›˜XwĠ˺÷ˆ;¬Ù¢‚ض3üÊ•µ+«%›6ÏzuE¥“îlänÆ{€Ý¾Vi™‘½å*EZ6ñ¹–É&Š’ÔUxtÜrN£;T0 mŠÆď꒐!£`ÀC+ryýdÎp‹³¼5=¾3ÑYýÚ†»àY²8/ÔOóªÙŽZØ˜=]<ùcŽºu ŒKŸm,uÓ/¬%yCN­VXÇ´¼FÙ‘†À‡v¦ò“Þ]ã´«óà5oÌå‘ö	ç£îd:­ó­cÿL'·‘ÍGzµÍ·ø_qKZõ]‹FŽS#©V'Þ‡©©è˜tÍèÿL2:^Õ»3J¥Pûé+	n|›‰:5+/©ê‚šžŽ[£ë®ë1 ÅPõ)vtÅ‰÷»HÓíp› 'Q…‰Š¼f¶ùX|ÎAÿ
+	ÿ BÛ¶ïSH”À?’Ñ„&—ËNž„z«K-ށ+{NFF;óë’ ‘#mk93mÎ$h–¿ŠS¶ÐÔk/Ë™’~Ý‹ÇzŽD
+
+Ër²ãÓŠqN…·ÊE³™-›½»ÔDÿÕÿÒ²ýEÞK±Ö—W½ø¯³âGÉNÏRW›š¦’GOkÄß/‡®â°ÕuŒ©Å_u¥è³J:EÎQ¼ÏP£e×Òҏb¾¥¼);.'2ÑÏ´©ª­¦ÔâZâö1敱Ҕ˜Ö÷©XÍx·©c
+)²7,e0PŽRûm}z~‹¯sŽp²u:˜¥$” û€UWÞ¼]ÕAÛÕ"ùþXh at 6QЫú5ÿaüõ"Èb‚tJšü®ëCW?þáí~­µåôqô“^RþØ},iúóˆ*ôõäk+rËmoïµëôåÔé[¯PúÚÚtRüÏ>ëo½wŠPdOãRˆ>Õ‚s~|(Þ È„tíHç¨%[Jüú’Á{*h¢R¿§Dô½>…íÞ»´%:'»<|!w[°4»Ø†%à\ý¾7VJâŽ_eæ¹à×7}„mÅḥü%*ú™<—fwç~rç"­Õ*¨h¶¿÷¯'l¯õ®øÐ7$ÞE‰èœÈ§z²2%Îï觓7Z½²!÷«n›®W1í÷_ at k."˜ÉZ;Ë'h +6,*Ú6?³øJ‹¿I¹‹ÁˆZ­¶žõ(2„Š•kÖç!‚òFï°ã.+¢o.&¿­Yº}5ÅÅØþáÁ
+iõq á~¤Ÿ»öÎþæƒ-jKÑìùKt¾<ÑsvyåÍKp»Ù•ÒÅî°®×..™öѳE-gʼ?7¦ÓŒgetÀ@1r~!oµê¨G+«ŒÝÝ'®6˜óôü·]›a„ŒšC‡ÐH\ËšnìÈOÚï°|I¬b®(׍ì‘hn4ß%S…>Æ¡¥î·“H©¯ÁrÌwL“VéqŒôúâz;¾ô~z‰…ÌJ±Œ»û¨î]K_È\BY
+huTÆ*O
+¿§¥ÊNi°Ù©4ù¦;D뇕0Û­‘“«Íi/=“Öa\ ^p²êס`øeð¦óÒܘ×ÆrJF‡Ç«/¬5øŽ(1oÇB{þý ñ
+‹ÁHp!y˜£oÖš„Å!gv9y0_w8C¥Kâ€éG§ì œPàI^ÌœûŒ ¸gF\-çV–|Èû4ó™ñx”Ë°ÕâG•½;³¨¾âýWþÄmþÉLŽÓëÒVÁ«‰ì&º®o™®Vl4òäÉ‘óOI+¤úD>}g\³ê‹ÄÎòíþôÝìSåÎâm‚A ƒTˆc]oItŸuÏíNÏ:q«XèfnÁLF–›ÿN`ÔÑhqöè4‹}ù¡`݈¨÷Ë2ÚTDÕ:¸o:^fbÖ9wÔ¹FשƒvNÈ/j½oÓKî¹ÑD^šãfóô1”fÐ{aÌšO—‡›ýìÛOÇ·&Ý:‰¶3„ÞàQNäl_§:dÅ_(óõ²¯,šfø;™Xø3À÷Î`ŠHzl,zïåÁw~¼šžÐËTÆzý"Ý°âÃEªCöê[-ÌïO×	TÑiù|€ò$82ì wôaÁ)ô˜i*!OÆÏØS2Álx¾ˆ`éb %íIW+øCõlmþM0d>p0É‘÷æñHBlwé+¬~¦Ìwhæ’,uË<Úp¸ç¢‘Ì#² drðÖ۝´ˆgÛB€·`mV‰áZ—þ v["Ù”²aôõvÓ‚ÌàEDD3g3 ƒ-¦¯"÷»­¨¯íÝÈêÉÔz§R
+1X¨Ð<%_S6‚äCjüa¹"’#=Ín~´r³ƒ×U¸j‘·ÿøåté jŽìz졧nöÉPÂúUˆ.âÔgK†½Zsù©Dš´|²Ž4jäÏç“'ןŸª;½	‹˜òV’ô8f.?Obþ¼c(«ŽxóáP¤\%ˆ|1Tã	½©–ä\î³5æq‚ïZŒMùŸµ¸Õ[TÆ–q‰W¹à8 at 8¶q(!½Á°Oç¹âW†µ4ŸT2£<cU+ä‹°2Ù9 K•%“i/3sêÆtxØñO‘1¥ä$rBbc{ÍI;Ɔó·¾Çhd’úgˆpœÀ'[›ãEƒ¤´Iq50ãGÇa–¡†xâ¨âª¬_}Dñ=gèíyÖUÉý§˜¹ÌŸÑÎ3Òö-ËÛýnÖEPçeSŽƒ4D|'{Wüà¸ÍêP1¶°Y-,¨q1"cMkÝŽÎøp/|iŽÑ‚ÌÚ|CŽ¯ß‘ekB3kç‡Q¾šü†}¿¤"<ÆöC¿´²¥’¼‚óëóõR¥‘”€Ï“j_L¸ׯÃúFÆìŒzeƒ}{d0u
+”!EÇ큞ÛMߎ¹½æê\’¿‘Ç…W}Úß
 H•à('X¯þrÂoD™H·adx{­ «dKÕxsç#–3Œƒ[rÆ›äet8ñ{j.ˆUz$-:{…bÌ=IF«áWu'çó$P,XÇéÍÇ4ZäûÈ´V¥ÃÎãøÂRo¼Ò[”`鵈×Ï“Yæ(Sm>ˆG#Žg ã³ÝeLȬ,ºÁª#ʺlÕ†š¢%˜.¾Âƒ€g_VÛ?É—³ýºãQ壥oïë_»l˜Ó/ù98Ö$¿¨ŒL»«m'ѝµ‚y¼BÝîǓ썩?^no¬[„ÆÂçRUßÜ©€šž—î(àñÄ^wЉqX¾=£ò¸©{4<Gíl9ÁcÑìPRÄjä]P,¢ß„ÖµK%U–éÌ ÑÊ
+ëºÜ6œ´«~ò0ªNx\üœTzë˜7´ñ	ëæÕ|ý›´Ô&²D©ónÚ_ÈgøïE.?2Ý(|9/±Ú‹þ<?Ó冚îî5V­L56ka(²X›õ’‡Çᆧôª [µê΃„<µçá™k¢Ž²OœïB?Œó\Æè
+ƒB5qÖÒ'k¯Y^¦ÂÐôãêSz”b~É1©+Çä²æVØjO¡£bB^	½dâw–`•é	@ôU•”‰n“Ñ4·'ûô:RjÕD¢»äæ”g†O¢-4=RéQóD‡ÿÙ~!TñhÙ^|>‡y‘Ò«vÖ[¸ÖìgÊáæ¢U¥~©|"ûdÀ¤µEý…<¤ Õ3¶êZH"ÿÍ&²‚RoÀDf×½~ ôG]N–}˜bèÉj*"HÔ0k‰Ÿád)è©ä!}îñÉ@+n1®ôŒ‚W®‚©’‘ëtZk±ƒ¯Ï¤˜ašž&ã'ãfä·¸’u„$ÔíIâ¾ûkl?'W秉$”DD¹ÂňU߈>¯Rt’Ó ‡É}]Ü u.N´ „¥Óoœ¾—¾=îâ‰`^»+Voò<Gmœ,ûàŒ
+D§¢˜1 ‘dcôŒUz'+†RÀ¾Ý¾rǵoÏ5dõT\U¶
+§?É`;ÞoâµZÖ:Ã.Ï;œÂ)<‹›Ïͯ¢ÛðN½!Aù¸o4zÊí÷}úu€Á|SxÕã)„ÔZ¼:®eÇÜû·›ÊZçbñÝöéGK!{Š1ÖO©¤ˆ‹võT¢;‚1¾ïF‘ÊãŸv†”“ñ°»¾kôÚñ¡Ë”@œ1kžÿsãù튫ðÁçJ’!ðq"Ë&Ù¹¡}ÂÂ^pO3Ç¡½G
+Ô¦©¬ hŸ¤$#R“ÐÙ7m•ÅPv’%él}Ùø1¶«#:!ðÕö6‰É˜°Üå®—øf ÁkGÌsUµ#dP²ïePZÚ7FM"ͽÙö6á²øöå#Íñ# A»ZS43#wÏæX/üX„1{7£’CBÀ±Îñe€³±¼/P^¤Ô
+bÒ›øR˜U9¼˜ëà–²›Zã-•VgÞoXù/FšÓ\çÍM yÃâ×µn~‰!’±˜ºoÐR3^š1O
+VTÓñ¼IàFñ0-å|•˜'A2Ýý#]"O}êg'eÏãÇÍiÙ¡2J\yÏ”?RãåZÄrúö™ÛÇ/´u¡¬ºŠµìÄÅ&ýÊS&*Ð\ÁZ|³|5UPÜdB;ù“‘-C“º}7ÄŽO&÷U¢ôã0¯ªÅ
+jÜFöçTß% Á÷KÆ·ó™x"än¦ñ:=‰‹ôãùùC(­góë¬ñM:3*±à÷O$9VØ<X"^<0s#XY6‚¡¯¶Ñ`ýÀ]ÖÜyš%R[&kbýÑü¹"ª¬^tZ^iBÛ¸læúæ&Ð>³ÏˆX¥Ú›3•GæÔo:pç’ù†py_hÙ~Ñ¡³!*u¹“Û%œžªŠ–üñÃFáË‹¨œ—ŒöÙøùÄ]ñý:9d› Yµ>ßEJÚG{/—–óO¸7Õ†qä6¯üs±	¾¼Dm[œ÷ô
+îØ;?Ü{N)KrÄD‹õЂ’´Mñ$F‘Ž,e¼¢ÈC]i$ǽ?¡/³zôÍäÉ<¾¯ÐägŠŸÅÙ³îUÚ!£Þ«aï+qÜÖ^†zAFÓçR…7ÞÍL„Ü-¡ÎG›xRqÀ9`w­úò¶{•ùÊèÍܽ#¯¥"ý@i=ᛌ2'º¦+d’~ã=ÍG)~4W_ÙTgëIl¤–veaŽF0l»ùÿÛó2<:e+º¾ŸîN¢Öp¼-âèΏAõë+ß~%x:"ÅOž$uò±ØQ›?Q´Še¯ŒÿèÁ¿ìÆ„Céq÷úÏÞµr¥ðOJ«èŽq1ë‡ =,?ãÔÞ¾­oð/#3Á±+ø6DRßVHÏ n9g—âx/aàîõ-­tN´Ÿó9Z*4O¤Ób…»æ<dè
+HÔûu&±zBùÌ,õ1â|kñ¥ÝùʹÎh¿>«©sûë‡äWþ²Ð‚AÍÖ_OÁf݆œÑp K© ‹~¤Í Øû¼ßwêR—ºTǽ`í3Ö³ì‚ù(¸Æ]-´–ñtA*ÝPZ„ßý«PM×llÀ»$¿.ÖçS$?…M×`á'™¶Ý4CõF¤Å–!zG¾€±‰ÇNÝùÒ]×ǘâ2"šüúÐÇþœ‘“#qœ:õxŒ}¾…¶*¥q7’â&±©ª%G&µ nãøþv!-}èQóÊ…å‘åg©†wèÎÝÛE·OXéh²ö0úäx>®2‰Äi0eŸuÎò‰ÍàYÑç§'1X±Ñ±£±/¹áåcßÙP½¼;¨;K&íÈ]bN¿BI‘:`C¼EÑ¿•Â'
+ÒLŽ£ÍH¬éi†ˆ£‚7”ü쬾å¬5×Å=¡èL1’4¹òbj¾ÏkH¡3•¶“#iÁ4ÝkUPyZ‘93™Áèá¾ ·C$MS“E¶GüÿËöÿ'ø‚ÀÎh…CÜl .ØÿýÑVendstream
+endobj
+149 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 640 0 R
+/FirstChar 99
+/LastChar 119
+/Widths 642 0 R
+/BaseFont /WPJZOO+NimbusRomNo9L-ReguItal
+/FontDescriptor 147 0 R
+>> endobj
+147 0 obj <<
+/Ascent 669
+/CapHeight 669
+/Descent -193
+/FontName /WPJZOO+NimbusRomNo9L-ReguItal
+/ItalicAngle -15.5
+/StemV 78
+/XHeight 441
+/FontBBox [-169 -270 1010 924]
+/Flags 4
+/CharSet (/c/d/e/f/g/h/i/l/n/o/r/s/t/w)
+/FontFile 148 0 R
+>> endobj
+642 0 obj
+[444 500 444 278 500 500 278 0 0 278 0 500 500 0 0 389 389 278 0 0 667 ]
+endobj
+115 0 obj <<
+/Length1 1626
+/Length2 10204
+/Length3 532
+/Length 11061     
+/Filter /FlateDecode
+>>
+stream
+xÚíwePÜ–-îNpkÜÝݝàîÖ@c4îî– 	î,Áƒw÷àÁÝ5ßwgæNÝ7ïÏ›ùõêuUWõÙ²öÚ{ísªš–R]‹UÒl	”;CX9Ù8„ ª 'KwM°“*XP…õ=Ðx³ó¢ÐÒJ»-  °³Œ(ÐZd€V .. §   
+-@ìâã²µƒ t4õ™™Yþiù+`éóïž·Lw­3€îí‡'Ðìât†¼Aü_'j ˆ`r¤ÕÔ
+Uåòª: y 3ÐÍ îa鲨€¬€Îî@F€
+Ø
+àøÀ
+ìl
+ú«5w¶7,Iw€ÀÝhzKz[]þr± \€nN w÷·ß ;ÀÖÍÂò6 r¶rô°þ‹À›Ýü7!7ð[„Ó›ï
+Lìq·r¹@ oUÕeäþÁbgù«¶;èÍ
+ Û¼EZƒ­<þjéoßÌ›brv@€Þ¿jYÖ wGŸ·Úo`.n ¿ix¸ƒœmÿɀവp³vº»¿Á¼aÿ5ö	øOÝ[¸¸8úü
+þ;ê?8€ î@G6N®·šV·Ú¶ gö¿vEÑÙàäø‡ÝÚÃåß}ž@·¿Äð×Î0¾‘°°;;ú ¬6(ìª`È[I ÃÿÊlÿs"ÿHü?"ðÿˆ¼ÿ=qÿU£ÿt‰ÿ»÷ù_¡å<U-œÞàoà푱p¼½3 À_‡Óÿ–bárôù?%ýk´ðl¥ÀŽÖÿêS„X¼DÒÙöM6ŽAîr o µ:be°±p|›×ßvgk ›#Èø¦ëß#°rrpü‹OÛdåàü— ¼ÿp­ÿ•þ›T“g—/+¥¦Åü_<®ª¿-DÛÇåÛ¿µòlý‡¿`¤¤ÀÞ ?VN> +7çÛÝ{#$ÈÇð_”üˆóŸç÷77Àè­oο»ÿ·ï?O&ÿ#ël¶þkm´ ÎÖo›ö†¿ÜVnnoÿ}ùߺþ÷óß;z­P–ÀVÂáöŸ²>C¾ä
+ŒÉõüà„ˆp)«×..®w}ŠÞ¬4þÁÖ0!ô§ÅgþÈåeG‰iwè¾#}W:ð¬€4€š±»{®Ÿy7”Ý´ýó±^¼ßùœÊœ!‡îîÖ˜†¦ié3ÙD·Òù=c0µgað;š;Œ@«Œº$¼v¬(œoEGÇtîïèû†ú».á»wH˜s“i…=áÐéâ‚]sIÄ
+u*ý	¢¸ª1pͼ¨ðŽ›<%gñ`¶ÚÒ-ö¿xÔÂAá&1}UŠŒ«Ùi°õBÅ9ö«Ê¨SJüAok~sK>ˆ#"ÝN˜ÌdW´Oqo°x‰B´âpµEÐúâyƒÜÌ3Y¦‚3Ž‡
+Ë#•–¯ºôñ·%Jêg	å°AlÍ.vÖ.Ïd¨iüù3:hçí-,ÂÛ4™±]1Õ»þÌ÷äc™/Š6HÕkÔîú‹“qïI¦ñâ7X­AËÎN–'×ïIEèÍ@Éè8_³(/µôõ¤?G¡ž‰¾Z!‡¦'¶I,÷€Æ¥€J•¶<xØ\ë’©ˆ4/HìmNÏõ/¯¹C	©a±¥Êú´Œ‚Þƒh¹?ÒjÃ4»Vy:³?~ßf s D*m"ïÛñkªzWÿZvj˜Iš_o>]Ò£ŠÙ¦3 ÖÇ.G Êi‰|Êûz- Ú„¤³PãRÓË#ú)„ƒã¦å_òçµR9æ`	oš2w1ÿò4‘¹1¢Œ«ý°•û{íÞ+0Šã)àdÜÄî"¢±<1¯
+C&{ï_iÃ,JeRî‹B¥Ð:䣧x xòQ:;—ê0M†øùì£î¼Qz„Îå·“OƒVõž³ÒÎXë쵕©Z?BçŒZßMT
+¥ÕÅ¥J«Ã
+—wˆÇ`ÎÙÜæ˜â£Z60ˆ9
+âBGŒWþÐê§û8!®®¤ùÞ$kÓè5-£úvºë*zbÏH8Ÿ‘òõ/,£˜'ÇÁ¨fO~š¨ôž·ú®!hlƒ¶WÅê.>”èBê1«¸SÚ@¸ä`®ê2õK7Ÿ{nì˜^ªQÓå&guFÙÎÚ»ÚÁöÔTç ƺø­©ÑPf¶SÅbŒZ±O¸sd
+ïÝsŽ–î,Â}MBR(3'mœu5?È3ì&+$kÇ‹ñ4à––¨÷}¦Lš”©tVC[MDh˜™þÜWο¦—Þ/ˆq‰½·Ö1
+]ñÁ½žl
+	ȳ£¬w!ÉW’Éb >Î2̘¬–úl?íÊñùn•”yó²ÄÒ[#zTá²Lҏà«ÈSÞùYͳ	Äà°ãínâCÆš†O·s¡ì207+)aùu"dF:â¾þܬpP?å\cºõâx
+¬œ{¿ÛCä_æý:d´VGkÕøÒ{Ç/Ï0¼ža±è•{:]«NǼÛ{‡Žü=ÐÒvqw‡~vÖº> a§[«3)–ÍŒnfÝãCàý’ÖÜ!¤8æØî}²•uÎûl¾¨ T¯@ðâ
+vº× ª(*.ï –C•Öã‚¢áS»F2s3òóåÌMVÑÊÄÎÑ4*½®gDØñw¦=ÝDõ™Ÿº·L£©ÊQ§GÖÚÃmcnꡃiÃÒü8“É „o'¬YV!Ö0tËêãhw„ÃuØUÛv}]i…=Å1Ý\Aƒ1TÎ}cWGcK˜j·1\ÐjÃæØç*À*›FÈe®bÏÍÌÐIðòVÔã–>í­™@œ¡îðkü{Õžv¶)»%·¯š÷Ç—õí
+±®5¼r*ÜX‚SRi´?^º¡¼oƒæ) ¬{Œ* 5=«x‰XÙ\¦ú€ÙáóPG–ÊSˆö|ŸKÁ;½]õÚÝcSU„0[;’eŸ©ùE[ÿj£Ðí¸É„ã5ßt\a6I(æöDâÝ¡ï_ÖºnqdmÚñO>eci>l…ÀPó$ê‹p¾§ïAjn¦niWmÖŠeÑ“Eˆ‹éúݘv–öЩ?É[øÑö3›©ž×…Â,%Šmʲâ§Z™vp¿u«öã–w%^’(?ŽžMÚ¸7oÛ×[;26[ÂnÆᙹH¼Ñ
+ŸþÒœÐtÕLøYØBÔÚŒ£Ãσ}÷×*!ßZ+…–¥ñŒ´h~BvxLWhm´­¤µýÑ~h#O:Ãd®”®Jš¢#‰_t¢iíº’†Vª3•°½Š:µÖÚÎÎ?oÓ¹ß!ëvü´É|Åú¼½è¤ƒào€Ë°ÒŠÊåÇãR@ÌØà`¥`ü»ëÜ6o¿ÿž;„g%0Ÿ¯¨x¥†Ó¾¹£¬zZ™ÅXÿÞrvŸ×{ýh¡¶`Pý³ÊÍaG†BB(ËT^`nFÖµLöó<ݶ×­?Ìv¤‚þ¿6È¡xVÿè7ºÎ¾lŒÆøÉ-tßfçñ¦¬©0†©¹ã#$)7ÿô,W wo…g–7A>F–Ëaþöëáú.}µ‹µºt1+òÇ‹§o¯å¥’©i „0ðÔzу(Šh{ÑŽ&¨|w×ùi‰ê#ÖU6ZÖEôfjÉfÑØV×:µ*ŽÝ{A£®=¹ qT‡G¹OmÏŸVˆÛшbP.ĶƒºæêyíŽÕÆ÷èÊÊ.;°¦€Ü—ÍäEƒƒQ6gk•%~%%ض¨•´×¡ q̳S»"å“x¬³¡à1RvjÞd¯žÙ€¤äFä3šk‡sÎH&/b&äY…Ôþ^U´¬
+1¶‡¥úφD~]}‚¯„5ö‹úÊE¿7¡º$»ù²˜Ü‡£MF×'˜.vÖÈÐbо˜U-Rð}¢æ tûÂêG¼Ïx¯ }Û‹Nz¥!c§qxa27DÑ’zÊ^z“í&q©7bތݐª§z™m!-ûõèn¡Ç܆6M£6«"BuÝ÷*¦Gy~ŠsA:º+Ûs˜FYçÙɤ±}ìލ®ç]Ë¢¨áIKþ·©ö›ÏyüÁkÀ3„P’¿d÷cOÏ❚Vò*_ÇfëGt0ɳϪõb¹îPnÌûå¼	x¿*|G•áŸ­ãî
 òøÌqÄ‚/þ
+÷uzÒ:!ƒ4{K¥Ëp–!X¤þJ ]ÞPì@©SU#Ï™ø£"u¯ïõ)¢uñ·
+Vãi
+«@Ë¡æ.÷ûŸ¨žUúBƒA*µð{Ž2c®Žþ"”nóÕíDfRmÝ£¦]ÓefOˆ·«/¦¡4ÞW:ñ{U´[žªnù2k„˜[ja}íý%ê
+×ðý<s{Ê–Ž§R<Oó{éIÝÕ
+­¼ù–É„q¹µóýhÁJ‚|’äjÍ`§Ÿ¸âyüJ&V²näÞ+/CðøÛ“mè&ü—8_@×êÅÚã‰ÇXmÖP1ôî*p}	Áî̸]s(¢h<DÐ?‚«5÷?<-Xð•uÓ˜Œx.Ñë`Èa<Òq£nÂä¤)gj«Õ[JT´s :™ÙùD,gN)tV¡Œ•°>=	¡GІvÔƒ\¯ŽÇдâòäå÷n´%—5OÎ]l—(ž¿% ÁÖiù…ÇÌRè¬g,NJ]X(!¤1h")ÖB	ç=ØøäéO×ðX>àl Û£°®àYB×aüÒy¢ƒÿÉ¥C|Le¿(Ô&Ž`’M¦Ug´«1(›8mv5ûõ	æücw,À·ÃÃoJ©«æLÕ×¾€ax’¥0âä”­ßü•¡qž†ç„V[ZúìÀÑÝX;m݁Á?Èö…âⰁ"?V"ši•D}@^~k8¯©%ÐÏ1ÜקÁV(<ö«O™EÒèÈÏ´Jr™ï×ÈLüu¸51‹ÊuÆp»•õ„	-çìé*%ež ëÊ‘9™Óê~¹µ`̶­«o¬¾étÇBŽD@ÏðUòsÁW¸íÞ/sŸ²œ¬?Dé²!Á¢ˆuë¬läe<cò?㘙‚Ö$ü~—üÀ'`±ÅÛñô³PWÉ´ný*øó¥½î[#üÅrXÚñOL=$T½-.³&O¥ȧðG;í躰+:;?©Ð);¬\£FØ»•¬wr’%ß.ìÍrUKÊw³ª+ÑýMD¹Šc°Ê=\&Ñ»0ôø›ƒ”ÕFwò’ð]öiXuïìËÌ™ÿcxô;NÛ¡ôî…ºóŠ56Ú¶‚æVxï(¸/WŒ•ñ6Ò_z1b%áŽ<%«&÷á‰Ì½•®ÉÕ¡T
+ë$”µ8zŸæÃá©-V"E´4¬^«¼I&Õùw·ymGË–FƒzÅ„ÑžMöýšÍe]ž×÷92\ù9?Rv­Øk:ø!ÛønyH³^Á>ò€ÐÉŸ;›øgß}b	70Œß<•í
+2ÿ”&]}€Zîåg4èM„>_s|že«ŠËýnTƒÙÞ<…ðA®~ÛÄí:“^Ý©o5jò^l?Í·@ ÉètïjÚÅWD°ð!'Ëß‘e'k:XR$Áûç BF’õ;²¢ãCfǝÔòVŠL½€IE`Jè>–GUå ¶ãÄ”«üÁÕçùl•Å…@nãé¹Q:"Q„{­gá弊Y/\|¢j!Ù;¤L)3ŽõsSâØŽ%´	
+Ûv¼Ï60y#+裐NTºn¤Ö‘ý}ðÞÓ»»yr#0`™5'”ä1)€ô÷£$Tm9TÕe¹,ê%	°UÝÄ”{ÿ]
+8ó¢ÿ–hø{	}ÆøOB\⏞ô°gSR..¾{ŠÄËìu
+'ˆmë	[ƍØTÔ‘°$BÉ—z²ç]dŒwa:¥iÏr\1Ó|óºÞlå ÂHñûÓ=Od®cËóUïõÆÂý‹•‘FdëWè]”áú¯à”ë­bÂmZe’™ë	UMñ,™6ÔØÐêz¨Å°ËÇ+…Í‚ß_’’{‰“3\‡Éúf>ù“‚ÚûvØÈ ™7³“ÎjâÈsØ*“jÂÎsŽY‘3¥pga<ËÖlaïkظæI+äÔìå¸La
+º‹®‘b»&ó5|
+$ü³AŒ(j›yšÃFßêKFŠi‚Ç-ÿGf&Â攳!Š:ŒÊ»Ñq|W«È~Ï»;â5ú}_r9ÂìÅv9•ýÅ,ZÏÚÙ+•)+ÜÎî·nUëxÏä@³Jý“Ö/¦wõ1궴éî¼F‘ ÝEïË1ÏéiÕKÌy
+!ФKܹ¹ºÇySwªý!fÕ-¯p+{í1A6^zw/?æÊ´ÙJY¥±2ß¼qšÝ&寨Î?zœ¯˜*Æfºhð-ªx˜‘yä‹tq¸¶d“¡¸OL Þ“§êgqr¨»y‰ž§4Ƭz÷eŸR»÷v‰J—)ÌŠê¨ÔÈõ…‚,W<]À.>{YZXÅfnæÄ TyJ73éÊâq…O“@Û í-~˜}ø•.Kúîôæ@’¿cÑ<-=::+9Þv Äì÷†0’§‘;Øܹ¦"œº¶Þ± ‘¯ÿ˜*1ò9‰{Ù‡~q<ÇrüÛŽ©”8Ç3YÅoáWCÅ‘Ág;³&Cãa–äKouÑ[po‚°±g`<ÎàCõ9æ#™g#°Åó‰3ðÞgá(‰0ÈöÖÜõUÛ½ŒåS(Áý+äÔÈOe×^åq“š¿ÓšIí ‡¬\üNCe€w}G·óLrÒºäOØ6™¢hÙ-/½˜L‡™ˆWšùðW£t˜‹È€YßäÁŽ{,üvöoJÅ|¬u¨hÁñÃ(~&»å<°„ˆÌ=‘w]½C˜_4eí»õC¥¶fŒC+÷¡v5±xÇsìjܬªðbÌyuz׈%óùs™ËVçÔSVà!ÿY¯®;ïPå‘ew!žü=­Byn$D	-_½I‹ó’i˜ykIwÒP§c BAáþO3Ob*Áâ‘ ›ì0±NE†¼|×jÙ8QD£Ó™Ê»“‚µóêfÛÅ4=«}¼o׉»†ØìU…Šï×ÌÙs7
 °åãý•¿^B\ÞvYœÍAÅ<|V•…Òì^8_™™ÆÁñó{l]%ª%Òo•f¤š©Á’øðÖìœ]Ï&›ÄŒ;o
+®Qs4k)ÃeÄŠìIN.e\‹Ãüžø_žKR_¾‰Íñùú•e»H……ùz¾BÙ
+¶ÖälºìXð b·0‡ð<æüÎc¦
+?\‰J'(d÷FM;ö°WzdÝ!ÏÙ ) Èb+2gE°IGªvÄ¡+Ô‘/Ÿˆ=·ãOŠ:ŸwØNŸèÛhéÉ,J‰]:K±WÍaòn7ã§fyZ<Óö•{‚‹Z%‰éY´pAy_¶wä¹L!%F³ŸR1¨WŒ S^´¦b
+—a™¡®¿Þ 	{ü€º(9²$£™ùÁiæÛÖô#N8/²’?jxùÝZº!z*Llx£>ŽPž¦!š\tRßuO„*gÙ]mÇXÛôÅw&Ú‹štþf1¯x“z¯áóÎä8õ]F/š Æ1¿’ðrÙÅýµHè;e"B)œAE‡AõÞ¸xÖyeÖÏá¨>¨»‚öCÛ[·Z½cK¿q)z9uëÒ”þ0DñIóSÏ—úÈƦís5ʸ;Ư®ICì5télŒjX‘•t0õñ.0÷êò¬2*x²²_ »|#¨gµ×k¯«Ã*÷–XÔt6©Ù—>œ§Œuîvlj˜7ì|e]R³4kö¡*ÏÃ`UùAÉJºY,¡D[2HÏn•}:•º»V¢íž	G…¥©åÅ8óîQÞ
+ÿæ”–`˜"íœ$Ü-Ø.K“;H§,áäl{×ÂáÅÔi“»3þa œëC®œ!¼Q:Ô"4`k,ü¬PÍ«»\d>îÛ½µùó;øTñ.{ŸWdžeÔ»j¨0‹Ž6?
+#WW1¿ûý6\…ìÖeìëŠPŽÒ†8æ‡Å/Cïm¢õѺ¥Çºw/ð]?w2ûñ(Ï â¥ÿ΢C…'…“!›!Ä		>ûyÁ|ÃõPY+ÔëiÉÕ¬FÿÚ]a˜r
+ƒJÛùn¡ÇŠ{?&¦ø»Ú£Þ§kVV$IýHÉt…ÖÝT=ݸx‘	‘“s¯pSõy”A’IÚ–œ÷-Ìt.3«ñl„âœâ”B¤eYÛîiÁTC&R‘•Éè»×+]AÄ`Ûâáo¿¸{ÙYjÖ½5Û y>ìõ°ã
+.|DˆÀ	HA;Ê+U2›’¦Ÿ¦E<dò´«ÈÀs²!,¯}	¤	r™ìr-yá€Oÿ©ºäìíýµ"úA»»hÕÙIãÝbºÕ’¢^ñjâ†M}ˇQi2ŽIËýüÎ-'_—Ytк§@\ÔSÝ'(t<×»Š\¶º€è‰°Ç›}Ùü×Ç™	Ã`Tt6õNiõ!…–HصŒ5b%€uRÚ×ë’îGYì
++tj6-^\"‚—Û6™Gq’“”Ÿùåu駱ÌÝïIRKªÈk“¿“{_p›ï‚Á»¸HƧ>9E>(äµ>¼Ô*ˆ»`d™1­É$pLÑxì;	j„zརf‚屎1e¯T(@¯	pÓY™yr%\–6ÃÖP;dÁ4ŸÙ”¨
+Gfš¨7+Ñ©
+ï¨ÊV-V3®ÒÎíël©î¶¶)éq¯u盬(ÙW¼†¢ U)ݪ×p”—w×Ö͵PF_´†øÔ.…£67cS÷Í$[»¤N¡¸ ”aÕÊ1No*æM=íšð:ú2’ \±ÎÜ*uÚx#âw´ó¥šþ|Y"{ϳ¸)pê
+ûÞ›“ž±ü.ÜòÕ”/É(Ɓ6©Ìv”ì‰ãwuƒ¡ûQ¢mô(DY7[Ö­a¦KåÞî&û'±L°.Þ
+âs‹ì‡ÐA­#.÷ÂÂ)3BdŠgÊ“äñ—\&"ëøîäh¤rý’þ8ÂyefVó!pÛÙ)E‹ýÈë…ŸçJa³º`sÊ’ÅšÒ¸ùå.ҍ7Y¿„^Vƒ[Cž>îgª,	ì=Ž6nŒ¨¨×>Kb4t=5îèž=NÍ7>—¾:1ç¬_–8Ý…¸>©œÿngÍ¿žÙ¾úÁÐN“SäyqŘ.±¹âŠ
+5È4ï¯*@»rÕ8΄fP«¨ª;FÈÃñճ梽ÛÐoÂæêŒIÝ.‘´uç›ÈnL.¯Üã™òC’˧´Eƒ*gg)Rgw˜o<Lñhë	”—üMÒÖÑsìZÉD‚ÞýªM™ØEW
+1…üÎÎgZŸ³ÞJZG9[lw6Ò<#uM%壏ÁXòAfà˜ÒǼ(Ž{%u§Mm×Ð	v¢L8©=rÇÐÏ°
+Użt3“àg®„.àŒNQ]|–°{ôði	†­3P—¡Ò]ÎF’“ù¤3„ØG9‚[+è1`±=˜û¦ˆ©PåÎ]lÈj°T”Ü•%È‹eK€UQO£;Ùx±$_8ýµô?ÇÌ%ÆrÞÐú2¦â	=HõÁl´׍R9øùL
+'ñ¡…—_æ˜M,úz<ÊNR¤`ë0ÌMå’˜úÇèæÂÐ<ó7ÔúSÇ5Ã_Õ¿äE‡ô3=‰'ø¥ÒÈdÇ0Š­î`³ÖFiÊÌù|~@Þ²É,¤v½˜hwÓø`™´úÄÒë)Ãê½wã_ï}Ìyá“Ì2Ëjb—SÆgdã°uÃô§çºb¼I,fêØ—í3B½ŠuìzV”ÿ¶ã	fßáJuÍ#¯$¾1ðåë3
+"Oìô¦±¬RÞp6±Í–JI®¨§Þ B)GaËoP—ûˁ,iŸ«º¹óÀ•€à“wÄ<˜ô—y¼ðÆ ‚ŽÐ‘VlDï2\’M°gaØÎ6õ/8½ÐvR/Ö¹ÇxãŠ"Ü[2a*qñ<X
+c{k
+÷þ9 ­]™@3™UÇúîÿ±æÅ'/Jxß]à¾ØèU¨­ÌHDÓm¾mÞ:£?L±óµO&/ŒQ;V!þ*&À
+>H›fœ¢™Â2k3Ü‹ð¤d]iì!ae­†ÿÓ#T±m
+ºzFÆØë/.zžYZ†ÿ9ý
+ç凧»oe˜rQ>žÝÌÍ5?Žž}LØO’Žüm(Bª®TÊ½¥Ð
+í]¬%öó¤91”³ÙÖkÀδش†—Ö¾ª’ %ÚŠ‘ö°¸6ÌëÁ
+ËWÍíƒØé']{ˆnvv?ºOÝ¢‘¤ü÷nx½PNÂ?ƒrNç6„	Xu>°«·ÀŠ	:Ï,:_
+`%œâÇ]!•“ª]0\Æ^à“êÝxâHQ­¦€×uv ­ÞKe ÆUÛQM® ×ë0®lzË¥Ïw>ïÀ¸²
+¤˜Ï¢Ê})´ŒO;üS•I Û9	6ÙÆ“,?>¼’im½;ûÝ<êeþàW˜uÇêåj+ ©yèW† :Ì¿ýoüøÙ¥Mû’.LN» /¿Uºàôa¶±“Ú^”´ÂŸmºìÔ”†BLKÊW>1}ÚŽå麾vCôð…•JÝ[QEs¶ôGôÓw>¿¸w®‘2Å1`è6°
+ÿ¸µÑd‰$jÑêëÕ©þø +}$òO×cŒ¸3Y<8É`ÅdåzñãË+D&Ž+_ÂV¦	Vf5@¤ñ™œmg15’)Åd@©´asö™{Š£Y@	ÆØW‡ÊFŸÃk5kÎLpDà±%?(IäÂIÛS¶€Í]~Ê.¦eL^ÉTð[ö*zr™’hFcé—]PÛÍÊs·H¸º-5¬ôc…Ú.]ÏÏ“¥òç'k…yÿ;
+‡ñ+êq®½›§©ø9\fW*U4š÷ØY.‡A»HÐz@ŸcüäÙ—ƒöi“W©¾.l­~_~$dæ:s>mk'°PRûgúÕªr™$H].'¿Æ0®6_¨:áÆ
+ÙÔ]þu‚’F¼± ۍÑ#ݺi‹
+éL”-<KèÚf4žÚL:ËUâÖÝríчë
+?%^ÚdÚW®Š	j²fUiáš «Á?s?ð'Ÿhlés46¨f!ZU£O³Ò&*"cêœç¬-Cw«ëÕm“Ûk…ÝüÀªm!pÂN3ØZùÈÊ^cB=)F×UÄažØÍ9i*p:E†«¾¥
+-Þ:éš.ïˆFa Ú“­!´âO÷$6'ˆt1?"*|ž¨²‰ü™’²§·|ƒPæ IÙ5P´è§,¨ßТÇ,'¡‘âúŠ,Läô-ò㺅ÄÙ+s`J6æ‡F±ZéT´=Qìä-: ÁÅ„ë9§6!‚¬¶a3Hâ¦Y‘$¸m/R?Íò¸»Åc"aÙQÚG&ó`ùžqY'³È±TûI)+ÎëD«|Ôˆa™WùôµÁÑY¼§öìÐ^Aeõìž¹hâåK¿¸ö¬k0t™oŒÉ
+g1|Õû…Ú>¤èŒžïç€ÎÄîi•1Ñô@¿X`¯Qøö›D,Òr];û=ÚV¿fÆ2áS)>ó§5„×])?™<^懗×Û-R.~÷‡¾ÛS¶-án-ÛwXÝl2’$á¬NÎrMr_äp>׌. ^|"S[BÞ¡()ñRv	æ¢Ã™#XƒÓŸwyаÛõµò8Ô=R;Û¤
+ó—*ýdñéû‰ªûiA©wÌ¢}våú«öé>HîѲÑssaBa›÷EŒÿð¨Ì×Ð{ݹ'Â'§œ8„}qÌl㫼0 ²U‹,Ÿ('Œ&ôšÅ[׈žKK`¦¤§˜0öcÌDL	Wúö‰í'4(‰	«j§ofcÅ#éÒ£屨ûî}"&0WQ”ù׫€šŽëúÄ–Ú(!²QíŒ?äzG1öÄG„‰•î{•çÙ
+¶$ÝÍ~}ÆW,÷ê;„`§NÍatß®ðß\Ô°ÑAò"÷îÝMÁšÇòøÖñ­á¿£ô7xw~´¹¤y'gÖ^èqÊüÝÇhxL+Xjˆõœ'B»®×2]”p&?²Ó†Åª~ȶ~šXÞj}UGàJTÙç·îŒHÇóˆ¿ö ~¡J¬Š¦J’ÒÍã±*/B/h¡Œ¶H²WA‹£KtœUVo‚Í‘üíU±0ØÎóâ@õPj&‚±~˜›Éó¥faRõ⧠^Ì”Ýʶ5ý©F*Ñï…ª®tðdòj¢§£däOxâ4LÂ_2“"Ó30KOœÏµŸ”D³¶ö§Ë&8ÚfÍ3ŒF*ÊÝtƒ^|-W ÃýÆÛJ‘øÉ™·Ö'Äšµ»¤£Cì‰>*
+’DAÃûíÁÓŠ•8ÉInê3­pÄ!´AðŠ­%:dýßÕš`D
+ëµ³vùü‡³$lH¡èNyÒïò¬‘œçªÈMÈТ©Í3ZU*rhЄQ|ÐwEnÌ
+Îd?ÞÔØÈ­ÀK—]ëA}¿H„ðq×aju¯»2¯s"D²kM¯§ê•q‡%c!-aØût	$¤Rè\4úé%»BX†0ºw°üZúfì—ó:°pû¼Ëw8LÅ6GÕHÑ,ŠFHU$ÔjËá@ØqïѾé+Ž&U>¨íç}{½Æ-X»ÓÓ°=VY²›`gÉ“÷†ç0–4|ü÷T^¬J’ 
+aÿéÍ5h’|=”‚ Xl{!©8u™6ˆª
+lLÎã²Àæ÷N*ž¯ÛµvÛ7šVÅBC)˜3÷¬[?ý1Ì=[m»ãý~£/[㧫	þ|w`©Õ¸R½PO¥'o¥¨·™Lýîýç2òæo=ŒHÀûªÃƒ2‹ædø¾ããíN›·_àjî#b૳]Ù°aµgt[–áJŽ!IÀt…—¸äXק]«»¡_š<“SF:ºòÁâõٝø›m¶Wè+–Ï:X{{;¯£ö놳>T-ZÝ?ýêG73°aச:nНÖÄ>ÂÿSxîû^߸>½––Âm‚pb
+xhï»”ï;dvÔm:6Ñæ’;T3jò'	㡅ו#¬|˜>‘^åÖ€€òÅ´°\q§µç¨Ê/ZªAGŒRcשU"^Sw¡ð›?œP‰:ÔŠ€IAÖâ2Ÿn (5È`J‚Ž\Y¯_C‹º©ÞܳW^bw”Y±,Á'Tk)±9U‘¯ß
+±bªF^Õ°PòÁÊ9éîËÐ;û	ttgùnQ	›?‘ÍZû6€ì%À“ŠæG‚ÐÖ‰6 6”oËtRBÝÃÃ@ýà!2nü ñ&™`ìPÓèþªk—Ç"þ‚w’ÉmÇÄ¢ð€ÍSmXr{!·u(v1ÁbDîÆ!öM~5Rw’SD¡™"ùÕŒ
+2 £Îßì„nxVô¹-¼?~³ä ot‹FW~ܪKyb‘¾Ïc$ËømŸÉ’ê­o³†ŸP4º²¨Zí­•,Eiδ“¼ÃùǦ‘ž|gÉP¨ÔôúV¼º¼‰ákRÔøÀ6‚µ¼„§hìM@ÈH"Y¢eóÛU1²Îäî ´¦`<?2ow Î,L5Kð„‹
+oû¡¿J1g®¯*÷¡eÓÑ46û¿WW§|ÉæÏ
+aºñø„‚«ÕÀÐo )§FIj˜=nz¢žVá¡Ïz'™Îos®KRŒ¬£¯MŸµG†Lß¡°Z;Z«N§ûrb}©ꃟb÷üZµ5äŒÑӁÈ?3¢g‘Zº ä|Í3ÚµB7zgh\ïÆlH_ /tóm
+¨!RX…ÊWî_õ*dä·@ýÝW½jv(kâˆ{É#xƒ!ÉÒלó½î÷p†£Ïæ€í³2Õ¹(¢ã‡Zø›•»(×$Ê'|Á(Îc6Z©ô‚M[=·+»1F,®_ðÔòeâ sþ†e}þä,&“ÇN6Éöè2¹QDÅ8àYigžþ‡Ã—ü„±úî)·‘d”2¢x§!ú›3:¥X0ûnI¶ÆW㎋‡­º¼L .ɍ&¥jzG ¹itËN?Cä}—F¸.OÕ,÷ÓüeÃ÷¬jÝ‘aMýZÀ€^ ÖW‹Ý£¤Gõ¸éw©ùœPDÞ¥-§þë	‘½…²]݆2”ŽsÄ?¢u#Âùqj²›æç<ÁlJÿI¼†½…þ¬§@µï~£B¤ *¬â¹çB,?ÚÌG¾6C.ýÎÔ1įEç}¸eÕÉ6*_'	eMìÞ.gA1EœñŒJ]ÛQ+ÉiyÈ{ñ,M}QÊè H:Éß…3yq¾ÝIž¡uûQëWHÙ‡rëôYRæH?þãÂzY…Iÿ†2äOË ŸÌ|ŽF¾·žú¤©ÇóƒòÿþŸ °rZ¸AÀNn(ÿÑ<\endstream
+endobj
+116 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 640 0 R
+/FirstChar 2
+/LastChar 119
+/Widths 643 0 R
+/BaseFont /GMEBOS+NimbusRomNo9L-Medi
+/FontDescriptor 114 0 R
+>> endobj
+114 0 obj <<
+/Ascent 690
+/CapHeight 690
+/Descent -209
+/FontName /GMEBOS+NimbusRomNo9L-Medi
+/ItalicAngle 0
+/StemV 140
+/XHeight 461
+/FontBBox [-168 -341 1000 960]
+/Flags 4
+/CharSet (/fi/period/one/two/three/four/five/eight/A/H/I/L/R/W/a/b/c/d/e/f/g/i/l/m/n/o/r/s/t/u/w)
+/FontFile 115 0 R
+>> endobj
+643 0 obj
+[556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 500 500 500 500 500 0 0 500 0 0 0 0 0 0 0 0 722 0 0 0 0 0 0 778 389 0 0 667 0 0 0 0 0 722 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 500 556 444 556 444 333 500 0 278 0 0 278 833 556 500 0 0 444 389 333 556 0 722 ]
+endobj
+106 0 obj <<
+/Length1 1608
+/Length2 9985
+/Length3 532
+/Length 10828     
+/Filter /FlateDecode
+>>
+stream
+xÚíweTœÝ’.ÁàÜ%¸Kpw	ÁiÜw‡àîîî.ÁÝ]‚Cðà®—|gÎœYߝ_3ç×]·×êµÞ]Uû©§ê©½ûmòO
+ÊôBF6@1kzf&n€œ™•#HYßZ†^ØÆÒðndƒ''ÿbÔw0³±Ñw rԁF  !àóg 3<9à‹­«½™‰©€JUIš––î_–?! ×zÞw‚ÌL¬ïN at K[+ µÃ;Äÿx£2p0ŒÍ,€/ò
+š’râ *q9U€8Ðh¯o	Pp4°43Ș­A at j€±=Àò€¡µ‘ÙŸÒ@ïXB €> d44{ßt1ÚþqÑlöVf Ðû3À0±×·vx
+ÀÌÚÐÒÑèw»±Í_„límÞ#¬Þ}ï`
+6 ¡½™­à=«‚ˆØ?x:˜ê;üÉ
+2{wlŒß#lÿ”ô—ïæÝë of
+8 ]þä2 ŒÌ@¶–ú®ï¹ßÁlíÍþ¢á2³6ù:€=ÐDßÞȽücÿéοêü—êõmm-]ÿÚmóWÔr0s -à™?¿ç4txÏmbf
+ÏøgP$­m ÌLÿ°9ÚþÓç´ÿ«ATf†ú„¾‘µ¥+ÀhÏ(gãðž@õ?S™áß'ò¿Aâ‹Àÿyÿwâþ]£ÿrˆÿ·çùïÐbŽ––rúVïðð~À 2€?wÌÿ«oeféúßDÿ=Pø†ÿˆ¤ƒþ{„¬MÞ¥`b`ú‡Ñ$fæ4R0s04ë[¾÷è/»ªµÐÞÒÌø®å_mÐ3³±ýͧbjfhaý§éì\¹€ÖFgþ.Ï_¼…E¤åT•iÿ~›þ¥ð®ºƒŠ«í;±ÿ¨CÖÆè?0„…m\ îôÌ, z&Ž÷ÃÆÄàbåòüoòýÄü¯µ¬¾ƒ½™@ë½h&æ¿Jÿï¿VÚƒµ6´1ú3'ÊúÖFï£õŸ†?nCG{ûwEÿ:íï%ÿsýא. at CøåCž óä´‡j쬁1­ž.fˆ@Û¢:•ü\ŸJ›NïäM®2½çª@†ú	î××ù#Û—])š_C]X–”‰ÀÓORêî\Ô5Š6Ú_~Œ:EH)Çêáîgs2_Ù™Ô~m)*é>CN´±ØÞÝQû:åú`ÝÚ"{&ÕFa¶¬C«Î;:¦ˆ;¸»¥ìèï¼€êÞŧ͌‚#çq‚D¢ó±ËÄøªZæaPÈ×WßÔ­JŲ¶tÕ°ÁøºWWj¸â~\l´÷õs—xÒùù<§ ËE¾ß“5x¥ к‚¿ó””`œBö™`÷Úx<RÀ+²GRêÔg{ÍM¢0ï¦å|¬TŠq»š5ùhdÜ"k ør'º­Z’¡×'áqª):IºaŒ¯
+.VC-dà¼Îê+ at Yv~oQ?—ç`ìåÍ÷º;y8]èT`^Ù@ÂxƒTâåP;~|Gþ4b‹™ò ”Ã"c©P¸¯& ¦íêÊ©pa‡èbˆMvÇkðX6Ê:çÆaf?QÝ\PºS)XBLL‹ªjŠ—>ÌrïH5œJnZÏÍï—éͳd8ª” êHƒa^•ŒU!ôÜÏV®Í0{cCõ ÇQ㏑˴¶
+ƒ åÁ„BZÁxÛª[8ͧ‚ûúá9yî^²–«"ÃõZÜ®ê	‘Ú›‘Õý)ÝÙÏÈÆ(ÊÌ©Y÷klÖø%‹€Nó¹w˜Â7ÓH¦KõéÊIº ßã!=±’Å°ØÌ »„ǦŠ6ž *®ì)9VBZ.̇íe0™_’°JÌí°8ÑpI¤!H¶מá³Èç¡Åì&EQïw`ayî}‘°Ì§ü£KÙ¹±¼Ïߨn2©Ëydº†ðÄÚO°f£Ó¬w56
+íÄÃ	…Ÿìì‡i‘/ÉpÛL2`Þ2:?[ùä3tš,•pX¢íˆÈl¬ËÒM}B‘5—Kò‘:”ìˆaŠŸa†ž
+P»øH¾=#É…*m1©ž
+ÙÏÈ›ÓÞ„ҝÝòÊQÉ؃ˆ2'ûI·§
+ä=Å’ƒ¤²gŽ&C`¬½‹ôˆC/Ç©ø$”»¤Rƒ‘™êdYW¿Ýš~q?†ÖW“Ér.6‘ÔÀw¬’u”8i¹g¨Þ-íúù¦fbr'1É"}¸u1›
+ë~Ëx$ŒKˆðr$›B³u™zgçY”tôÄÀÒ4ì$…ýí׎aù‘€ù!qÄ%>žK‹9vU¿ÝšàÆœl*†YÒN¢5x™-‚ýßEœÓUµ[YÇ|9Ʋ‡é"ls
+f/¿‰ÇmëubÞ:ìÄÎ|ÐÞ­ðF•ç7½\uÕð¤øxZ= JœhV¶"5V÷êjŠ ЮjÌË=ZLéö±ã½¼L´q£	¼üì'd²6”Í;Þò©›Å4§© ÅÕ;ÏuÙHr‚ºº‚ê”qﶣÅb´7\ù)ÉË0¿ëžE~¡1P÷ð­iW«
+XNøÙž+#ÀŽ}kËBÈUβ„’ªGÏÖëueu’PEqØ&jÃÐI	u2áΰñe†Ìz”Š^šº
+‘3öê-ûÕR·Ì”-’`Nê
+W¢<«Yžo›þÃŽI?™-Mø•ÌÃÁ
+ÔüÏŶmáWâ#°øéq´½¦~Ëd¬
+ÜÀ''²›ÝðÛ®žßõÆ·2Jçصˆ+m3"J›A\ÂìNR´+(–ødÂÖLô«"ÙÁgµˆW”ßÜÉ(¿VR¢|¢b¾î+XÖ>jÄ%A³ÖðŠÒ™»œEAô= Ö‰5Ÿ¬ôù®¯1ªBŽšÌÅ
+à<u\'--
+ë‚Ó#´?› óð¤¤b%
+‹Wq.nåéíœû}M-r\,Ù˜wœ`„œ…½ëW>¾1+¸ì¦ÉJß‚DÏÛ#SÐ쬻)¥œFf±
+ªŽ
+úÁIž'A§B"*cžÞv	åÏ‚å‚ÜìîjÓG™ý”©\ÔI¦î},P°ô­‘U>Ú‡dvP¯›xp%£M{	LÝÜB?… ÿê'Jzn¹6IL*n£µÕ€ú,q\“¼ùÓo|Åûîº/² §&b‰&Áó
+5ö$¾€Þvý¬ß—Ôûë)þÅfMدu!$ŒºúZyZreyA4Ë;!PB‘-GkÏ"Ÿ¸—õ(Có“KL–¢{ìØó¹LÚÎÙ‡œÀsrŒËðë‹öX¥cÈ.²nÄÅ™³ƒa,Ç1>s3.·Ý:!™4p@ç+œ)?µ;ñxöª|Ä"rÀ[ÝëÉ,h‡O=D‚q«5$*_£T[.ÞN¡ô؁ö‘7à"€Oîká	ÓìöŽÄÚìýÙK±-úÓÙ88I³òGž@ç™sIÅÂpÄ©êg
+úHõ£Œ}S°X–H[–-”ÂêàÔ\Z\¼dœ@
+CG—ŽÃrþñ³m6ê)ÛùÈ÷ŠÁµJȃÓ&5ñn!X_ =•ùs—GjÁ÷O¡ÄÜÝT¯–‡¼PDèô¯À0xûÉú‡W4Þ(‹¼TÅO¡çÝó/•`µ2Ché˜â´yQØ|sBÐ[0;ÆltEÔ¦›ä4+_ÓAÅ!ì`¸9Ɓi
+/N‡xúõSÚÓ=šѶÌëdG[›ø‹q`3£ì/·ÐÍDLæ(*xSê·'¨«î3×öšT°ý7ׯ<¢‡¾0ÒAÅ™»^Uiqo³uønžš’•ø°„?{‹i…H‰½³ŸŠK'Æ|Ö.¬¢ï!Ñ’›Š”w‹„Çûi˜ñ'ŒÅ%¯&Œéúú6y#oÁd¡çäO‹
+‡Ëtrªú4­z£õ<²ÂlUºãÍ1ÒEØœÉÔ—[Í3¯q>_ÂÜfа‡ûùÑÔè~ãL#l–Ãy¦îˆŽ ,?ÖJ*‡B©^`Ëù~™ÑõÖ¬
+iJhÞqcW®…F¹#l
+âÈAÂ:›…2Ì<r×9öÂ•3„ƒ>N;¿žyPùÉ V£¿»M4ueÿÖ‰Ӑª$v½0ÌñxuÂ=ˆÕ¸ÍŠÆèC¦¬›•¢æŽ‹ôòC3u.Ù~W
+}»®Ó´€‘cëL¤zOv-EÈNB—Œ¯-ÖÓ„EøáC¶ËÁSA”íøB¹yîÙ³ÌodÄ÷ÄÜ+)3`k';Þgpn†O'±y‘শ£eä_¯¥³þNíáW%ºi´|Eð^b€³·ŒÇ‰¸â‘M£¯ò¹ßïÈRSË{ÀMÀùÛ¤©§<]Iù,.Ú¾øúಬq¬ûMÅ <|´Å‚T+R"[Û‘l”Wzñîâ^잤NM¼¿cE¸Æ²ù"<>™ ÓÕù=ƒ—ájè@mä˜?«ÎW“v‰çuÈÊÝh3l&œ‚Íêy6‰3ûÑ\´žÕ}Ø‹†ïiÔíbÜXÍâ#Á‰(GI­tèïÝÆ6aia,£b‡!ÛŒ
+ìÁËÒÖ¾ ¹?ý®˜Ë1å^ÿ4ã®þû:ó¢C{F½§ÆZÑ“ù¤}A¿¦æ¾ÿEfT,Œ2Õ¿Îëd/üj’¶ueö£Eà|ƒœµJ-m¨'LÚˆÇ'…¢A›“¯wUÕÂè¢ùBC—¾$W|°Tó Š4÷mi¤B!‡“ÓÿË"^â‘{„!|vs‚%Ÿ%c¯K=Qå'Ìnù‘<N`DåÒœfk8$n‡„ªºÝÎmˆÇ"½–G¹gÇ­’ìÏ—×] XT¡ÕL܍_(Êå~s¹Ç€yi×â7,ø5ž:Ò´ˆ³VŠaž9¢+*¾ÂHǦT¥½²ãv®Òó £_É–7
+Êälhæ>:„Cƒ¯y?[¥FžŠáóæ¶
+·ªÁBJã!偤Ü4Ûm¥Ì˜…¬(MO«¢/Œ¦&wMGsÏ
+¢\ظ”lÉ$w{ÐpáåyÆq‹)âw¤ØIëuL€”¢„:††…鷏ÌpR­—ûŸàŠŒ~Úvõ4–P©ò{£Ì֏q‰¬×
+]¼¤êþøUsi€à+Ÿ[h•d„KZ{Ŷ	N¶ÏÔûV¡ÙPëñþs(ƒ´AM‡^='«_Žßø3 n‘˜$êeó°yqlfÔótá2G©,Bªb¤ÿÚdÒ ÿ²m¨Ñ+H×y}VcQî”<\É9B4²ôuòf!äã¿©påÚÝWÁÿQãæú2$ ¬Þët3x²d´/:nØÓâds
+¶ýúÓ1qjÛÔ/X½ª;S´wX²úÈÎU.«ƒ³FÞ{p£¬®S-CIk™›ÕWÚö¾µûÉ{Ø…Ž¯^evP6?®6<±{n	{'±(Þçå+ž'”hÌÿ#æ[¶ <Ø¤e#~-s’ÿ­~µ¿Û[„o´V¾é%j›º_ç<mãàçÎß9UØr!	ÏJÅ2jégN¤;¸J]J/¼Øš½+˜ÃHjRµX:6>Òç£e5è*ö`»è?ãeèmVå4ÛíöØ!‹±$l¶úËɠûó3Ľ¡RÓY+Ùh‚éæiÿÄL—k™án€„ÙFÉZ3Çÿ€TƃØèú•³¸2»r¤<Õî$Ýó( ù;':n—.3bk¨3ÜÉÂvyv¯%£Kùn™:听§î¥ê†:Ü°05àL²Î®
+­¿7µÚBc·—¤^y\Ñ$ø–0͹ÍïL¤«o_‡ðcØÂo=Ò…"²“°M]ÐlBQ!àT³W”×zŸlEdŽoM;¸w÷à^•äÁ™²RìŸõÁ–Iˆ¿Ã›ÇU¾ÆHõ{í܁͑ݛö%há)Ù¡…„ñ;EÚ¸¶‹J£ÝòžÀz}[ÌñŽpžfqªÀÍT͹[GU7W	Œ8WÚŒiT‹”˜½vMîdVm)¼ºÈ4ƒ®‹¾ŒÁ«9
+Eñ_žÂÑ2}ÁaÈ=T4N³Ü-hê’3Öbq…òú吣¤Jæ‚:!Ëq—´&mF»†‘Æ ç£UPŠ7PŒêqZÐKÕ Ôá>eÁ+&ŠÚ¬Á$<TFSËGæÑ‹ì4`ic@“6”½î6š]8Ø[µ¾ûDzFNŽ{‡VPLPåw)Öﳂ¨!À·™„Ç«3uÃ͆CÊvUѐk$Ö< [mad¹†ŧ½5ƒß}Ã×ýS5«ƒm		ÉÏj÷›`2_çœ>ÏÔOÛ_M¼§{øö
+ŒD+Áˆ #÷—´ªµûTšj®ØŽÓ„[\[ý¦M{¹-z§×ÒÕä#ïÙ9IÆ]߉¤
+h”>œ¡Eí4J®–'æÖÉ5[=ùÇOkY†›
+¶@õffC§Åz¹Ïs[¼v“e”T©quD´H\0šû›bÛ1~ç¶ú-´˜…¼þ{n™Ì)ç§K
+h¾3·¿¥ÛE~e·—JäÛû¬'®‘BbGVª¥|.&ùÚ/6ʶ—¶Í	žÖ—×v’<RÕ”ÂS$ÐWõDé}×ë|“
+‹‰Ñ“¬€8g½o,¼¬#«q”uÿp”‘¹Ï»Ëy¤( Ö\££œjOÎÎ=Šéù›Ÿ¿eç·–Ö£/j€#°Üêuõ‡,Dýoz{¸@ôɯ•ƒMJMèì·“¡¢©y?ŠWQ1ÅÓ è‡u:Q^íÎúþ2ö¸ËfïI)M´^–èôfW®³å
+fV¶Á±W+@Ÿ.åh¾ó7	L6v‚y“ºØj3òCÅ3*h°a>pT©W9dv(廉yò€Ì3=^­/Ï^á[2Y×ÙK=PŒ×EVfxI¶è~+ðT]ßmFp¬¦Ü™kL…jÆ1 N5äJ2Hn2—¶	rn{uà½݆r±«eq÷Ìz•l!§¿®Ü_c©T '[Ô¤IVÒÜâᣤùeÇbjáŠõ2¡G<
+h&X
+mA.Á†€)·3«¾^ò<^õG”~üìbqÍ°Žñ'±)üQ:—’¢–
+ށð09µÈÝ^”‚Øô„þUÙ…cÙés&"(›ÕÅr=9÷@^š<
+’O²ô­(iÚÑ1uˆN÷\-èq{As0¥:’\Khùm'ͦÇ~‰ÓýFÈüµ{$áî0²: ¨³Ú›2·Æ-y$Y½´ßÛ†’ýôÆ‹h%]'ÛâÉ=‘ŽˆTà½_«‰àD’?Ô–ù„üÌ
+åKf·××9›"ˆdA¡'¸_, Ïp¯¡"ÿ¬›—Ø\6`œZ(+”VªPTx­%’©¼ÖˆdÄ#Ÿåøh^ð~%Äzã:ë¥Öÿ2ƒÛà žú<Ê8	ÝÊÏ|s¡/ µJ×µÃvÓÍ2ì_t²Qæ¨Ï…ÏM㞢­ Iýi6rÂd…‹3ÜÎèÐüjŸ~,ÿìSj˜W^Ï3BÕO¿ò™%®Š(®Ûmõ#'茫¨44|ƒ•h+Ê³o.¤LA‰8D	i¹Jö×$!¬T
+—лrec¨ºp™ù2P¥bV¹R’¼…E’iëÐìú¸G²]kòüÛ{^&…~´Èk©6ĺ„ðÁm7<p¾‘yJæ~ûNx^e4å4<܃y/Ô®ïP[„ÌcÛçÇl7´ŒIÁvÀ6³(Ó&\˜ÂäùM/F‡ú;5Z¥Nü):¶Ópc¤
+’ns¶zÉÎÖú+û”Dx*ö®¼3	Ò‰Zµ„‡JÄë˜_ô‰jqŽÂæÙ.Èÿ÷„yU±~±úž^9„,»3B¨bG\F‹:°¥SñÅL€]A]› +¢å¬ä²hnGƒë'¢‹¦Žãe—"dj7Й
+Gó­ó§žZv]íœá¢
+ê°pŠì>$~Ú¬þ^Δé>CÔ¾)ð-Ä_é/ßaQ+qZ‰»«`˜µé®bàðÕL•¼Y]ïI¥¾ŸžãáAVËt§ÅXÑOµ­]¦Qo‹ÔÂj§`âÐÝö‰Øµ9ç׸õ¿n7…@
+Œ}`-]¯mbo	†O±„rùÌ\k©i¸*¹[! ªoGÌ’Xj÷êg‹â’´“À¼V/
+¶‹è( ¢…æÖ@Æûñ0RG陣¡I` W}Œàμ´^-©0·r6†Â)
+]â{8ãS‹ç8a‘K@(-gÕEõÝùÉu¼9úя¬‡Cjìûi2NÙû^*Lfª
+N7df¢4!ŒšÔ°D~l¼€ _ŠƒàqZ
+¨¿_˜4ÅûXÉëÐ{õQîõÛËÝb…›xÕ+ývü•Jü8˜·4Ò ëÚæ}¡ÎËØ"¨ÒèÊ-\‚h"½å)•ˆ+]†ì ˜«÷ü
+ð7üçK97ûNÚe3
+­8¾YŽÎ„›'‰1óiKSWM °Ëbœð¢\¨ªª›ºR¿òÐLÑ®¼ìþ¥ë{JÊc“µõoù¦ëƒª0—Ó#¶üáäV¿½œ‹ë7p舳>8Ÿ
+8¢Û§)ó@(m±|ºÛEèÓrÒRaEŠí®RYJô{œl–¥7;v55¤0	¾X›†0onÙFl
+wœ˜ÚPa»{€°&j¶ñøÓ	ñjïIÄ*ȵ…N
+Š¿2bn@þü|8R•0Õ¼¸p¿Ws!Ž„ÿB`•æÿšäWX¯ò»Z|̯&Î=9ø{)©¯ô<«ó3ΧÁCXÇyØÝpJ¼ŠQá¾›K QG\RU€|‹‡Ca=ÄtúqáÊöæÝ.J·º&Z„åHÐ
+†²¿ÊÎiA,~}mU
+Ǥ’Ô˜-\vèÚqònžØïõ‚]×[hÜR[c<:Oò·¹)ÝX€¢íôÚç·rð¼õäO)‹¦™cq‚TojA‘ž;}4Á“G~¬¤gн€]ZµÂ°ý©oYæOç²FJ
+—V<ÓuÆÇ\»·Ž3‡‘D‰­ÕÑ;_Y›;	@7±TKÅ8>¸²K	ê¤8Îb9Fþ´]{ë‹4ô$_%’`Î<;¿™ßFuÉp0*!!zblßUT\åÎ=r,å#øðž
+ù|ÑÀ~²¦Þ|ŒTüx1Œ,HœòÛkÁ¯ï’¦Aä0 ½ËIÈÐ^1Hß;ÆËh Ú®ºkó´š±¦EÑ—¦ÑbìÙEUÉ5>ñ¨í&jP° tÀöSI;`ù:s<ɝvy¡f!ëQ30â	NL`Kç²@|“ü³)²<ûÝ6þÌã#³q•AÈòkg]¢tL
+Ç|ü’€†=¥›F" öYrDÖÃoÇÏåßå‘rÅ1[ä|àJº† VŠ·‡MRWÕÒ&|ižqÐr)©|7òž<0lȧ.=Ò¿Âeü“ϵ?‚!Ý=ñ½6£ÏMö+m‚¾¡q>™*ÁBPQTs‘Å –å,>; ‡y¯…é†õ¢|¨GËàªÐ×X;"d
+˜Á¨‡(êûán#:uZè[ðê”عm
+ø3K~Ln‚Ãßà¹ßìfŒV*±óÁg
+okà=¿OPH­·Y(âc®B;cJ5(dó[¹ÈÛßQlAÏ’†FŽµ+ÿ	;׏‘x ¢ÍPÐéÀ5ƒ!¾è²\/{”öccé“¡¥~'|‘ÈzDß6hº"?ôxÎøÑø«7 ýÁ6ƒ"#!Ö¥0Z~Yß•	˜w‡~’õWÏõŒS(cÈ)Vj e•¾þÚŠª´4ú»Èqkδ­Ô4ÿF!å''aÀ•_|SrþÛé-–›e.õã
+ÿ«ÓôóS¨æž¨…åcÔ¤(KkO|]s~;„ºG:åU=á¨§·äGf”a9›bâ“ý·0G]Žpž“.ÂöEšgÔQù`Ù[žÐ,Õ¤û¤]PfÐɼøTíÄ>é5ˆ:g]”<J`^,fbÚ ~ð“ÕÜ™éçŒo•™Ïó¯qŽ2S[© Š¼îÁô?¾‰ÄXA‰FD+eJ®RQ2;A·r‘Aí×vÀ*ðX¿Ëy·«¨ÈÉq*ý™n-i»уaÞþq–ª:ŒoLsÊfÁû£¡#Å-‘K†EUpæ—ÏÕ¼‡þ;Ð3¤Ú?
+ìûï³}Õq±×³65tª.P¥— jñÂMöfh-Êî]¦‹j®t36ðŠò\>T—½7~ÄëÜIÊæElxæÝ}Ž¼õhn±&I]o\††™C¤‰}JÔÖiŠÓîn7ã cX¼bøþ%fãâ…=
+d΍„tÐ&Ø(@¬46(e¿%/áu6«cùIg̍ˆ0¾–«·¥NŠÙWF.\1°àÁ¶˜ã/€”BþQQE"A´[E¾ò&0Í™Ât;ØÈHºŠ"‰aCºž91 Þ™@yI€,¯:dIKÊÞצ?ô¼LÚÙ	S,ìd“Ú@Ÿ‰MX*ÅFm¿€ ©ç¸2Ûyb±íͨ™Üt¦%ñãd8³^÷؆
+Tæeüè€ ƒ•©‹Û°•Õ¯wÔ¢wø»²¿
+ÍuÿðãîÐ+£Þù¯U`¢æh­À\vÎut"xäôï¯å¦;vê/8׳-œW¡ Û
+)Öyí…Â{*¦PÇ]ëú[qŠ…D½
+‡ç¹–›XÄ¢ÌûU7»k~@)ü¦ìøÑJîØÃ,ᘜò"PäÕéç•Y;!¢TÀÖZ¨én©ýéû¯¥Y´ØT4ëpú/a~å`‚~óêýú^«m¯d0'SõÍ©sûø´	Ó¨Ww‘t°CbºÔÔóÌ_ñ¨èà«7¸íVAÛÝÓy„eY×Zæ'¦u9-(žK…K¡B^C&ÄJØa¥	ôßÁÐ艆{\ºÁæTó©ã‘}3¥¹¿#¥JZÄBJûl.æ°mp;1Pñ;è¨NªÇÇp’¾‚à<e«ÏÉ?î8CEùp¹-tÞ­:q\ÎQGCr{kžÇë¨@«HV„xdí
+êÕúÌHîì¼TÝrûé {¯ZIØ<å×™kN(·¸½,¯Usó(â!CGÒ  ‰­ÑkÉ|)T…SnFÓÉêqxrd6ú¸`]‰´ˆä^<…¢Õ²Ê|ƒÂ5Y»rÛÚ÷¨dÚ²±-H>^úÖCá|âÔûFÃLéÅ—›ëÂÓš¥nµ'i@x‰7¥ÊFÊj1_3U9d‰»‚¶þ%…·w“€®ÿ…,¥9Ò§ÈïsùŽ™¡DÝ©Öê¢m}:'¯ÿ¶Zˆ0e¬ÅŠã÷ ©!¥uWe¹Îðõm wŒ(¿K¨Õµ¸‰¤,wšp²^ò©G¾Ùû²¶üeªÞàŽ¦ƒû¯¹sž¬WY±xu>3 Á@îˆú›ÅqªÓOµ–=xì»ù†[«¾‚ÇnÙQ§sŒ0H²â+ŠÁƒ:ݘ»’Æ1R²Æ-ƒ~ó@JZŸ³’ráëŠoãÕ
+äæMÕ¶/sxdªƒlÐäô›ßÚ]Œ÷–c±Sé‡F<¹rFXp,çîB
+ÞHÄ$Ì!²ÐIKLÐ Ü<0e+ärNÙÏÛ۠㇄…Áêb­¡dÞéAÙæ6Œßi‡þ=W ÒÏ^ÃáÚ§ÈÏý›mÛHbÈmx/ÞâãúmÚž-’î¡}j§,0ɲrsÅìwiÑ䧢äÚÄ_¨_c‡à(ͦûTI”pöŠ·aZ"Œ¾ z0eGå-À^ŽÑø9úLÄ,2¤;"],gv¥ë±˜mtÜXÄȁôo6ƒb·r2iÌÙ?=Nq†Z_Î}:ËfO—h9ö‰Ü—æ•nšƒ÷„÷ÚFÀƒ†Reò¾
+:wMˆÚŒD¹µnXúÚ>Î*Á
+ð8J›ÏÕì›±ƒ³QHµ‘B¹Êè'ŠÕH‘·	ŠF¶=aú)ã
 ß³Ǎò8î4ùÒ¨åë­¡˜´·¯óB®©jÿ®t+ÔÏÿæoÞ4
+ÔË”îËĤ½v;/ßܶs ÁâçhûƑי*åa¨—ÃsnѯŠÚ­ø$LcÎfh¢†ü3Á~ûµE{ø%&‡ìÁ\Ç\^ž›“Îd¾Œ-5úƒª)²ÂÇÙW2¢º0ϱ;,UP-¼`?S®’<쑬Óe5sý	Ñ$Á¸Ö®VÍZ+"ãDøýµ$DÈíƒ)á	²JH‡Ä•\µ7sÕˆq¿Y®h¹{6RÀXGƒàä€<Gg`ÐË=\Ãœ«µ°	²†¶´XDÓñéŽôÑ-þ”5/RÝa6&#yIc
+§cwdýÊÍiŸåWŒ’qÕŒ]™
+ãqTûö(ç_‘·8Û³ÆK7M(Öoià&§‚¾k¹àÙªkÖI7çÖÑ…ñŽ‰ÓYù©s—,ÐÛ¯ŠÁ(ëdk¾ÕŸÚUÆ3¡Ü{M»
+ÇGŽ‰Ñ#1ñ¬„”TB«ãoŒT8£’ºóÝÐxáúJô[E.«ž×ïz?B[¯§Zo8aÓÚÖ[ù5‰`Ő<€	~=åQ¹¾Uä%ÌÛááXÊG^~Bc^i@èuKÒ7{ÛD™Ÿ/™Ü6œmIÍ¿÷Ž3Í•íÐø‡
+æ}<úÝ
+Ì´íkqóO-Þá•ðAf”†€5>!w½}„‘§›Yü™	Ø68µç	Ü)ëV#nK¢ ¸÷ƒ@S­¶Ž|µ‹Óbн•fÌa—X“6³†&‡ÏÜÛs¨Q¼Š"1°¾aTYÖ&cQ8“¾¿ˆ^Ž×Ÿ¡ñþø•NÉø}¿˜äíŒUz`âA7LýÖ.¨YŽƒ²²<ñ*Ÿ¨B`i>
+ò˜ÊA+æCÛëuÖc“…ÒI;¢¦Ù#)ÊJü‡ý|	í\5>û‚¨vUÌ+ÖUW=ÿ Ã¥š|é!=ÚoÊÕáb$ø Éô™'ˆ*:¸Ãùþ©Ì¬ýÐ^íC®‘t›elª'uˆÇ)~Æœ£‡³ÖM™ÚñnJ…ö×3Ž+Ù¹ÛékË#ŸŒªÊŽ„Ý»>+ˆßv>f«ã·Èÿj<—4O§‘­ú0ø–¯|™îd{®DÊU(ø±Tšœ6¶ïÏMvÝ‘熽L9êZC¿BðìXI&`¥7y÷Üu°M>?¥™ûmË>¡ڍ^$Ê)$|höNäؤۘO®f®ýõÌ8­½óíJ5üfË2Ãj`ÜE²3
+ËO½tâúsëF6XFÔg©äÚÈUM,ÿJ’¹ö&y
+©(>Ó¤-úI¿s@‘‚U„DŠ_¶ÀQ5uQaÜæXðFØñ¡È˜ŠØ,f³I—^räIšuºmÖ1äïiä 3:ÑtE p€ì£¯1+2ÿ*”Š¿†Ê"3kÕ1alæšDªÊ‡lŸQÖ^–´OP]üÅQ˜ÐÇåûN·ØºR½MçCÕ…ü›¹xKYéG‡7¿Ìb¾ÇÒ21³v
+æ)Š›Dt\¢ÉôLá–.#XxHÌ=_NúB*Ga¸©@bË	qkþô9Ò›È&ORD”éºà4ÅU`_r:·7N0™¼È=ðq+ͦèØùw
+5E†g~a4œ•0˜…th¸å8Mã‡ì§qè{äÿªði@]ðb3è%\ÎÌ»ˆFO/õûæ3Æ7ÆÅ̪ø¬ô½«0nhzj金ǦãèfòimÙ´ä]…]LÉ:GÞL8]ñªÄ’³
+šØqS&H¾%§ÂxRc¨“ånB¨ÞZ†Ã¢õˆc]Øn%ßÍO¼p0ÌE³¿]]˜22»qÌS‹¼ÉàŒ&)ošùÐP]´~µ=cÁ½ÁØ,3¹ù³ªx¦+ŠI°š¢:¼D]Vï†l9‚sÃ|0€AdYkÔÊ–rhp¾AáWí8Ó"Ý%MzªpD®6ý–#;'3·wÊ÷©aØwú¨ýg؁‡O×pã2ÊSØö5å¬xËÆñÞèRuN¾ÛÀõyûÅc•Ÿ‹c[µB¬äÚ¤f`Ømbâeï>‹ºÑ'ZUTL~­ÎgP
+yŽ7›qƒý˜£Ó–­^é)•Õo:ž×:㘌ø{¶9jd£«Aš5¢5VñIÖJÝ°ÈŽ¾scã§2…©oðy›W2a1Ýún>c.‰GÏØ,wiT=dú_~àÿ?Àÿ †–@}{+}{øÿ¦endstream
+endobj
+107 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 640 0 R
+/FirstChar 2
+/LastChar 121
+/Widths 644 0 R
+/BaseFont /BDKNUS+NimbusSanL-Bold
+/FontDescriptor 105 0 R
+>> endobj
+105 0 obj <<
+/Ascent 722
+/CapHeight 722
+/Descent -217
+/FontName /BDKNUS+NimbusSanL-Bold
+/ItalicAngle 0
+/StemV 141
+/XHeight 532
+/FontBBox [-173 -307 1003 949]
+/Flags 4
+/CharSet (/fi/fl/period/one/two/three/four/five/six/seven/eight/nine/A/C/D/H/I/L/M/N/P/R/S/T/V/W/underscore/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y)
+/FontFile 106 0 R
+>> endobj
+644 0 obj
+[611 611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 0 0 556 556 556 556 556 556 556 556 556 0 0 0 0 0 0 0 722 0 722 722 0 0 0 722 278 0 0 611 833 722 0 667 0 722 667 611 0 667 944 0 0 0 0 0 0 0 556 0 556 611 556 611 556 333 611 611 278 0 556 278 889 611 611 611 611 389 556 333 611 556 778 556 556 ]
+endobj
+102 0 obj <<
+/Length1 1166
+/Length2 6485
+/Length3 544
+/Length 7294      
+/Filter /FlateDecode
+>>
+stream
+xÚíyU\ëö%î48
+
+Ѝ»;ÁƒC€h¤šÆ=A‚CpMÐà‚»{pBpB
+„!çüÏ=sϽó4o󛪇ú¾½v­½÷úV=+“ÎS9[¸5DCòðñ‚ÄZPk÷§`˜ÄÞpã±²êC‘ΐÿ€ïŒ„ÂaŠ`ä=®ïàÐ# ü  H$*.Äw¿	ü•GˆtP¸/@‚„ œ¡°{Hnãá!Ÿz¸º:C!¶zw¸Ââ.°»ïì?«à®>¨½Àa gÄùø1÷ß>111€µÏ_@ⵇØîžg¸ëïJ÷*qß´íï\;°’-ù{\ ‡é*ºÚ!÷1^w;^	ä¼oT	f« wùMàŽ÷[3E(bs?”ðŸº9Áà^0¿ÿÛAa¶Œdëá
+4€AÝ< jŠÿ“|Âû;fA„@ü 1? â€xÛ8 —Ô÷q…üòýƒa¶~®pW€ØÙ µƒÜ?ðüÜÁž á	ðû߁ßáññl¡6H€5Äþþþf¿CìþÜk‚‘¨7ÀÄñ@¿ï­žÝ¨-æìówºØ +Ê)ê*>þçìÿÊ’—‡ßSòð‰xøE…îrÏ(&$ðOÆiñ—DuÀÐÿéô7¥Ìûsœ{ÿÉ‚p¿÷&€ãsþ_Ž„Ú@ [Ç$ºwÍýƒï¿Zêßðÿj¬ÖPöpvþCŽ?å ÜëáÐ üVÄŒøt°ÔÙ翼ðÏD#ÈŸîÿ?ð¨!ÁÎP9˜½ó¿d‚º+C½!¶:P¤ÃŸvùKeÛ?¾CˆÜúûKðð	ñýÓw€Ú8Á îî÷gñÙþ£¤Ìn…Ùž"ï]	FØþ+ð¶ñ@ îåùã€îßýko½oñ†Øà-ÍÃm$Bß…¶]ÖÈÑzñl}è68¿ó`Ä‹uFÝäEëÑ¢r*¥Ì;MÉQÔu®2C×DG
+O UŠñr“oçÅ&%#ES¤9ä­“Ô'8Æá˜üê¥IŒ¡J{½§à3 ú©üÜ„UZaœôi8œ"ˆþÒtg×M‹–¡¼ W{wžSŒòúù‘¶ªs ®8Öìp‡"ÈñyD¾zgÃÔ»º)~ÃáYe;©ÕÜ|Ÿ<¡PÐl¸
+òݱ5­I©ˆxÇx'ÿµCY«ÝuÍ°kºÀ3×îþ@tÂÃN}ÌRÛc§@¬¤þ’X|DÂ
+)uêfãP•$9"ø²sq _Î@Ï•øø‹³Ñ{ûʹ9s†^uOr¤õ:Mƒ®hÛ÷q–ŒS0Êf{]š
+}Áƃö#¹ÄÍޏzÑÐú–€•vIoïkhåŽI~×1Ð{^Ì?Åö*d¦RÇ(qJ®£§ì©R½ã)Sõ¥1š-jàpdÖi¬ßãý}sLÅÜZpWzF@‰-zˆËWâ]&4ÒŒó|:ûؐ¤Ð^¶¨z¾x´xÈXÑZ yŽË=îi ¡V„‹ÜGÈ“J>m"æ}å—¾öX¸}êšáu¨Øiªæðe&A¹éçalP²ÕqZYD;Äc~Pzå±lŶ— Xà”BJŸ@²/ê@͹^Ð­_ï´ðäEŠjõ¢¸á+s_Žô÷Ö®ïe¥UÈo#¡~Ò&gísùev V£òb!´ZÈ÷©z.K|º‹F¸ãÏr_|ZSXFžáGÆ…Ý‚ì>]ÖÌAtqcjî`-/î)î…a†°2µø‹Ã©’#êÄ4©p‹Þ…–ðÄ“dÖì•üoôàʤüfùÒH'êi“/²at͹‘C7Ö·¹A/ϴ̺i,Û\¡é€~Úö3jsüÊç¬Å§ûëEÅÈÝj'’¶œ	˦œèõÏ[¿Y_^ÉKkasJ	Íh5@ݹ'¯ñ‹ä·#~¼ÍDZü@ðZ"E^…wYò)Ôøí¨áݺ„ðJ€~Ž<ú@@‰Н‹â“ý3~ÒžØAƒÍI
+G/¿3r®Ö/"\£i/TÉ6ˆ>l)¼ïÊÚØ‘ßOoýé›6±8œU–?*F#¹h#ùžcÐI8P†|WÅ]7ÆÓ1,<¬Oðyýy"¿„ð¹~öJZëÕñ²|véM§N˜>aq_fÙ
+¨7Aw8iTßoÜHÊVõ#ngÐÉT-Nù!WÕ,B*®öºxì[C/vð$Ìg¡Åʱ¨ ™èâ[‘šRl_Ñu ÓN_.eªøH™“Cì…ŸÅik”S†°8SꯓòíáT¹·ntP¿­t)_<+°*’¨ÓsK 5÷PZš{­Ë~\™ª^ìr8{¬ÎæyÞEh±…¦Š_„ÛÁºåŒqøù«Q6Ùëo÷£;­âÖ|ëW÷1‡zço\Ðä–VbÂ	6iê…òÈ`7'Ž}È®[*5ížÇÎû{…f^
+A6ÜŸI&anâðQÿ	Š¦WŒ¢·
+'Šèóó­våj©\sÞ{,àà÷·j Ÿ'2i¶^oÔ§r„<ãÔˆ¢?y´*½EB@Õ	¥I÷ýV»lðå›
+êæ;Ú+“b7€SÔÖÞËÆWYßVFJeƱÊ­¹<,Ϭ¬)¤æßä*s­l{mŸé\‰1qæFeÔ4òfàч¾ þ	ËÁ£
+šqºÎ	Å ¿ö£8DÛ튉ÒvcvLáֵݎR|Ò·B\™u+Ä_ZDQñÌÉ2Ú”­§ï#*-Èî+Z5
+è+!6ô./‘tØÕ³óJG!¶×ï!°²øY'ÊAiqmä%A¹¸ ƒz]âÅ`—ŒŠšº•_uBë/¾.Æöš ³›D½¿ôî2MžÕr^¿Æœvݲ~—WæËÛˆð¦ì±½Ô˜‘©Œ˜Ã¤Ì¬IOù‰Ž»ê©(Ö›!ŽÇ°‘_Ðñ!xã ô]˜è	eN©0{c—üØð˜Ž%·KÊ—®!£±Aɇú2
+­o´‰ƒPN®f+‰ddÄqŽfdÅÒyç¶ìÔÔ˜Ìüü¡èWâ­%ށ>V#ghX6:|IÌgx at hÍ-ŽÆ»ùØ£Âñu¤!ëCéåmV
+‹\Mä/ÎòM9°^²0¡×µY|*EC-a3Œ9éaØèKÆðhVýpõKòžÖJNO™GLzëz;»vû]ÏFQ‰Ÿñ„ƒàñäY]å/gQò‡eîHµ$0oŠ'U5£6¸b“ÇŠ¿bQ•0µÌ(_bEP	Š²XÒÆ|j 5P"úò«\~;zay#åe}µ[–
+©Æ)fIÁ$µ†˜";è)ALBÁìO†ím$Æ–	ŒSwÍäê—*ÿEÛ0²­'Û4ÑpÈÀ5ÎÀú:ÇíÛlܬ5À[íñŒÍaÞ¡"Œ„à»JZÖ6÷Ùo’¼Ø¶†X¾­85ªÔ+©§Ðúà‹nñS"µ§ŽÖÁkQãx©æÓÏÐSùaQœú©u‹Ü!tË…ú5ÇÛá,O`ÑŽro1Vs›,ÎÊyãî/ÒÛž{?ÌæWz>-ÙKÝ,²¿Zù~hhÈ&<»¾òDËõ.Ԑ–¶ˆˆ‹
+ˆqmùì‹]¦.òCÉXBš×Ç*»ByÛ)³ÃŽfÎï1ºùcωŽ’ã′[ê2­_ÂimñÖ?_G£~LDue°DGÒª´Ù¢m /.¦§z¤j‰cœ‹a,_o,Ô%žnçÿNô"Ó9Tîlb'™ø:í¤¥ÊO¬˜–¿9Õ{$þnÿ§ìá"¿«×^Féh®"Õʃ1Ö±‡x&1Ã@,Ù'-Ÿ¬×¿®L(óñ…ˆlaâL•½FÇù?+åsGÑè¶ ¿1~˜àµR¾?¨eƒ…HvÚµt©KCÑL‹å²ês‰‰ùRS2¨}pUêW”ùŽã+¡`±Å¥VŠ-®’|”çcáhFëÄåÐ+6ÊOݸª„K<¤¹´±–5’ƽüð¶ìj‡µK˜®ÓQX"×r­hm¡'¿ôÉ>Â,!Ö ±šP—ѵ›ïD^æú‘'6%}ùîãó?c>!v«m^ö:ºIjÇ烬ß)vxyñ# ("Oä:]U‡|Ф—ð:„¼%“d`i׫8ØÂÄ‘0«ýÍÒY>„bÓ‚öVåFÒЮD‰° ÞùˆÉHêaþÙ'ë¯	o¾5dv>BD’ö®4s:¿‹øõÈ10°ÔM’L:ü¥§!?zlK'aX·g"3ÒcÖ»ï—NI:b‡—ùøLdQé0Mýö¢‚mð‡Ž¬tæzì¹á¦w©%"ö7š!n•™!\Ú—èýüAeb1ÉÅýëJ-ʶ¥¯Ö)G{Â'®\åb°ÞUq€Ya†réP_…ú#ÅZòŽŒ3êgt?“9ù[çÒç	œŽå-£ŽCFÈùyO¼†h·ЏˆY3D¼”ÖÛûÎ}Ê@øDàÂØ
+&p±óÁE›G,ˆÔH.Éç;uÉòõ×¥©sùûjfé˜ýÄd|Wÿ­7‘\‘GeÄ8‡1ÄÆ{.å|dïUg’
+ù³è»&ý•«&Ùö޲ 
+•ìÕŸñ“è{3vSÒÇï´iø¹o²gɝÂiù@•c!2Zñ¬aŠ îW0a¤d3´võ»ðÌ
+Þ·%æ¡ÓÔŠ4G!Ÿ®­&²FÑÂj¡o4tì<´Ìá‡>ÂâO΂ã&ðÕ”¢•‘%ÆѤ5CiÓrE¦YDyèÁ5\B!ƒÍlHÑT¨"‚+)îv­¯P.Š2Ξ·:|+SÔ%~¦BzD¸–·±‰Ò‚’Oèi/Õ/”¦ùª‚uz»Ná_lÎçxÎb֍5ÕÜ;õÖ
+q`þ™?sëâÓ1þ…:cmþ^,AÑØæcÇq7—”WÏ'NÄZa›²µïƒAb•»´N…qE³OZ%®ì¼¡°_‹;ï›Á‚¸ÃGŠP"LÀ‹<±0¦íÌs¹ÈÍaËϳöuúœu/^ˆAfKÙÆ6‚îøúÈxð©µ"7ß©9#íO áUÄ—TY*¶<áFŠ+Ì>#v«>å—b`¯ÅÌhjeé×_¾ÛX8¾¦¤ááðH¡X™cF”¡ÓÊ_õg%Ÿ†ª\28%s¢Òa닃“ù¼švŸ°G*Üaù¯~P°yÙ*_>îÔM•%¸üÌøÇIAqªª+4tTd|éKÆ]ã¶æôn×¢;¶WU¦€Éâ÷ƒ¯­kü”1ÚÏÒ9^ž¬¢hDeÞæÞFelcKÍøÖo^Nå\(ßáv+2Ø56‰jz¾Ž®•Œò÷
+ïÌzmå
+ÿpº%'Ìw=Q4ÂéÀÇò¾Î dÙÍöd||AÂ¡QõuüS`îÁƒâ€—\â&Fïž'`:ê¬ì·ÙZ$\|>ÀÇÙ
+ŸÕÕ÷Ⱥ¥‰:%ñâã[Îr<
+ó3V*P©%r$It šºÉÇÙ|NˆÝá|ÉþˆžtÜTk;ÍÅ”Ky¥–¢‰€èUeW"tÌåÅð¦:R‰ãI›w°èz®ü‹5zd¤t±µ®ºvDwBEï-'¼i:*j­ÙOy.+Ñ£*
+ûú#9ª!FÌ+Æ‚#GëLj+¸‰ñ“^’ÂÇ׿F$–êÀîe®òû›fèp,´ºpF =›M2„¬­ÖéÄc,â„0ÛLL×™3$Aÿ²dD©üÊä£"y_‰Ú2SÎ/É·Q±&GE—QVÍ–ëW‚¡ÔB!†—;ˉöÈþxvåÏdé®»³d¯Tj–$›2,ü^sF®3ÏñàGúIX"ªÃi5Ý¦ìªRÍ»y¼ëhzI#,`hw]8ç3wŠ™íšÄÙFfd£§¸9"Ä.FŽ	U!š¥ô+VTIÆÂgëÏÔ?i—OÞ–o‘Q`ž„?ÆHI_|Úâ³srafÕ, •ÉÛ±yÊ\® '1\ Õk{€º÷tuu7¾¥¼Ù¦DW¦‹QZ³½`ù•aý™Ñé:ôÛªêË>¾G"¥·›}*ò#ÎG	õ¶
+Y…‚D`mU&¬ÜÙcÄA³©&ÐfWýKmsÕd¸7SrŸz|ß ùA”¦C¦ûê²?wø'V<êF6If¹Ö¹½ŒN Ž@rRMJÒj÷	úE„S†,N¿”Âí6ŽþQ
 D(ž¹ Áè4ìä3~Á*u›ÇìËÀtÑö&’ÿ	ªø2}{óÉò‚w˜ªÉÉ.."ø,2>ï¹>-®¤Ë7!˪Î7Oæ0Å÷‘.+ãô~üäŽÓ‚û¢=«Px
+Úү³=,MÞ¨†˜ÌhEQM^»Î˜L'•`-“ÏÙ<l?€Î<ÕŒ¸ÇJZHj–7aÇ~[ÜÕuk}%õéµÄ‘-ÖñæH¾ˆE‚ÉÀ^åÌT›Õ•Âq3q#…2®ëw&T4AÂUd'xþ鹨w—j¾	J±È
+ز‡o8  "ÖKƒË#L¥¢¨CQÒ?b±Üé·Q½<Ù‘ñúÀýrRсu3¾qÎf5ËÛŸƒ‘ú½ÕaÇÜÕ:aiýŽø…j«fl÷®a°y2³©ôš`ç­þ!AA{*öú«žÞŸ¶í¥:…úãT€yj†Ý0abCÑÕ²‘ÈGÌ
+¡RË‚«›J§]—õâ_œìý¤p¬ÀùVË?1QJç1>4$¨b¸;êkpÝ®Ÿ³žîlÕŸ<_Õ×–ÍU´æ8%#ŠX
+µí¹î´Òžz=¿çÙÐ=§ŒæÌ)A6“Øe7ç¦^œ¬¼ññ6dòNr‰÷:¡P)"VŠí_[Dû8%`&<>Tƒ}Ž÷j鼓fnï èÊ}¾TØ;W°25Í3‘?wó¹zg¸T3ÖF÷ñsƒp"Ö†¥ÌÅDnȐòФ¹ÓËrF¨GÍPm‘7øÜ$§Ù`;}h›¤ÍÆ<p5®¢ñüPáûöuô}6õùKÛæ“ø;ƒ'¤¡j¯s—…UVO3q¥Û·&ßüZ=jóË>(¡%…’pþŠr‹~=vX¡âr¿A
+“FÃ)ˆ‚ðÒ¢+#/–ÐK³tÈz­ß÷€;{Ã* Sþ¯ªˆ&žHÕ¾z=»¹aݺU\@,JßÉ¢ùJÃïb\ömXþýùÉF	G¦¡\ý‹ÄæLNF¶½¢…ê[dhˆ7A¡‹iÄ+cßìñZa’(O•ŒÛ¦Ð;¥/ŒšG¯][ò¸±dWyŠê²¯›E}SëÂ6D’8PcßϏÒt[¢ðäÉÖ±ûâåw³
+ZÓ™ÆÜêí-â¡Gw”å>6ªœñ\yî:þž°ïŒëÈ÷–H¨Å­=®´°£.J)»"hi âF€[ˆ§}¬?euU½¯ÝHŇȶIs]tX†rÒ~•ˆO@}}ïi~W^ѱ—)ÏÒ(é5Òæ%öÈ›ý½jïi²MGNPÒ%iŽ§§­ü
+E¯Ã¹K;<׸ò«ã†y’ÎRTöó$w¿„—_é,æÑ•~K~kíî7q®ŸJ¥ƒ÷ãÁ¯»ùX´Ç’
+ž5O=‚dÅõ;WJP¥h¶’˜ñzÍCØMÕlñæ.Þg¯«ü°/G·"ôĨœ•	׉õ¡¹¬í±žŠicN_ëHÇ|D>òláüý$ÛqÑ‹;à1±ìMê }Õ#\%k"r4u-‚¸ò	” ¼”îæm²±Okiµ‹/‚¿•C„¼À–JGY8D(Gé?\Šá¤“Z£úlkäý†?Ç—‹ýlM¦ÞåÈåÏ)K±¢l.d}Ñ|ƒ±)tjŠï¬ç]$XPQÆÄA\çä ¹4TÊvšh,N“`,¥yÞDÿÀ~œÈœ“×0ÔßO‡:294K'BâŒÛÅdD{/¥ö˃6šrí¬Ïœ}震ò£8ßÇ‘3kq9³:X9Pq¹ê¶a…ÐFX‡0àE:qR¦—ã?Å’êÝÈÃÑ}Ú§ŒåPŸð•§:YnAŽë„Ja»ò+1Yx_w­’#¨M&'“Oë
 ­õŒA’ð±cIÖq–víÃ%ˆÍÅݾõÇ÷3nû
+;þMƒŠ¨Ð"1p-ΨE©õÖÕ0&'î<(gæÞ³½j¿kâ„:Í`£½åNÍë5Fß¾ù[![–IE±’¹éÕͬûü!—…šG=”¼#9%™^c¤y7›Ín唣ê§,3g:­d£¹Åß|øë}CÐÛ?® ÄšÁc¤cÜnÛ>É®uÁ„O?u·w>¬.ºY¿Ðìö¨û,™·¯bªå+p¸ôcA†}!5äÖ.>Í7uIElivJs(i;–è6ó
+)ôu°Jæ¼Ei—ýJGLˆ2yÀĶb–OÊö^^ý ½ú¥/–Wç‰jí¢g‰u#‡2Ó;a…—^ÓÞÔqÎ[£wÈAÅoJvþ†—ú´‚ÛœœåŽºÔÝ–ëñ<ý½
+Í.;\˜lôËšh9Ê^
+*1\
+ûº.üMµ)n.mî6ÔÅ:Ë+å5	î¨/¢Æ–ïjߊüoØØNeÖà­¢5ǵnw‘쿘5)«ŽJ¼H¾¼à°¬@sÏfIÏÜ`ÖO»™­à¹‹ˆI5£=¥Guk<4K܍íp¿ÝÕ•g°¨^T˜ˆ`뾬e>
+mv)õÈ»ºjƒ|¿Ô!øš¡ùYqt`™XÿöY‚IuIÖfzFßÀ“fÕ®ÌòÚŸ|;zêÕ’ôí”ßû(z*lZÜl³)™üjN’IHGNå¦rÙÈ­XËfF oˆzþi¾œ‚önë2mõ ·O׆4ïÔÏ–QؽDÃmÔ™î™ßú
+Z3Î# NÇY¸yõtƒˆÊc0é[_ÅN+}Ú;"“â¦Æ­23/±fYdŽ%ûõc_n ÿó¯_gÿN‰N%ÍW¼Þ®&Tõ C@·ÇGObL¤‚C\qðzd§µHßÚ0Yö H¤•§N©Í4Õб
+@ú/ª&Ð|ñ4ä~ÅPÑÒ/å=ùžT±/M°”_A¡f¼Œ–’Ìë~ÐÎ'Éå1üdzÈ©‚VÌžG†¿ìòöS9AdÎ<\£o-%%¿ÆÈîbU¥î+6Û›ØéDí%7‡í
+sÈô—¹L™ÒÕ
+
+Ò6ÀW›*Îç7¶QÆÖœ©jÌœùSO—DžT´àŽ
+èíMnOÕÁWÞ®
+´é›Ìnêf
+}s*ºCS‚£’¼„ûùü°ð	T&TÒr;»=2üÏ«âCZ€7ˆnú"Åey—¨µ“ɝMSfU÷·,
+=;¡]ž‹Eµº3¢uö^Â'#®8¬nɉO‹öß
+ÚœhÓ¼[ØœñÿŽëh2ç.ænƒ™Ä”$ó­`KºJBòëôÛH1€p¦ýÁÇYr3.[JÀ»÷_›Ãº
+Ã3 â‹á·Ð,`ýnC"ž'KJ…¾»E~H%“@FÇ:èÿòÂûÿÿOØ8CÀ$ÜŒpÂóC@Ü‘pÄïßÀxÿtkw¦endstream
+endobj
+103 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 640 0 R
+/FirstChar 40
+/LastChar 121
+/Widths 645 0 R
+/BaseFont /XDADQD+NimbusSanL-Regu
+/FontDescriptor 101 0 R
+>> endobj
+101 0 obj <<
+/Ascent 712
+/CapHeight 712
+/Descent -213
+/FontName /XDADQD+NimbusSanL-Regu
+/ItalicAngle 0
+/StemV 85
+/XHeight 523
+/FontBBox [-174 -285 1001 953]
+/Flags 4
+/CharSet (/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/question/T/Y/a/b/c/d/e/g/h/i/j/l/m/n/o/p/q/r/s/t/u/v/w/x/y)
+/FontFile 102 0 R
+>> endobj
+645 0 obj
+[333 333 0 0 278 333 278 278 556 556 556 556 556 556 556 556 556 556 0 0 0 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 611 0 0 0 0 667 0 0 0 0 0 0 0 556 556 500 556 556 0 556 556 222 222 0 222 833 556 556 556 556 333 500 278 556 500 722 500 500 ]
+endobj
+99 0 obj <<
+/Length1 1630
+/Length2 18284
+/Length3 532
+/Length 19207     
+/Filter /FlateDecode
+>>
+stream
+xÚ¬¸ctem·&ÛvíØvªbÛ6vlÛ6+¶í¤b;© bÛ¶óÕó¾§ûô8_÷Ÿîóc±î‰kâš÷Ü{,rbezA;# ˜­3=3@ÎÂÆÈÅIÉÎFÎŽ[†^	hæø+g‡#'v:[ØÙŠ:y ê@€ÐÀÂ`æææ†#ÛÙ{8Z˜™;¨T•Ô©iiéþSò	ÀÈãhþz:Y˜Ù(þ¾¸­íìm€¶Î!þ¯•@€³9`ja
+Ë+hJʉ¨ÄåTâ@[ £¡5@ÁÅÈÚ ca´uRLíÖÿ> ŒílM,þ)͉á/– Ààd4¶øët7Úÿ£¢Øm,œœþ¾,œ fŽ†¶Î{àl°°5¶v1ù'¿rS»%dïh÷×Âæ¯î/˜‚“³“±£…½3àoT±çélnèüOl'‹¿j€é_K;c—Jú—î/Ì_­³¡…­ÀèîüO,# ÀÄÂÉÞÚÐãoì¿`öŽÿJÃÅÉÂÖì?3 8ÍM¬NNaþbÿӝÿ¬ð¿Tohooíñ/o»YýÏ,œ€Ö¦pÌ,c;ÿmfaÇøϬHÚšÚ˜™þ-7q±ÿ:W ã¿DõÏÌPÿMÂÐÄÎÖÚ`4…c”³sþ@õÇ2ÃÉÿ
+ÿ·üßBïÿ¹ÿ•£ÿåÿ¿Þçÿ
+-æbm-ghów þ½c —Œ¡-àïžÈ þY4Ö†Žÿ?Ckÿ“×µVþ;Ýÿ˜¤³á߶Úšý¥†‰éßB'1w ‰‚…³±9ÀÔÐúoÏþ%Wµ5:Z[Øÿrû¯¶è™™˜þ‹NÅÜÂØÊöØÿ­Úšü×
+þÒõ¯ü¥D”EUUhÿ7ö_†
+ÁYÅÃþonÿQ¬Éÿ<ü#$dçð¢gæàгp1ÿ½âfaóùß„üóže
+-ÜÚëfbþWõÿñüçI÷¿ÀˆÚÛ™ü3:ÊΆ¶&§í
+þQ»8:þ%ù_àoÕÿãü¯¹݁Æp+‹vÆ߃-Ó2ӝë°s‡'E´û{™Á‡CìKUŠ
+ükìzüÒ·¹+
+ÞkCš~ó|¶y,œÚìKÑŒöbYSöü^æøR÷ nPtpÒ2ê•"¦Ÿ©G{]ÍËlAhq0©ìL**镼Cþî`u„¹z¢ö'u-ðÇ {´Gò5NmˆÃìDiA«+<=£H:~z¤깁ìÛǧ͉ƒ%ÿî
+Håϯ¥Zé‹I#p/˜(y»?`¨ù| ­Lf¾g,sÇ«k},<Vü@/ÊØê;cœ;7TX·ÅUbRxÄ’(6¬Ža $¾z.¶Ÿ`ƒsÖN´O‚èMUî_Š«OY·9ø5DæBd@ä›ë´e
+å|­µÌƒeSÞqËxÚ%Mü‰l×ÜÉ’‹Æԏv°˜u	ÏŠšï‰êì¹kŒbµ|¢OÞ -=\[÷Ý£²MwU1J°(Y•ƒµWØÈ÷E‘Eþ“$I_Þ¦,**¡&¥QF ’í<¶ŠØRÃÇGNê{2oþL$ìx/Ù´Ø})û¢Ö=‰ÐêêEÒðæ2Æu§ˆ	ïäj¨ŒÊz»Y`
+n¹ç½ã ‡+X`öåïÝ™_iµ÷½"öM.}	A¡¿ \>®ƒ}º²iÃO8Šz=ê2Ei\ÏñÞ<¯=w'#Òä¥8÷4°0T,¨Q&_â8ÉíšØ´PÏM¼<'‘6S¿\7)UQí0Õ½§A’9j˼;Z´‹{FYÊÿòÌÖªæ6ó¸!ȉf-€à•hÁ¯c†¨Ò‡5ÓVÍ*b¢!:F¤uÊêý@!í‘ÿöÒKÁ 9YÚo€úk»e.«?w„2ñ£øha9ö%.»ý'ÂOeî,•P½ÊPä‚íÅ‘AiU¾*Lç={gYñį·õÃ7a`W'5°ƒ!gueû캰&¨µ˜úP´2‚"lª~$KqÌ­>"$Ì	®åêÏ-þo`É# c´àœMå/Ӎ¬,¬…„¶>Ö.(ÕáDûVCjú ¾Y|âØÃU82væR!‰˜WLÝõՏ:` &?ë	ÖnPkz5¿ÛGnn¡‡*—2òm4C÷d(¢ç 
+Âú	‹M	8'¬·zèý.ªÝë)±Tµ–°­/–…»Ä£?Yï´‡äj7VLJš`˜ÖeqS`Ί¬`A¨‰}’ã	ÚH)ÈGVq[¼¯‘zX#k‘ÚrÜñHu‚µ`2A;—z\õn;MOPlaåmÝÜ2	hǨþÓÉG¾–€&7MröãíZfq9(ÞeŽ¦ù)8“
+Dáp{ؤ4pFUráÁñ&©¾VŒ½¿QÃÙ^lSC_˜Ü(3ÿ"6¼º6"iáUI¯Á·((ó‰†u–¬fJ‰¸ÿ²·œm“q­»Ù³Ÿy89`%arJoíšû¨?F“”xócÕdÄ‚e:³nœÊë"BæNsBĉ6e”Iìpœ+j6^·ySbÍ×
+Cv º»þœ»ãVÂ
+ŽP2‡Kü,Æ“4—ŵ=˜¼^¹•»>áê=¥¡Ñ?šëù´ºÀv2áúä›Z[¸/6¬{­½G¶ ¾T“˜X‘Ÿ(÷nB¢–X¢šÕho½ˆ|î÷ÜË{^÷§ö¦H zžLZÉJMñi0'ØbÐh¿ÕÆ¢nç6¿Êœ	÷f`PqÔ,0¥êìä¾iväbú=¤±{îÞ2»£**7ÎÁmÖS*}í‡C ø{X¤H$ö^1ªç® §ng —;þîKt´S!o\êààZyÝþñ<9ònPÊeú9ö Ù*ZnVô 	õÚ§¶üc€#Ò`:ß î¤8¾ê‡?4ï÷›uÍáUÞ¶:ãÒ!‰¡WügR3µ¬~vY/GZ®9¤€^{ø¯ö¹§2ÕHdWxÁJÕô@
+RR¬oé2ÌŲëÉceÇFªê=y}¤½kýÇVEÀÕ‘sè'æíŽhïØ?JÛù‡ëI4OIEIÞï9“¤Ö{ÐÌpÅðáoŽµ·ö²If¤øøÑ‚`Åq‹¦hP8˜(6lSˆr˜Þ*ÒÕÙ2„þ5hãpß¹²v=6,!ºû
+=@Þ; Úì¬2ÏÀ'Z1ú䃬	} «‹‘<ËùšèÇ'Ïè	éŽiïGÚ§{t6š}¼â¤
+­1>Íü„?Dêäž?6Ž;Œ  #„+v7º}0ƒ¹y)çà—ºn	ØqKŸnì÷Œ§'ã³÷Lßú×	¶Ó=üüìhÕ§6ù‘ÆÁ ûcn-õ‡ë#ðáf<´Cœ–­|&µÚº6\¥,IÁ¸Uˆw£"§%#ÞpÜ¢Á¿à¾ª„m0uƒOÆœ$SyDyý¥ºßUR(¿nÕ7|òÒe(²™ñc®Âuj³Ü9›Š—”¶
+Ë‘ß²^þ6JuOv™Ôð´ÔÜ”áujZîD_AÐ@W?ªóñ$³äA+h"W,mg¡íÚq*W'lKžËµl«!¶¾5üŒP›9àC”a¶*=ÑmýV£2ˆLžîm%è!¬Jö[ü­ðÄ:A™ *Ë Y¨ˆšBÓ@c£l?“Y“-Võ'¬e=ã¬Däj¸öâ(̬“^‰2ÀHCN¢â}µáìÞ[Ÿ!V{Å ¦¤™õè5s9ÓÖ1MGî¬\ýjÉ9Í;ß]{'{4l¿mb0´ML¯œ…=—œEÜzù4—ˆöY î
+
+¿eïë­bx!
+›O7qí¬8Æ!d\ÁCÔ?”¼Ñnk€NZ4=µÝ}‹ì‰Í«Œ]ãâÞÂ)|lë¥5±˜^ù|owanºÊ1Î:È[|±T;*ŠG]XŽ½aIWÆâ !^Áç7ؼ‘äºJñ¯j±Øvè_¼¯·t}†b!#ç)ÒÖ†ÒH:t—BÝúYY€‰A_Åý¥Â䙥©•$Ù¡1m•7]–2g·¡¢HÌÙrÓfZh덿OW/ÜÇmžáâcxÏØgbjå6LŠôø…KÚ˜¡…ÖÅó‚à>C¨°Ý?ÒÄ »Pñ‰MÀ	
+ñ+JDÇ^ßÂV€ÌOv{f¥‚ƒ÷÷ÉF­¤i-D¿~8Üôä‘>Ÿðýd}Í€&°È‚E¦Ú‰5^[5Imx5'y5ê¦ùè¢c@èEŽð~Ôÿ•¤‘1TH44áà7Wûó—,®.[ÄïuÊ8§?lÈø4ª¾·Iå–ŽHÜèùÎÊ% <ÑÃFte¤BÌe¡
+v£|ÿia\_Ä.ô[y¨ÅüDùúÓŸÂ'1 -ö–À_DüÊ,«wÖèq]€ïr'	=b—+®|aP¦¢‘h¨±P7òG³õCdª˯ù¢f»$–?kØ ?½iË1‘ØZÑ.	½–#¥*ÌY±Ü͉ÎÖ°:·Nøõ¼xn@?	\‹Þu}gæµDÁI›-é€[^0¥	9QQæ;ßí©TþŠ÷{§×R‹‹t#tëiª­Å}§ulÆk1&~®mdLʬ˜Ll²{‹øF}(ml	¯Nkš‰è=^‰a¾ü‰ÌÅJ{¾~™´1õÐuÅŽàRíÿgZÔâûmý½_0!ˆ+Ì’çÎ[\¯cy­ch.F*%-œßÐ^¾Iµ‰nuŽÅÌ›bè­Y‘¸÷¬hî¾û„Ž·‹{J9AšÑ«(&Xd”
+®e<×Öh¸=VÒ–HžŸº–3—ÍYYñ>$ÑBÇ(rÒ‹>£Ô'Œk´ ©â “š-¹&Ûé¡ûÛl“
+Ì’ròˆdždá{Â؁;Úœ}µo‚9“ÔÎxœ’7^mp2Kß‹¥Ò-§q–ï7—*Ï)‡ Ä]Ç5!-B—.›^2À vøHï¹$dºŒîGeF$}5¬ï aŽûnüFq¾˜ÒzL†‹
+¤?ònܯÀ¬«¡ç¹Xs-unê7õ“úý}¼Ëðl¨^›ÂüMÑ:¶2¸—Á	mu¥PaêqaTÑtrb`Õ8tt•B„7-Š"ô-´£^b Q‰Ô-7a“ÁÇ“²‰ÂÏÕƒkYû]ó›ùFEKïIçغ9%OWôªÔç¹ÁõWÌEòÝoÎ/Ü5´sԐ¢'ôqÝEq@†›Ú‰üü ¼n5¬>(‹3Ãj§·&5†He°õÆé^Zï?²¤1ʪ¸{™Ï@êfESÚ1xñ±Ù‰î<fæ9QŸWFÅí¯°Õ~€;”ih}}s¬,3ýYjäì/tŽ>b2–<4ØíòV¯þ®ºS”Õ¥¦ý&Óq˜ŠY/‰oâ¹…†\œ#¾;…‰eßPÁ"?^mÆõ.ÃàÉ#ò+ô,òY+7'¥Ò +îlö†]çûâZ(Œ5¬6Ú©<"êï¸s,QÇîçùÙdÔÒFÝÛåàÀ•êŸ÷ê:ÛÖÕŠowK
+A±{cx€Ó‰¥«šžÊ|˜ñ{pœ1ë=;HËdÁY·ùj«Õ»ßOa^D£At&Õå­ñûØ€Ü+™á
+²–”ÏáßÈjûÛs*SRnò|Žw ŠaKz¹SQ2ÛµG“"i^]†šÅ‚Væ/®“·r!•,j¬ŸV dçC?MÛ±`Ñ>5~Kˆ¾‘Úªš0²ùÛ€Bœ0ú²ˆ¡:§\—ë›9…UH§Oq†byôNÕýUüHi^¬ŸTøìŠ&¡ð¶Ì0*cÜ¥Ùæèú즳àØ}ús"÷ù*ò[¡Œíì¶ÉÌ×”7ŸU¦àMΏEm-ŽeNWòÃèÅníÒÚœw“˜ˆè-ð‰©ß•ËOšê=ãè7àæ:žN³s!yÀ× !¬j,Åúe»áhÎãÀCæ{˜¹âÀ‚§TòœÅéyÄ7æxô±bËT=˜Lìûó.ÿL®Ž|)ª‡ßÊù¶•¼3’äëðÓé,„tôáGãajæzbÁp-AA²­md>¡4÷Â,µQ¿\–’CI‡ïÛ@„(z9œ©çÊRp[³¦ýâ›>à³°ˆÀsâ3&MÃW™íY=ò¿F• 1ƒ•„æƒNBËC;%@ÒB-±…S'^äxTUÂË8 =Žéã‘JZþ`M¶Ê«¹¤ÏöRmýýÓ¨1@бqŠ<	øXšd§Ñ×.òÒöFõ´‹a¤mÛ"WC8N1
 „ð#3›×	Ò©ûys$Ñ kgÜð{ÆièÑtà0ÕöQUÕ­øëiëk•¶@kônöz‚‰¨ ´gv…p|ÍõĽȐ°wÓ|ø9­@¡R*—¯Í¡×›PIüÃKOu]µ=Yª±ôí1!ÛïƒÈÇ'¿pArM/£Yf¥)}sídàɝò.$³IjdáY†v
+ªmA
+nÅ-OâeãÏOÕr,¬ö{«k„?u¬?š(ö’ÙE•çÒÌÀÁ~°ëð‚Gƒ¤>”xÛzb÷Êò¿}ˆ*òsTÚx)@»S˜ø\÷ñ‘\ÏQs|‡”æŒßÿ5¦ÅAè%âàv¢FpíåFÎ!9QìröO3Eú–™Zÿ)cÐt!cÊþi·<ƒxÿýÈÉð÷*øÔ÷7üDT¢‰kbêËPqŽ
+â?ˆëù»amtClIûH¾-[¹ú¦9½Ÿ§‰”„^Í97`ãAßG¡§ÇeP_VÚôHØǍ±QSQ7,{Ós,؍à!2ïÄ‘0kYçyŽ>Ï`k°‡O:=—‘ïz箘ÛñÏ¿¢E›MÇù£gµÝZVUZ¦fÙź…©Û|?Ҍ£Ò®èá¾1,à{Š-&Âj*8ÍpnëêS>䲟ñéîï‘%
+Âk‡j=©÷€¬Z0û/"`5¤÷”yðÊø¼H]›‹£1­Íò²0êiûšÍ/V°« 5y‡+ícÈ›º†þßv"*=]˜òFƈ?ïÄÆ´á¯Äœ3¦¬Òõ“À4ÞÖ1àv|NŒŒKÆ•¹®Uôû£@ø‰H¯¡šý´Bv¾æ¬>‚f$1˜kš‹~B¢Y)ÊIZ5#)MÀeŽ:1©gæ2Ë)+Pt¡­ñ½Ý|Wí‡üHE­-­ßÝXoèDƒo<»'Œûà"¶Z®ý4IŸ_m쌸¯Anª…œÞ"·¬ßFvË#gIÎÖ¾9ðÄE>Ïïõc}âµÇÃœÎ$¨õ‰hígžh;,;a?hî`-b»Ac8©µL2W–Vší¶ÔÜ䳌ãÂ׌’Ε²H“²èt¤*iùûëá–ûÎ9	06=„æEA-_s‘§¬©/Wdü¸À9˜"”^\{yQ¥m¤òøØIœ¶¢çsv‡ЫÛÈz¬Á®à²­‰@’µl=dí¶ÝM—ž“†¿ZíÄ•S6'hé6™ÕEcÛ]ËÀjéÉíàzFvnéfb‘ҏ>º&#Ço_S¶wcCM3Gm±x”û’zëä¤t”‹ÁñV¢'n’‰¿ÁÌt#+ÓsPn„6znÅ7šHÉ@cD·ßÞÌĬu_*r”îÛ¡14TÁd²5E0¥¡¿"ÑqÌvº¶¼¹/‰ŒU¾Ï¤äÓ	è«á¯¼
+ª-f`¬(#Eš‡ua,h „…ÅsMZ uÙ(fȺrÝÿÖPAò#î‰!ê5/ÿIY½
 ÌÚ9øNDP¨t#Ø“Y™ZÅ‚¯<ªˆ dyK>h’,‚ZÒW!Žúqù]éѤ¡gŸ.¥sÓóFzîÕH#9Ý%‚%NyMZÍžÂä;¯‡¿0çˆS1†y­ëv™C2€X‰jÙÄߧIŤRa8‡„UVˆy
+ð	1u'?ؘø„‹ç
+Ý-L¬œaúJò'–oOHE\7¢§5w:u¶ÐÓ“ŠÄï›íÞööG½ÙŒ*T¹³}ʃ‚4ÍZúmÞÔ…Y"}Å| H
+%½•Õ/­‹Àá“3¯…>ž%®ÈVrU‹´Gxaþڲ¤R	›/0…gz¥K[¡?©2aO=¡Ÿ…K(RB³
+3dˆô²o{³×‡ZÐÙVO;2=h‘sÀ®²·4…y¬MjARàä“3]t7ä(âªëx0ðÂÜžæÊ9•ß®%õPôlQaüâ"{Üb]‡{ü§ñãPÕ×y‚þ\±¼6»’bDãƒï§PômV‰óªhÔÒ1¨#¶n4 ]8ð´öÛ1c|Ñ̝Cþ‰5¡Hí<ÍÄÞ»†|û¸‹~Ÿ½/¶¤
+
+vÙ?0òK÷˜`£-ûj,³[¨jƒ—×19Ï‘’ê× ¸„ˆ{§Fû!õ­ÕŠÐr£ÀW¶h§
+‹`÷'YDŽòÝšèÄño‹Þ†%P¬ÀR¸Â±C¶“—«
+ñxPfKÉyÊÉ™UYyôË«ÌföÆúk܇ŸÌÌBGÑqìÉ pP¿ú{ô‚kâar{CϏ›$ÍîààùA…º¡&KBßxi¿¬m›¼šÚ—çljwTÔ†{Tø³	S‹A äÂϬa‡FÜ^i¯Øñ©Ä–t¦.– øc~,o6uûîjçžµÕ@…7nPN“Ä9IÓË%%ì‡ÌúaÌbÊÔ\7:;ËnR)2ÞŠéÓI÷Yþ_Ùà~á M/Œö¤/2ƒëÓ¥ô§
+¾º`–50æäñ÷=ÜoErB¢ß,D„ïØhNÎRBøï™+å
+ÀÊŒÏNˆ™)ꬿ7hKÊÑ@Üo:i;gÔâüÒI´Sˆ®V\o>m›NÒtm…›´« ‚ƒªrå6èþì6b¦DÙÖ[Ë8w P©W 
+gK1ýƒÐ>‰ì£! øÎqBøаT¢:A­qž´UƒÐÕþê hãëFïK/3ic=“¡VJ&þ²Å{Ì]xüIZ~O;|ìG! }¿ÛV—ë&˜¢	rãF ÅF|ÓQfS
+.Ä•ëþ«“¸úÌfXYøNd7Rg
+u™žŠ\ýF”yRÕ»àGz‰“ŽÜ2\.¨úO¼>L­Íž¢³zø‡xÂJ”œ)ÛZ¸DðqbGÕ·ŽücvÆçòN¿ì?jZcc£X—r^Ž^0v”û|¶|%Wˆ‡±ß¬ï²ͲӐ*†ÑqÀl¤î¤¾Å¡ÜKŽTÇz|bYñáÎkZ4èÙ6Q$ÝØnƒìá‰ú®	ßûˆ++ ‚N,óÏ*$eÙCýkß	Á X/£Gfüڸ͓‡d¨ßO*/\í2£ÆÜ™Ë2Æ`³*R¡¶íó­úA)=¹Û×–÷¬ÊD,>±>HÈËqPUß»c÷£çŠñÕ¬‚$*K|ï(:ᶚÃçÔ;UÞ\̾#7„<þ¦»Z³â¯Oú\½uïbú–J¯ÛvÛ¦}šˆÚ˜vì‘;A%ÿy`:+J‰adxæái¶ÎÈøÕÕÜ)çÌßSÒÁXݽ˲H1äÒ»ÓSY‹ζ]>kyj<×›:X\Ï6SëïT:Є¡‘…>ê` ?}ñ‹Ãw q“û×i½ý÷½@ù)ƒ‡·Í ”ˆÙ¸«ˆdםECBzbæÄß{7‚×Þc	’˜º=GaÅÇàb„0x)ÅD at WG] ¹˜¤"?ú2CÁ¥v~Æòº¸@*<’˜R8¿»#Σë"ò‚¼o`¤n¸W°áï|˜çÚw¬êk³-E—éÊÚ$ÉÒÍ.våçòê©#Èf”Ìç»u•… #ýâ®ÄëSÀŒ	دwëyÒÎO(¢ñÇíæ"ä2åÑ€´ä:‹úw	4âç‚Ÿ½-túAÙç~2F½Ðâ‡é/iÓ˶txÈÆ.HI!<-$¾%Q–¶ºË£:å~"™K|k—¼UÙGÊ%ŠPŠkС­úÇá§y“xS»DèpC[ÒŸ­ˆT[{|ÞÞJAª…úÞR×Ü#³ù/¦³»áh}J§Q–H—áZH·l9|Ó <_‰%|âùpíó¾…ÖwCýÙ2æ_¯Ê‹	K4P4ƒ}»r”y òµÖKN­¡Zëk?QwžóD‘[‰»^D¬ó7œÎVcÆiä_É/ÐM!|(꞉Dv┲úµj\¡ÛÀ2Øîç–흉\Ÿ4i»ôn¹Ô´(%—­
+ÂKë_"ÄÉX¢ðÂ'½
+Æ{òů¾Q%¸¿2ÊÚ ÏTÐ~Í'Šáv"€©—øã…N^êZ$¶(3SûžMÎx€CX¤Ê.é#u7ÑûÊj3FËþ[àÝʱ÷÷Ùâʬá9]a4Á¶(-Bpfò¹’H‚diò‡(knΧÂe,½-ç‰#*¾|"ØÑõ/8šžÁ;å¤Ä4™F²:/+’˜‹’~­ðÁ¯¶žßXS'×.ŸÂu¬l’šíûê‡_ÿñÙ…—'ZC0ògQ¼d5»ó!Aºº›å0K,RßÚÀرR$ÆqbÖ.€¤„ly¦Ë×Óÿ­©mÁ8qI—«–S·¨c¬<8„?p|Àƒé­˜ˆ®e¯ŠiêžÀ¿‚ ÙV³þ+~ñ8ð	*XÕ¾Ï"Oê0H¤üF=.º}GîJÃF}†Êçبnj¹NÈ Þo7˜…—ÊßYn•ÕyìãÖÿH¾‡žë¸)1ŒVn¿Â¾ï=£óBÜ€n˜þþ|	ô•÷‘‚ÐnÕŠp …1ØJ•|«wòؼ8ÿg;bR?Ö2GÅêPÌtŠŒ ðmÉ1Ö`ÙOÇ(À‡O„ZÎú*q›',7#R»©oFƒ¬m| è9K†ŽãíÎp=¸kïËd<Å“é r³}V÷–œ°¢ø‚ç)_CiܤîÇëy
+Î5Ùz²Á ï •Z…¹˜D 9)A6ä-@̨Üi–D¸s½6Ùn‚$»É¶ ^OHmo at eŽ
+l0+¸LЪË	K3qË“‚sOjÀîãMŠÛ²ÚÝh—›?ÝyÑ5š»õ¾L´tdÿРY6š;T2R'_LwšïóÚwHn„m3 ÜKB+Jš7/C¯FÆ¥Ó|’£j”ZaÐÍk‰¸–©w\¾Åˆ(á3
+X⪫M¥˜F—B‡ˆ
+Œ7!À$]rlh±Hͨ‘—J©(·m4ßmê&8™‰ ÖTB–›7QLØ;EЂÕo/Ÿ´½±¸©
+¡ó²\¡&R¾ÃV%Æo{ÂP†÷,qm¥ÞõÂx• …žHÌY"»„»0%ô£þBŒŽEâ` ¤Sí-ŽÈ¿6†·]?^¥¨k‹HFó€Bº?Ɉ‘IQNÈè¥g_˜†ÌÜèn¸û)¾’ºÙ€:˜{TÌëã»6™	#:ÌÜ.m3ƒ˜I¦BÍ]Ó<K‹`!£ÊºÛ¡õH”îüæî«’RÕZë;J?B ‹—_µŸy¨Ú 4’”øsÜô¡ÊóJž{/S~&,"½„Rýî0ôœ6C¤
+e—u*ý™@—9´•ÿ‚ðMþ^n‚¬µü³¸Ë˜9`1Bʲq/_e…0Uÿó’"ó½P7”Ûº+Ú&†‰D\¶B).™I–·A©×)K¼²pšgcY2ëiTž-·3r,Ð=¶Ê‡n=É˜)Ìz±«ê&¾IvÛ-³Ä&[{¥üÐÜALM¶wžEÆóÃ’ËÉ/QgŽmÍÖ9ùÙ.š››˜0Á­£åuÚò¬ëU <2¡N¸ŠÌTò%Å™f\¯ò÷:ω﫻ÊÄ2\Tž”uN|oс-Š'´!¹Æ;óD®”WþÏ¡0—{lÂ;ksA	õ¾•Ëp’­âpžÑóP\žàײ hI¼utÿF+7ã,mEšX«>üªê±Ûè#bTkhC£ü÷(‹^Uò·XÂá”^èýòSÞKl…’Ý5Ôì¾õ“E1ÇS-ë
+UµW•@ì­P÷¹=Ä>å!™ª¬¥¾675ëžÞßò2™Ÿ´?Å9‘WÔÊU´Ž~×md¾üá¸ÕSOï`# u»ALå 'R`XÑçÕ˘îц³Ìýɝsï#L¬—)ýõ<
+<€k< Ðu•txÃ#›•#ª±ÿýtÑݯûýVW|MŒÏr™g¾bÉ‘›]5ãEfæp‡§Í¿t¯†
+M5?~XG«¯Ï—D?÷¼š^îz ­%ŽÁ,¹p<ëá·7Õ/Uã|<m»»´;í¡ÕhXÐÞ¤>ŧ’
+ù7„Cs'˜ýYJ"1â¤
+2Î6þVÛ2›ˆT1§Ã”ìK]… £î£Þ¶7%„´	“_øLݵãÄ„û-²ËÂuŠb#è5ÊÏØT1ûq‡B´¸Aª?°£MC4e#3ÃñÛÁéøÞ¸“(Ìlã
+JÙ:nCp¢,3 ~U—Ëú@õF{ye´fª#â2ºµŸò*¤±¤Ï&3†#ô€®‘ÁñFPµPœ=ªZH±Å;åã`¹ãн
+¨"( Ž•©…ÇýÛ&CD¬è3ê›ÇæóÐÌ|!-±d8ÅÚä!Å?¼ëVtö½‰ûUpƒÛb~ðò›£,-êR·
+ûú‡ðȇ¯“ȲäŠzX ¥Å=2+vuð¡ÝýùýºƒÿûgBk\:^Úé{¹ëîœnoëSC(–@dz¢Õ›RùÁâ'ô¬¼-}¾/šUg¢¿8¶ht$zì^[íS‡õ~¬,ÕyNIÀø:}Ð%ÂhEŸº{+·—ÐâÝ^Äæ‰kz:¸öõ¢¸ßÓxG üº_iýù'Ïä¯X=¥ÝÔHlñ_Ë\bŒè¸ñ¯è4Ú ”úçaím_wÉŽSû;=$;Îw¹œóØu<I,Qr—‘Ƨ­I›×2µCé5RôÄîp!<j{­AXS
+ }ù«”þÃgàUbÇÓ”ñ¡>4d7Ö%Ctá„×
+zùWƒJ
+ÿµuX€:œ
+bw-#
+⊶Y”.Ârc
+ü7Ê]‘å›Ç¹ìÆtW@CªËëm3œb}Ñ¡¼1âùC–ƒõ5lÔ¡!Â2çê˜,0Yñ™·Â˜.z·ýª”›2-cK{-$±#4Qá Z‰±Q茕=
+q†–Jm+oß;rË,õ°'0Ø*¿¾¡g϶u¨
+§EÑ.¤?rvµûŽÄ$Ní=·ï'[`&â}rõûõÓz£Ò#t‚žY›ùoÅ2„˃Íl?zQÏ9”Ú¹^bfrj‡u>*/MM
+ŒXó̺+ŠX‹ë]]A¦ÜÅÆ·?e¾£·bòOreyñ^þaÞ&:Ž}®à°Ö
+§æoÝHM©bZ*‚Öƒ¾N>¹ÐRmë‘ê¿Îñwu·=õ'˜™’£ó%ä3„NH’h²…uÍOý¼<-ƒå¤GövŸhÓÜÌ)ÕBÍ%	¬û VX>Žóú1"	®Fá7åÛ5›¥Ò	Þ‡\¬³ÔCŸ 6ÜMä€Ä0æ^á(ÌËX½ÅtUt•Røt$‹ÛKþBÊê¯<Sç(²©¡»·)™$Ä©u;.æoB,L&l^fv”tVn!cæ²³	Þïîõ\ðÖK·Ã¨ð˜I•î¬¢^¿pkô?-krxO
+ߣhGh‹¹¶ÕVj˜s#h Ò ê‡æF5zA*ß)›ü¬9 e±UÂU>Bߩ蚝öу(|ü~™v¼×³q$ª/À‰Zmî:ìÍKˆ{Š•©ªZc=¢áæEæl”±££þ‘5ÐM'óyt°Y%\¢˜9ePž~rwgâ?0ÚBÃùª•,>ÇÁS<žŠÏÔi+Œ_Iy^ã qÛiäqôd h”ìÒS5t¢ÕéLìûÇõ	óœö'öÙì&£Í•¢Ã‡àsüˆùÔ¥“‘pÑLî¡s¿ T?Èa½(CÃá('6Ì'Nšø\õùZŽŒõ÷[تÙfÓù}vo}œ2õè1Úe±:qÇg쬴æÊr¡Od_‚~›ëî:!êzpÕ°výµ6û›S*Ã{©e‚oBµeýé~•‹;¯©s‰æéšÕæ:Ùp[{¿³5AËBZP¥9Ê*G‘4^FÈ}@h6½§âΨpJŽvÀ¥S4lHM× qr€÷ôöiU‘ZIP÷IcL<¨Ldø;]4x<„/Âéû‡+W²ÒÔ
+¤íÛn´|VØ샜Å)0˜ª#´°ÕÖ9Y¨„JˆÙ™ôöðoF¤@¹Ó¥•ò2+á*ÿ`ô4ª)€µ¼1çL?b7dé±=6y†W\±<‰Ïžò±ß„ï’ëÊ ¼ª’ª“ŒfP]»@îâãÎÓB_r
+`t˜	Áù·[}kˆª‚¦#é"ˆ#jôÖ%¼·›Ϩƒ(bE1V†m2_~Óe4ÞÆ;MsÙªù>h5I¤S‰ù…gëďJ~¢~V6§¼/µƒýHé÷‘¬5Ú£&1Üߨ7‰²I(õãrŒÄ›’£Öm|VucÏ^v£E…*D&ªÚžélÁë|[ÃDÇܵD¼/7ËÂKCÖ
+\—oþ[tKR1Ùù]Ù–y7Ò0l7<ªœ6\mÝ]‰b §°E6ˆšM2ž«]HW©zƒNõˆ¢	þD@ô~cöl'­84½:H‹ããLCË€† þH‡°Ç:Ì\´gòæ9•Ô2¸£’DP^Ø•5‰Ódë×À9SeÆ0&vÄuÿ›[0M^&ÿÇY$B73!è;Jh_žüõ½õÇö¿S˜Wÿ­úÊ‚d—	òûOXÆ‹ÏJxVÚnΊ¢ÿûp=’4r[óVøfû3••,±ëØöWï/»ˆ¨fÛ	)¼€3"n£G_çNü‚dŒ3Âò°kû'
 ¹²3*À^¯]Ü¡h€š¢&!«Y²¾° ý/Œbk0e%J¨Fµi"Æ~‘˜þ£Ä(zåg–Ò˜ªë$Ú^ÕÃßÓ·¢®™®¤õBÆÅG²áLŸÉ,L”ER[©e{ð¤ÎC$ ×‰–ÂÌPH3™‚ØÜ
+\ÞïËËãøóÁ“´fÊÆ!»¹÷cM“â(祥Ähvxûw¬mðå2üGwc†'D2Vó##\´Õz˜Å£p9³R`^šf#Ž­‡Ü“©v ŒmuŽ0nºX³»p5©ö 7Ân.\=æÓ/{¶/÷]šb:+Ÿc…võ…$fž[³
+÷÷­×ÆmçýnEÂ…Ýß{Ú0ŽÖ@ÞbO¯¢âÕ·ËL1‚Í•‘#×—5h at K­Rë~°_Â$“ò}’!
+r
+\±ØÅRn‘ijB5kü^¼úƒ$|Áæp¸ùâÈs_Ÿ«÷Aÿ	ëE‡.È $7R& Ô J˜ËÔ«c¿»æÛ²ý‹DÆôˆqKî³ä(ª+kCÐ?±Y§Ê¼B|!s3më)šv$…Aí(V`ûù‰µ¤þG ™D&ÃFÿG 
+Ûêóœ²L"£úê¨2/™zóÈm÷E:'Ãu˜ŽÛ>‚l½Ô—?s7~Ç	)_ŠâÀdwÌï:àÂoN~H«£Â7o0üÖ?‡70ûÊàÚ=8àX¹_Š™¹Ìu/¯†y]Æ&ŸIáô$îofîYÎ` I×Ù9Úw6ôÌßçæέR.9ÕébÜä'?0P£<£([¦g®’h	:çrysf?­1Ó¢3ïºüŠ‚~Å¥êh8ì·v¿æŽÃÜÞ€,n¯à˜-q¨@¥‹a¶¥’Øyo¢q@	_Ü™íÅ¥\l#%o1ûô“"º(Éœ\*¾ZþJ×¾0‚´â#ôɤõXg”òÒ˜Çp14²bT€ s«ä›ypo<?ʲ‚]¢#~ì!æ„´ËtÊCåÌŸI0øÀ*¦d£ò>Íè a¡\¬ß™sËT“½7V°µ(ý²Áˆ×)Fp>ò¸^£íë¿JÕ)°EÒ	Oð'˜Ú€FJ?>‘"|‘{ç
+(‰Værl皤çyàóZm¾vg÷àV9y?{piïô/½®Épi˃[z6„§Æ¸f‹Æã×ó"o¶´ò4<îøµH·j}%䨪^®ëv•F?'×x"¬¸¶$:ìÊGj·*š;/ì˼gD"iFDŽàÒ§‘ÔvÌ7Ђ¸Ôe¨
+„\1æ¤&…æѐMrJñ\Ñ‹,²0lñaß<€kå/çK™ÈP„B{èDŠû‚÷ô¢ÞâÏH‚÷5Ï•EF¾ý1‚Ø>â}£Ýa=
+ŠÖ6Ws[åy>ò¾{ºëï+Œ¬7h¤ÜU&r¹–¿tptå˜ÅT³Î’æÐá¾ 2“C£¤ó¥Ï-ô1ä7ÝЈ(MÃÈÝy*ÎÉ˹š©Ú0ye‹«³øJÔ@Æ%/¸jœäkÀú6n8ÊúQ
+ž®}Ñkh”H?·Ü~öllIfÞèz”)Y7¸ý»”úëÆû
+ü	°¹“•&¼N3½xS‰µñçÔ[!Ýܪ¦>®·íöÒ¨“<î…¡«®§»ÈAþY{¬áš+ŽœQÝ=>Z6¸~Ç}ÖÚ†Neô7gDàí/>ç„Ú¦~ïZ#œokLÏ«G'è-öú]ë3‡Ó™jëGõŒ$glRWžÜ]ëTpNNdÓ
+­¤†ú¶ó
+a'Š™ÀÃ8PsF­Èöö¬Z£§C2ñŸ‘ýZ%ÛGhnÆ­'A³ú¯È<J•Šj¿ƒ
+ß(SžãÀ
+;tQ°„ÖÉ¢æO°•TçÁ÷j5°½ÚHNoý¡7æužz:äöȉVœðæ&i¨Ëöà„ý¯!HÝ}~Çdüʪ÷Ë–ÆÆç»ÿlïìû~ ›¿°ÆEkÅ~¿ˆÀ«¥Û7e»ÜÅq¨òƒÂ3¤©\Ò¡Wʎ؝™Ö¢•üe †¦Zl`Ó,3m‚uP°Šº3ëÖÜ‚Ù­æYÏý(7-üä+Ô™¥¾ŸÞ*G\O¢y¹&ÃeÌïID_4b´êwŒ¡7l±šìƒÄ}VX­|h´5tóO }ªžR3ò¨òO®ßífŠ1¡“µ#;L'ó~è{ô“ˆÑ­'.‚ŸP¡"Á}'Þã…OЉ¬“1`y!é껼¶D\îÅgÎQx™‚ÂUws¤ƒU±„ØeÇ°Çå3ëxË2Åv’É
+‹µK­E« ù|H&¨®a~Ï—^‰øÝë¥#pòpä»ÙJßðý‘ð¨ïò$¤wB9¿NÖ]ðBÝlv¼7VD¿«d®6ɸ’;ʇ¤î7Ds¼/m<çq–ÅÅf6R¶äÏIðú)›¨ËM¬²Æ?¶ M†a-ðL[F9×¹|Ïxû~…aQ"kùô0°9E$E_}T#ŠáБ£m$¨±Bp#¢MVñsÈ|gÐï~×ýrÝe4±[ç×äÚÑD\ù½ÉÆèw^Zé­—;ʉ‚d·O{5Q(s¡ÂKSub
+œÊ}œK€:æ7êÈb
+5Ñäï—Â¥j›o¹ÙØ;I½ª*‰IùcÇÕ´T.öê¤k?$Ÿá…z^š¬yiêÔ•R‚ZÒv0BâßZô[Zd!tÀÃóé7¾·RœrzB7•m7'L3mSa`§S8òa%¦ÞÏNCóµþ•;qM!Aº\hU¿pWòà±[³½6e =¨°©¶Ô±ZP¨WÏ/
+ÂÉôÉãÔøV<çœöN(DohŽzÊ(2ÚåëüDX‡†±5à@áC£8Y2óV4|ª#§ˆK‘oKáŠeÍÌ– c8A"ýqã€Kv‰ÿ¬Ú kÞöÛEM ËǸëT™\Gtšÿ'´:)¯@V‹¸ oqúIƒÝœ³ÖÚ{u/`>Ú“v`V$ƒ;HÍN{d©è4<ØÚãñ Ð…FlÛü³›Ž#êå­Di)È×Ǐð…-M‘„c×Gè;êVê9{ª8p
+KÕ"÷ŒFã!\€Å$äÔć„f ~òÕ‰¯%ñùâY\÷àˆe!ÁÑü¸mü”¬þmz¸Þšà’t?B bi/Ôá]Ö×bå”ÈSh®º9û<—‘ºê$fÅ̬®m—F|^ÕpŠ´£{•Ä6Zô·wÎOÙò!ÇâÒÁs€{l)áÙË·¥);„kkfˆ^@ç\o3ïlÃbóƤb]Ž#O>‰^É“öJõ1‰­ðo),8²}ƒ}…»Ü9;÷$d¨·!Júðê¦:"iöÎI¶>ó2E7î¦Æ˜¿³Åëó f)^Ñq:ðˆˆDCR=É]T“‡ig…ŒmE´£°ß¡Ç‹(dŒLŽ·åƒ³!?©~uï-ÚÛÄ/gÆÐAìcœz<l‚¾‡#íû#6›ôb}÷êúŽ®›^µR`§œu¡g‚hçØRÐŒ+­	¦óÍÕv
+¼—úK¥Ä«/Týæ1õ{õo‘<ɍAºvLX4×Òå
+˜ß
+¿:~xÚ·'íÁé\D|ª´~'7nßf—,w…'9Å
+£	
+â‹Ÿå	úÜãW)]5g¥P“²Ò ¾RùÝEŠ:m7N|žF¹ñ¢ ºb°ú‡_uTyO\C‹öå|ŠVù%ZïÒªìÈ	~ó¡ÞÉ6a	É:p‘œÎÔ?·5ÄÜTõõ¢AgY'M“Jµ¤±{e)š¶M f?¾‹K8T¢”UbAG
+$ÕÔÃ7³\£˜XÁŒù˜÷\*X£¬ðY‰¤ø¯té8
+!T§¼=±eÍHçãã
+Äœ[76íA&üÞl/C½Î>94c2ä£ËÛr€Çi£«Û
+÷¯Òª‹Ù
+w¤.ŠÄ
+ `pbÞ'EeaUsϼwþžg,Ñ÷K¨:ÇIÔÊ.M%ûÆ#ŸÙ…»ÜJ¿žg¼!U‚YX…[ðzMz„¯¿êK at d>±…aÍEjÔ¹6 ˜¦;§OJT8ãìç<¾Æ”-»íÝáo™=hîb¹Þ÷Ð1kvCâÙRì<Tr¾í“r׿\	bnìÔÛs·­a´AÑxÍ
+«Í¶0’R"‘ºypΙA¿•zH[‰›SºVì’œ·µE,6Ò¡éǍ:ªôDåÄ0h‡OF¯/kÍh裔÷Özù¬ŽNV€Dhîyp¨™m¡K‹ù2hü²ètúŒ·ùéw±
+°yÞ‰è±0hU§xÈW%=~4ŒÁC]v^ð9+zYØ?æƒlNºýã=— vÚ`ºY©šygÌ4ON	ݱKµ8V¼{Ÿ
+O—Pñ3å½/ÙÈ M®,ntÊì}ÆÇ]à±õñé‡ÿÚRä5ƒ×ók¦`nÁ¬ß+Š›’ÇvžÖl''ÎÃéJ•Vß×ZYQh>å^¡äç@”Xû÷eˆ8Oi©ÉÑþÛÏFdÐVÐLõšvéÙÓ!(ÀËô)ßèró;\=\çå>8YŸ"q#ì”^´œÔh¤ÍÅ°%Ȇ8z
+×ã¢Ð¹7t¬†–Ê"ûJ7½QÓ@{n(}¹fž£.œÂo8ÎxÄæ8+UL9ñ—SÏäÓûŒw
+²fyOÛˆÙg  xrR5Á¼Æ2Ò™+£Ù$<–áÖùÈeöLÜ ô(ƒa¥°S¾-¬ÙÌaoÑzõº5$=ï]¦v¯2PL-ûä¯G@Í—{sÙ)Êô7ù.1ëá]ððý†#ÐSJ¿µ F×(2ÝÅÝ>À$#!	xW®yžfìΛ&qmt´ÒH¤¦}ϯ¶A|Š°«_×s±’r„ƒÁ^m>^Û–XU¤?VhÕéÛãÐm
+ô•aÝÃ^kEË34YüpëOL
+Ÿ‚vs\Ê]w¿ù¥·‡ì­Q/¯>aÆ#DZhB7r‰’Ï!D9$0KW´4Qšxc<„ôG´›e<ˆœuš„¬á5,OÞ y•¿Ý[œ»d¯“Ÿ¤»ìrŸí¬A®
+¾à^4<Ƽ»îCƒþ¾Öø #ÝbR'³Ç³òƒe3×¼›A,»¬òF™ÜÀ¬åËËÄ°xòŸ‹:]%øÆ8L-öPÁh«$ìWíÐßz}ïÒ~ôñk‹¨ÇŠÙ5˜¤faΦšø^I ™äó´¨Æ#“ŒÞ×í‰6Ì\ݸÀ{⍮³bq÷~L¶H9ª ‡#Ü,KˆmvÀ¾áÄ®ÿšÍÁ+ÒŒ¶_ƒ©Ìã­í‰W~qXt;
+BbÛí]—qˆ¢Šž³ÕιíKq–ߘŸ<¢ùi$ÏÆÃEÿËßYÓÅÉ%‡´œqRv®.žCLꝸ‡ZÝQXî^)™“ÏéoZúGÄ©¹FjYrQc¯.G®Á€ÜœƒÊŒýRÁnV› íy|iZÝ”Ô:1ðùõÔhªJûm”í®Þç•|™À3µ1å‚Ê:<òBtA8Œ75Žõ‹:ÿІ­ÒiûZ1jl#/uŠ‚ÂnôÆË¢:Ë%ˁ‡ÿ+£ˆº—6åny¥©Ë1ƒQr}Êåâõ©5<)&\ŒaiOåLŸ_‡D‡ª.Ô\Wç´áC—7SÆLòK£Öº¨í…,aÐð
+Ö‹Í\oŸN
+Þx·"¥ý²$"k—>´m Gýˆ¼¶ž¿ÇäCŽž6áN€‘¢
+ƒuIVp§¤O5ÖÇÕ•æÑyétõÊÏj|Gä­S§[ÕÞi¸ŽõÛãx[çñöÐcƒ¸e"¿=A¾wXÁátQd¡2B.¼¯l{Wê”3Žo¾Ûö\69>'Ù#Ò2¦µ²Xœ¥y"ó+ž«t3¦$;k–TxØÔðüÆ®õù=¼Ï.ýæöTª¸»bíj^‘¤s	óQ€Ø—ý9•cĦ$ó[kz¬r?ÏOpkT[!äæÉöößOn j.‹Ê¶­`Õ‘´¢έE»m¾5ªï!˶‹d.Þ%ö0ø‚ö£É)ic(Ãj]ý¨äåT¼%F³‹.{O!Ë«òšPÆ!¯v?Œƒ>Ð[O\ÔÃïÏ¢é-.0èŸ
+øYb¤ëòòR«T/¡%ñÇc¶1
+×SÌŽlÓÕ¦y[í殥ʾà¶.	*[ôÓ'Qz×Û¾÷ð±”½z@7.Ë“&(¾ÈW ¶Ð.sð#ç’¤&GâƒVîD½‡\³6“V‡m•Ó‘íãa!GǬ¯¤®ý2'UðŒ©ïsÔ¢œ¦³cÎ9_<Ú·Ìì¼Ù<†Ò¸\L@%õ—©žRY†xÕ©³È3)©j<»­@åP·…W‡ü7ini(WƒcðÁF:C%$4åÞ*¦•åE3koLŸÅHéðž@IÙq‡˜Hä"‹Ç@£ -*SùOÌæÌpïç\¼‡Òè¼á$°k+D¯TWõž¹ØÜiâžêËèÔw‚BJʏ»wÁ9ƒ”81~¶nª«U[üõ0>m£¦'álêˆ{Ë„÷Ըǩ'ˆóØÐØúêÍ
+cÌTÃsFý—RŠ>ÎÐèé&Ž qÁž+‚Ëá¸ÎÇô½$Êv#éb­ÊÏÐDR>·Ç]©iž4ŸŒq~./-Ï}k
+cj…Ä]•uˆð2”?¥Øbç´Tºßîœz ô/¦Õ˦Xb§Z‚3~Ž°ãJ½œ
+ï"Lú짮üíÔe_ŒÂ€qiéfH#Ò}3z“ 
+ Hß„:º$t ͤKІ¤ŽTbÂ@BAb0JºÓó|‡çÝùëü_^K#åÐÚé8[	Ü?¾Á-ñ˜6Š4ËÓ*Ζsºrð
+²Ó«ÖÕq©•Ú£åÈ.»S£^Û¡¦KZE߁óœ@«ä§Ð¤Cý‚DõÑMUpCêv*7õ¢šþm˜4‰hí«Üa©Q&Ó©½ RËöà´c ßOà¤B¥
+0ª¡õ”n‰ºl—ѽU¡¦ÃûwÅéFEƒìnÄ2þ«Uh¿óü'$ÂAbôóigZf?£gÐbÖ·x¢ó×”	Q²ì6=Ç-‡À¥R*ôaÆdììTQ,eHßL0|"'ÚŒž(]U¼Ö¡çO3q¨É¤¸šSð–E|ãjÛ7R.$ÍLUPýˆê§êÊtñ¢¸á¡oÞZòï8Ðm „/¼ì:11Sñ8DkúU¡.žÄnï;6؏åvõué¢ÏF™S
+«”¹w4³\¼§¯	\Hú¼¤Ïʤ3ê±X9JMç³Í!µrr¿“x¿Û>#"YŇ`^Dd¸‘äMÑÄc]ôz¢}Û .n>¸û%!E	§ªŸ¿þÐÙ.¦Ôâ¶<$vØmª‡ê
+=®|Æ%˜}„m•P‚Ï[Õ·²^çn\ßÞøoLZÔà[u(zóåDt<v´~ã³С`¬MÍ–ñ:¢ï)Ïr'쎺ôäÿ­&ã×¼žmº«+$dÃ>@·ÊÑÝÖ®Œd’c[ûF0ËÖP¤i:βŠ½§ïhVŸ+”*Ô2g=N™âí#î«Ü\Qaü÷$c€ä)Ï¿s;§ÁJ
+B¡'ÚƒïQJSh„i'Ô³…þ!õ/ù'þZ}Zˆàࢎô‹mOë¨®ZE…uMôŸo÷u½ÏÕoª8K­<¶Ï(J~ÓÄÃ
+[~ékF-oOW}}"Ìo촁ÿ)4b8ߦøÜ/màbj Z©gë¶+·ó“8Yb
+”Ä&¨‹Q¨î¡–(«W¿ZÛ^fb®•š¬òn¾ñ|-°ë–ys²Ýi¤ƒÖ«Þ†Á{c@(×]îŽàVëw€‹ÿJ´%࢕RÛ“N-$ å À£ã©ËR˜ynü‡ùB6Š_½°@íßñ@ú:+}<ÍrÖÒ]˜^ªºÆàÖ©vJÏí®â&¿‰±;ô€ØÌO‡ ¶<hSW[`>xd7N׳;Éø³(–Ì,¶–+Í ¯‚6é㣂¬I´ÂÒ67‚ÉÝ,[$¶CPmG™ãŠ;_ýô/‘÷¦ñƺå9~JÙ£^z.6l…òØC%jšëgíœûá%{‘3O³r=ÓÌxÂÀ[ûbƒá’Ø„Öª¥''?å—à±½'”ev°­$ðC'.¨nïnœœÃ^ŠYm[†üÌAf¤BAv!øFo”]Iœóë«ÒcécêµÙ'j€—‡ß;ó?YXŠ|©23lNš·Œ£¡üÈy'‡~x֍m÷P¯Ó<§?g„9¬àKsáPoEY{Ív/DÔfÁýt/Q‘éä8=Ti‘N‰òŸÏÿ¼¦wnÙ¤«OÔQwßB«&äÏ›š[ÿŽ¦ñ‹ì1¶x/F¨³-sœ/i=f/E„܏:ž]OþŒ™ê×ð1àêa¤=ۍ†¼Þ)&á‘:`¼bÙÎYæZbˆC5i%®ÕÔmK¨ÕÖDÿõÞ¾ÛætYEt…»ôÜaRÌo4‹øH¶ÒW·fX-a|­3$m©¥é¶š	DY kR^­}
+U4çµ<Î87Y}’RÜéŽÕöð‰ÇZ”2³×ãxùÂ9`¯ù7	zm½õ®x€Œ4?Þ^Ãå]ïþ„¦ã”\Äx2ÏA‚¶øu¹?Æ·í=i,òà¤D  ÔÓ~H4Gäl‡
+¬OE\Dì3ô¦j.µ\`¾ÿõÐK)¤ÏD˜Æ¦<þXQ|"Pt¢Žhõwèdƒ®À3o0;æ¹¼†qt¤âm†é¶r›%÷øóòø ÞZ£Ã}ƒ>ÔÏ1× f¹)ã|D<ìfƒ¾˜iÞAGÇŽø °ì	¬˜ÿ›4dÁA³hê~ùF.Ý^¢Omrß«&Fµ°K-È谁äcuœß"¦"yèÒü÷M>Ó>¬c^Úy„0/¬@Š†Q/zëfš"7—,iÝô~QÛÊqï®Õf:.õb†¯$ÙÂV“`¾'•Ðö]ü‡ÈÀ»ß6ü†C£…ìÔQÉ›hC|ù‹¤mZTé^ÎÅj†µ þ øJ¿¯ª_<à š*#È­ V^Øþ#½nËÝàêp%…‰[ª à¶e$iU¿¸;ŠHlèµü~+!œ×ê_`E™.Ï;=Ϫ»ð颽ҀŸ3‰ÛDa‡O°šÍãÕ·•M<?*	‰T?ƹÜdØbvpÎC¡•¯x:½¹màÕ}ò¹‘̃SФ,§y›ž¾à’$´“UÉþ²š,Ïu™BÒ'²#b•@úU at YG«ëý·Œ¼—%?»'íµ’q—fà3óXŽJ0&õ…Ô,Ó㢻1D–’¾=B^	·n +"XùˆòÎÚ¾9 at a¼ Ë †¦—”md¼èrä¤[ÆڏoO8¯Vœ­ÙÌô3äF)Û@Eä×UßyzØk+kSGÖ‡Üè,¦OÔ>Îááv
+WìEî
+Æè~¿0þ}Ætê›w÷ƒHogì‚x6Bl÷"q©ýúŽÅð-.´=y#+9[PëMû­Œ”¢„ÄùyÝØ:´‰O+ä[áÓzÛO-¤6?=Î\AÛ`÷Kžo\œ–ƪÕ~£ÑdB*ÁÕ9›ÅÎØªñ:öS<”ìUŒê!CMCG©¦¡Û‡eÆä0©RMÿûhcmHš%thóôrÝ5ì¼?n!N·Åp.%W	üñœ¦gúž¯à¤ËXµo•	œú®¢ÿ¯:õÞtڏ³#0ÍôKÑ+Ùِz/ÍDÞûdÞ;ÝÞö¢Ã¹¨ˆó—~ëI9f^vÖ+Å&Ý«ó wC×vßч'°²Ðë0Lj–¶ùƒþ »P‚0«B5{b]¬Ê\#¿z´m¬S^­Ê^$?ÇŠÁšôÏ:Ó§ύ€Ôæ3m?¦MÁä9ò‚7JyKmOKò6<6’ÆñîímÆtU¼>”_ñ\Ï`+hÞPÐC÷ø»ÒíÂ5è(ZûKA¡5§a¡,Vë2c:ºodà­©|•-Øí5~›ûȼOÖÙ|Ü¢ÁËûЙÞ]p|^‹—RýP>+¦öbn­øðÿíÿ€ÿ
+ÀÝï	,84ÐìKû£(’endstream
+endobj
+100 0 obj <<
+/Type /Font
+/Subtype /Type1
+/Encoding 640 0 R
+/FirstChar 2
+/LastChar 149
+/Widths 646 0 R
+/BaseFont /JDSEUT+NimbusRomNo9L-Regu
+/FontDescriptor 98 0 R
+>> endobj
+98 0 obj <<
+/Ascent 678
+/CapHeight 651
+/Descent -216
+/FontName /JDSEUT+NimbusRomNo9L-Regu
+/ItalicAngle 0
+/StemV 85
+/XHeight 450
+/FontBBox [-168 -281 1000 924]
+/Flags 4
+/CharSet (/fi/fl/exclam/quotedbl/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/less/equal/greater/at/A/B/C/D/E/F/G/H/I/J/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/bracketleft/bracketright/underscore/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/bar/bullet)
+/FontFile 99 0 R
+>> endobj
+646 0 obj
+[556 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 408 0 0 0 0 333 333 333 0 0 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 0 921 722 667 667 722 611 556 722 722 333 389 0 611 889 722 722 556 722 667 556 611 722 722 944 722 722 0 333 0 333 0 500 0 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 0 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 ]
+endobj
+108 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 647 0 R
+/Kids [94 0 R 110 0 R 139 0 R 143 0 R 184 0 R 212 0 R]
+>> endobj
+281 0 obj <<
+/Type /Pages
+/Count 6
+/Parent 647 0 R
+/Kids [246 0 R 283 0 R 324 0 R 359 0 R 402 0 R 447 0 R]
+>> endobj
+513 0 obj <<
+/Type /Pages
+/Count 4
+/Parent 647 0 R
+/Kids [468 0 R 515 0 R 566 0 R 611 0 R]
+>> endobj
+647 0 obj <<
+/Type /Pages
+/Count 16
+/Kids [108 0 R 281 0 R 513 0 R]
+>> endobj
+648 0 obj <<
+/Type /Outlines
+/First 7 0 R
+/Last 87 0 R
+/Count 5
+>> endobj
+91 0 obj <<
+/Title 92 0 R
+/A 89 0 R
+/Parent 87 0 R
+>> endobj
+87 0 obj <<
+/Title 88 0 R
+/A 85 0 R
+/Parent 648 0 R
+/Prev 63 0 R
+/First 91 0 R
+/Last 91 0 R
+/Count -1
+>> endobj
+83 0 obj <<
+/Title 84 0 R
+/A 81 0 R
+/Parent 63 0 R
+/Prev 79 0 R
+>> endobj
+79 0 obj <<
+/Title 80 0 R
+/A 77 0 R
+/Parent 63 0 R
+/Prev 75 0 R
+/Next 83 0 R
+>> endobj
+75 0 obj <<
+/Title 76 0 R
+/A 73 0 R
+/Parent 63 0 R
+/Prev 71 0 R
+/Next 79 0 R
+>> endobj
+71 0 obj <<
+/Title 72 0 R
+/A 69 0 R
+/Parent 63 0 R
+/Prev 67 0 R
+/Next 75 0 R
+>> endobj
+67 0 obj <<
+/Title 68 0 R
+/A 65 0 R
+/Parent 63 0 R
+/Next 71 0 R
+>> endobj
+63 0 obj <<
+/Title 64 0 R
+/A 61 0 R
+/Parent 648 0 R
+/Prev 15 0 R
+/Next 87 0 R
+/First 67 0 R
+/Last 83 0 R
+/Count -5
+>> endobj
+59 0 obj <<
+/Title 60 0 R
+/A 57 0 R
+/Parent 15 0 R
+/Prev 55 0 R
+>> endobj
+55 0 obj <<
+/Title 56 0 R
+/A 53 0 R
+/Parent 15 0 R
+/Prev 51 0 R
+/Next 59 0 R
+>> endobj
+51 0 obj <<
+/Title 52 0 R
+/A 49 0 R
+/Parent 15 0 R
+/Prev 39 0 R
+/Next 55 0 R
+>> endobj
+47 0 obj <<
+/Title 48 0 R
+/A 45 0 R
+/Parent 39 0 R
+/Prev 43 0 R
+>> endobj
+43 0 obj <<
+/Title 44 0 R
+/A 41 0 R
+/Parent 39 0 R
+/Next 47 0 R
+>> endobj
+39 0 obj <<
+/Title 40 0 R
+/A 37 0 R
+/Parent 15 0 R
+/Prev 35 0 R
+/Next 51 0 R
+/First 43 0 R
+/Last 47 0 R
+/Count -2
+>> endobj
+35 0 obj <<
+/Title 36 0 R
+/A 33 0 R
+/Parent 15 0 R
+/Prev 31 0 R
+/Next 39 0 R
+>> endobj
+31 0 obj <<
+/Title 32 0 R
+/A 29 0 R
+/Parent 15 0 R
+/Prev 27 0 R
+/Next 35 0 R
+>> endobj
+27 0 obj <<
+/Title 28 0 R
+/A 25 0 R
+/Parent 15 0 R
+/Prev 23 0 R
+/Next 31 0 R
+>> endobj
+23 0 obj <<
+/Title 24 0 R
+/A 21 0 R
+/Parent 15 0 R
+/Prev 19 0 R
+/Next 27 0 R
+>> endobj
+19 0 obj <<
+/Title 20 0 R
+/A 17 0 R
+/Parent 15 0 R
+/Next 23 0 R
+>> endobj
+15 0 obj <<
+/Title 16 0 R
+/A 13 0 R
+/Parent 648 0 R
+/Prev 11 0 R
+/Next 63 0 R
+/First 19 0 R
+/Last 59 0 R
+/Count -9
+>> endobj
+11 0 obj <<
+/Title 12 0 R
+/A 9 0 R
+/Parent 648 0 R
+/Prev 7 0 R
+/Next 15 0 R
+>> endobj
+7 0 obj <<
+/Title 8 0 R
+/A 5 0 R
+/Parent 648 0 R
+/Next 11 0 R
+>> endobj
+649 0 obj <<
+/Names [(Doc-Start) 104 0 R (_adding_another_application) 220 0 R (_anonymous_files) 261 0 R (_arrays) 303 0 R (_bits) 624 0 R (_datatypes) 264 0 R (_fixed_array_mapper) 338 0 R (_foreach) 362 0 R (_hello_world) 153 0 R (_if) 385 0 R (_introduction) 146 0 R (_language_features) 187 0 R (_mappers) 318 0 R (_named_and_optional_parameters) 625 0 R (_parameters) 188 0 R (_running_on_a_remote_site) 445 0 R (_runtime_features) 439 0 R (_sequential_iteration) 392 0 R (_starting_and_restarting) 531 0 R (_the_regexp_mapper) 329 0 R (_visualising_the_workflow_as_a_graph) 440 0 R (_writing_a_mapper) 450 0 R (_writing_a_very_basic_mapper) 463 0 R (lstlisting.-1) 154 0 R (lstlisting.-10) 226 0 R (lstlisting.-11) 232 0 R (lstlisting.-12) 235 0 R (lstlisting.-13) 256 0 R (lstlisting.-14) 262 0 R (lstlisting.-15) 265 0 R (lstlisting.-16) 270 0 R (lstlisting.-17) 272 0 R (lstlisting.-18) 304 0 R (lstlisting.-19) 306 0 R (lstlisting.-2) 167 0 R (lstlisting.-20) 319 0 R (lstlisting.-21) 321 0 
 R (lstlisting.-22) 327 0 R (lstlisting.-23) 330 0 R (lstlisting.-24) 339 0 R (lstlisting.-25) 363 0 R (lstlisting.-26) 386 0 R (lstlisting.-27) 393 0 R (lstlisting.-28) 417 0 R (lstlisting.-29) 426 0 R (lstlisting.-3) 177 0 R (lstlisting.-30) 441 0 R (lstlisting.-31) 471 0 R (lstlisting.-32) 474 0 R (lstlisting.-33) 508 0 R (lstlisting.-34) 510 0 R (lstlisting.-35) 527 0 R (lstlisting.-36) 532 0 R (lstlisting.-37) 557 0 R (lstlisting.-38) 560 0 R (lstlisting.-39) 571 0 R (lstlisting.-4) 179 0 R (lstlisting.-40) 573 0 R (lstlisting.-41) 588 0 R (lstlisting.-42) 591 0 R (lstlisting.-43) 614 0 R (lstlisting.-44) 616 0 R (lstlisting.-45) 626 0 R (lstlisting.-46) 632 0 R (lstlisting.-47) 634 0 R (lstlisting.-5) 189 0 R (lstlisting.-6) 199 0 R (lstlisting.-7) 201 0 R (lstlisting.-8) 221 0 R (lstlisting.-9) 224 0 R (lstnumber.-1.1) 155 0 R (lstnumber.-1.2) 159 0 R (lstnumber.-1.3) 160 0 R (lstnumber.-1.4) 161 0 R (lstnumber.-1.5) 162 0 R (lstnumber.-1.6) 163 0 R (lstnumber.-1.7) 16
 4 0 R (lstnumber.-1.8) 165 0 R (lstnumber.-1.9) 166 0 R (lstnumber.-10.1) 227 0 R (lstnumber.-10.2) 228 0 R (lstnumber.-10.3) 229 0 R (lstnumber.-10.4) 230 0 R (lstnumber.-10.5) 231 0 R (lstnumber.-11.1) 233 0 R (lstnumber.-11.2) 234 0 R (lstnumber.-12.1) 236 0 R (lstnumber.-12.10) 250 0 R (lstnumber.-12.11) 251 0 R (lstnumber.-12.12) 252 0 R (lstnumber.-12.13) 253 0 R (lstnumber.-12.14) 254 0 R (lstnumber.-12.15) 255 0 R (lstnumber.-12.2) 237 0 R (lstnumber.-12.3) 238 0 R (lstnumber.-12.4) 239 0 R (lstnumber.-12.5) 240 0 R (lstnumber.-12.6) 241 0 R (lstnumber.-12.7) 242 0 R (lstnumber.-12.8) 243 0 R (lstnumber.-12.9) 249 0 R (lstnumber.-13.1) 257 0 R (lstnumber.-13.2) 258 0 R (lstnumber.-13.3) 259 0 R (lstnumber.-13.4) 260 0 R (lstnumber.-14.1) 263 0 R (lstnumber.-15.1) 266 0 R (lstnumber.-15.2) 267 0 R (lstnumber.-15.3) 268 0 R (lstnumber.-15.4) 269 0 R (lstnumber.-16.1) 271 0 R (lstnumber.-17.1) 273 0 R (lstnumber.-17.10) 293 0 R (lstnumber.-17.11) 294 0 R (lstnumber.-17.
 12) 295 0 R (lstnumber.-17.13) 296 0 R (lstnumber.-17.14) 297 0 R (lstnumber.-17.15) 298 0 R (lstnumber.-17.16) 299 0 R (lstnumber.-17.17) 300 0 R (lstnumber.-17.18) 301 0 R (lstnumber.-17.19) 302 0 R (lstnumber.-17.2) 274 0 R (lstnumber.-17.3) 275 0 R (lstnumber.-17.4) 276 0 R (lstnumber.-17.5) 277 0 R (lstnumber.-17.6) 278 0 R (lstnumber.-17.7) 279 0 R (lstnumber.-17.8) 280 0 R (lstnumber.-17.9) 286 0 R (lstnumber.-18.1) 305 0 R (lstnumber.-19.1) 307 0 R (lstnumber.-19.10) 316 0 R (lstnumber.-19.11) 317 0 R (lstnumber.-19.2) 308 0 R (lstnumber.-19.3) 309 0 R (lstnumber.-19.4) 310 0 R (lstnumber.-19.5) 311 0 R (lstnumber.-19.6) 312 0 R (lstnumber.-19.7) 313 0 R (lstnumber.-19.8) 314 0 R (lstnumber.-19.9) 315 0 R (lstnumber.-2.1) 168 0 R (lstnumber.-2.2) 169 0 R (lstnumber.-2.3) 170 0 R (lstnumber.-2.4) 171 0 R (lstnumber.-2.5) 172 0 R (lstnumber.-2.6) 173 0 R (lstnumber.-2.7) 174 0 R (lstnumber.-2.8) 175 0 R (lstnumber.-2.9) 176 0 R (lstnumber.-20.1) 320 0 R (lstnumber.-21.
 1) 322 0 R (lstnumber.-22.1) 328 0 R (lstnumber.-23.1) 331 0 R (lstnumber.-23.2) 332 0 R (lstnumber.-23.3) 333 0 R (lstnumber.-23.4) 334 0 R (lstnumber.-23.5) 335 0 R (lstnumber.-23.6) 336 0 R (lstnumber.-23.7) 337 0 R (lstnumber.-24.1) 340 0 R (lstnumber.-24.10) 349 0 R (lstnumber.-24.11) 350 0 R (lstnumber.-24.12) 351 0 R (lstnumber.-24.13) 352 0 R (lstnumber.-24.14) 353 0 R (lstnumber.-24.15) 354 0 R (lstnumber.-24.16) 355 0 R (lstnumber.-24.17) 356 0 R (lstnumber.-24.18) 357 0 R (lstnumber.-24.2) 341 0 R (lstnumber.-24.3) 342 0 R (lstnumber.-24.4) 343 0 R (lstnumber.-24.5) 344 0 R (lstnumber.-24.6) 345 0 R (lstnumber.-24.7) 346 0 R (lstnumber.-24.8) 347 0 R (lstnumber.-24.9) 348 0 R (lstnumber.-25.1) 364 0 R (lstnumber.-25.10) 373 0 R (lstnumber.-25.11) 374 0 R (lstnumber.-25.12) 375 0 R (lstnumber.-25.13) 376 0 R (lstnumber.-25.14) 377 0 R (lstnumber.-25.15) 378 0 R (lstnumber.-25.16) 379 0 R (lstnumber.-25.17) 380 0 R (lstnumber.-25.18) 381 0 R (lstnumber.-25.19) 382 0
  R (lstnumber.-25.2) 365 0 R (lstnumber.-25.20) 383 0 R (lstnumber.-25.21) 384 0 R (lstnumber.-25.3) 366 0 R (lstnumber.-25.4) 367 0 R (lstnumber.-25.5) 368 0 R (lstnumber.-25.6) 369 0 R (lstnumber.-25.7) 370 0 R (lstnumber.-25.8) 371 0 R (lstnumber.-25.9) 372 0 R (lstnumber.-26.1) 387 0 R (lstnumber.-26.2) 388 0 R (lstnumber.-26.3) 389 0 R (lstnumber.-26.4) 390 0 R (lstnumber.-26.5) 391 0 R (lstnumber.-27.1) 394 0 R (lstnumber.-27.10) 408 0 R (lstnumber.-27.11) 409 0 R (lstnumber.-27.12) 410 0 R (lstnumber.-27.13) 411 0 R (lstnumber.-27.14) 412 0 R (lstnumber.-27.15) 413 0 R (lstnumber.-27.16) 414 0 R (lstnumber.-27.17) 415 0 R (lstnumber.-27.18) 416 0 R (lstnumber.-27.2) 395 0 R (lstnumber.-27.3) 396 0 R (lstnumber.-27.4) 397 0 R (lstnumber.-27.5) 398 0 R (lstnumber.-27.6) 399 0 R (lstnumber.-27.7) 405 0 R (lstnumber.-27.8) 406 0 R (lstnumber.-27.9) 407 0 R (lstnumber.-28.1) 418 0 R (lstnumber.-28.2) 419 0 R (lstnumber.-28.3) 420 0 R (lstnumber.-28.4) 421 0 R (lstnumber.-2
 8.5) 422 0 R (lstnumber.-28.6) 423 0 R (lstnumber.-28.7) 424 0 R (lstnumber.-28.8) 425 0 R (lstnumber.-29.1) 427 0 R (lstnumber.-29.10) 436 0 R (lstnumber.-29.11) 437 0 R (lstnumber.-29.12) 438 0 R (lstnumber.-29.2) 428 0 R (lstnumber.-29.3) 429 0 R (lstnumber.-29.4) 430 0 R (lstnumber.-29.5) 431 0 R (lstnumber.-29.6) 432 0 R (lstnumber.-29.7) 433 0 R (lstnumber.-29.8) 434 0 R (lstnumber.-29.9) 435 0 R (lstnumber.-3.1) 178 0 R (lstnumber.-30.1) 442 0 R (lstnumber.-30.2) 443 0 R (lstnumber.-31.1) 472 0 R (lstnumber.-31.2) 473 0 R (lstnumber.-32.1) 475 0 R (lstnumber.-32.10) 484 0 R (lstnumber.-32.11) 485 0 R (lstnumber.-32.12) 486 0 R (lstnumber.-32.13) 487 0 R (lstnumber.-32.14) 488 0 R (lstnumber.-32.15) 489 0 R (lstnumber.-32.16) 490 0 R (lstnumber.-32.17) 491 0 R (lstnumber.-32.18) 492 0 R (lstnumber.-32.19) 493 0 R (lstnumber.-32.2) 476 0 R (lstnumber.-32.20) 494 0 R (lstnumber.-32.21) 495 0 R (lstnumber.-32.22) 496 0 R (lstnumber.-32.23) 497 0 R (lstnumber.-32.24) 498 0
  R (lstnumber.-32.25) 499 0 R (lstnumber.-32.26) 500 0 R (lstnumber.-32.27) 501 0 R (lstnumber.-32.28) 502 0 R (lstnumber.-32.29) 503 0 R (lstnumber.-32.3) 477 0 R (lstnumber.-32.30) 504 0 R (lstnumber.-32.31) 505 0 R (lstnumber.-32.32) 506 0 R (lstnumber.-32.33) 507 0 R (lstnumber.-32.4) 478 0 R (lstnumber.-32.5) 479 0 R (lstnumber.-32.6) 480 0 R (lstnumber.-32.7) 481 0 R (lstnumber.-32.8) 482 0 R (lstnumber.-32.9) 483 0 R (lstnumber.-33.1) 509 0 R (lstnumber.-34.1) 511 0 R (lstnumber.-34.10) 525 0 R (lstnumber.-34.11) 526 0 R (lstnumber.-34.2) 512 0 R (lstnumber.-34.3) 518 0 R (lstnumber.-34.4) 519 0 R (lstnumber.-34.5) 520 0 R (lstnumber.-34.6) 521 0 R (lstnumber.-34.7) 522 0 R (lstnumber.-34.8) 523 0 R (lstnumber.-34.9) 524 0 R (lstnumber.-35.1) 528 0 R (lstnumber.-35.2) 529 0 R (lstnumber.-36.1) 533 0 R (lstnumber.-36.10) 542 0 R (lstnumber.-36.11) 543 0 R (lstnumber.-36.12) 544 0 R (lstnumber.-36.13) 545 0 R (lstnumber.-36.14) 546 0 R (lstnumber.-36.15) 547 0 R (lstnum
 ber.-36.16) 548 0 R (lstnumber.-36.17) 549 0 R (lstnumber.-36.18) 550 0 R (lstnumber.-36.19) 551 0 R (lstnumber.-36.2) 534 0 R (lstnumber.-36.20) 552 0 R (lstnumber.-36.21) 553 0 R (lstnumber.-36.22) 554 0 R (lstnumber.-36.23) 555 0 R (lstnumber.-36.24) 556 0 R (lstnumber.-36.3) 535 0 R (lstnumber.-36.4) 536 0 R (lstnumber.-36.5) 537 0 R (lstnumber.-36.6) 538 0 R (lstnumber.-36.7) 539 0 R (lstnumber.-36.8) 540 0 R (lstnumber.-36.9) 541 0 R (lstnumber.-37.1) 558 0 R (lstnumber.-37.2) 559 0 R (lstnumber.-38.1) 561 0 R (lstnumber.-38.2) 562 0 R (lstnumber.-38.3) 563 0 R (lstnumber.-38.4) 564 0 R (lstnumber.-38.5) 569 0 R (lstnumber.-38.6) 570 0 R (lstnumber.-39.1) 572 0 R (lstnumber.-4.1) 180 0 R (lstnumber.-4.2) 181 0 R (lstnumber.-4.3) 182 0 R (lstnumber.-40.1) 574 0 R (lstnumber.-40.10) 583 0 R (lstnumber.-40.11) 584 0 R (lstnumber.-40.12) 585 0 R (lstnumber.-40.13) 586 0 R (lstnumber.-40.14) 587 0 R (lstnumber.-40.2) 575 0 R (lstnumber.-40.3) 576 0 R (lstnumber.-40.4) 577 0
  R (lstnumber.-40.5) 578 0 R (lstnumber.-40.6) 579 0 R (lstnumber.-40.7) 580 0 R (lstnumber.-40.8) 581 0 R (lstnumber.-40.9) 582 0 R (lstnumber.-41.1) 589 0 R (lstnumber.-41.2) 590 0 R (lstnumber.-42.1) 592 0 R (lstnumber.-42.10) 601 0 R (lstnumber.-42.11) 602 0 R (lstnumber.-42.12) 603 0 R (lstnumber.-42.13) 604 0 R (lstnumber.-42.14) 605 0 R (lstnumber.-42.15) 606 0 R (lstnumber.-42.16) 607 0 R (lstnumber.-42.17) 608 0 R (lstnumber.-42.18) 609 0 R (lstnumber.-42.2) 593 0 R (lstnumber.-42.3) 594 0 R (lstnumber.-42.4) 595 0 R (lstnumber.-42.5) 596 0 R (lstnumber.-42.6) 597 0 R (lstnumber.-42.7) 598 0 R (lstnumber.-42.8) 599 0 R (lstnumber.-42.9) 600 0 R (lstnumber.-43.1) 615 0 R (lstnumber.-44.1) 617 0 R (lstnumber.-44.2) 618 0 R (lstnumber.-44.3) 619 0 R (lstnumber.-44.4) 620 0 R (lstnumber.-44.5) 621 0 R (lstnumber.-44.6) 622 0 R (lstnumber.-44.7) 623 0 R (lstnumber.-45.1) 627 0 R (lstnumber.-45.2) 628 0 R (lstnumber.-45.3) 629 0 R (lstnumber.-45.4) 630 0 R (lstnumber.-45.
 5) 631 0 R (lstnumber.-46.1) 633 0 R (lstnumber.-47.1) 635 0 R (lstnumber.-5.1) 190 0 R (lstnumber.-5.2) 191 0 R (lstnumber.-5.3) 192 0 R (lstnumber.-5.4) 193 0 R (lstnumber.-5.5) 194 0 R (lstnumber.-5.6) 195 0 R (lstnumber.-5.7) 196 0 R (lstnumber.-5.8) 197 0 R (lstnumber.-5.9) 198 0 R (lstnumber.-6.1) 200 0 R (lstnumber.-7.1) 202 0 R (lstnumber.-7.10) 215 0 R (lstnumber.-7.11) 216 0 R (lstnumber.-7.12) 217 0 R (lstnumber.-7.13) 218 0 R (lstnumber.-7.2) 203 0 R (lstnumber.-7.3) 204 0 R (lstnumber.-7.4) 205 0 R (lstnumber.-7.5) 206 0 R (lstnumber.-7.6) 207 0 R (lstnumber.-7.7) 208 0 R (lstnumber.-7.8) 209 0 R (lstnumber.-7.9) 210 0 R (lstnumber.-8.1) 222 0 R (lstnumber.-8.2) 223 0 R (lstnumber.-9.1) 225 0 R (named_parameters) 244 0 R (page.1) 145 0 R (page.10) 470 0 R (page.11) 517 0 R (page.12) 568 0 R (page.13) 613 0 R (page.2) 186 0 R (page.3) 214 0 R (page.4) 248 0 R (page.5) 285 0 R (page.6) 326 0 R (page.7) 361 0 R (page.8) 404 0 R (page.9) 449 0 R (page.i) 97 0 R (pag
 e.ii) 112 0 R (page.iii) 141 0 R (section.1) 6 0 R (section.2) 10 0 R (section.3) 14 0 R (section.4) 62 0 R (section.5) 86 0 R (subsection.3.1) 18 0 R (subsection.3.2) 22 0 R (subsection.3.3) 26 0 R (subsection.3.4) 30 0 R (subsection.3.5) 34 0 R (subsection.3.6) 38 0 R (subsection.3.7) 50 0 R (subsection.3.8) 54 0 R (subsection.3.9) 58 0 R (subsection.4.1) 66 0 R (subsection.4.2) 70 0 R (subsection.4.3) 74 0 R (subsection.4.4) 78 0 R (subsection.4.5) 82 0 R (subsection.5.1) 90 0 R (subsubsection.3.6.1) 42 0 R (subsubsection.3.6.2) 46 0 R]
+/Limits [(Doc-Start) (subsubsection.3.6.2)]
+>> endobj
+650 0 obj <<
+/Kids [649 0 R]
+>> endobj
+651 0 obj <<
+/Dests 650 0 R
+>> endobj
+652 0 obj <<
+/Type /Catalog
+/Pages 647 0 R
+/Outlines 648 0 R
+/Names 651 0 R
+/PageMode /UseOutlines 
+/OpenAction 93 0 R
+>> endobj
+653 0 obj <<
+/Author()/Title(A Swift Tutorial)/Subject()/Creator(DBLaTeX-0.3)/Producer(pdfeTeX-1.21a)/Keywords()
+/CreationDate (D:20110516142225-05'00')
+/PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4)
+>> endobj
+xref
+0 654
+0000000001 65535 f 
+0000000002 00000 f 
+0000000003 00000 f 
+0000000004 00000 f 
+0000000000 00000 f 
+0000000009 00000 n 
+0000014704 00000 n 
+0000190452 00000 n 
+0000000054 00000 n 
+0000000084 00000 n 
+0000014828 00000 n 
+0000190366 00000 n 
+0000000129 00000 n 
+0000000159 00000 n 
+0000020667 00000 n 
+0000190241 00000 n 
+0000000205 00000 n 
+0000000241 00000 n 
+0000020792 00000 n 
+0000190167 00000 n 
+0000000292 00000 n 
+0000000321 00000 n 
+0000028277 00000 n 
+0000190080 00000 n 
+0000000372 00000 n 
+0000000417 00000 n 
+0000034470 00000 n 
+0000189993 00000 n 
+0000000468 00000 n 
+0000000502 00000 n 
+0000034721 00000 n 
+0000189906 00000 n 
+0000000553 00000 n 
+0000000581 00000 n 
+0000041326 00000 n 
+0000189819 00000 n 
+0000000632 00000 n 
+0000000657 00000 n 
+0000042332 00000 n 
+0000189695 00000 n 
+0000000708 00000 n 
+0000000734 00000 n 
+0000047548 00000 n 
+0000189621 00000 n 
+0000000790 00000 n 
+0000000826 00000 n 
+0000048177 00000 n 
+0000189547 00000 n 
+0000000882 00000 n 
+0000000925 00000 n 
+0000054278 00000 n 
+0000189460 00000 n 
+0000000976 00000 n 
+0000001002 00000 n 
+0000055787 00000 n 
+0000189373 00000 n 
+0000001053 00000 n 
+0000001074 00000 n 
+0000056287 00000 n 
+0000189299 00000 n 
+0000001125 00000 n 
+0000001164 00000 n 
+0000064645 00000 n 
+0000189174 00000 n 
+0000001210 00000 n 
+0000001245 00000 n 
+0000064769 00000 n 
+0000189100 00000 n 
+0000001296 00000 n 
+0000001350 00000 n 
+0000065081 00000 n 
+0000189013 00000 n 
+0000001401 00000 n 
+0000001444 00000 n 
+0000072874 00000 n 
+0000188926 00000 n 
+0000001495 00000 n 
+0000001530 00000 n 
+0000072999 00000 n 
+0000188839 00000 n 
+0000001581 00000 n 
+0000001627 00000 n 
+0000087023 00000 n 
+0000188765 00000 n 
+0000001678 00000 n 
+0000001720 00000 n 
+0000100510 00000 n 
+0000188653 00000 n 
+0000001766 00000 n 
+0000001789 00000 n 
+0000100635 00000 n 
+0000188592 00000 n 
+0000001840 00000 n 
+0000001888 00000 n 
+0000002310 00000 n 
+0000002552 00000 n 
+0000001939 00000 n 
+0000002429 00000 n 
+0000187104 00000 n 
+0000167604 00000 n 
+0000186932 00000 n 
+0000166974 00000 n 
+0000159388 00000 n 
+0000166803 00000 n 
+0000002490 00000 n 
+0000158674 00000 n 
+0000147555 00000 n 
+0000158504 00000 n 
+0000188106 00000 n 
+0000008468 00000 n 
+0000004598 00000 n 
+0000002649 00000 n 
+0000008405 00000 n 
+0000004908 00000 n 
+0000146940 00000 n 
+0000135584 00000 n 
+0000146767 00000 n 
+0000005062 00000 n 
+0000005217 00000 n 
+0000005372 00000 n 
+0000005532 00000 n 
+0000005692 00000 n 
+0000005852 00000 n 
+0000006012 00000 n 
+0000006172 00000 n 
+0000006332 00000 n 
+0000006497 00000 n 
+0000006662 00000 n 
+0000006821 00000 n 
+0000006981 00000 n 
+0000007141 00000 n 
+0000007295 00000 n 
+0000007455 00000 n 
+0000007615 00000 n 
+0000007774 00000 n 
+0000007933 00000 n 
+0000008092 00000 n 
+0000008246 00000 n 
+0000009232 00000 n 
+0000009047 00000 n 
+0000008579 00000 n 
+0000009169 00000 n 
+0000016586 00000 n 
+0000013857 00000 n 
+0000009330 00000 n 
+0000014641 00000 n 
+0000014765 00000 n 
+0000135249 00000 n 
+0000127186 00000 n 
+0000135071 00000 n 
+0000014015 00000 n 
+0000014226 00000 n 
+0000014436 00000 n 
+0000014890 00000 n 
+0000014953 00000 n 
+0000015016 00000 n 
+0000126251 00000 n 
+0000107393 00000 n 
+0000126080 00000 n 
+0000015079 00000 n 
+0000015142 00000 n 
+0000015205 00000 n 
+0000015268 00000 n 
+0000015331 00000 n 
+0000015394 00000 n 
+0000015457 00000 n 
+0000015520 00000 n 
+0000015581 00000 n 
+0000015644 00000 n 
+0000015707 00000 n 
+0000015770 00000 n 
+0000015833 00000 n 
+0000015896 00000 n 
+0000015959 00000 n 
+0000016022 00000 n 
+0000016084 00000 n 
+0000016145 00000 n 
+0000016208 00000 n 
+0000016271 00000 n 
+0000016334 00000 n 
+0000016397 00000 n 
+0000016460 00000 n 
+0000016523 00000 n 
+0000022300 00000 n 
+0000020482 00000 n 
+0000016723 00000 n 
+0000020604 00000 n 
+0000020729 00000 n 
+0000020854 00000 n 
+0000020917 00000 n 
+0000020980 00000 n 
+0000021043 00000 n 
+0000021106 00000 n 
+0000021169 00000 n 
+0000021232 00000 n 
+0000021295 00000 n 
+0000021358 00000 n 
+0000021421 00000 n 
+0000021484 00000 n 
+0000021546 00000 n 
+0000021609 00000 n 
+0000021672 00000 n 
+0000021735 00000 n 
+0000021798 00000 n 
+0000021861 00000 n 
+0000021924 00000 n 
+0000021987 00000 n 
+0000022050 00000 n 
+0000022112 00000 n 
+0000022175 00000 n 
+0000022238 00000 n 
+0000029848 00000 n 
+0000027658 00000 n 
+0000022424 00000 n 
+0000027962 00000 n 
+0000028025 00000 n 
+0000028088 00000 n 
+0000028151 00000 n 
+0000028214 00000 n 
+0000027800 00000 n 
+0000028339 00000 n 
+0000028402 00000 n 
+0000028465 00000 n 
+0000028528 00000 n 
+0000028591 00000 n 
+0000028653 00000 n 
+0000028716 00000 n 
+0000028779 00000 n 
+0000028842 00000 n 
+0000028905 00000 n 
+0000028968 00000 n 
+0000029031 00000 n 
+0000029094 00000 n 
+0000029157 00000 n 
+0000029220 00000 n 
+0000029283 00000 n 
+0000029346 00000 n 
+0000029409 00000 n 
+0000029472 00000 n 
+0000029535 00000 n 
+0000029598 00000 n 
+0000029660 00000 n 
+0000029723 00000 n 
+0000029786 00000 n 
+0000101501 00000 n 
+0000035852 00000 n 
+0000033530 00000 n 
+0000029972 00000 n 
+0000033652 00000 n 
+0000033715 00000 n 
+0000033778 00000 n 
+0000033841 00000 n 
+0000033904 00000 n 
+0000033967 00000 n 
+0000034029 00000 n 
+0000034092 00000 n 
+0000034155 00000 n 
+0000034218 00000 n 
+0000034281 00000 n 
+0000034344 00000 n 
+0000034407 00000 n 
+0000034532 00000 n 
+0000034595 00000 n 
+0000034658 00000 n 
+0000034783 00000 n 
+0000034846 00000 n 
+0000034909 00000 n 
+0000034972 00000 n 
+0000035035 00000 n 
+0000035098 00000 n 
+0000035161 00000 n 
+0000035224 00000 n 
+0000035287 00000 n 
+0000035350 00000 n 
+0000035413 00000 n 
+0000035476 00000 n 
+0000035539 00000 n 
+0000035602 00000 n 
+0000035664 00000 n 
+0000035727 00000 n 
+0000035790 00000 n 
+0000188222 00000 n 
+0000042709 00000 n 
+0000040449 00000 n 
+0000035963 00000 n 
+0000040571 00000 n 
+0000040634 00000 n 
+0000105178 00000 n 
+0000103721 00000 n 
+0000105017 00000 n 
+0000103386 00000 n 
+0000101532 00000 n 
+0000103225 00000 n 
+0000040697 00000 n 
+0000040760 00000 n 
+0000040823 00000 n 
+0000040885 00000 n 
+0000040948 00000 n 
+0000041011 00000 n 
+0000041074 00000 n 
+0000041137 00000 n 
+0000041200 00000 n 
+0000041263 00000 n 
+0000041388 00000 n 
+0000041451 00000 n 
+0000041514 00000 n 
+0000041577 00000 n 
+0000041640 00000 n 
+0000041703 00000 n 
+0000041765 00000 n 
+0000041828 00000 n 
+0000041891 00000 n 
+0000041954 00000 n 
+0000042017 00000 n 
+0000042080 00000 n 
+0000042143 00000 n 
+0000042206 00000 n 
+0000042269 00000 n 
+0000042394 00000 n 
+0000042457 00000 n 
+0000042520 00000 n 
+0000042583 00000 n 
+0000042646 00000 n 
+0000049497 00000 n 
+0000047237 00000 n 
+0000042847 00000 n 
+0000047359 00000 n 
+0000047422 00000 n 
+0000047485 00000 n 
+0000047610 00000 n 
+0000047673 00000 n 
+0000047736 00000 n 
+0000047799 00000 n 
+0000047862 00000 n 
+0000047925 00000 n 
+0000047988 00000 n 
+0000048051 00000 n 
+0000048114 00000 n 
+0000048239 00000 n 
+0000048302 00000 n 
+0000048365 00000 n 
+0000048427 00000 n 
+0000048490 00000 n 
+0000048553 00000 n 
+0000048616 00000 n 
+0000048679 00000 n 
+0000048742 00000 n 
+0000048805 00000 n 
+0000048868 00000 n 
+0000048931 00000 n 
+0000048994 00000 n 
+0000049057 00000 n 
+0000049119 00000 n 
+0000049182 00000 n 
+0000049245 00000 n 
+0000049308 00000 n 
+0000049371 00000 n 
+0000049434 00000 n 
+0000056851 00000 n 
+0000054093 00000 n 
+0000049608 00000 n 
+0000054215 00000 n 
+0000054340 00000 n 
+0000054403 00000 n 
+0000054466 00000 n 
+0000054529 00000 n 
+0000054592 00000 n 
+0000054655 00000 n 
+0000054718 00000 n 
+0000054781 00000 n 
+0000054844 00000 n 
+0000054907 00000 n 
+0000054970 00000 n 
+0000055032 00000 n 
+0000055095 00000 n 
+0000055158 00000 n 
+0000055221 00000 n 
+0000055284 00000 n 
+0000055347 00000 n 
+0000055410 00000 n 
+0000055473 00000 n 
+0000055536 00000 n 
+0000055599 00000 n 
+0000055662 00000 n 
+0000055724 00000 n 
+0000055848 00000 n 
+0000055910 00000 n 
+0000055972 00000 n 
+0000056035 00000 n 
+0000056098 00000 n 
+0000056161 00000 n 
+0000056224 00000 n 
+0000056349 00000 n 
+0000056412 00000 n 
+0000056475 00000 n 
+0000056538 00000 n 
+0000056601 00000 n 
+0000056663 00000 n 
+0000056726 00000 n 
+0000056789 00000 n 
+0000069155 00000 n 
+0000065206 00000 n 
+0000062127 00000 n 
+0000056975 00000 n 
+0000062443 00000 n 
+0000062506 00000 n 
+0000062569 00000 n 
+0000062632 00000 n 
+0000062695 00000 n 
+0000062758 00000 n 
+0000062820 00000 n 
+0000062883 00000 n 
+0000062946 00000 n 
+0000063009 00000 n 
+0000063072 00000 n 
+0000063135 00000 n 
+0000063198 00000 n 
+0000063261 00000 n 
+0000063324 00000 n 
+0000063387 00000 n 
+0000063450 00000 n 
+0000063513 00000 n 
+0000063576 00000 n 
+0000063639 00000 n 
+0000063702 00000 n 
+0000063765 00000 n 
+0000063828 00000 n 
+0000063890 00000 n 
+0000063953 00000 n 
+0000064016 00000 n 
+0000064079 00000 n 
+0000064142 00000 n 
+0000064205 00000 n 
+0000064268 00000 n 
+0000064330 00000 n 
+0000064393 00000 n 
+0000064456 00000 n 
+0000064519 00000 n 
+0000064582 00000 n 
+0000064707 00000 n 
+0000064830 00000 n 
+0000064893 00000 n 
+0000064956 00000 n 
+0000065018 00000 n 
+0000062269 00000 n 
+0000065143 00000 n 
+0000073124 00000 n 
+0000068925 00000 n 
+0000065317 00000 n 
+0000072811 00000 n 
+0000072936 00000 n 
+0000070044 00000 n 
+0000070277 00000 n 
+0000070509 00000 n 
+0000070740 00000 n 
+0000070979 00000 n 
+0000071204 00000 n 
+0000071426 00000 n 
+0000071657 00000 n 
+0000071883 00000 n 
+0000072113 00000 n 
+0000072362 00000 n 
+0000072586 00000 n 
+0000073061 00000 n 
+0000069841 00000 n 
+0000069976 00000 n 
+0000070023 00000 n 
+0000081019 00000 n 
+0000078194 00000 n 
+0000073263 00000 n 
+0000078316 00000 n 
+0000078379 00000 n 
+0000078442 00000 n 
+0000078505 00000 n 
+0000078568 00000 n 
+0000078631 00000 n 
+0000078693 00000 n 
+0000078756 00000 n 
+0000078819 00000 n 
+0000078882 00000 n 
+0000078945 00000 n 
+0000079008 00000 n 
+0000079071 00000 n 
+0000079134 00000 n 
+0000079197 00000 n 
+0000079260 00000 n 
+0000079321 00000 n 
+0000079384 00000 n 
+0000079447 00000 n 
+0000079510 00000 n 
+0000079573 00000 n 
+0000079636 00000 n 
+0000079699 00000 n 
+0000079762 00000 n 
+0000079825 00000 n 
+0000079888 00000 n 
+0000079951 00000 n 
+0000080013 00000 n 
+0000080076 00000 n 
+0000080139 00000 n 
+0000080202 00000 n 
+0000080265 00000 n 
+0000080328 00000 n 
+0000080391 00000 n 
+0000080454 00000 n 
+0000080517 00000 n 
+0000080580 00000 n 
+0000080642 00000 n 
+0000080705 00000 n 
+0000080768 00000 n 
+0000080831 00000 n 
+0000080894 00000 n 
+0000080957 00000 n 
+0000188339 00000 n 
+0000089223 00000 n 
+0000085806 00000 n 
+0000081117 00000 n 
+0000086206 00000 n 
+0000086269 00000 n 
+0000086332 00000 n 
+0000086395 00000 n 
+0000086458 00000 n 
+0000086521 00000 n 
+0000086583 00000 n 
+0000086646 00000 n 
+0000086709 00000 n 
+0000086772 00000 n 
+0000086835 00000 n 
+0000086898 00000 n 
+0000086960 00000 n 
+0000085948 00000 n 
+0000087085 00000 n 
+0000087148 00000 n 
+0000087211 00000 n 
+0000087274 00000 n 
+0000087337 00000 n 
+0000087400 00000 n 
+0000087463 00000 n 
+0000087526 00000 n 
+0000087588 00000 n 
+0000087651 00000 n 
+0000087714 00000 n 
+0000087777 00000 n 
+0000087840 00000 n 
+0000087903 00000 n 
+0000087966 00000 n 
+0000088029 00000 n 
+0000088092 00000 n 
+0000088155 00000 n 
+0000088217 00000 n 
+0000088280 00000 n 
+0000088343 00000 n 
+0000088406 00000 n 
+0000088469 00000 n 
+0000088532 00000 n 
+0000088595 00000 n 
+0000088658 00000 n 
+0000088721 00000 n 
+0000088784 00000 n 
+0000088847 00000 n 
+0000088910 00000 n 
+0000088973 00000 n 
+0000089035 00000 n 
+0000089098 00000 n 
+0000089161 00000 n 
+0000096604 00000 n 
+0000093840 00000 n 
+0000089334 00000 n 
+0000093962 00000 n 
+0000094025 00000 n 
+0000094088 00000 n 
+0000094151 00000 n 
+0000094214 00000 n 
+0000094277 00000 n 
+0000094340 00000 n 
+0000094402 00000 n 
+0000094465 00000 n 
+0000094528 00000 n 
+0000094591 00000 n 
+0000094654 00000 n 
+0000094717 00000 n 
+0000094780 00000 n 
+0000094843 00000 n 
+0000094906 00000 n 
+0000094969 00000 n 
+0000095032 00000 n 
+0000095094 00000 n 
+0000095157 00000 n 
+0000095220 00000 n 
+0000095283 00000 n 
+0000095346 00000 n 
+0000095409 00000 n 
+0000095472 00000 n 
+0000095535 00000 n 
+0000095597 00000 n 
+0000095660 00000 n 
+0000095723 00000 n 
+0000095786 00000 n 
+0000095849 00000 n 
+0000095912 00000 n 
+0000095975 00000 n 
+0000096038 00000 n 
+0000096101 00000 n 
+0000096164 00000 n 
+0000096227 00000 n 
+0000096289 00000 n 
+0000096352 00000 n 
+0000096415 00000 n 
+0000096478 00000 n 
+0000096541 00000 n 
+0000101390 00000 n 
+0000099696 00000 n 
+0000096702 00000 n 
+0000099818 00000 n 
+0000099881 00000 n 
+0000099944 00000 n 
+0000100007 00000 n 
+0000100070 00000 n 
+0000100133 00000 n 
+0000100196 00000 n 
+0000100259 00000 n 
+0000100322 00000 n 
+0000100385 00000 n 
+0000100447 00000 n 
+0000100572 00000 n 
+0000100697 00000 n 
+0000100760 00000 n 
+0000100823 00000 n 
+0000100886 00000 n 
+0000100949 00000 n 
+0000101012 00000 n 
+0000101075 00000 n 
+0000101138 00000 n 
+0000101201 00000 n 
+0000101264 00000 n 
+0000101327 00000 n 
+0000103626 00000 n 
+0000103602 00000 n 
+0000105415 00000 n 
+0000105390 00000 n 
+0000105505 00000 n 
+0000126814 00000 n 
+0000135494 00000 n 
+0000147236 00000 n 
+0000159026 00000 n 
+0000167336 00000 n 
+0000187626 00000 n 
+0000188440 00000 n 
+0000188518 00000 n 
+0000190524 00000 n 
+0000202016 00000 n 
+0000202055 00000 n 
+0000202093 00000 n 
+0000202222 00000 n 
+trailer
+<<
+/Size 654
+/Root 652 0 R
+/Info 653 0 R
+/ID [<624EFF68B3B6150ADBBC3276EFE85189> <624EFF68B3B6150ADBBC3276EFE85189>]
+>>
+startxref
+202485
+%%EOF

Added: trunk/docs/tutorial/tutorial.txt
===================================================================
--- trunk/docs/tutorial/tutorial.txt	                        (rev 0)
+++ trunk/docs/tutorial/tutorial.txt	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,900 @@
+A Swift Tutorial
+================
+
+:toc:
+:icons:
+:website: http://www.ci.uchicago.edu/swift/guides/tutorial.php
+:numbered:
+
+[abstract]
+Abstract
+--------
+This is an introductory tutorial on the use of Swift and its programming
+language SwiftScript.
+
+Introduction
+------------
+This tutorial is intended to introduce new users to the basics of Swift.
+It is structured as a series of small exercise/examples which you can
+try for yourself as you read along. After the first 'hello world'
+example, there are two tracks - the language track (which introduces
+features of the SwiftScript language) and the runtime track (which
+introduces features of the Swift runtime environment, such as running
+jobs on different sites).
+
+For information on getting an installation of Swift running, consult the
+Swift Quickstart Guide <http://www.ci.uchicago.edu/swift/guides/quickstartguide.php>, and
+return to this document when you have successfully run the test
+SwiftScript program mentioned there.
+
+There is also a Swift User's Guide
+<http://www.ci.uchicago.edu/swift/guides/userguide.php> which contains
+more detailed reference material on topics covered in this manual. All
+of the programs included in this tutorial can be found in your Swift
+distribution in the examples/swift directory.
+
+Hello World
+-----------
+The first example program, first.swift, outputs a hello world message
+into a file called hello.txt.
+
+.first.swift
+************
+[java]
+source~~~~
+include::../../examples/first.swift[]
+source~~~~
+************
+
+We can run this program as follows:
+[java]
+source~~~~
+$ cd examples/swift/
+$ swift first.swift
+Swift svn swift-r3334 (swift modified locally) cog-r2752
+
+RunID: 20100526-1925-8zjupq1b
+Progress:
+Final status:  Finished successfully:1
+$ cat hello.txt
+Hello, world!
+source~~~~
+
+The basic structure of this program is a type definition, an
+application procedure definition, a variable definition and then a
+call to the procedure:
+
+[java]
+source~~~~
+type messagefile;  
+source~~~~
+
+First we define a new type, called messagefile. In this example, we will
+use this messagefile type as the type for our output message.
+
+
+All data in SwiftScript must be typed, whether it is stored in memory or
+on disk. This example defines a very simple type. Later on we will see
+more complex type examples.
+
+[java]
+source~~~~
+app (messagefile t) greeting() {   
+    echo "Hello, world!" stdout=@filename(t);  
+}  
+source~~~~
+
+Next we define a procedure called greeting. This procedure will write
+out the "hello world" message to a file.
+
+To achieve this, it executes the unix utility 'echo' with a parameter
+"Hello, world!" and directs the standard output into the output file.
+
+The actual file to use is specified by the return parameter, t.
+
+messagefile outfile <"hello.txt">;  
+
+Here we define a variable called outfile. The type of this variable is
+messagefile, and we specify that the contents of this variable will be
+stored on disk in a file called hello.txt
+
+outfile = greeting(); 
+
+Now we call the greeting procedure, with its output going to the outfile
+variable and therefore to hello.txt on disk.
+
+Over the following exercises, we'll extend this simple hello world
+program to demonstrate various features of Swift.
+
+
+Language features
+-----------------
+
+Parameters
+~~~~~~~~~~
+
+Procedures can have parameters. Input parameters specify inputs to the
+procedure and output parameters specify outputs. Our helloworld greeting
+procedure already uses an output parameter, t, which indicates where the
+greeting output will go. In this section, we will add an input parameter
+to the greeting function.
+
+The code changes from first.swift are highlighted below.
+
+[java]
+source~~~~
+include::../../examples/parameter.swift[]
+source~~~~
+
+We have modified the signature of the greeting procedure to indicate
+that it takes a single parameter, s, of type 'string'.
+
+We have modified the invocation of the 'echo' utility so that it takes
+the value of s as a parameter, instead of the string literal "Hello,
+world!".
+
+We have modified the output file definition to point to a different file
+on disk.
+
+We have modified the invocation of greeting so that a greeting string is
+supplied.
+
+The code for this section can be found in parameter.swift. It can be
+invoked using the swift command, with output appearing in hello2.txt:
+
+[java]
+source~~~~
+$ swift parameter.swift
+source~~~~
+
+Now that we can choose our greeting text, we can call the same procedure
+with different parameters to generate several output files with
+different greetings. The code is in manyparam.swift and can be run as
+before using the swift command.
+
+[java]
+source~~~~
+include::../../examples/manyparam.swift[]
+source~~~~
+
+Note that we can intermingle definitions of variables with invocations
+of procedures.
+
+When this program has been run, there should be three new files in the
+working directory (english.txt, francais.txt and nihongo.txt) each
+containing a greeting in a different language.
+
+In addition to specifying parameters positionally, parameters can be
+named, and if desired a default value can be specified - see <<named_parameters, Named and Optional Parameters>>.
+
+Adding another application
+~~~~~~~~~~~~~~~~~~~~~~~~~~
+Now we'll define a new application procedure. The procedure we define
+will capitalise all the words in the input file.
+
+To do this, we'll use the unix tr (translate) utility. Here is an
+example of using tr on the unix command line, not using Swift:
+
+[java]
+source~~~~
+$ echo hello | tr '[a-z]' '[A-Z]'
+HELLO
+source~~~~
+
+.There are several steps
+- transformation catalog
+- application block
+
+First we need to modify the transformation catalog to define a logical
+transformation for the tc utility. The transformation catalog can be
+found in etc/tc.data. There are already several entries specifying
+where programs can be found. Add a new line to the file, specifying
+where *tr* can be found (usually in /usr/bin/tr but it may differ on
+your system), like this:
+
+[java]
+source~~~~
+localhost       tr      /usr/bin/tr     INSTALLED       INTEL32::LINUX  null  
+source~~~~
+
+For now, ignore all of the fields except the second and the third. The
+second field tr specifies a logical application name and the third
+specifies the location of the application executable.
+
+Now that we have defined where to find tr, we can use it in SwiftScript.
+
+We can define a new procedure, capitalise, which calls tr.
+
+[java]
+source~~~~
+(messagefile o) capitalise(messagefile i) {     
+    app {  
+        tr "[a-z]" "[A-Z]" stdin=@filename(i) stdout=@filename(o);  
+    }  
+}  
+source~~~~
+We can call capitalise like this:
+
+[java]
+source~~~~
+messagefile final <"capitals.txt">;  
+final = capitalise(hellofile);  
+source~~~~
+
+So a full program based on the first exercise might look like this:
+
+[java]
+source~~~~
+include::../../examples/second_procedure.swift[]
+source~~~~
+
+We can use the swift command to run it like this.
+
+[java]
+source~~~~
+$ swift second_procedure.swift
+...
+$ cat capitals.txt
+HELLO FROM SWIFT
+source~~~~
+
+Anonymous files
+~~~~~~~~~~~~~~~
+In the previous section, the file greeting.txt is used only to store
+an intermediate result. We don't really care about which name is used
+for the file, and we can let Swift choose the name.
+
+To do that, omit the mapping entirely when declaring outfile:
+
+[java]
+source~~~~
+messagefile outfile;  
+source~~~~
+
+Swift will choose a filename, which in the present version will be in a
+subdirectory called _concurrent.
+
+
+Datatypes
+~~~~~~~~~
+All data in variables and files has a data type. So far, we've seen two
+types:
+
+    - string - this is a built-in type for storing strings of text in
+      memory, much like in other programming languages
+    - messagefile - this is a user-defined type used to mark files as
+      containing messages
+
+SwiftScript has the additional built-in types: boolean, integer and
+float that function much like their counterparts in other programming
+languages.
+
+It is also possible to create user defined types with more structure,
+for example:
+
+[java]
+source~~~~
+type details {  
+    string name;  
+    int pies;  
+}  
+source~~~~
+
+Each element of the structured type can be accessed using a . like this:
+
+[java]
+source~~~~
+person.name = "john";  
+source~~~~
+
+The following complete program, types.swift, outputs a greeting using a
+user-defined structure type to hold parameters for the message:
+
+[java]
+source~~~~
+include::../../examples/types.swift[]
+source~~~~
+
+Structured types can be comprised of marker types for files. See the
+later section on mappers for more information about this.
+
+
+Arrays
+~~~~~~
+
+We can define arrays using the [] suffix in a variable declaration:
+
+[java]
+source~~~~
+messagefile m[];  
+source~~~~
+
+This program, q5.swift, will declare an array of message files.
+
+[java]
+source~~~~
+include::../../examples/q5.swift[]
+source~~~~
+
+Observe that the type of the parameter to greeting is now an array of
+strings, string s[], instead of a single string, string s, that
+elements of the array can be referenced numerically, for example s[0],
+and that the array is initialised using an array literal,
+["how","are","you"].
+
+
+Mappers
+~~~~~~~
+
+A significant difference between SwiftScript and other languages is that
+data can be referred to on disk through variables in a very similar
+fashion to data in memory. For example, in the above examples we have
+seen a variable definition like this:
+
+[java]
+source~~~~
+messagefile outfile <"q13greeting.txt">;  
+source~~~~
+
+This means that outfile is a dataset variable, which is mapped to a
+file on disk called g13greeting.txt. This variable can be assigned to
+using = in a similar fashion to an in-memory variable. We can say that
+outfile is mapped onto the disk file q13greeting.txt by a mapper.
+
+There are various ways of mapping in SwiftScript. Two forms have already
+been seen in this tutorial. Later exercises will introduce more forms.
+
+The two forms of mapping seen so far are:
+
+simple named mapping - the name of the file that a variable is mapped to
+is explictly listed. Like this:
+
+[java]
+source~~~~
+messagefile outfile <"greeting.txt">;  
+source~~~~
+
+This is useful when you want to explicitly name input and output files
+for your program. For example, outfile in exercise HELLOWORLD.
+
+anonymous mapping - no name is specified in the source code. A name is
+automatically generated for the file. This is useful for intermediate
+files that are only referenced through SwiftScript, such as outfile in
+exercise ANONYMOUSFILE. A variable declaration is mapped anonymously by
+ommitting any mapper definition, like this:
+
+[java]
+source~~~~
+messagefile outfile;  
+source~~~~
+
+Later exercises will introduce other ways of mapping from disk files to
+SwiftScript variables.
+
+TODO: introduce @v syntax.
+
+
+The Regexp Mapper
+^^^^^^^^^^^^^^^^^
+In this exercise, we introduce the regexp mapper. This mapper
+transforms a string expression using a regular expression, and uses the
+result of that transformation as the filename to map.
+
+regexp.swift demonstrates the use of this by placing output into a
+file that is based on the name of the input file: our input file is
+mapped to the inputfile variable using the simple named mapper, and then
+we use the regular expression mapper to map the output file. Then we use
+the countwords() procedure to count the works in the input file and
+store the result in the output file. In order for the countwords()
+procedure to work correctly, add the wc utility (usually found in
+/usr/bin/wc) to tc.data.
+
+The important bit of regexp.swift is:
+
+[java]
+source~~~~
+messagefile inputfile <"q16.txt">;  
+  
+countfile c <regexp_mapper;  
+             source=@inputfile,  
+             match="(.*)txt",  
+             transform="\\1count"  
+            >;  
+source~~~~
+
+fixed_array_mapper
+^^^^^^^^^^^^^^^^^^
+The fixed array mapper maps a list of files into an array - each
+element of the array is mapped into one file in the specified directory.
+See fixedarray.swift.
+
+[java]
+source~~~~
+include::../../examples/fixedarray.swift[]
+source~~~~
+
+foreach
+~~~~~~~
+SwiftScript provides a control structure, foreach, to operate on each
+element of an array.
+
+In this example, we will run the previous word counting example over
+each file in an array without having to explicitly list the array
+elements. The source code for this example is in foreach.swift. The
+three input files: one.txt, two.txt and three.txt are supplied.
+After you have run the workflow, you should see that there are three
+output files: one.count, two.count and three.count, each
+containing the word count for the corresponding input file. We combine
+the use of the fixed_array_mapper and the regexp_mapper.
+
+[java]
+source~~~~
+include::../../examples/foreach.swift[]
+source~~~~
+
+If
+~~
+Decisions can be made using 'if', like this:
+
+[java]
+source~~~~
+if(morning) {  
+  outfile = greeting("good morning");  
+} else {  
+  outfile = greeting("good afternoon");  
+}  
+source~~~~
+
+if.swift contains a simple example of this. Compile and run if.swift
+and see that it outputs "good morning". Changing the morning variable
+from true to false will cause the program to output "good afternoon".
+
+Sequential iteration
+~~~~~~~~~~~~~~~~~~~~
+
+A development version of Swift after 0.2 (revision 1230) introduces a
+sequential iteration construct.
+
+The following example demonstrates a simple application: each step of
+the iteration is a string representation of the byte count of the
+previous step's output, with iteration terminating when the byte count
+reaches zero.
+
+Here's the program:
+
+[java]
+source~~~~
+include::../../examples/iterate.swift[]
+source~~~~
+
+echo is the standard unix echo.
+
+wcl is our application code - it counts the number of bytes in the one
+file and writes that count out to another, like this:
+
+[java]
+source~~~~
+$ cat ../wcl
+#!/bin/bash
+echo -n $(wc -c < $1) > $2
+
+$ echo -n hello > a
+$ wcl a b
+$ cat b
+5
+source~~~~
+
+Install the above wcl script somewhere and add a transformation catalog
+entry for it. Then run the example program like this:
+
+[java]
+source~~~~
+$ swift iterate.swift
+Swift svn swift-r3334 cog-r2752
+
+RunID: 20100526-2259-gtlz8zf4
+Progress:
+SwiftScript trace: extract int value , 16.0
+SwiftScript trace: extract int value , 2.0
+SwiftScript trace: extract int value , 1.0
+Final status:  Finished successfully:4
+
+$ ls foldout*
+foldout0000  foldout0001  foldout0002  foldout0003
+source~~~~
+
+Runtime features
+----------------
+
+Visualising the workflow as a graph
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+When running a workflow, its possible to generate a provenance graph at
+the same time:
+
+[java]
+source~~~~~
+$ swift -pgraph graph.dot first.swift
+$ dot -ograph.png -Tpng graph.dot
+source~~~~
+
+graph.png can then be viewed using your favourite image viewer. The dot application is part of the graphViz project. More information can be found at http://www.graphviz.org.
+
+Running on a remote site
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+As configured by default, all jobs are run locally. In the previous
+examples, we've invoked echo and tr executables from our SwiftScript
+program. These have been run on the local system (the same computer on
+which you ran swift). We can also make our computations run on a
+remote resource.
+
+WARNING: This example is necessarily more vague than previous examples,
+because its requires access to remote resources. You should ensure that
+you can submit a job using the globus-job-run (or globusrun-ws?)
+command(s).
+
+We do not need to modify any SwiftScript code to run on another
+resource. Instead, we must modify another catalog, the site catalog.
+This catalog provides details of the location that applications will be
+run, with the default settings referring to the local machine. We will
+modify it to refer to a remote resource - the UC Teraport cluster. If
+you are not a UC Teraport user, you should use details of a different
+resource that you do have access to.
+
+The site catalog is located in etc/sites.xml and is a relatively
+straightforward XML format file. We must modify each of the following
+three settings: gridftp (which indicates how and where data can be
+transferred to the remote resource), jobmanager (which indicates how
+applications can be run on the remote resource) and workdirectory (which
+indicates where working storage can be found on the remote resource).
+
+
+Writing a mapper
+~~~~~~~~~~~~~~~~
+
+This section will introduce writing a custom mapper so that Swift is
+able to access data files laid out in application-specific ways.
+
+An application-specific mapper must take the form of a Java class that
+implements the Mapper
+<http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html>
+interface.
+
+Usually you don't need to implement this interface directly, because
+Swift provides a number of more concrete classes with some functionality
+already implemented.
+
+The hierarchy of helper classes is:
+
+http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html[Mapper]
+ 
+This is the abstract interface for mappers in Swift. You must
+implement methods to provide access to mapper properties, to map from a
+SwiftScript dataset path (such as foo[1].bar) to a file name, to check
+whether a file exists. None of the default Swift mappers implement this
+interface directly - instead they use one of the following helper classes.
+
+http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/AbstractMapper.html[Abstract Mapper]
+
+This provides helper methods to manage mapper properties and to handle
+existance checking. Examples of mappers which use this class are: 
+http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.array_mapper[Array Mapper], 
+http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.csv_mapper[CSV Mapper],
+http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.fixed_array_mapper[Fixed Array Mapper],
+http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.regexp_mapper[Regexp Mapper],
+and http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.single_file_mapper[Single File Mapper].
+
+http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/file/AbstractFileMapper.html[AbstractFileMapper]
+This provides a helper class for mappers which select files based on
+selecting files from a directory listing. It is necessary to write some
+helper methods that are different from the above mapper methods.
+Examples of mappers which use this class are:
+http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.simple_mapper[simple_mapper],
+http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.filesys_mapper[filesys_mapper],
+and the (undocumented) StructuredRegularExpressionMapper.
+
+In general, to write a mapper, choose either the AbstractMapper or the
+AbstractFileMapper and extend those. If your mapper will generally
+select the files it returns based on a directory listing and will
+convert paths to filenames using some regular conversion (for example,
+in the way that simple_mapper maps files in a directory that match a
+particular pattern), then you should probably use the
+AbstractFileMapper. If your mapper will produce a list of files in some
+other way (for example, in the way that csv_mapper maps based on
+filenames given in a CSV file rather than looking at which files are in
+a directory), then you should probably use the AbstractMapper.
+
+
+Writing a very basic mapper
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+In this section, we will write a very basic (almost useless) mapper that
+will map a SwiftScript dataset into a hardcoded file called
+myfile.txt, like this:
+
+
+    Swift variable                            Filename
+
+      var   <----------------------------->    myfile.txt
+
+We should be able to use the mapper we write in a SwiftScript program
+like this:
+
+[java]
+source~~~~
+type file;  
+file f <my_first_mapper;>;  
+source~~~~
+
+First we must choose a base class - AbstractMapper or
+AbstractFileMapper. We aren't going to use a directory listing to decide
+on our mapping - we are getting the mapping from some other source (in
+fact, it will be hard coded). So we will use AbstractMapper.
+
+So now onto the source code. We must define a subclass of AbstractMapper
+and implement several mapper methods: isStatic, existing, and map. These
+methods are documented in the javadoc for the Mapper interface.
+
+Here is the code implementing this mapper. Put this in your source
+vdsk directory, make a directory src/tutorial/|and put this file in
+src/tutorial/MyFirstMapper.java.
+
+[java]
+source~~~~
+package tutorial;  
+  
+import java.util.Arrays;  
+import java.util.Collection;  
+import java.util.Collections;  
+  
+import org.griphyn.vdl.mapping.AbsFile;  
+import org.griphyn.vdl.mapping.AbstractMapper;  
+import org.griphyn.vdl.mapping.Path;  
+import org.griphyn.vdl.mapping.PhysicalFormat;  
+  
+public class MyFirstMapper extends AbstractMapper {  
+  
+  AbsFile myfile = new AbsFile("myfile.txt");  
+  
+  public boolean isStatic() {  
+    return false;  
+  }  
+  
+  public Collection existing() {  
+    if (myfile.exists())  
+      return Arrays.asList(new Path[] {Path.EMPTY_PATH});  
+    else  
+      return Collections.EMPTY_LIST;  
+  }  
+  
+  public PhysicalFormat map(Path p) {  
+    if(p.equals(Path.EMPTY_PATH))  
+      return myfile;  
+    else  
+      return null;  
+  }  
+}  
+source~~~~
+
+Now we need to inform the Swift engine about the existence of this
+mapper. We do that by editing the MapperFactory class definition, in
+src/org/griphyn/vdl/mapping/MapperFactory.java and adding a
+registerMapper call alongside the existing registerMapper calls, like this:
+
+[java]
+source~~~~
+registerMapper("my_first_mapper", tutorial.MyFirstMapper.class);  
+source~~~~
+
+The first parameter is the name of the mapper that will be used in
+SwiftScript program. The second parameter is the new Mapper class that
+we just wrote.
+
+Now rebuild Swift using the "ant redist" target.
+
+This new Swift build will be aware of your new mapper. We can test it
+out with a hello world program:
+
+[java]
+source~~~~
+type messagefile;  
+  
+(messagefile t) greeting() {  
+    app {  
+        echo "hello" stdout=@filename(t);  
+    }  
+}  
+  
+messagefile outfile <my_first_mapper;>;  
+  
+outfile = greeting();  
+source~~~~
+
+Run this program, and hopefully you will find the "hello" string has
+been output into the hard coded output file myfile.txt:
+
+[java]
+source~~~~
+$ cat myfile.txt
+hello
+source~~~~
+
+So that's a first very simple mapper implemented. Compare the source
+code to the single_file_mapper in
+http://www.ci.uchicago.edu/trac/swift/browser/trunk/src/org/griphyn/vdl/mapping/file/SingleFileMapper.java[SingleFileMapper.java].
+There is not much more code to the single_file_mapper - mostly code to
+deal with the file parameter.
+
+
+Starting and restarting
+~~~~~~~~~~~~~~~~~~~~~~~
+
+Now we're going to try out the restart capabilities of Swift. We will
+make a workflow that will deliberately fail, and then we will fix the
+problem so that Swift can continue with the workflow.
+
+First we have the program in working form, restart.swift.
+
+[java]
+source~~~~
+include::../../examples/restart.swift[]
+source~~~~
+
+We must define some transformation catalog entries:
+
+[java]
+source~~~~
+localhost   touch   /usr/bin/touch  INSTALLED   INTEL32::LINUX  null  
+localhost   broken  /bin/true   INSTALLED   INTEL32::LINUX  null  
+source~~~~
+
+Now we can run the program:
+
+[java]
+source~~~~
+$ swift restart.swift    
+Swift 0.9 swift-r2860 cog-r2388  
+  
+RunID: 20100526-1119-3kgzzi15  
+Progress:  
+Final status:  Finished successfully:4  
+source~~~~
+
+Four jobs run - touch, echo, broken and a final echo. (note that broken
+isn't actually broken yet).
+
+Now we will break the broken job and see what happens. Replace the
+definition in tc.data for broken with this:
+
+[java]
+source~~~~
+localhost    broken     /bin/false   INSTALLED       INTEL32::LINUX  null  
+source~~~~
+
+Now when we run the workflow, the broken task fails:
+
+[java]
+source~~~~
+$ swift restart.swift   
+  
+Swift 0.9 swift-r2860 cog-r2388  
+  
+RunID: 20100526-1121-tssdcljg  
+Progress:  
+Progress:  Stage in:1  Finished successfully:2  
+Execution failed:  
+    Exception in broken:  
+Arguments: [process]  
+Host: localhost  
+Directory: restart-20100526-1121-tssdcljg/jobs/1/broken-1i6ufisj  
+stderr.txt:   
+stdout.txt:   
+source~~~~
+
+From the output we can see that touch and the first echo completed, but
+then broken failed and so swift did not attempt to execute the final echo.
+
+There will be a restart log with the same name as the RunID:
+
+[java]
+source~~~~
+$ ls *20100526-1121-tssdcljg*rlog  
+restart-20100526-1121-tssdcljg.0.rlog  
+source~~~~
+
+This restart log contains enough information for swift to know which
+parts of the workflow were executed successfully.
+
+We can try to rerun it immediately, like this:
+
+[java]
+source~~~~
+$ swift -resume restart-20100526-1121-tssdcljg.0.rlog restart.swift   
+  
+Swift 0.9 swift-r2860 cog-r2388  
+  
+RunID: 20100526-1125-7yx0zi6d  
+Progress:  
+Execution failed:  
+    Exception in broken:  
+Arguments: [process]  
+Host: localhost  
+Directory: restart-20100526-1125-7yx0zi6d/jobs/m/broken-msn1gisj  
+stderr.txt:   
+stdout.txt:   
+  
+----  
+  
+Caused by:  
+    Exit code 1  
+source~~~~
+
+Swift tried to resume the workflow by executing "broken" again. It did
+not try to run the touch or first echo jobs, because the restart log
+says that they do not need to be executed again.
+
+Broken failed again, leaving the original restart log in place.
+
+Now we will fix the problem with "broken" by restoring the original
+tc.data line that works.
+
+Remove the existing "broken" line and replace it with the successful
+tc.data entry above:
+
+[java]
+source~~~~
+localhost       broken          /bin/true   INSTALLED       INTEL32::LINUX  null  
+source~~~~
+
+Now run again:
+
+[java]
+source~~~~
+$ swift -resume restart-20100526-1121-tssdcljg.0.rlog restart.swift  
+  
+Swift 0.9 swift-r2860 cog-r2388  
+  
+RunID: 20100526-1128-a2gfuxhg  
+Progress:  
+Final status:  Initializing:2  Finished successfully:2  
+source~~~~
+
+Swift tries to run "broken" again. This time it works, and so Swift
+continues on to execute the final piece of the workflow as if nothing
+had ever gone wrong.
+
+
+bits
+----
+
+Named and optional parameters
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+anchor:named_parameters
+In addition to specifying parameters positionally, parameters can be
+named, and if desired a default value can be specified:
+
+[java]
+source~~~~
+(messagefile t) greeting (string s="hello") {  
+    app {  
+        echo s stdout=@filename(t);  
+    }  
+}  
+source~~~~
+
+When we invoke the procedure, we can specify values for the parameters
+by name. The following code can be found in q21.swift.
+
+[java]
+source~~~~
+french = greeting(s="bonjour");  
+source~~~~
+
+or we can let the default value apply:
+
+[java]
+source~~~~
+english = greeting();  
+source~~~~

Deleted: trunk/docs/tutorial-live.xml
===================================================================
--- trunk/docs/tutorial-live.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/tutorial-live.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,982 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<article>
-    <articleinfo>
-        <title>A Swift Tutorial for ISSGC07</title>
-    </articleinfo>
-
-<sect1> <title>Introduction</title>
-    <para>
-This tutorial is intended to introduce new users to the basics of Swift.
-It is structured as a series of small exercise/examples which you can
-try for yourself as you read along.
-    </para>
-    <para>This is version: $LastChangedRevision$</para>
-</sect1>
-
-<sect1><title>Environment setup</title>
-
-<para>First set up the swift environment:
-</para>
-
-<programlisting>
-$ cp ~benc/workflow/vdsk-0.1-r877/etc/tc.data ~
-$ cp ~benc/workflow/vdsk-0.1-r877/etc/sites.xml ~
-$ export PATH=$PATH:~benc/workflow/vdsk-0.1-r877/bin
-</programlisting>
-
-</sect1>
-
-<sect1> <title>A first workflow</title>
-    <para>
-The first example program uses an image processing utility to perform
-a visual special effect on a supplied file.
-    </para>
-
-<para>Here is the program we will use:</para>
-
-<programlisting>
-
-type imagefile;
-
-(imagefile output) flip(imagefile input) {
-  app {
-    convert "-rotate" "180" @input @output;
-  }
-}
-
-imagefile puppy <"input-1.jpeg">;
-imagefile flipped <"output.jpeg">;
-
-flipped = flip(puppy);
-
-</programlisting>
-
-
-<para>
-This simple workflow has the effect of running this command:
-convert -rotate 180 input-1.jpeg output.jpeg
-</para>
-
-<para>ACTION: First prepare your working environment:</para>
-
-<programlisting>
-
-$ cp ~benc/workflow/input-1.jpeg .
-
-$ ls *.jpeg
-input-1.jpeg
-
-</programlisting>
-
-<para>ACTION: Open input-1.jpeg</para>
-
-<para>
-You should see a picture. This is the
-picture that we will modify in our first workflow.</para>
-
-<para>
-ACTION: use your favourite text editor to put the above SwiftScript
-program into a file called
-flipper.swift
-</para>
-
-<para>Once you have put the program into flipper.swift, you can execute
-the workflow like this:
-</para>
-
-<programlisting>
-
-$ swift flipper.swift
-
-Swift v0.1-dev
-
-RunID: e1bupgygrzn12
-convert started
-convert completed
-
-$ ls *.jpeg
-input-1.jpeg
-output.jpeg
-</programlisting>
-
-<para>A new jpeg has appeared - output.jpeg.</para>
-
-<para>ACTION: Open it.
-You should see that the image is different from the input image - it
-has been rotated 180 degress.</para>
-
-<para>The basic structure of this program is a type definition,
-a procedure definition, a variable definition and
-then a call to the procedure:</para>
-
-<para>
-All data in SwiftScript must have a type. This line defines a new type
-called imagefile, which will be the type that all of our images will be.
-</para>
-
-<programlisting>
-type imagefile;
-</programlisting>
-
-<para>
-Next we define a procedure called flip. This procedure will use the
-ImageMagick convert application to rotate a picture around by 180 degrees.
-</para>
-
-<programlisting>
-(imagefile output) flip(imagefile input) {
-  app {
-    convert "-rotate" "180" @input @output;
-  }
-}
-</programlisting>
-
-<para>
-To achieve this, it executes the ImageMagick utility 'convert', passing
-in the appropriate commandline option and the name of the input and output
-files.
-</para>
-
-<para>
-In swift, the output of a program looks like a return value.
-It has a type, and also has a variable name
-(unlike in most other programming languages).
-</para>
-
-<programlisting>
-imagefile puppy <"input-1.jpeg">;
-imagefile flipped <"output.jpeg">;
-</programlisting>
-
-<para>
-We define two variables, called puppy and flipped. These variables will
-contain our input and output images, respectively.
-</para>
-
-<para>We tell swift that the contents of the variables will be stored on
-disk (rather than in memory) in the files "input-1.jpeg" (which already
-exists), and in "output.jpeg". This is called <firstterm>mapping</firstterm>
-and will be discussed in more depth later.</para>
-
-<programlisting>
-flipped = flip(puppy);
-</programlisting>
-
-<para>
-Now we call the flip procedure, with 'puppy' as its input and its
-output going into 'flipped'.
-</para>
-
-<para>Over the following exercises, we will use this relatively
-simple SwiftScript program as a base for future exercises.</para>
-
-</sect1>
-
-<sect1><title>A second program</title>
-
-<para>
-Our next example program uses some more swift syntax to produce images that are
-rotated by different angles, instead of flipped over all the way.
-</para>
-
-<para>Here is the program in full. We'll go over it section by section.</para>
-<programlisting>
-type imagefile;
-
-(imagefile output) rotate(imagefile input, int angle) {
-  app {
-    convert "-rotate" angle @input @output;
-  }
-}
-
-imagefile puppy <"input-1.jpeg">;
-
-int angles[] = [45, 90, 120];
-
-foreach a in angles {
-    imagefile output <single_file_mapper;file=@strcat("rotated-",a,".jpeg")>;
-    output = rotate(puppy, a);
-}
-</programlisting>
-
-<programlisting>
-type imagefile;
-</programlisting>
-
-<para>
-We keep the type definition the same as in the previous program.
-</para>
-
-<programlisting>
-(imagefile output) rotate(imagefile input, int angle) {
-  app {
-    convert "-rotate" angle @input @output;
-  }
-}
-</programlisting>
-
-<para>
-This rotate procedure looks very much like the flip procedure 
-from the previous program,
-but we have added another parameter, called angle. Angle is of type 'int',
-which is a built-in SwiftScript type for integers. We use that on the
-commandline instead of a hard coded 180 degrees.
-</para>
-
-<programlisting>
-imagefile puppy <"input-1.jpeg">;
-</programlisting>
-
-<para>
-Our input image is the same as before.
-</para>
-
-<programlisting>
-int angles[] = [45, 90, 120];
-</programlisting>
-
-<para>
-Now we define an array of integers, and initialise it with three angles.
-</para>
-
-<programlisting>
-foreach a in angles {
-</programlisting>
-
-<para>
-Now we have a foreach loop. This loop will iterate over each of the elements
-in angles. In each iteration, the element will be put in the variable 'a'.
-</para>
-
-<programlisting>
-    imagefile output <single_file_mapper;file=@strcat("rotated-",a,".jpeg")>;
-</programlisting>
-
-<para>
-Inside the loop body, we have an output variable that is mapped differently
-for each iteration. We use the single_file_mapper and the @strcat function
-to construct a filename and then map that filename to our output variable.
-</para>
-
-<programlisting>
-    output = rotate(puppy, a);
-}
-</programlisting>
-
-<para>Now we invoke rotate, passing in our input image and the angle to
-use, and putting the output in the mapped output file. This will happen
-three times, with a different output filename and a different angle
-each time.
-</para>
-
-<para>
-ACTION: Put the program source into a file called in rotate.swift and
-execute it with the swift command, like we did for flipper.swift above.
-</para>
-
-<programlisting>
-$ ls rotated*
-rotated-120.jpeg rotated-45.jpeg  rotated-90.jpeg
-</programlisting>
-
-</sect1>
-
-
-<sect1><title>Third example</title>
-
-<para>
-Our third example will introduce some more concepts: complex data
-types, the comma-separated values mapper, and the transformation
-catalog.
-</para>
-
-<para>
-Here's the complete listing:
-</para>
-
-<programlisting>
-
-type imagefile;
-type pgmfile;
-
-type voxelfile;
-type headerfile;
-
-type volume {
-    voxelfile img;
-    headerfile hdr;
-};
-
-
-volume references[] <csv_mapper;file="reference.csv">;
-volume reference=references[0];
-
-(pgmfile outslice) slicer(volume input, string axis, string position)
-{
-    app {
-        slicer @input.img axis position @outslice;
-    }
-}
-
-(imagefile output) convert(pgmfile inpgm)
-{
-    app {
-        convert @inpgm @output;
-    }
-}
-
-pgmfile slice;
-
-imagefile slicejpeg <"slice.jpeg">;
-
-slice = slicer(reference, "-x", ".5");
-
-slicejpeg = convert(slice);
-
-</programlisting>
-
-<para>IMPORTANT! We need to make some changes to other files in addition
-to putting the above source into a file. Read the following notes
-carefully to find out what to change.</para>
-
-<programlisting>
-type imagefile;
-type pgmfile;
-type voxelfile;
-type headerfile;
-</programlisting>
-
-<para>
-We define some simple types - imagefile as before, as well as three new ones.
-</para>
-
-<programlisting>
-type volume {
-    voxelfile img;
-    headerfile hdr;
-};
-</programlisting>
-
-<para>
-Now we define a <firstterm>complex type</firstterm> to represent a brain scan.
-Our programs store brain data in two files - a .img file and a .hdr file.
-This complex type defines a volume type, consisting of a voxelfile and a
-headerfile.
-</para>
-
-<programlisting>
-volume references[] <csv_mapper;file="reference.csv">;
-</programlisting>
-
-<para>
-Now that we have defined a more complex type that consists of several
-elements (and hence several files on disk), we can no longer use the
-same ways of mapping. Instead, we will use a new mapper, the CSV mapper.
-This maps rows of a comma-separated value file into an array of complex
-types.</para>
-
-<para>ACTION: Make a file called reference.csv using your
-favourite text editor. This is what it should look contain (2 lines):
-</para>
-<programlisting>
-img,hdr
-Raw/reference.img,Raw/reference.hdr
-</programlisting>
-<para>Our mapped structure will be a 1 element array (because there was one
-data line in the CSV file), and that element will be mapped to two
-files: the img component will map to the file Raw/reference.img and the
-hdr component will map to Raw/reference.hdr
-</para>
-<para>
-We also need to put the Raw/reference files into the current directory
-so that swift can find them.
-</para>
-<para>ACTION REQUIRED: Type the following:
-</para>
-<programlisting>
-$ mkdir Raw
-$ cp ~benc/workflow/data/reference.* Raw/
-</programlisting>
-<para>
-Now you will have the reference files in your home directory.
-</para>
-
-<programlisting>
-volume reference=references[0];
-</programlisting>
-
-<para>
-We only want the single first element of the references array, so this line
-makes a new volume variable and extracts the first element of references.
-</para>
-
-<programlisting>
-(imagefile output) convert(pgmfile inpgm)
-{
-    app {
-        convert @inpgm @output;
-    }
-}
-</programlisting>
-
-<para>
-This procedure is like the previous flip and rotate procedures. It uses
-convert to change a file from one file format (.pgm format) to another
-format (.jpeg format)
-</para>
-
-<programlisting>
-(pgmfile outslice) slicer(volume input, string axis, string position)
-{
-    app {
-        slicer @input.img axis position @outslice;
-    }
-}
-</programlisting>
-
-<para>
-Now we define another procedure that uses a new application called 'slicer'.
-Slicer will take a slice through a supplied brain scan volume and produce
-a 2d image in PGM format.
-</para>
-
-<para>
-We must tell Swift how to run 'slicer' by modifying the
-<firstterm>transformation catalog</firstterm>. The transformation catalog
-maps logical transformation names into unix executable names.
-</para>
-
-<para>The transformation catalog is in your home directory, in a file called
-tc.data.
-There is already one entry there, for convert.</para>
-
-<programlisting>
-localhost    convert    /usr/bin/convert    INSTALLED INTEL32::LINUX null
-</programlisting>
-
-<para>ACTION REQUIRED: Open tc.data in your favourite unix text
-editor, and add a new line to configure the location of slicer. Note that
-you must use TABS and not spaces to separate the fields:</para>
-
-<programlisting>
-localhost    slicer    /afs/pdc.kth.se/home/b/benc/workflow/slicer-swift    INSTALLED INTEL32::LINUX null
-</programlisting>
-
-<para>For now, ignore all of the fields except the second and the third.
-The second field 'slicer' specifies a logical transformation name and the
-third specifies the location of an executable to perform that
-transformation.</para>
-
-<programlisting>
-pgmfile slice;
-</programlisting>
-
-<para>
-Now we define a variable which will store the sliced image. It will be
-a file on disk, but note that there is no filename mapping defined. This
-means that swift will choose a filename automatically. This is useful for
-intermediate files in a workflow.
-</para>
-
-<programlisting>
-imagefile slicejpeg <"slice.jpeg">;
-</programlisting>
-
-<para>Now we declare a variable for our output and map it to a filename.
-</para>
-
-<programlisting>
-slice = slicer(reference, "-x", ".5");
-
-slicejpeg = convert(slice);
-</programlisting>
-
-<para>
-Finally we invoke the two procedures to slice the brain volume and
-then convert that slice into a jpeg.
-</para>
-
-<para>ACTION: Place the source above into a file (for example, third.swift) and
-make the other modifications discussed above. Then run the workflow
-with the swift command, as before.</para>
-
-</sect1>
-
-<sect1><title>Running on another site</title>
-
-<para>
-So far everything has been run on the local site.
-Swift can run jobs over the grid to remote resources. It will handle the
-transfer of files to and from the remote resource, and execution of jobs
-on the remote resource.
-</para>
-
-<para>
-We will run the first flip program, but this time on a grid resource
-located in chicago.
-</para>
-
-<para>
-First clear away the output from the first program:
-</para>
-
-<programlisting>
-$ rm output.jpeg
-$ ls output.jpeg
-ls: output.jpeg: No such file or directory
-</programlisting>
-
-<para>
-Now initialise your grid proxy, to log-in to the grid.
-</para>
-
-<programlisting>
-$ grid-proxy-init
-</programlisting>
-
-<para>Now we must tell Swift about the other site. This is done through
-another catalog file, the <firstterm>site catalog</firstterm>.</para>
-
-<para>The site catalog is found in sites.xml</para>
-
-<para>Open sites.xml. There is one entry in there in XML defining the
-local site. Because this is the only site defined, all execution will
-happen locally.</para>
-
-<para>Another sites.xml is available for use, in 
-~benc/workflow/sites-iceage.xml
-</para>
-
-<para>ACTION: Copy ~benc/workflow/sites-iceage.xml to your home directory
- and look inside.  See how it differs from sites.xml.</para>
-
-<para>Now we will run the first flipper exercise again, but this time via
-Globus GRAM.</para>
-
-<para>We will use this other sites file to run the first workflow. In
-addition to telling swift about the other site in the sites file,
-we need to tell swift where to find transformations on the new site.
-</para>
-<para>ACTION: Edit the transformation catalog and add a line to tell swift where
-it can find convert. Conveniently, it is in the same path when running
-locally and through GRAM.
-Here is the line to add:
-</para>
-
-<programlisting>
-iceage  convert  /usr/bin/convert   INSTALLED   INTEL32::LINUX  null
-</programlisting>
-
-<para>Note the different between this line and the existing convert
-definition in the file. All fields are the same except for the first
-column, which is the site column. We say 'iceage' here instead of
-localhost. This matches up with the site name 'iceage' defined in
-the new site catalog, and identifies the name of the remote site.
-</para>
-
-<para>Now use the same swift command as before, but with an
-extra parameter to tell swift to use a different sites file:
-</para>
-
-<programlisting>
-$ swift -sites.file ~benc/workflow/sites-iceage.xml flipper.swift
-</programlisting>
-
-<para>
-If this runs successfully, you should now have an output.jpeg file with
-a flipped picture in it. It should look exactly the same as when run locally.
-You have used the same program to produce the same output, but used a remote
-resource to do it.
-</para>
-
-</sect1>
-
-
-
-
-<sect1><title>A bigger workflow example</title>
-
-<para>Now we'll make a bigger workflow that will execute a total of
-15 jobs.
-</para>
-
-<para>
-As before, here is the entire program listing. Afterwards, we will go through
-the listing step by step.
-</para>
-
-<programlisting>
-type voxelfile;
-type headerfile;
-
-type pgmfile;
-type imagefile;
-
-type warpfile;
-
-type volume {
-    voxelfile img;
-    headerfile hdr;
-};
-
-(warpfile warp) align_warp(volume reference, volume subject, string model, string quick) {
-    app {
-        align_warp @reference.img @subject.img @warp "-m " model quick;
-    }
-}
-
-(volume sliced) reslice(warpfile warp, volume subject)
-{
-    app {
-        reslice @warp @sliced.img;
-    }
-}
-
-(volume sliced) align_and_reslice(volume reference, volume subject, string model, string quick) {
-    warpfile warp;
-    warp = align_warp(reference, subject, model, quick);
-    sliced = reslice(warp, subject);
-}
-
-
-(volume atlas) softmean(volume sliced[])
-{
-    app {
-        softmean @atlas.img "y" "null" @filenames(sliced[*].img);
-    }
-}
-
-
-(pgmfile outslice) slicer(volume input, string axis, string position)
-{
-    app {
-        slicer @input.img axis position @outslice;
-    }
-}
-
-(imagefile outimg) convert(pgmfile inpgm)
-{
-    app {
-        convert @inpgm @outimg;
-    }
-}
-
-(imagefile outimg) slice_to_jpeg(volume inp, string axis, string position)
-{
-    pgmfile outslice;
-    outslice = slicer(inp, axis, position);
-    outimg = convert(outslice);
-}
-
-(volume s[]) all_align_reslices(volume reference, volume subjects[]) {
-
-    foreach subject, i in subjects {
-        s[i] = align_and_reslice(reference, subjects[i], "12", "-q");
-    }
-
-}
-
-
-volume references[] <csv_mapper;file="reference.csv">;
-volume reference=references[0];
-
-volume subjects[] <csv_mapper;file="subjects.csv">;
-
-volume slices[] <csv_mapper;file="slices.csv">;
-slices = all_align_reslices(reference, subjects);
-
-volume atlas <simple_mapper;prefix="atlas">;
-atlas = softmean(slices);
-
-string directions[] = [ "x", "y", "z"];
-
-foreach direction in directions {
-    imagefile o <single_file_mapper;file=@strcat("atlas-",direction,".jpeg")>;
-    string option = @strcat("-",direction);
-    o = slice_to_jpeg(atlas, option, ".5");
-}
-
-</programlisting>
-
-<para>
-As before, there are some other changes to make to the environment
-in addition to running the program. These are discussed inline below.
-</para>
-
-<programlisting>
-type voxelfile;
-type headerfile;
-
-type pgmfile;
-type imagefile;
-
-type warpfile;
-</programlisting>
-
-<para>
-We define some simple types, like in the previous programs. We add another
-one for a new kind of intermediate file - a warpfile, which will be used by
-some new applications that we will use.
-</para>
-
-<programlisting>
-
-type volume {
-    voxelfile img;
-    headerfile hdr;
-};
-</programlisting>
-
-<para>
-The same complex type as before, a volume consisting of a pair of files -
-the voxel data and the header data.
-</para>
-
-<programlisting>
-
-(warpfile warp) align_warp(volume reference, volume subject, string model, string quick) {
-    app {
-        align_warp @reference.img @subject.img @warp "-m " model quick;
-    }
-}
-
-</programlisting>
-
-<para>
-Now we define a new transformation called align_warp. We haven't used
-align_warp before, so we need to add in a transformation catalog entry
-for it. We will be adding some other transformations too, so add those
-entries now too.
-</para>
-
-<para>
-ACTION: Edit the transformation catalog (like in the third
-exercise). Add entries for the following transformations. The table
-below lists the path. You must write the appropriate syntax for
-transformation catalog entries yourself, using the existing two
-entries as examples.
-</para>
-
-<para>Here is the list of transformations to add:</para>
-<programlisting>
-align_warp (the path is /afs/pdc.kth.se/home/b/benc/workflow/app/AIR/bin/align_warp)
-reslice   (the path is /afs/pdc.kth.se/home/b/benc/workflow/app/AIR/bin/reslice)
-softmean  (the path is /afs/pdc.kth.se/home/b/benc/workflow/app/softmean-swift)
-</programlisting>
-
-<para>
-These programs come from several software packages:
-the AIR (Automated Image Registration) suite
-http://bishopw.loni.ucla.edu/AIR5/index.html and
-FSL http://www.fmrib.ox.ac.uk/fsl/fsl/intro.html
-</para>
-
-<para>Make sure you have added three entries to the transformation
-catalog, listing the above three transformations and the appropriate
-path</para>
-
-<programlisting>
-
-(volume sliced) reslice(warpfile warp, volume subject)
-{
-    app {
-        reslice @warp @sliced.img;
-    }
-}
-
-</programlisting>
-
-<para>
-This adds another transformation, called reslice. We already added the
-transformation catalog entry for this, in the previous step.
-</para>
-
-<programlisting>
-
-
-(volume sliced) align_and_reslice(volume reference, volume subject, string model, string quick) {
-    warpfile warp;
-    warp = align_warp(reference, subject, model, quick);
-    sliced = reslice(warp, subject);
-}
-
-</programlisting>
-
-<para>
-This is a new kind of procedure, called a <firstterm>compound
-procedure</firstterm>. A compound procedure does not call applications
-directly. Instead it calls other procedures, connecting them together
-with variables. This procedure above calls align_warp and then reslice.
-</para>
-
-<programlisting>
-
-(volume atlas) softmean(volume sliced[])
-{
-    app {
-        softmean @atlas.img "y" "null" @filenames(sliced[*].img);
-    }
-}
-
-</programlisting>
-
-<para>
-Yet another application procedure. Again, we added the transformation catalog
-entry for this above. Note the special @filenames ... [*] syntax.
-</para>
-
-<programlisting>
-
-(pgmfile outslice) slicer(volume input, string axis, string position)
-{
-    app {
-        slicer @input.img axis position @outslice;
-    }
-}
-
-(imagefile outimg) convert(pgmfile inpgm)
-{
-    app {
-        convert @inpgm @outimg;
-    }
-}
-
-</programlisting>
-
-<para>These are two more straightforward application transforms</para>
-
-<programlisting>
-
-(imagefile outimg) slice_to_jpeg(volume inp, string axis, string position)
-{
-    pgmfile outslice;
-    outslice = slicer(inp, axis, position);
-    outimg = convert(outslice);
-}
-
-(volume s[]) all_align_reslices(volume reference, volume subjects[]) {
-
-    foreach subject, i in subjects {
-        s[i] = align_and_reslice(reference, subjects[i], "12", "-q");
-    }
-
-}
-
-</programlisting>
-
-<para>
-slice_to_jpeg and all_align_reslices are compound procedures. They call
-other procedures, like align_and_reslice did above. Note how 
-all_align_reslices uses foreach to run the same procedure on each element
-in an array.
-</para>
-
-<programlisting>
-volume references[] <csv_mapper;file="reference.csv">;
-volume reference=references[0];
-</programlisting>
-
-<para>The same mapping we used in the previous exercise to map a pair
-of reference files into the reference variable using a complex type.
-</para>
-
-<programlisting>
-volume subjects[] <csv_mapper;file="subjects.csv">;
-</programlisting>
-
-<para>
-Now we map a number of subject images into the subjects array.
-</para>
-
-<para>ACTION REQUIRED: Copy the subjects data files into your
-working directory, like this:
-</para>
-
-<programlisting>
-$ cp ~benc/workflow/data/anatomy* Raw/
-$ ls Raw/
-anatomy1.hdr  anatomy2.hdr  anatomy3.hdr  anatomy4.hdr  reference.hdr
-anatomy1.img  anatomy2.img  anatomy3.img  anatomy4.img  reference.img
-</programlisting>
-
-<para>ACTION REQUIRED: Create a text file called subjects.csv using your
-favourite text editor. List all four image pairs. Here is an example
-of how to start:
-</para>
-
-<programlisting>
-img,hdr
-Raw/anatomy1.img,Raw/anatomy1.hdr
-Raw/anatomy2.img,Raw/anatomy2.hdr
-</programlisting>
-
-<para>
-Put the above text in students.csv and also add two new lines to list
-anatomy data sets 3 and 4.
-</para>
-
-<programlisting>
-volume slices[] <csv_mapper;file="slices.csv">;
-</programlisting>
-
-<para>
-Slices will hold intermediate volumes that have been processed by some
-of our tools. We need to map to tell swift where to put these intermediate
-files. Because we need the filenames to correspond, we cannot use
-anonymous mapping for these intermediate values like in the second
-exercise. We need to populate slices.csv, but we do not need to find
-the corresponding files. Swift will create these files as part of
-executing the workflow.
-</para>
-
-<para>ACTION REQUIRED: Create a text file called slices.csv with your
-text editor, and put the following content into it:
-</para>
-
-<programlisting>
-img,hdr
-slice1.img,slice1.hdr
-slice2.img,slice2.hdr
-slice3.img,slice3.hdr
-slice4.img,slice4.hdr
-</programlisting>
-
-<programlisting>
-slices = all_align_reslices(reference, subjects);
-
-volume atlas <simple_mapper;prefix="atlas">;
-atlas = softmean(slices);
-
-string directions[] = [ "x", "y", "z"];
-
-foreach direction in directions {
-    imagefile o <single_file_mapper;file=@strcat("atlas-",direction,".jpeg")>;
-    string option = @strcat("-",direction);
-    o = slice_to_jpeg(atlas, option, ".5");
-}
-</programlisting>
-
-<para>
-Finally we make a number of actual procedure invocations (and declare a few
-more variables). The ultimate output of our workflow comes from the o
-variable inside the foreach look. This is mapped to a different filename
-in each iteration, similar to exercise two.
-</para>
-
-<para>
-ACTION:
-Put the workflow into a file called final.swift, and 
-then run the workflow with the swift command. Then open
-the resulting files - atlas-x.jpeg, atlas-y.jpeg and atlas-z.jpeg.
-</para>
-<para>
-You should see three brain images, along three different axes.
-</para>
-
-</sect1>
-
-<para>The End</para>
-</article>
-

Deleted: trunk/docs/tutorial.xml
===================================================================
--- trunk/docs/tutorial.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/tutorial.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,1317 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<article>
-    <articleinfo>
-        <title>A Swift Tutorial</title>
-        <abstract>
-            <formalpara>
-                <para>
-This is an introductory tutorial on the use of Swift and its
-programming language SwiftScript.
-                </para>
-                <para>
-$LastChangedRevision$
-                </para>
-            </formalpara>
-        </abstract>
-    </articleinfo>
-
-<section> <title>Introduction</title>
-    <para>
-This tutorial is intended to introduce new users to the basics of Swift.
-It is structured as a series of small exercise/examples which you can
-try for yourself as you read along. After the first 'hello world'
-example, there are two tracks - the language track (which introduces
-features of the SwiftScript language) and the runtime track (which
-introduces features of the Swift runtime environment, such as
-running jobs on different sites)
-    </para>
-    <para>
-For information on getting an installation of Swift running, consult the
-<ulink url="http://www.ci.uchicago.edu/swift/guides/quickstartguide.php">Swift Quickstart Guide</ulink>,
-and return to this document when you have
-successfully run the test SwiftScript program mentioned there.
-    </para>
-    <para>
-There is also a
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php">Swift User's Guide</ulink>
-which contains more detailed reference
-material on topics covered in this manual. 
-
-All of the programs included in this tutorial can be found in your Swift distribution in the examples/swift directory.
-    </para>
-</section>
-
-<section> <title>Hello World</title>
-    <para>
-The first example program,
-<filename>first.swift</filename>,
-outputs a hello world message into
-a file called <filename>hello.txt</filename>.
-    </para>
-
-<programlisting>
-type messagefile;
-
-app (messagefile t) greeting () {
-        echo "Hello, world!" stdout=@filename(t);
-}
-
-messagefile outfile <"hello.txt">;
-
-outfile = greeting();
-</programlisting>
-
-<para>We can run this program as follows:</para>
-
-<screen>
-$ <userinput>cd examples/swift/</userinput>
-$ <userinput>swift first.swift</userinput>
-Swift svn swift-r3334 (swift modified locally) cog-r2752
-
-RunID: 20100526-1925-8zjupq1b
-Progress:
-Final status:  Finished successfully:1
-$ <userinput>cat hello.txt</userinput>
-Hello, world!
-</screen>
-
-<para>The basic structure of this program is a
-<firstterm>type definition</firstterm>,
-an <firstterm>application procedure definition</firstterm>,
-a <firstterm>variable definition</firstterm> and
-then a <firstterm>call</firstterm> to the procedure:</para>
-
-
-<programlisting>
-type messagefile;
-</programlisting>
-
-<para>
-First we define a new type, called messagefile.
-In this example, we will use this messagefile
-type as the type for our output message.
-</para>
-
-<sidebar><para>All data in SwiftScript must be typed,
-whether it is stored in memory or on disk. This example defines a
-very simple type. Later on we will see more complex type examples.
-</para>
-</sidebar>
-
-
-<programlisting>
-app (messagefile t) greeting() { 
-    echo "Hello, world!" stdout=@filename(t);
-}
-</programlisting>
-
-<para>
-Next we define a procedure called greeting. This procedure will write out
-the "hello world" message to a file.
-</para>
-
-<para>
-To achieve this, it executes the unix utility 'echo' with a parameter
-"Hello, world!" and directs the standard output into the output file.
-</para>
-
-<para>
-The actual file to use is specified by the
-<firstterm>return parameter</firstterm>, t.
-</para>
-
-<programlisting>
-messagefile outfile <"hello.txt">;
-</programlisting>
-
-<para>
-Here we define a variable called outfile. The type of this variable is
-messagefile, and we specify that the contents of this variable will
-be stored on disk in a file called hello.txt
-</para>
-
-<programlisting>
-outfile = greeting();
-</programlisting>
-
-<para>
-Now we call the greeting procedure, with its output going to the
-outfile variable and therefore to hello.txt on disk.
-</para>
-
-<para>Over the following exercises, we'll extend this simple
-hello world program to demonstrate various features of Swift.</para>
-
-</section>
-
-<section><title>Language features</title>
-
-<section> <title>Parameters</title>
-
-<para>
-Procedures can have parameters. Input parameters specify inputs to the
-procedure and output parameters specify outputs. Our helloworld greeting
-procedure already uses an output parameter, t, which indicates where the
-greeting output will go. In this section, we will add an input parameter
-to the greeting function.</para>
-<para>The code changes from <filename>first.swift</filename>
-are highlighted below.</para>
-
-<programlisting>
-type messagefile;
-
-(messagefile t) greeting (string s) {
-    app {
-        echo s stdout=@filename(t);
-    }
-}
-
-messagefile outfile <"hello2.txt">;
-
-outfile = greeting("hello world");
-</programlisting>
-
-<para>We have modified the signature of the greeting procedure to indicate
-that it takes a single parameter, s, of type 'string'.</para>
-<para>We have modified the invocation of the 'echo' utility so that it
-takes the value of s as a parameter, instead of the string literal
-"Hello, world!".</para>
-<para>We have modified the output file definition to point to a different
-file on disk.</para>
-<para>We have modified the invocation of greeting so that a greeting
-string is supplied.</para>
-
-<para>The code for this section can be found in 
-<filename>parameter.swift</filename>. It can be
-invoked using the swift command, with output appearing in 
-<filename>hello2.txt</filename>:</para>
-
-<screen>
-$ <userinput>swift parameter.swift</userinput>
-</screen>
-
-<para>Now that we can choose our greeting text, we can call the same
-procedure with different parameters to generate several output files with
-different greetings. The code is in manyparam.swift and can be run as before
-using the swift command.
-</para>
-
-<programlisting>
-type messagefile;
-
-(messagefile t) greeting (string s) {
-    app {
-        echo s stdout=@filename(t);
-    }
-}
-
-messagefile english <"english.txt">;
-messagefile french <"francais.txt">;
-english = greeting("hello");
-french = greeting("bonjour");
-
-messagefile japanese <"nihongo.txt">;
-japanese = greeting("konnichiwa");
-</programlisting>
-
-<para>Note that we can intermingle definitions of variables with invocations
-of procedures.</para>
-<para>When this program has been run, there should be three new files in the
-working directory (english.txt, francais.txt and nihongo.txt) each containing
-a greeting in a different language.</para>
-
-<para>In addition to specifying parameters positionally, parameters can
-be named, and if desired a default value can be specified - see 
-<link linkend="tutorial.named-parameters">Named and optional
-parameters</link>.</para>
-</section>
-<section><title>Adding another application</title>
-<para>
-Now we'll define a new application procedure. The procedure we define
-will capitalise all the words in the input file.
-</para>
-
-<para>To do this, we'll use the unix 'tr' (translate) utility.
-
-Here is an example of using <command>tr</command> on the unix
-command line, not using Swift:</para>
-
-<screen>
-$ <userinput>echo hello | tr '[a-z]' '[A-Z]'</userinput>
-HELLO
-</screen>
-
-<para>
-There are several steps:
-<itemizedlist>
-<listitem><para>transformation catalog</para></listitem>
-<listitem><para>application block</para></listitem>
-</itemizedlist>
-</para>
-
-<para>First we need to modify the
-<firstterm>transformation catalog</firstterm> to define
-a logical transformation for the tc utility.  The transformation
-catalog can be found in <filename>etc/tc.data</filename>.
-There are already several entries specifying where programs can
-be found. Add a new line to the file, specifying where 
-<command>tr</command> can be found
-(usually in <filename>/usr/bin/tr</filename>
-but it may differ on your system), like this:
-</para>
-
-<programlisting>
-localhost       tr      /usr/bin/tr     INSTALLED       INTEL32::LINUX  null
-</programlisting>
-
-<para>For now, ignore all of the fields except the second and the third.
-The second field 'tr' specifies a logical application name and the
-third specifies the location of the application executable.
-</para>
-
-<para>Now that we have defined where to find <command>tr</command>, we can
-use it in SwiftScript.
-</para>
-
-<para>
-We can define a new procedure, <command>capitalise</command> which calls
-tr.
-<programlisting>
-(messagefile o) capitalise(messagefile i) {   
-    app {
-        tr "[a-z]" "[A-Z]" stdin=@filename(i) stdout=@filename(o);
-    }
-}
-</programlisting>
-</para>
-
-
-<para>
-We can call capitalise like this:
-<programlisting>
-messagefile final <"capitals.txt">;
-final = capitalise(hellofile);
-</programlisting>
-</para>
-
-<para>
-So a full program based on the first exercise might look like this:
-
-<programlisting>
-type messagefile {} 
-
-(messagefile t) greeting (string s) {   
-    app {
-        echo s stdout=@filename(t);
-    }
-}
-
-(messagefile o) capitalise(messagefile i) {   
-    app {
-        tr "[a-z]" "[A-Z]" stdin=@filename(i) stdout=@filename(o);
-    }
-}
-
-messagefile hellofile <"hello.txt">;
-messagefile final <"capitals.txt">;
-
-hellofile = greeting("hello from Swift");
-final = capitalise(hellofile);
-</programlisting>
-</para>
-
-<para>We can use the swift command to run this:
-
-<screen>
-$ <userinput>swift second_procedure.swift</userinput>
-[...]
-$ <userinput>cat capitals.txt</userinput>
-HELLO FROM SWIFT
-</screen>
-</para>
-
-</section>
-
-<section><title>Anonymous files</title>
-
-<para>In the previous section, the file 
-<filename>greeting.txt</filename> is used only to
-store an intermediate result. We don't really care about which name is used
-for the file, and we can let Swift choose the name.</para>
-
-<para>To do that, omit the mapping entirely when declaring outfile:
-<programlisting>
-messagefile outfile;
-</programlisting>
-</para>
-
-<para>
-Swift will choose a filename, which in the present version will be
-in a subdirectory called <filename>_concurrent</filename>.
-</para>
-
-</section>
-
-<section><title>Datatypes</title>
-
-<para>
-All data in variables and files has a data type.  So
-far, we've seen two types:
-
-<itemizedlist>
-<listitem>string - this is a built-in type for storing strings of text in
-memory, much like in other programming languages</listitem>
-<listitem>messagefile - this is a user-defined type used to mark
-files as containing messages</listitem>
-</itemizedlist>
-</para>
-
-<para>
-SwiftScript has the additional built-in types:
-<firstterm>boolean</firstterm>, <firstterm>integer</firstterm> and
-<firstterm>float</firstterm> that function much like their counterparts
-in other programming languages.
-</para>
-
-<para>It is also possible to create user defined types with more
-structure, for example:
-<programlisting>
-type details {
-    string name;
-    int pies;
-}
-</programlisting>
-Each element of the structured type can be accessed using a . like this:
-<programlisting>
-person.name = "john";
-</programlisting>
-</para>
-
-<para>
-The following complete program, types.swift, outputs a greeting using a user-defined
-structure type to hold parameters for the message:
-
-<programlisting>
-type messagefile {} 
-
-type details {
-    string name;
-    int pies;
-}
-
-(messagefile t) greeting (details d) {   
-    app {
-        echo "Hello. Your name is" d.name "and you have eaten" d.pies "pies." stdout=@filename(t);
-    }
-}
-
-details person;
-
-person.name = "John";
-person.pies = 3;
-
-messagefile outfile <"q15.txt>";
-
-outfile = greeting(person);
-</programlisting>
-</para>
-
-<para>
-Structured types can be comprised of marker types for files. See the later
-section on mappers for more information about this.
-</para>
-
-</section>
-
-<section><title>Arrays</title>
-<para>We can define arrays using the [] suffix in a variable declaration:
-<programlisting>
-messagefile m[];
-</programlisting>
-This program, q5.swift, will declare an array of message files.
-</para>
-
-<programlisting>
-type messagefile;
-
-(messagefile t) greeting (string s[]) {
-    app {
-        echo s[0] s[1] s[2] stdout=@filename(t);
-    }
-}
-
-messagefile outfile <"q5out.txt">;
-
-string words[] = ["how","are","you"];
-
-outfile = greeting(words);
-
-</programlisting>
-
-<para>Observe that the type of the parameter to greeting is now an
-array of strings, 'string s[]', instead of a single string, 'string s',
-that elements of the array can be referenced numerically, for example
-s[0], and that the array is initialised using an array literal,
-["how","are","you"].</para>
-
-</section>
-
-<section><title>Mappers</title>
-
-<para>A significant difference between SwiftScript and other languages is
-that data can be referred to on disk through variables in a very
-similar fashion to data in memory.  For example, in the above
-examples we have seen a variable definition like this:</para>
-
-<programlisting>
-messagefile outfile <"q13greeting.txt">;
-</programlisting>
-
-<para>This means that 'outfile' is a dataset variable, which is
-mapped to a file on disk called 'g13greeting.txt'. This variable
-can be assigned to using = in a similar fashion to an in-memory
-variable.  We can say that 'outfile' is mapped onto the disk file
-'q13greeting.txt' by a <firstterm>mapper</firstterm>.
-</para>
-
-<para>There are various ways of mapping in SwiftScript. Two forms have already
-been seen in this tutorial. Later exercises will introduce more forms.
-</para>
-
-<para>The two forms of mapping seen so far are:</para>
-
-<itemizedlist>
-<para>
-simple named mapping - the name of the file that a variable is
-mapped to is explictly listed. Like this:
-<programlisting>
-messagefile outfile <"greeting.txt">;
-</programlisting>
-
-This is useful when you want to explicitly name input and output
-files for your program. For example, 'outfile' in exercise HELLOWORLD.
-
-</para>
-
-<para>
-anonymous mapping - no name is specified in the source code.
-A name is automatically generated for the file. This is useful
-for intermediate files that are only referenced through SwiftScript,
-such as 'outfile' in exercise ANONYMOUSFILE. A variable declaration
-is mapped anonymously by ommitting any mapper definition, like this:
-
-<programlisting>
-messagefile outfile;
-</programlisting>
-
-</para>
-
-</itemizedlist>
-
-<para>Later exercises will introduce other ways of mapping from
-disk files to SwiftScript variables.</para>
-
-<para>TODO: introduce @v syntax.</para>
-
-<section><title>The regexp mapper</title>
-<para>In this exercise, we introduce the <firstterm>regexp mapper</firstterm>.
-This mapper transforms a string expression using a regular expression,
-and uses the result of that transformation as the filename to map.</para>
-<para>
-<filename>regexp.swift</filename> demonstrates the use of this by placing output into a file that
-is based on the name of the input file: our input file is mapped
-to the inputfile variable using the simple named mapper, and then
-we use the regular expression mapper to map the output file. Then we
-use the countwords() procedure to count the works in the input file and 
-store the result in the output file. In order for the countwords() procedure 
-to work correctly, add the wc utility (usually found in /usr/bin/wc) to tc.data.
-</para>
-
-<para>
-The important bit of <filename>regexp.swift</filename> is:
-<programlisting>
-messagefile inputfile <"q16.txt">;
-
-countfile c <regexp_mapper;
-             source=@inputfile,
-             match="(.*)txt",
-             transform="\\1count"
-            >;
-</programlisting>
-</para>
-</section>
-
-<section><title>fixed_array_mapper</title>
-<para>
-The <firstterm>fixed array mapper</firstterm> maps a list of files into
-an array - each element of the array is mapped into one file in the
-specified directory. See <filename>fixedarray.swift</filename>.
-</para>
-<programlisting>
-string inputNames = "one.txt two.txt three.txt";
-string outputNames = "one.count two.count three.count";
-
-messagefile inputfiles[] <fixed_array_mapper; files=inputNames>;
-countfile outputfiles[] <fixed_array_mapper; files=outputNames>;
-
-outputfiles[0] = countwords(inputfiles[0]);
-outputfiles[1] = countwords(inputfiles[1]);
-outputfiles[2] = countwords(inputfiles[2]);
-</programlisting>
-</section>
-
-</section>
-
-<section><title>foreach</title>
-<para>SwiftScript provides a control structure, foreach, to operate
-on each element of an array.</para>
-<para>In this example, we will run the previous word counting example
-over each file in an array without having to explicitly list the
-array elements. The source code for this example is in 
-<filename>foreach.swift</filename>. The three input files
-(<filename>one.txt</filename>, <filename>two.txt</filename> and
-<filename>three.txt</filename>) are supplied. After
-you have run the workflow, you should see that there are three output
-files (<filename>one.count</filename>, <filename>two.count</filename>
-and <filename>three.count</filename>) each containing the word
-count for the corresponding input file. We combine the use of the
-fixed_array_mapper and the regexp_mapper.</para>
-<programlisting>
-string inputNames = "one.txt two.txt three.txt";
-
-messagefile inputfiles[] <fixed_array_mapper; files=inputNames>;
-
-
-foreach f in inputfiles {
-  countfile c <regexp_mapper;
-               source=@f,
-               match="(.*)txt",
-               transform="\\1count">;
-  c = countwords(f);
-}
-</programlisting>
-
-</section>
-
-<section><title>If</title>
-<para>
-Decisions can be made using 'if', like this:
-</para>
-
-<programlisting>
-if(morning) {
-  outfile = greeting("good morning");
-} else {
-  outfile = greeting("good afternoon");
-}
-</programlisting>
-
-<para>
- <filename>if.swift</filename> contains a simple example of 
-this. Compile and run <filename>if.swift</filename> and see that it
-outputs 'good morning'. Changing the 'morning'
-variable from true to false will cause the program to output 'good
-afternoon'.
-</para>
-</section>
-
-<section id="tutorial.iterate"><title>Sequential iteration</title>
-<para>A development version of Swift after 0.2 (revision 1230) introduces
-a sequential iteration construct.</para>
-<para>
-The following example demonstrates a simple application: each step of the
-iteration is a string representation of the byte count of the previous
-step's output, with iteration terminating when the byte count reaches zero.
-</para>
-
-<para>
-Here's the program:
-</para>
-<programlisting>
-
-type counterfile;
-
-(counterfile t) echo(string m) { 
-  app {
-    echo m stdout=@filename(t);
-  }
-}
-
-(counterfile t) countstep(counterfile i) {
-  app {
-    wcl @filename(i) @filename(t);
-  }
-}
-
-counterfile a[]  <simple_mapper;prefix="foldout">;
-
-a[0] = echo("793578934574893");
-
-iterate v {
-  a[v+1] = countstep(a[v]);
- trace("extract int value ", at extractint(a[v+1]));
-} until (@extractint(a[v+1]) <= 1);
-
-</programlisting>
-
-<para>
-<command>echo</command> is the standard unix echo.</para>
-
-<para> <command>wcl</command>
-is our application code - it counts the number of bytes in the one file
-and writes that count out to another, like this:
-</para>
-<screen>
-$ <userinput>cat ../wcl</userinput>
-#!/bin/bash
-echo -n $(wc -c < $1) > $2
-
-$ <userinput>echo -n hello > a</userinput>
-$ <userinput>wcl a b</userinput>
-$ <userinput>cat b</userinput>
-5
-</screen>
-
-<para>Install the above wcl script somewhere and add a transformation catalog
-entry for it. Then run the example program like this:
-</para>
-
-<screen>
-$ <userinput>swift iterate.swift</userinput>
-Swift svn swift-r3334 cog-r2752
-
-RunID: 20100526-2259-gtlz8zf4
-Progress:
-SwiftScript trace: extract int value , 16.0
-SwiftScript trace: extract int value , 2.0
-SwiftScript trace: extract int value , 1.0
-Final status:  Finished successfully:4
-
-$ <userinput>ls foldout*</userinput>
-foldout0000  foldout0001  foldout0002  foldout0003
-</screen>
-
-</section>
-
-</section>
-<section><title>Runtime features</title>
-
-<section><title>Visualising the workflow as a graph</title>
-
-<para>
-When running a workflow, its possible to generate a provenance graph at the
-same time:
-<screen>
-$ <userinput>swift -pgraph graph.dot first.swift</userinput>
-$ <userinput>dot -ograph.png -Tpng graph.dot</userinput>
-</screen>
-graph.png can then be viewed using your favourite image viewer.
-Dot is a utility for drawing directed graphs. It is a part of the graphViz package and must be installed separately. More information about graphViz can be found at http://www.graphviz.org.
-</para>
-</section>
-
-<section><title>Running on a remote site</title>
-
-<para>As configured by default, all jobs are run locally. In the previous
-examples, we've invoked 'echo' and 'tr' executables from our
-SwiftScript program. These have been run on the local system
-(the same computer on which you ran 'swift'). We can also make our
-computations run on a remote resource.</para>
-
-<para>WARNING: This example is necessarily more vague than previous examples,
-because its requires access to remote resources. You should ensure that you
-can submit a job using the globus-job-run (or globusrun-ws?) command(s).
-</para>
-
-<para>We do not need to modify any SwiftScript code to run on another resource.
-Instead, we must modify another catalog, the 'site catalog'. This catalog
-provides details of the location that applications will be run, with the
-default settings referring to the local machine. We will modify it to
-refer to a remote resource - the UC Teraport cluster. If you are not a
-UC Teraport user, you should use details of a different resource that
-you do have access to.
-</para>
-
-<para>The site catalog is located in etc/sites.xml and is a relatively
-straightforward XML format file. We must modify each of the following
-three settings: gridftp (which indicates how and where data can be
-transferred to the remote resource), jobmanager (which indicates how
-applications can be run on the remote resource) and workdirectory
-(which indicates where working storage can be found on the
-remote resource).</para>
-</section>
-
-<section><title>Writing a mapper</title>
-
-<para>
-This section will introduce writing a custom mapper so that Swift is able
-to access data files laid out in application-specific ways.
-</para>
-<para>
-An application-specific mapper must take the form of a Java class
-that implements the 
-<ulink url="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html">Mapper</ulink> interface.
-</para>
-<para>
-Usually you don't need to implement this interface directly, because
-Swift provides a number of more concrete classes with some functionality
-already implemented.
-</para>
-<para>The hierarchy of helper classes is:</para>
-
-<para>
-<ulink url="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html">Mapper</ulink>
-- This is the abstract interface for mappers in Swift. You
-must implement methods to provide access to mapper properties, to map
-from a SwiftScript dataset path (such as foo[1].bar) to a file name,
-to check whether a file exists. None of the default Swift mappers
-implement this interface directly - instead they use one of the
-following helper classes.</para>
-
-<para>
-<ulink url="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/AbstractMapper.html">AbstractMapper</ulink>
-- This provides helper methods to manage mapper 
-properties and to handle existance checking. Examples of mappers which
-use this class are:
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.array_mapper">array_mapper</ulink>,
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.csv_mapper">csv_mapper</ulink>,
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.fixed_array_mapper">fixed_array_mapper</ulink>,
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.regexp_mapper">regexp_mapper</ulink> and
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.single_file_mapper">single file mapper</ulink>
-.</para>
-
-<para>
-<ulink url="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/file/AbstractFileMapper.html">AbstractFileMapper</ulink>
- - This provides a helper class for mappers
-which select files based on selecting files from a directory listing.
-It is necessary to write some helper methods that are different from
-the above mapper methods. Examples of mappers which use this class
-are:
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.simple_mapper">simple_mapper</ulink>,
-<ulink url="http://www.ci.uchicago.edu/swift/guides/userguide.php#mapper.filesys_mapper">filesys_mapper</ulink> and the (undocumented)
-StructuredRegularExpressionMapper.
-</para>
-
-<para>
-In general, to write a mapper, choose either the AbstractMapper or the
-AbstractFileMapper and extend those. If your mapper will generally
-select the files it returns based on a directory listing and will
-convert paths to filenames using some regular conversion (for example, in
-the way that simple_mapper maps files in a directory that match a
-particular pattern), then you should probably use the AbstractFileMapper.
-If your mapper will produce a list of files in some other way (for example,
-in the way that csv_mapper maps based on filenames given in a CSV
-file rather than looking at which files are in a directory), then you
-should probably use the AbstractMapper.
-</para>
-
-<section><title>Writing a very basic mapper</title>
-<para>In this section, we will write a very basic (almost useless)
-mapper that will map a SwiftScript dataset into a hardcoded file
-called <filename>myfile.txt</filename>, like this:
-
-</para>
-<screen>
-
-    Swift variable                            Filename
-
-      var   <----------------------------->    myfile.txt
-
-</screen>
-
-<para>
-We should be able to use the mapper we write in a SwiftScript program
-like this:
-</para>
-
-<programlisting>
-type file;
-
-file f <my_first_mapper>;
-</programlisting>
-
-<para>
-First we must choose a base class - AbstractMapper or AbstractFileMapper.
-We aren't going to use a directory listing to decide on our mapping
-- we are getting the mapping from some other source (in fact, it
-will be hard coded). So we will use AbstractMapper.
-</para>
-
-<para>
-So now onto the source code. We must define a subclass of
-<ulink href="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/AbstractMapper.html">AbstractMapper</ulink> and implement several
-mapper methods: isStatic, existing, and map. These methods are documented
-in the javadoc for the
-<ulink href="http://www.ci.uchicago.edu/swift/javadoc/vdsk/org/griphyn/vdl/mapping/Mapper.html">Mapper</ulink>
-interface.
-</para>
-
-<para>
-Here is the code implementing this mapper. Put this in your source 
-<filename>vdsk</filename> directory, make a directory
-<filename>src/tutorial/</filename> and put this
-file in <filename>src/tutorial/MyFirstMapper.java</filename>
-</para>
-<programlisting>
-package tutorial;
-
-import java.util.Arrays;
-import java.util.Collection;
-import java.util.Collections;
-
-import org.griphyn.vdl.mapping.AbsFile;
-import org.griphyn.vdl.mapping.AbstractMapper;
-import org.griphyn.vdl.mapping.Path;
-import org.griphyn.vdl.mapping.PhysicalFormat;
-
-public class MyFirstMapper extends AbstractMapper {
-
-  AbsFile myfile = new AbsFile("myfile.txt");
-
-  public boolean isStatic() {
-    return false;
-  }
-
-  public Collection existing() {
-    if (myfile.exists())
-      return Arrays.asList(new Path[] {Path.EMPTY_PATH});
-    else
-      return Collections.EMPTY_LIST;
-  }
-
-  public PhysicalFormat map(Path p) {
-    if(p.equals(Path.EMPTY_PATH))
-      return myfile;
-    else
-      return null;
-  }
-}
-
-</programlisting>
-
-<para>Now we need to inform the Swift engine about the existence of this
-mapper. We do that by editing the MapperFactory class definition, in
-<filename>src/org/griphyn/vdl/mapping/MapperFactory.java</filename> and
-adding a registerMapper call alongside the existing registerMapper calls,
-like this:
-</para>
-<programlisting>
-registerMapper("my_first_mapper", tutorial.MyFirstMapper.class);
-</programlisting>
-
-<para>The first parameter is the name of the mapper that will be used
-in SwiftScript program. The second parameter is the new Mapper class
-that we just wrote.
-</para>
-
-<para>
-Now rebuild Swift using the 'ant redist' target.
-</para>
-
-<para>
-This new Swift build will be aware of your new mapper. We can test it out
-with a hello world program:
-</para>
-<programlisting>
-type messagefile;
-
-(messagefile t) greeting() {
-    app {
-        echo "hello" stdout=@filename(t);
-    }
-}
-
-messagefile outfile <my_first_mapper>;
-
-outfile = greeting();
-</programlisting>
-<para>Run this program, and hopefully you will find the "hello" string has
-been output into the hard coded output file <filename>myfile.txt</filename>:
-</para>
-<screen>
-$ <userinput>cat myfile.txt</userinput>
-hello
-</screen>
-
-<para>So that's a first very simple mapper implemented. Compare the
-source code to the single_file_mapper in
-<ulink url="http://www.ci.uchicago.edu/trac/swift/browser/trunk/src/org/griphyn/vdl/mapping/file/SingleFileMapper.java">SingleFileMapper.java</ulink>. There is
-not much more code to the single_file_mapper - mostly code to deal
-with the file parameter.
-</para>
-
-</section>
-
-<!--
-<section><title>a mapper implementing the AbstractMapper class</title>
-<para>
-In this section, we'll develop a mapper that maps SwiftScript structures
-to a set of files, with a basename specified as a mapper parameter and
-an extension corresponding to the SwiftScript structure name.
-</para>
-<para>
-To illustrate, consider the following code fragment.
-</para>
-
-<programlisting>
-struct volume {
-    file img;
-    file hdr;
-}
-
-volume v <tutorial_extension_mapper; basename="subject1">;
-</programlisting>
-
-<para>
-Our mapper will map the volume variable v into two files, called
-"subject1.img" and "subject1.hdr" corresponding to the two elements in
-the structure.
-</para>
-
-<para>
-We can implement the mapper in several steps. First we must write a Java
-class implementing the mapper. Then we must tell Swift about this new mapper.
-</para>
-
-<para>
-Here is the Java source code for our mapper. Read it and then we will go
-through the various pieces.
-</para>
-
-<programlisting>
-
-package org.griphyn.vdl.mapping.file;
-
-import java.io.File;
-
-import java.util.ArrayList;
-import java.util.Collection;
-
-import org.griphyn.vdl.mapping.AbstractMapper;
-import org.griphyn.vdl.mapping.MappingParam;
-import org.griphyn.vdl.mapping.Path;
-
-public class TutorialExtensionMapper extends AbstractMapper
-{
-
-    /** defines the single parameter to this mapper */
-    public static final MappingParam PARAM_BASE = new MappingParam("base");
-
-    public String map(Path p) {
-        String basename = PARAM_BASE.getStringValue(this);
-        String filename = basename + "." + p;
-        System.err.println("this is the tutorial mapper, mapping path "+p+" to filename "+filename);
-        return filename;
-    }
-
-    public boolean exists(Path p) {
-        String fn = map(p);
-        File f = new File(fn);
-        return f.exists();
-    }
-
-    public Collection existing() {
-        return new ArrayList();
-    }
-
-
-    public boolean isStatic() {
-        return true;
-    }
-}
-
-
-</programlisting>
-
-<para>
-Our mapper class, TutorialExtensionMapper, must implement the Mapper interface.
-We do this by extending the AbstractMapper class, which provides
-implementations for some of the Mapper methods
-whilst leaving others to be implemented by the specific
-mapper.
-</para>
-
-<para>
-There is helper code to handle most tasks related to mapper parameters.
-We need to create a MapperParam object for our single parameter, 'base'.
-If we wanted more than one parameter, we would create a MapperParam
-object for each parameter. We can then use the mapper parameter object
-later on in the code to retrieve the value of the parameter as specified
-in the SwiftScript mapper description.
-</para>
-
-<para>
-The core mapping functionality appears in the map method. This method will
-be called by the Swift engine whenever it needs to translate a SwiftScript
-variable into a filename. It is passed a Path object, which represents
-the path from the top level to the part that we want to filename for.
-So when swift wants the filename for v.img in the above
-usage example, it will ask the mapper for v to map the path "img" to a
-filename. In our example, the mapping consists of taking the 'base'
-parameter and combining it with the path to give a filename.
-</para>
-
-<para>
-A few other methods need to be implemented.
-</para>
-
-<para> exists() takes a Path
-and returns true if the file backing that path exists. It is implemented
-in a straightforward fashion.
-</para>
-
-<para>existing() returns a Collection of Paths, listing the paths that
-already exist. In the tutorial, we cheat and return an empty collection.
-</para>
-
-<para>isStatic() identifies whether mappings from this mapper are
-fixed at creation time, or can change over time. For most simple
-mappers, it should return true. There is more discussion in the
-Mapper class javadoc.
-</para>
-
-<para>
-We place the above java source file into the Swift source tree
-in a file called src/org/griphyn/vdl/mapping/file/TutorialExtensionMapper.java
-</para>
-
-<para>Now we need to inform the Swift engine about the existence of this
-mapper. We do that by editing the MapperFactory class definition, in
-src/org/griphyn/vdl/mapping/MapperFactory.java and adding a
-registerMapper call alongside the existing registerMapper calls, like this:
-</para>
-<programlisting>
-registerMapper("tutorial_extension_mapper",
-org.griphyn.vdl.mapping.file.TutorialExtensionMapper.class);
-</programlisting>
-
-<para>The first parameter is the name of the mapper that will be used
-in SwiftScript mapper declarations. The second parameter is the class
-that we defined above that implements the mapping behaviour.
-</para>
-
-<para>
-With the mapper source file in place, and MapperFactory updated, we can
-recompile Swift (see instructions elsewhere on the Swift web site) and
-then write SwiftScript programs which use our new mapper.
-</para>
-
-</section>
--->
-</section>
-
-<section> <title>Starting and restarting</title>
-
-<para>
-Now we're going to try out the restart capabilities of Swift. We will make
-a workflow that will deliberately fail, and then we will fix the problem
-so that Swift can continue with the workflow.
-</para>
-
-<para>
-First we have the program in working form, restart.swift.
-</para>
-
-<programlisting>
-type file;
-
-(file f) touch() {
-  app {
-    touch @f;
-  }
-}
-
-(file f) processL(file inp) {
-  app {
-    echo "processL" stdout=@f;
-  }
-}
-
-(file f) processR(file inp) {
-  app {
-    broken "process" stdout=@f;
-  }
-}
-
-(file f) join(file left, file right) {
-  app { 
-    echo "join" @left @right stdout=@f;
-  } 
-}
-
-file f = touch();
-
-file g = processL(f);
-file h = processR(f);
-
-file i = join(g,h);
-</programlisting>
-
-<para>
-We must define some transformation catalog entries:
-</para>
-
-<programlisting>
-localhost	touch	/usr/bin/touch	INSTALLED	INTEL32::LINUX	null
-localhost	broken	/bin/true	INSTALLED	INTEL32::LINUX	null
-</programlisting>
-
-<para>
-Now we can run the program:
-</para>
-
-<programlisting>
-$ swift restart.swift  
-Swift 0.9 swift-r2860 cog-r2388
-
-RunID: 20100526-1119-3kgzzi15
-Progress:
-Final status:  Finished successfully:4
-</programlisting>
-
-<para>
-Four jobs run - touch, echo, broken and a final echo. (note that broken
-isn't actually broken yet).
-</para>
-
-<para>
-Now we will break the 'broken' job and see what happens. Replace the
-definition in tc.data for 'broken' with this:
-</para>
-<programlisting>
-localhost    broken     /bin/false   INSTALLED       INTEL32::LINUX  null
-</programlisting>
-
-<para>Now when we run the workflow, the broken task fails:</para>
-
-<programlisting>
-$ swift restart.swift 
-
-Swift 0.9 swift-r2860 cog-r2388
-
-RunID: 20100526-1121-tssdcljg
-Progress:
-Progress:  Stage in:1  Finished successfully:2
-Execution failed:
-	Exception in broken:
-Arguments: [process]
-Host: localhost
-Directory: restart-20100526-1121-tssdcljg/jobs/1/broken-1i6ufisj
-stderr.txt: 
-stdout.txt: 
-
-</programlisting>
-
-<para>From the output we can see that touch and the first echo completed,
-but then broken failed and so swift did not attempt to execute the
-final echo.</para>
-
-<para>There will be a restart log with the same name as the RunID:
-</para>
-
-<programlisting>
-$ ls *20100526-1121-tssdcljg*rlog
-restart-20100526-1121-tssdcljg.0.rlog
-</programlisting>
-
-<para>This restart log contains enough information for swift to know
-which parts of the workflow were executed successfully.</para>
-
-<para>We can try to rerun it immediately, like this:</para>
-
-<programlisting>
-$ swift -resume restart-20100526-1121-tssdcljg.0.rlog restart.swift 
-
-Swift 0.9 swift-r2860 cog-r2388
-
-RunID: 20100526-1125-7yx0zi6d
-Progress:
-Execution failed:
-	Exception in broken:
-Arguments: [process]
-Host: localhost
-Directory: restart-20100526-1125-7yx0zi6d/jobs/m/broken-msn1gisj
-stderr.txt: 
-stdout.txt: 
-
-----
-
-Caused by:
-	Exit code 1
-
-</programlisting>
-
-<para>
-Swift tried to resume the workflow by executing 'broken' again. It did not
-try to run the touch or first echo jobs, because the restart log says that
-they do not need to be executed again.
-</para>
-
-<para>Broken failed again, leaving the original restart log in place.</para>
-
-<para>Now we will fix the problem with 'broken' by restoring the original
-tc.data line that works.</para>
-
-<para>Remove the existing 'broken' line and replace it with the successful
-tc.data entry above:
-</para>
-
-<programlisting>
-localhost       broken          /bin/true   INSTALLED       INTEL32::LINUX  null
-</programlisting>
-
-<para>
-Now run again:
-</para>
-
-<programlisting>
-$ swift -resume restart-20100526-1121-tssdcljg.0.rlog restart.swift
-
-wift 0.9 swift-r2860 cog-r2388
-
-RunID: 20100526-1128-a2gfuxhg
-Progress:
-Final status:  Initializing:2  Finished successfully:2
-</programlisting>
-
-<para>Swift tries to run 'broken' again. This time it works, and so
-Swift continues on to execute the final piece of the workflow as if
-nothing had ever gone wrong.
-</para>
-
-</section>
-</section>
-
-<section><title>bits</title>
-<section id="tutorial.named-parameters"><title>Named and optional parameters</title>
-<para>In addition to specifying parameters positionally, parameters can
-be named, and if desired a default value can be specified:
-
-<programlisting>
-(messagefile t) greeting (string s="hello") {
-    app {
-        echo s stdout=@filename(t);
-    }
-}
-</programlisting>
-
-When we invoke the procedure, we can specify values for the parameters
-by name. The following code can be found in q21.swift.
-
-<programlisting>
-french = greeting(s="bonjour");
-</programlisting>
-
-or we can let the default value apply:
-
-<programlisting>
-english = greeting();
-</programlisting>
-
-</para>
-</section>
-</section>
-</article>
-

Deleted: trunk/docs/type-hierarchy.fig
===================================================================
--- trunk/docs/type-hierarchy.fig	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/type-hierarchy.fig	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,29 +0,0 @@
-#FIG 3.2  Produced by xfig version 3.2.5
-Landscape
-Center
-Inches
-Letter  
-100.00
-Single
--2
-1200 2
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 4950 1350 4050 1800
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 5325 1350 6225 1800
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 3525 2100 3150 2850
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 3975 2100 4275 2775
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 6525 2175 6225 2775
-2 1 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 2
-	 6900 2175 7125 2775
-4 0 0 50 -1 0 12 0.0000 4 195 960 4575 1200 Swift types\001
-4 0 0 50 -1 0 12 0.0000 4 195 1275 2475 3075 Primitive types\001
-4 0 0 50 -1 0 12 0.0000 4 195 615 2475 3330 (eg int)\001
-4 0 0 50 -1 0 12 0.0000 4 195 1170 3975 3075 Marker types\001
-4 0 0 50 -1 0 12 0.0000 4 195 615 5925 3000 Arrays\001
-4 0 0 50 -1 0 12 0.0000 4 150 900 6900 3000 Structures\001
-4 0 0 50 -1 0 12 0.0000 4 195 1440 6225 2100 Composite types\001
-4 0 0 50 -1 0 12 0.0000 4 195 1155 3300 2025 Atomic types\001

Deleted: trunk/docs/type-hierarchy.png
===================================================================
(Binary files differ)

Added: trunk/docs/userguide/swift-site-model.png
===================================================================
(Binary files differ)


Property changes on: trunk/docs/userguide/swift-site-model.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: trunk/docs/userguide/type-hierarchy.png
===================================================================
(Binary files differ)


Property changes on: trunk/docs/userguide/type-hierarchy.png
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: trunk/docs/userguide/userguide.html
===================================================================
--- trunk/docs/userguide/userguide.html	                        (rev 0)
+++ trunk/docs/userguide/userguide.html	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,4351 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
+<head>
+<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
+<meta name="generator" content="AsciiDoc 8.6.4" />
+<title>Swift User Guide</title>
+<style type="text/css">
+/* Sans-serif font. */
+h1, h2, h3, h4, h5, h6,
+div.title, caption.title,
+thead, p.table.header,
+div#toctitle,
+span#author, span#revnumber, span#revdate, span#revremark,
+div#footer {
+  font-family: Arial,Helvetica,sans-serif;
+}
+
+/* Serif font. */
+div.sectionbody {
+  font-family: Georgia,"Times New Roman",Times,serif;
+}
+
+/* Monospace font. */
+tt {
+  font-size: inherit;
+}
+
+body {
+  margin: 1em 5% 1em 5%;
+}
+
+a {
+  color: blue;
+  text-decoration: underline;
+}
+a:visited {
+  color: fuchsia;
+}
+
+em {
+  font-style: italic;
+  color: navy;
+}
+
+strong {
+  font-weight: bold;
+  color: #083194;
+}
+
+tt {
+  font-size: inherit;
+  color: navy;
+}
+
+h1, h2, h3, h4, h5, h6 {
+  color: #527bbd;
+  margin-top: 1.2em;
+  margin-bottom: 0.5em;
+  line-height: 1.3;
+}
+
+h1, h2, h3 {
+  border-bottom: 2px solid silver;
+}
+h2 {
+  padding-top: 0.5em;
+}
+h3 {
+  float: left;
+}
+h3 + * {
+  clear: left;
+}
+
+div.sectionbody {
+  margin-left: 0;
+}
+
+hr {
+  border: 1px solid silver;
+}
+
+p {
+  margin-top: 0.5em;
+  margin-bottom: 0.5em;
+}
+
+ul, ol, li > p {
+  margin-top: 0;
+}
+ul > li     { color: #aaa; }
+ul > li > * { color: black; }
+
+pre {
+  padding: 0;
+  margin: 0;
+}
+
+span#author {
+  color: #527bbd;
+  font-weight: bold;
+  font-size: 1.1em;
+}
+span#email {
+}
+span#revnumber, span#revdate, span#revremark {
+}
+
+div#footer {
+  font-size: small;
+  border-top: 2px solid silver;
+  padding-top: 0.5em;
+  margin-top: 4.0em;
+}
+div#footer-text {
+  float: left;
+  padding-bottom: 0.5em;
+}
+div#footer-badges {
+  float: right;
+  padding-bottom: 0.5em;
+}
+
+div#preamble {
+  margin-top: 1.5em;
+  margin-bottom: 1.5em;
+}
+div.tableblock, div.imageblock, div.exampleblock, div.verseblock,
+div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock,
+div.admonitionblock {
+  margin-top: 1.0em;
+  margin-bottom: 1.5em;
+}
+div.admonitionblock {
+  margin-top: 2.0em;
+  margin-bottom: 2.0em;
+  margin-right: 10%;
+  color: #606060;
+}
+
+div.content { /* Block element content. */
+  padding: 0;
+}
+
+/* Block element titles. */
+div.title, caption.title {
+  color: #527bbd;
+  font-weight: bold;
+  text-align: left;
+  margin-top: 1.0em;
+  margin-bottom: 0.5em;
+}
+div.title + * {
+  margin-top: 0;
+}
+
+td div.title:first-child {
+  margin-top: 0.0em;
+}
+div.content div.title:first-child {
+  margin-top: 0.0em;
+}
+div.content + div.title {
+  margin-top: 0.0em;
+}
+
+div.sidebarblock > div.content {
+  background: #ffffee;
+  border: 1px solid #dddddd;
+  border-left: 4px solid #f0f0f0;
+  padding: 0.5em;
+}
+
+div.listingblock > div.content {
+  border: 1px solid #dddddd;
+  border-left: 5px solid #f0f0f0;
+  background: #f8f8f8;
+  padding: 0.5em;
+}
+
+div.quoteblock, div.verseblock {
+  padding-left: 1.0em;
+  margin-left: 1.0em;
+  margin-right: 10%;
+  border-left: 5px solid #f0f0f0;
+  color: #777777;
+}
+
+div.quoteblock > div.attribution {
+  padding-top: 0.5em;
+  text-align: right;
+}
+
+div.verseblock > pre.content {
+  font-family: inherit;
+  font-size: inherit;
+}
+div.verseblock > div.attribution {
+  padding-top: 0.75em;
+  text-align: left;
+}
+/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
+div.verseblock + div.attribution {
+  text-align: left;
+}
+
+div.admonitionblock .icon {
+  vertical-align: top;
+  font-size: 1.1em;
+  font-weight: bold;
+  text-decoration: underline;
+  color: #527bbd;
+  padding-right: 0.5em;
+}
+div.admonitionblock td.content {
+  padding-left: 0.5em;
+  border-left: 3px solid #dddddd;
+}
+
+div.exampleblock > div.content {
+  border-left: 3px solid #dddddd;
+  padding-left: 0.5em;
+}
+
+div.imageblock div.content { padding-left: 0; }
+span.image img { border-style: none; }
+a.image:visited { color: white; }
+
+dl {
+  margin-top: 0.8em;
+  margin-bottom: 0.8em;
+}
+dt {
+  margin-top: 0.5em;
+  margin-bottom: 0;
+  font-style: normal;
+  color: navy;
+}
+dd > *:first-child {
+  margin-top: 0.1em;
+}
+
+ul, ol {
+    list-style-position: outside;
+}
+ol.arabic {
+  list-style-type: decimal;
+}
+ol.loweralpha {
+  list-style-type: lower-alpha;
+}
+ol.upperalpha {
+  list-style-type: upper-alpha;
+}
+ol.lowerroman {
+  list-style-type: lower-roman;
+}
+ol.upperroman {
+  list-style-type: upper-roman;
+}
+
+div.compact ul, div.compact ol,
+div.compact p, div.compact p,
+div.compact div, div.compact div {
+  margin-top: 0.1em;
+  margin-bottom: 0.1em;
+}
+
+div.tableblock > table {
+  border: 3px solid #527bbd;
+}
+thead, p.table.header {
+  font-weight: bold;
+  color: #527bbd;
+}
+tfoot {
+  font-weight: bold;
+}
+td > div.verse {
+  white-space: pre;
+}
+p.table {
+  margin-top: 0;
+}
+/* Because the table frame attribute is overriden by CSS in most browsers. */
+div.tableblock > table[frame="void"] {
+  border-style: none;
+}
+div.tableblock > table[frame="hsides"] {
+  border-left-style: none;
+  border-right-style: none;
+}
+div.tableblock > table[frame="vsides"] {
+  border-top-style: none;
+  border-bottom-style: none;
+}
+
+
+div.hdlist {
+  margin-top: 0.8em;
+  margin-bottom: 0.8em;
+}
+div.hdlist tr {
+  padding-bottom: 15px;
+}
+dt.hdlist1.strong, td.hdlist1.strong {
+  font-weight: bold;
+}
+td.hdlist1 {
+  vertical-align: top;
+  font-style: normal;
+  padding-right: 0.8em;
+  color: navy;
+}
+td.hdlist2 {
+  vertical-align: top;
+}
+div.hdlist.compact tr {
+  margin: 0;
+  padding-bottom: 0;
+}
+
+.comment {
+  background: yellow;
+}
+
+.footnote, .footnoteref {
+  font-size: 0.8em;
+}
+
+span.footnote, span.footnoteref {
+  vertical-align: super;
+}
+
+#footnotes {
+  margin: 20px 0 20px 0;
+  padding: 7px 0 0 0;
+}
+
+#footnotes div.footnote {
+  margin: 0 0 5px 0;
+}
+
+#footnotes hr {
+  border: none;
+  border-top: 1px solid silver;
+  height: 1px;
+  text-align: left;
+  margin-left: 0;
+  width: 20%;
+  min-width: 100px;
+}
+
+div.colist td {
+  padding-right: 0.5em;
+  padding-bottom: 0.3em;
+  vertical-align: top;
+}
+div.colist td img {
+  margin-top: 0.3em;
+}
+
+ at media print {
+  div#footer-badges { display: none; }
+}
+
+div#toc {
+  margin-bottom: 2.5em;
+}
+
+div#toctitle {
+  color: #527bbd;
+  font-size: 1.1em;
+  font-weight: bold;
+  margin-top: 1.0em;
+  margin-bottom: 0.1em;
+}
+
+div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
+  margin-top: 0;
+  margin-bottom: 0;
+}
+div.toclevel2 {
+  margin-left: 2em;
+  font-size: 0.9em;
+}
+div.toclevel3 {
+  margin-left: 4em;
+  font-size: 0.9em;
+}
+div.toclevel4 {
+  margin-left: 6em;
+  font-size: 0.9em;
+}
+
+span.aqua { color: aqua; }
+span.black { color: black; }
+span.blue { color: blue; }
+span.fuchsia { color: fuchsia; }
+span.gray { color: gray; }
+span.green { color: green; }
+span.lime { color: lime; }
+span.maroon { color: maroon; }
+span.navy { color: navy; }
+span.olive { color: olive; }
+span.purple { color: purple; }
+span.red { color: red; }
+span.silver { color: silver; }
+span.teal { color: teal; }
+span.white { color: white; }
+span.yellow { color: yellow; }
+
+span.aqua-background { background: aqua; }
+span.black-background { background: black; }
+span.blue-background { background: blue; }
+span.fuchsia-background { background: fuchsia; }
+span.gray-background { background: gray; }
+span.green-background { background: green; }
+span.lime-background { background: lime; }
+span.maroon-background { background: maroon; }
+span.navy-background { background: navy; }
+span.olive-background { background: olive; }
+span.purple-background { background: purple; }
+span.red-background { background: red; }
+span.silver-background { background: silver; }
+span.teal-background { background: teal; }
+span.white-background { background: white; }
+span.yellow-background { background: yellow; }
+
+span.big { font-size: 2em; }
+span.small { font-size: 0.6em; }
+</style>
+<script type="text/javascript">
+/*<![CDATA[*/
+window.onload = function(){asciidoc.footnotes(); asciidoc.toc(2);}
+var asciidoc = {  // Namespace.
+
+/////////////////////////////////////////////////////////////////////
+// Table Of Contents generator
+/////////////////////////////////////////////////////////////////////
+
+/* Author: Mihai Bazon, September 2002
+ * http://students.infoiasi.ro/~mishoo
+ *
+ * Table Of Content generator
+ * Version: 0.4
+ *
+ * Feel free to use this script under the terms of the GNU General Public
+ * License, as long as you do not remove or alter this notice.
+ */
+
+ /* modified by Troy D. Hanson, September 2006. License: GPL */
+ /* modified by Stuart Rackham, 2006, 2009. License: GPL */
+
+// toclevels = 1..4.
+toc: function (toclevels) {
+
+  function getText(el) {
+    var text = "";
+    for (var i = el.firstChild; i != null; i = i.nextSibling) {
+      if (i.nodeType == 3 /* Node.TEXT_NODE */) // IE doesn't speak constants.
+        text += i.data;
+      else if (i.firstChild != null)
+        text += getText(i);
+    }
+    return text;
+  }
+
+  function TocEntry(el, text, toclevel) {
+    this.element = el;
+    this.text = text;
+    this.toclevel = toclevel;
+  }
+
+  function tocEntries(el, toclevels) {
+    var result = new Array;
+    var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');
+    // Function that scans the DOM tree for header elements (the DOM2
+    // nodeIterator API would be a better technique but not supported by all
+    // browsers).
+    var iterate = function (el) {
+      for (var i = el.firstChild; i != null; i = i.nextSibling) {
+        if (i.nodeType == 1 /* Node.ELEMENT_NODE */) {
+          var mo = re.exec(i.tagName);
+          if (mo && (i.getAttribute("class") || i.getAttribute("className")) != "float") {
+            result[result.length] = new TocEntry(i, getText(i), mo[1]-1);
+          }
+          iterate(i);
+        }
+      }
+    }
+    iterate(el);
+    return result;
+  }
+
+  var toc = document.getElementById("toc");
+  var entries = tocEntries(document.getElementById("content"), toclevels);
+  for (var i = 0; i < entries.length; ++i) {
+    var entry = entries[i];
+    if (entry.element.id == "")
+      entry.element.id = "_toc_" + i;
+    var a = document.createElement("a");
+    a.href = "#" + entry.element.id;
+    a.appendChild(document.createTextNode(entry.text));
+    var div = document.createElement("div");
+    div.appendChild(a);
+    div.className = "toclevel" + entry.toclevel;
+    toc.appendChild(div);
+  }
+  if (entries.length == 0)
+    toc.parentNode.removeChild(toc);
+},
+
+
+/////////////////////////////////////////////////////////////////////
+// Footnotes generator
+/////////////////////////////////////////////////////////////////////
+
+/* Based on footnote generation code from:
+ * http://www.brandspankingnew.net/archive/2005/07/format_footnote.html
+ */
+
+footnotes: function () {
+  var cont = document.getElementById("content");
+  var noteholder = document.getElementById("footnotes");
+  var spans = cont.getElementsByTagName("span");
+  var refs = {};
+  var n = 0;
+  for (i=0; i<spans.length; i++) {
+    if (spans[i].className == "footnote") {
+      n++;
+      // Use [\s\S] in place of . so multi-line matches work.
+      // Because JavaScript has no s (dotall) regex flag.
+      note = spans[i].innerHTML.match(/\s*\[([\s\S]*)]\s*/)[1];
+      noteholder.innerHTML +=
+        "<div class='footnote' id='_footnote_" + n + "'>" +
+        "<a href='#_footnoteref_" + n + "' title='Return to text'>" +
+        n + "</a>. " + note + "</div>";
+      spans[i].innerHTML =
+        "[<a id='_footnoteref_" + n + "' href='#_footnote_" + n +
+        "' title='View footnote' class='footnote'>" + n + "</a>]";
+      var id =spans[i].getAttribute("id");
+      if (id != null) refs["#"+id] = n;
+    }
+  }
+  if (n == 0)
+    noteholder.parentNode.removeChild(noteholder);
+  else {
+    // Process footnoterefs.
+    for (i=0; i<spans.length; i++) {
+      if (spans[i].className == "footnoteref") {
+        var href = spans[i].getElementsByTagName("a")[0].getAttribute("href");
+        href = href.match(/#.*/)[0];  // Because IE return full URL.
+        n = refs[href];
+        spans[i].innerHTML =
+          "[<a href='#_footnote_" + n +
+          "' title='View footnote' class='footnote'>" + n + "</a>]";
+      }
+    }
+  }
+}
+
+}
+/*]]>*/
+</script>
+</head>
+<body class="article">
+<div id="header">
+<h1>Swift User Guide</h1>
+<div id="toc">
+  <div id="toctitle">Table of Contents</div>
+  <noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
+</div>
+</div>
+<div id="content">
+<div class="sect1">
+<h2 id="_overview">1. Overview</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This manual provides reference material for Swift: the SwiftScript
+language and the Swift runtime system. For introductory material,
+consult the Swift tutorial
+<a href="http://www.ci.uchicago.edu/swift/guides/tutorial.php">http://www.ci.uchicago.edu/swift/guides/tutorial.php</a>.</p></div>
+<div class="paragraph"><p>Swift is a data-oriented coarse grained scripting language that supports
+dataset typing and mapping, dataset iteration, conditional branching,
+and procedural composition.</p></div>
+<div class="paragraph"><p>Swift programs (or workflows) are written in a language called
+SwiftScript.</p></div>
+<div class="paragraph"><p>SwiftScript programs are dataflow oriented - they are primarily
+concerned with processing (possibly large) collections of data files, by
+invoking programs to do that processing. Swift handles execution of such
+programs on remote sites by choosing sites, handling the staging of
+input and output files to and from the chosen sites and remote execution
+of program code.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_the_swiftscript_language">2. The SwiftScript Language</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_language_basics">2.1. Language basics</h3>
+<div class="paragraph"><p>A Swift script describes data, application components, invocations of
+applications components, and the inter-relations (data flow) between
+those invocations.</p></div>
+<div class="paragraph"><p>Data is represented in a script by strongly-typed single-assignment
+variables. The syntax superficially resembles C and Java. For example,
+{ and } characters are used to enclose blocks of statements.</p></div>
+<div class="paragraph"><p>Types in Swift can be atomic or composite. An atomic type can be
+either a primitive type or a mapped type. Swift provides a fixed set
+of primitive types, such as integer and string. A mapped type
+indicates that the actual data does not reside in CPU addressable memory
+(as it would in conventional programming languages), but in POSIX-like
+files. Composite types are further subdivided into structures and
+arrays. Structures are similar in most respects to structure types in
+other languages. Arrays use numeric indices, but are sparse. They can
+contain elements of any type, including other array types, but all
+elements in an array must be of the same type. We often refer to
+instances of composites of mapped types as datasets.</p></div>
+<div class="paragraph"><p><span class="image">
+<img src="type-hierarchy.png" alt="type-hierarchy.png" />
+</span></p></div>
+<div class="paragraph"><p>Mapped type and composite type variable declarations can be annotated
+with a mapping descriptor indicating the file(s) that make up that
+dataset. For example, the following line declares a variable named
+photo with type image. It additionally declares that the data for
+this variable is stored in a single file named shane.jpeg.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">image</span> photo <span style="color: #990000"><</span><span style="color: #FF0000">"shane.jpeg"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>Component programs of scripts are declared in an app declaration, with
+the description of the command line syntax for that program and a list
+of input and output data. An app block describes a functional/dataflow
+style interface to imperative components.</p></div>
+<div class="paragraph"><p>For example, the following example lists a procedure which makes use of
+the ImageMagick <a href="http://www.imagemagick.org/">http://www.imagemagick.org/</a> convert command to
+rotate a supplied image by a specified angle:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">image</span> output<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">rotate</span></span><span style="color: #990000">(</span><span style="color: #008080">image</span> input<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+  convert <span style="color: #FF0000">"-rotate"</span> angle @input @output<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>A procedure is invoked using the familiar syntax:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>rotated <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">rotate</span></span><span style="color: #990000">(</span>photo<span style="color: #990000">,</span> <span style="color: #993399">180</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>While this looks like an assignment, the actual unix level execution
+consists of invoking the command line specified in the app
+declaration, with variables on the left of the assignment bound to the
+output parameters, and variables to the right of the procedure
+invocation passed as inputs.</p></div>
+<div class="paragraph"><p>The examples above have used the type image without any definition of
+that type. We can declare it as a marker type which has no structure
+exposed to SwiftScript:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> image<span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>This does not indicate that the data is unstructured; but it indicates
+that the structure of the data is not exposed to SwiftScript. Instead,
+SwiftScript will treat variables of this type as individual opaque files.</p></div>
+<div class="paragraph"><p>With mechanisms to declare types, map variables to data files, and
+declare and invoke procedures, we can build a complete (albeit simple)
+script:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> image<span style="color: #990000">;</span>
+<span style="color: #008080">image</span> photo <span style="color: #990000"><</span><span style="color: #FF0000">"shane.jpeg"</span><span style="color: #990000">>;</span>
+<span style="color: #008080">image</span> rotated <span style="color: #990000"><</span><span style="color: #FF0000">"rotated.jpeg"</span><span style="color: #990000">>;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">image</span> output<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">rotate</span></span><span style="color: #990000">(</span><span style="color: #008080">image</span> input<span style="color: #990000">,</span> <span style="color: #009900">int</span> angle<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+   convert <span style="color: #FF0000">"-rotate"</span> angle @input @output<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+rotated <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">rotate</span></span><span style="color: #990000">(</span>photo<span style="color: #990000">,</span> <span style="color: #993399">180</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>This script can be invoked from the command line:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>  $ ls *.jpeg
+  shane.jpeg
+  $ swift example.swift
+  ...
+  $ ls *.jpeg
+  shane.jpeg rotated.jpeg</tt></pre></div></div>
+<div class="paragraph"><p>This executes a single convert command, hiding from the user features
+such as remote multisite execution and fault tolerance that will be
+discussed in a later section.</p></div>
+<div class="paragraph"><div class="title">Figure 1. shane.jpeg</div><p><span class="image">
+<img src="userguide-shane.jpeg" alt="userguide-shane.jpeg" />
+</span></p></div>
+<div class="paragraph"><div class="title">Figure 2. rotated.jpeg</div><p><span class="image">
+<img src="userguide-rotated.jpeg" alt="userguide-rotated.jpeg" />
+</span></p></div>
+</div>
+<div class="sect2">
+<h3 id="_arrays_and_parallel_execution">2.2. Arrays and Parallel Execution</h3>
+<div class="paragraph"><p>Arrays of values can be declared using the [] suffix. An array be
+mapped to a collection of files, one element per file, by using a
+different form of mapping expression. For example, the filesys_mapper
+maps all files matching a particular unix glob pattern into an array:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">file</span> frames<span style="color: #990000">[]</span> <span style="color: #990000"><</span>filesys_mapper<span style="color: #990000">;</span> pattern<span style="color: #990000">=</span><span style="color: #FF0000">"*.jpeg"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>The foreach construct can be used to apply the same block of code to
+each element of an array:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">foreach</span> f<span style="color: #990000">,</span>ix <span style="color: #008080">in</span> frames <span style="color: #FF0000">{</span>
+  output<span style="color: #990000">[</span>ix<span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">rotate</span></span><span style="color: #990000">(</span>frames<span style="color: #990000">,</span> <span style="color: #993399">180</span><span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>Sequential iteration can be expressed using the iterate construct:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>step<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">initialCondition</span></span><span style="color: #990000">();</span>
+<span style="color: #008080">iterate</span> ix <span style="color: #FF0000">{</span>
+  step<span style="color: #990000">[</span>ix<span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">simulate</span></span><span style="color: #990000">(</span>step<span style="color: #990000">[</span>ix<span style="color: #990000">-</span><span style="color: #993399">1</span><span style="color: #990000">]);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>This fragment will initialise the 0-th element of the step array to
+some initial condition, and then repeatedly run the simulate
+procedure, using each execution’s outputs as input to the next step.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_ordering_of_execution">2.3. Ordering of execution</h3>
+<div class="paragraph"><p>Non-array variables are single-assignment, which means that they must
+be assigned to exactly one value during execution. A procedure or
+expression will be executed when all of its input parameters have been
+assigned values. As a result of such execution, more variables may
+become assigned, possibly allowing further parts of the script to execute.</p></div>
+<div class="paragraph"><p>In this way, scripts are implicitly parallel. Aside from serialisation
+implied by these dataflow dependencies, execution of component programs
+can proceed in parallel.</p></div>
+<div class="paragraph"><p>In this fragment, execution of procedures p and q can happen in
+parallel:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>y<span style="color: #990000">=</span><span style="font-weight: bold"><span style="color: #000000">p</span></span><span style="color: #990000">(</span>x<span style="color: #990000">);</span>
+z<span style="color: #990000">=</span><span style="font-weight: bold"><span style="color: #000000">q</span></span><span style="color: #990000">(</span>x<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>while in this fragment, execution is serialised by the variable y,
+with procedure p executing before q.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>y<span style="color: #990000">=</span><span style="font-weight: bold"><span style="color: #000000">p</span></span><span style="color: #990000">(</span>x<span style="color: #990000">);</span>
+z<span style="color: #990000">=</span><span style="font-weight: bold"><span style="color: #000000">q</span></span><span style="color: #990000">(</span>y<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>Arrays in SwiftScript are more monotonic - a generalisation of being
+assignment. Knowledge about the content of an array increases during
+execution, but cannot otherwise change. Each element of the array is
+itself single assignment or monotonic (depending on its type). During a
+run all values for an array are eventually known, and that array is
+regarded as closed.</p></div>
+<div class="paragraph"><p>Statements which deal with the array as a whole will often wait for the
+array to be closed before executing (thus, a closed array is the
+equivalent of a non-array type being assigned). However, a foreach
+statement will apply its body to elements of an array as they become
+known. It will not wait until the array is closed.</p></div>
+<div class="paragraph"><p>Consider this script:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">file</span> a<span style="color: #990000">[];</span>
+<span style="color: #008080">file</span> b<span style="color: #990000">[];</span>
+<span style="color: #008080">foreach</span> v<span style="color: #990000">,</span>i <span style="color: #008080">in</span> a <span style="color: #FF0000">{</span>
+  b<span style="color: #990000">[</span>i<span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">p</span></span><span style="color: #990000">(</span>v<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+a<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">r</span></span><span style="color: #990000">();</span>
+a<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">s</span></span><span style="color: #990000">();</span></tt></pre></div></div>
+<div class="paragraph"><p>Initially, the foreach statement will have nothing to execute, as the
+array a has not been assigned any values. The procedures r and s
+will execute. As soon as either of them is finished, the corresponding
+invocation of procedure p will occur. After both r and s have
+completed, the array a will be closed since no other statements in the
+script make an assignment to a.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_compound_procedures">2.4. Compound procedures</h3>
+<div class="paragraph"><p>As with many other programming languages, procedures consisting of
+SwiftScript code can be defined. These differ from the previously
+mentioned procedures declared with the app keyword, as they invoke
+other SwiftScript procedures rather than a component program.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #990000">(</span><span style="color: #008080">file</span> output<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">process</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> input<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+  <span style="color: #008080">file</span> intermediate<span style="color: #990000">;</span>
+  intermediate <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">first</span></span><span style="color: #990000">(</span>input<span style="color: #990000">);</span>
+  output <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">second</span></span><span style="color: #990000">(</span>intermediate<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">file</span> x <span style="color: #990000"><</span><span style="color: #FF0000">"x.txt"</span><span style="color: #990000">>;</span>
+<span style="color: #008080">file</span> y <span style="color: #990000"><</span><span style="color: #FF0000">"y.txt"</span><span style="color: #990000">>;</span>
+y <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">process</span></span><span style="color: #990000">(</span>x<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>This will invoke two procedures, with an intermediate data file named
+anonymously connecting the first and second procedures.</p></div>
+<div class="paragraph"><p>Ordering of execution is generally determined by execution of app
+procedures, not by any containing compound procedures. In this code block:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #990000">(</span><span style="color: #008080">file</span> a<span style="color: #990000">,</span> <span style="color: #008080">file</span> b<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">A</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+  a <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">A1</span></span><span style="color: #990000">();</span>
+  b <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">A2</span></span><span style="color: #990000">();</span>
+<span style="color: #FF0000">}</span>
+<span style="color: #008080">file</span> x<span style="color: #990000">,</span> y<span style="color: #990000">,</span> s<span style="color: #990000">,</span> t<span style="color: #990000">;</span>
+<span style="color: #990000">(</span>x<span style="color: #990000">,</span>y<span style="color: #990000">)</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">A</span></span><span style="color: #990000">();</span>
+s <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">S</span></span><span style="color: #990000">(</span>x<span style="color: #990000">);</span>
+t <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">S</span></span><span style="color: #990000">(</span>y<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>then a valid execution order is: A1 S(x) A2 S(y). The compound
+procedure A does not have to have fully completed for its return
+values to be used by subsequent statements.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_more_about_types">2.5. More about types</h3>
+<div class="paragraph"><p>Each variable and procedure parameter in SwiftScript is strongly typed.
+Types are used to structure data, to aid in debugging and checking
+program correctness and to influence how Swift interacts with data.</p></div>
+<div class="paragraph"><p>The image type declared in previous examples is a marker type.
+Marker types indicate that data for a variable is stored in a single
+file with no further structure exposed at the SwiftScript level.</p></div>
+<div class="paragraph"><p>Arrays have been mentioned above, in the arrays section. A code block
+may be applied to each element of an array using foreach; or
+individual elements may be references using [] notation.</p></div>
+<div class="paragraph"><p>There are a number of primitive types:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">type    </th>
+<th align="left" valign="top">contains</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">int</p></td>
+<td align="left" valign="top"><p class="table">integers</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">string</p></td>
+<td align="left" valign="top"><p class="table">strings of text</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">float</p></td>
+<td align="left" valign="top"><p class="table">floating point numbers, that behave the same as Java doubles</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">boolean</p></td>
+<td align="left" valign="top"><p class="table">true/false</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Complex types may be defined using the type keyword:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> headerfile<span style="color: #990000">;</span>
+<span style="color: #008080">type</span> voxelfile<span style="color: #990000">;</span>
+<span style="color: #008080">type</span> volume <span style="color: #FF0000">{</span>
+  <span style="color: #008080">headerfile</span> h<span style="color: #990000">;</span>
+  <span style="color: #008080">voxelfile</span> v<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>Members of a complex type can be accessed using the . operator:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">volume</span> brain<span style="color: #990000">;</span>
+o <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">p</span></span><span style="color: #990000">(</span>brain<span style="color: #990000">.</span>h<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>Sometimes data may be stored in a form that does not fit with Swift’s
+file-and-site model; for example, data might be stored in an RDBMS on
+some database server. In that case, a variable can be declared to have
+external type. This indicates that Swift should use the variable to
+determine execution dependency, but should not attempt other data
+management; for example, it will not perform any form of data stage-in
+or stage-out it will not manage local data caches on sites; and it will
+not enforce component program atomicity on data output. This can add
+substantial responsibility to component programs, in exchange for
+allowing arbitrary data storage and access methods to be plugged in to
+scripts.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">external</span> o<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">populateDatabase</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+  populationProgram<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> o<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">analyseDatabase</span></span><span style="color: #990000">(</span><span style="color: #008080">external</span> i<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+  analysisProgram @o<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">external</span> database<span style="color: #990000">;</span>
+<span style="color: #008080">file</span> result <span style="color: #990000"><</span><span style="color: #FF0000">"results.txt"</span><span style="color: #990000">>;</span>
+
+database <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">populateDatabase</span></span><span style="color: #990000">();</span>
+result <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">analyseDatabase</span></span><span style="color: #990000">(</span>database<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>Some external database is represented by the database variable. The
+populateDatabase procedure populates the database with some data, and
+the analyseDatabase procedure performs some subsequent analysis on
+that database. The declaration of database contains no mapping; and
+the procedures which use database do not reference them in any way;
+the description of database is entirely outside of the script. The
+single assignment and execution ordering rules will still apply though;
+populateDatabase will always be run before analyseDatabase.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_data_model">2.6. Data model</h3>
+<div class="paragraph"><p>Data processed by Swift is strongly typed. It may be take the form of
+values in memory or as out-of-core files on disk. Language constructs
+called mappers specify how each piece of data is stored.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_mappers">2.7. Mappers</h3>
+<div class="paragraph"><p>When a DSHandle represents a data file (or container of datafiles), it
+is associated with a mapper. The mapper is used to identify which files
+belong to that DSHandle.</p></div>
+<div class="paragraph"><p>A dataset’s physical representation is declared by a mapping descriptor,
+which defines how each element in the dataset’s logical schema is stored
+in, and fetched from, physical structures such as directories, files,
+and remote servers.</p></div>
+<div class="paragraph"><p>Mappers are parameterized to take into account properties such as
+varying dataset location. In order to access a dataset, we need to know
+three things: its type, its mapping, and the value(s) of any
+parameter(s) associated with the mapping descriptor. For example, if we
+want to describe a dataset, of type imagefile, and whose physical
+representation is a file called "file1.bin" located at
+"/home/yongzh/data/", then the dataset might be declared as follows:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">imagefile</span> f1<span style="color: #990000"><</span>single_file_mapper<span style="color: #990000">;</span>file<span style="color: #990000">=</span><span style="color: #FF0000">"/home/yongzh/data/file1.bin"</span><span style="color: #990000">></span></tt></pre></div></div>
+<div class="paragraph"><p>The above example declares a dataset called f1, which uses a single file
+mapper to map a file from a specific location.</p></div>
+<div class="paragraph"><p>SwiftScript has a simplified syntax for this case, since
+single_file_mapper is frequently used:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">binaryfile</span> f1<span style="color: #990000"><</span><span style="color: #FF0000">"/home/yongzh/data/file1.bin"</span><span style="color: #990000">></span></tt></pre></div></div>
+<div class="paragraph"><p>Swift comes with a number of mappers that handle common mapping
+patterns. These are documented in the mappers section of this
+guide.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_more_technical_details_about_swiftscript">2.8. More technical details about SwiftScript</h3>
+<div class="paragraph"><p>The syntax of SwiftScript has a superficial resemblance to C and Java.
+For example, { and } characters are used to enclose blocks of statements.</p></div>
+<div class="paragraph"><p>A SwiftScript program consists of a number of statements. Statements may
+declare types, procedures and variables, assign values to variables, and
+express operations over arrays.</p></div>
+<div class="sect3">
+<h4 id="_variables">2.8.1. Variables</h4>
+<div class="paragraph"><p>Variables in SwiftScript are declared to be of a specific type.
+Assignments to those variables must be data of that type. SwiftScript
+variables are single-assignment - a value may be assigned to a variable
+at most once. This assignment can happen at declaration time or later on
+in execution. When an attempt to read from a variable that has not yet
+been assigned is made, the code performing the read is suspended until
+that variable has been written to. This forms the basis for Swift’s
+ability to parallelise execution - all code will execute in parallel
+unless there are variables shared between the code that cause sequencing.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_variable_declarations">2.8.2. Variable Declarations</h4>
+<div class="paragraph"><p>Variable declaration statements declare new variables. They can
+optionally assign a value to them or map those variables to on-disk files.</p></div>
+<div class="paragraph"><p>Declaration statements have the general form:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">typename</span> <span style="font-weight: bold"><span style="color: #000000">variablename</span></span> <span style="color: #990000">(<</span>mapping<span style="color: #990000">></span> <span style="color: #990000">|</span> <span style="color: #990000">=</span> initialValue <span style="color: #990000">)</span> <span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>The format of the mapping expression is defined in the Mappers section.
+initialValue may be either an expression or a procedure call that
+returns a single value.</p></div>
+<div class="paragraph"><p>Variables can also be declared in a multivalued-procedure statement,
+described in another section.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_assignment_statements">2.8.3. Assignment Statements</h4>
+<div class="paragraph"><p>Assignment statements assign values to previously declared variables.
+Assignments may only be made to variables that have not already been
+assigned. Assignment statements have the general form:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>variable <span style="color: #990000">=</span> value<span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>where value can be either an expression or a procedure call that returns
+a single value.</p></div>
+<div class="paragraph"><p>Variables can also be assigned in a multivalued-procedure statement,
+described in another section.</p></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_procedures">2.9. Procedures</h3>
+<div class="paragraph"><p>There are two kinds of procedure: An atomic procedure, which describes
+how an external program can be executed; and compound procedures which
+consist of a sequence of SwiftScript statements.</p></div>
+<div class="paragraph"><p>A procedure declaration defines the name of a procedure and its input
+and output parameters. SwiftScript procedures can take multiple inputs
+and produce multiple outputs. Inputs are specified to the right of the
+function name, and outputs are specified to the left. For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #990000">(</span><span style="color: #008080">type3</span> out1<span style="color: #990000">,</span> <span style="color: #008080">type4</span> out2<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">myproc</span></span> <span style="color: #990000">(</span><span style="color: #008080">type1</span> in1<span style="color: #990000">,</span> <span style="color: #008080">type2</span> in2<span style="color: #990000">)</span></tt></pre></div></div>
+<div class="paragraph"><p>The above example declares a procedure called myproc, which has two
+inputs in1 (of type type1) and in2 (of type type2) and two
+outputs out1 (of type type3) and out2 (of type type4).</p></div>
+<div class="paragraph"><p>A procedure input parameter can be an optional parameter in which case
+it must be declared with a default value. When calling a procedure, both
+positional parameter and named parameter passings can be passed,
+provided that all optional parameters are declared after the required
+parameters and any optional parameter is bound using keyword parameter
+passing. For example, if myproc1 is defined as:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #990000">(</span><span style="color: #008080">binaryfile</span> bf<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">myproc1</span></span> <span style="color: #990000">(</span><span style="color: #009900">int</span> i<span style="color: #990000">,</span> <span style="color: #008080">string</span> s<span style="color: #990000">=</span><span style="color: #FF0000">"foo"</span><span style="color: #990000">)</span></tt></pre></div></div>
+<div class="paragraph"><p>Then that procedure can be called like this, omitting the optional</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">parameter</span> s<span style="color: #990000">:</span>
+<span style="color: #008080">binaryfile</span> mybf <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">myproc1</span></span><span style="color: #990000">(</span><span style="color: #993399">1</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>or like this supplying a value for the optional parameter s:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">binaryfile</span> mybf <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">myproc1</span></span> <span style="color: #990000">(</span><span style="color: #993399">1</span><span style="color: #990000">,</span> s<span style="color: #990000">=</span><span style="color: #FF0000">"bar"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="sect3">
+<h4 id="_atomic_procedures">2.9.1. Atomic procedures</h4>
+<div class="paragraph"><p>An atomic procedure specifies how to invoke an external executable
+program, and how logical data types are mapped to command line arguments.</p></div>
+<div class="paragraph"><p>Atomic procedures are defined with the app keyword:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">binaryfile</span> bf<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">myproc</span></span> <span style="color: #990000">(</span><span style="color: #009900">int</span> i<span style="color: #990000">,</span> <span style="color: #008080">string</span> s<span style="color: #990000">=</span><span style="color: #FF0000">"foo"</span><span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    myapp <span style="color: #008080">i</span> s @<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>bf<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>which specifies that myproc invokes an executable called myapp,
+passing the values of i, s and the filename of bf as command line
+arguments.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_compound_procedures_2">2.9.2. Compound procedures</h4>
+<div class="paragraph"><p>A compound procedure contains a set of SwiftScript statements:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #990000">(</span><span style="color: #008080">type2</span> b<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">foo_bar</span></span> <span style="color: #990000">(</span><span style="color: #008080">type1</span> a<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    <span style="color: #008080">type3</span> c<span style="color: #990000">;</span>
+    c <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">foo</span></span><span style="color: #990000">(</span>a<span style="color: #990000">);</span>    <span style="font-style: italic"><span style="color: #9A1900">// c holds the result of foo</span></span>
+    b <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">bar</span></span><span style="color: #990000">(</span>c<span style="color: #990000">);</span>    <span style="font-style: italic"><span style="color: #9A1900">// c is an input to bar</span></span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_control_constructs">2.10. Control Constructs</h3>
+<div class="paragraph"><p>SwiftScript provides if, switch, foreach, and iterate
+constructs, with syntax and semantics similar to comparable constructs
+in other high-level languages.</p></div>
+<div class="sect3">
+<h4 id="_foreach">2.10.1. foreach</h4>
+<div class="paragraph"><p>The foreach construct is used to apply a block of statements to each
+element in an array. For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000000">check_order</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> a<span style="color: #990000">[])</span> <span style="color: #FF0000">{</span>
+    foreach f <span style="color: #008080">in</span> a <span style="color: #FF0000">{</span>
+        <span style="font-weight: bold"><span style="color: #000000">compute</span></span><span style="color: #990000">(</span>f<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>foreach statements have the general form:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">foreach</span> <span style="font-weight: bold"><span style="color: #000000">controlvariable</span></span> <span style="color: #990000">(,</span>index<span style="color: #990000">)</span> <span style="color: #008080">in</span> expression <span style="color: #FF0000">{</span>
+    statements
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>The block of statements is evaluated once for each element in
+expression which must be an array, with controlvariable set to the
+corresponding element and index (if specified) set to the integer
+position in the array that is being iterated over.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_if">2.10.2. if</h4>
+<div class="paragraph"><p>The if statement allows one of two blocks of statements to be
+executed, based on a boolean predicate. if statements generally have
+the form:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">if</span></span><span style="color: #990000">(</span>predicate<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    statements
+<span style="color: #FF0000">}</span> <span style="font-weight: bold"><span style="color: #0000FF">else</span></span> <span style="color: #FF0000">{</span>
+    statements
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>where predicate is a boolean expression.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_switch">2.10.3. switch</h4>
+<div class="paragraph"><p>switch expressions allow one of a selection of blocks to be chosen
+based on the value of a numerical control expression. switch
+statements take the general form:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF">switch</span></span><span style="color: #990000">(</span>controlExpression<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    <span style="font-weight: bold"><span style="color: #0000FF">case</span></span> n1<span style="color: #990000">:</span>
+        statements2
+    <span style="font-weight: bold"><span style="color: #0000FF">case</span></span> n2<span style="color: #990000">:</span>
+        statements2
+    <span style="color: #990000">[...]</span>
+    <span style="font-weight: bold"><span style="color: #0000FF">default</span></span><span style="color: #990000">:</span>
+        statements
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>The control expression is evaluated, the resulting numerical value used
+to select a corresponding case, and the statements belonging to that
+case block are evaluated. If no case corresponds, then the statements
+belonging to the default block are evaluated.</p></div>
+<div class="paragraph"><p>Unlike C or Java switch statements, execution does not fall through to
+subsequent case blocks, and no break statement is necessary at the
+end of each block.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_iterate">2.10.4. iterate</h4>
+<div class="paragraph"><p>iterate expressions allow a block of code to be evaluated repeatedly,
+with an integer parameter sweeping upwards from 0 until a termination
+condition holds.</p></div>
+<div class="paragraph"><p>The general form is:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">iterate</span> var <span style="color: #FF0000">{</span>
+    statements<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span> <span style="font-weight: bold"><span style="color: #000000">until</span></span> <span style="color: #990000">(</span>terminationExpression<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>with the variable var starting at 0 and increasing by one in each
+iteration. That variable is in scope in the statements block and when
+evaluating the termination expression.</p></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_operators">2.11. Operators</h3>
+<div class="paragraph"><p>The following infix operators are available for use in SwiftScript
+expressions.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">operator</th>
+<th align="left" valign="top">purpose</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">+</p></td>
+<td align="left" valign="top"><p class="table">numeric addition; string concatenation</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">-</p></td>
+<td align="left" valign="top"><p class="table">numeric subtraction</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">*</p></td>
+<td align="left" valign="top"><p class="table">numeric multiplication</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">/</p></td>
+<td align="left" valign="top"><p class="table">floating point division</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">%/</p></td>
+<td align="left" valign="top"><p class="table">integer division</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">%%</p></td>
+<td align="left" valign="top"><p class="table">integer remainder of division</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">== !=</p></td>
+<td align="left" valign="top"><p class="table">comparison and not-equal-to</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">< > ⇐ >=</p></td>
+<td align="left" valign="top"><p class="table">numerical ordering</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">&& ||</p></td>
+<td align="left" valign="top"><p class="table">boolean and, or</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">!</p></td>
+<td align="left" valign="top"><p class="table">boolean not</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_global_constants">2.12. Global constants</h3>
+<div class="paragraph"><p>At the top level of a SwiftScript program, the global modified may be
+added to a declaration so that it is visible throughout the program,
+rather than only at the top level of the program. This allows global
+constants (of any type) to be defined. (since Swift 0.10)</p></div>
+</div>
+<div class="sect2">
+<h3 id="_imports">2.13. Imports</h3>
+<div class="paragraph"><p>The import directive can be used to import definitions from another
+SwiftScript file. (since Swift 0.10)</p></div>
+<div class="paragraph"><p>For example, a SwiftScript program might contain this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000080">import</span></span> defs<span style="color: #990000">;</span>
+<span style="color: #008080">file</span> f<span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>which would import the content of defs.swift in the current directory:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span></tt></pre></div></div>
+<div class="paragraph"><p>Imported files are read from the current working directory.</p></div>
+<div class="paragraph"><p>There is no requirement that a module is imported only once. If a module
+is imported multiple times, for example in different files, then Swift
+will only process the imports once.</p></div>
+<div class="paragraph"><p>Imports may contain anything that is valid in a SwiftScript program,
+including code that causes remote execution.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_mappers_2">3. Mappers</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Mappers provide a mechanism to specify the layout of mapped datasets on
+disk. This is needed when Swift must access files to transfer them to
+remote sites for execution or to pass to applications.</p></div>
+<div class="paragraph"><p>Swift provides a number of mappers that are useful in common cases. This
+section details those standard mappers. For more complex cases, it is
+possible to write application-specific mappers in Java and use them
+within a SwiftScript program.</p></div>
+<div class="sect2">
+<h3 id="_the_single_file_mapper">3.1. The single file mapper</h3>
+<div class="paragraph"><p>The single_file_mapper maps a single physical file to a dataset.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">f</p></td>
+<td align="left" valign="top"><p class="table">myfile</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">f[0]</p></td>
+<td align="left" valign="top"><p class="table">INVALID</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">f.bar</p></td>
+<td align="left" valign="top"><p class="table">INVALID</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">parameter</th>
+<th align="left" valign="top">meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">file</p></td>
+<td align="left" valign="top"><p class="table">The location of the physical file including path and file name.</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">file</span> f <span style="color: #990000"><</span>single_file_mapper<span style="color: #990000">;</span>file<span style="color: #990000">=</span><span style="color: #FF0000">"plot_outfile_param"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>There is a simplified syntax for this mapper:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">file</span> f <span style="color: #990000"><</span><span style="color: #FF0000">"plot_outfile_param"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_the_simple_mapper">3.2. The simple mapper</h3>
+<div class="paragraph"><p>The simple_mapper maps a file or a list of files into an array by
+prefix, suffix, and pattern. If more than one file is matched, each of
+the file names will be mapped as a subelement of the dataset.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Parameter</th>
+<th align="left" valign="top">Meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">location</p></td>
+<td align="left" valign="top"><p class="table">A directory that the files are located.</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">prefix</p></td>
+<td align="left" valign="top"><p class="table">The prefix of the files</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">suffix</p></td>
+<td align="left" valign="top"><p class="table">The suffix of the files, for instance: ".txt"</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">pattern</p></td>
+<td align="left" valign="top"><p class="table">A UNIX glob style pattern, for instance: "<strong>foo</strong>" would match
+all file names that contain foo. When this mapper is used to specify
+output filenames, pattern is ignored.</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+<span style="color: #008080">file</span> f <span style="color: #990000"><</span>simple_mapper<span style="color: #990000">;</span>prefix<span style="color: #990000">=</span><span style="color: #FF0000">"foo"</span><span style="color: #990000">,</span> suffix<span style="color: #990000">=</span><span style="color: #FF0000">".txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>The above maps all filenames that start with foo and have an extension
+.txt into file f.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">f</p></td>
+<td align="left" valign="top"><p class="table">foo.txt</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #008080">string</span> m<span style="color: #990000">)</span> <span style="color: #FF0000">{</span><span style="color: #990000">.</span>
+    app <span style="color: #FF0000">{</span>
+        echo <span style="color: #008080">m</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> outfile <span style="color: #990000"><</span>simple_mapper<span style="color: #990000">;</span>prefix<span style="color: #990000">=</span><span style="color: #FF0000">"foo"</span><span style="color: #990000">,</span>suffix<span style="color: #990000">=</span><span style="color: #FF0000">".txt"</span><span style="color: #990000">>;</span>
+
+outfile <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hi"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>This will output the string <em>hi</em> to the file foo.txt.</p></div>
+<div class="paragraph"><p>The simple_mapper can be used to map arrays. It will map the array
+index into the filename between the prefix and suffix.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #008080">string</span> m<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        echo <span style="color: #008080">m</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">messagefile</span> outfile<span style="color: #990000">[]</span> <span style="color: #990000"><</span>simple_mapper<span style="color: #990000">;</span>prefix<span style="color: #990000">=</span><span style="color: #FF0000">"baz"</span><span style="color: #990000">,</span>suffix<span style="color: #990000">=</span><span style="color: #FF0000">".txt"</span><span style="color: #990000">>;</span>
+
+outfile<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hello"</span><span style="color: #990000">);</span>
+outfile<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"middle"</span><span style="color: #990000">);</span>
+outfile<span style="color: #990000">[</span><span style="color: #993399">2</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"goodbye"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">outfile[0]</p></td>
+<td align="left" valign="top"><p class="table">baz0000.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">outfile[1]</p></td>
+<td align="left" valign="top"><p class="table">baz0001.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">outfile[2]</p></td>
+<td align="left" valign="top"><p class="table">baz0002.txt</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>simple_mapper can be used to map structures. It will map the name of
+the structure member into the filename, between the prefix and the suffix.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> messagefile<span style="color: #990000">;</span>
+
+<span style="color: #008080">type</span> mystruct <span style="color: #FF0000">{</span>
+  <span style="color: #008080">messagefile</span> left<span style="color: #990000">;</span>
+  <span style="color: #008080">messagefile</span> right<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span><span style="color: #990000">;</span>
+
+<span style="color: #990000">(</span><span style="color: #008080">messagefile</span> t<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #008080">string</span> m<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        echo <span style="color: #008080">m</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>t<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">mystruct</span> out <span style="color: #990000"><</span>simple_mapper<span style="color: #990000">;</span>prefix<span style="color: #990000">=</span><span style="color: #FF0000">"qux"</span><span style="color: #990000">,</span>suffix<span style="color: #990000">=</span><span style="color: #FF0000">".txt"</span><span style="color: #990000">>;</span>
+
+out<span style="color: #990000">.</span>left <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"hello"</span><span style="color: #990000">);</span>
+out<span style="color: #990000">.</span>right <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">greeting</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"goodbye"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>This will output the string "hello" into the file qux.left.txt and the
+string "goodbye" into the file qux.right.txt.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">out.left</p></td>
+<td align="left" valign="top"><p class="table">quxleft.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">out.right</p></td>
+<td align="left" valign="top"><p class="table">quxright.txt</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_concurrent_mapper">3.3. concurrent mapper</h3>
+<div class="paragraph"><p>concurrent_mapper is almost the same as the simple mapper, except that
+it is used to map an output file, and the filename generated will
+contain an extract sequence that is unique. This mapper is the default
+mapper for variables when no mapper is specified.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Parameter</th>
+<th align="left" valign="top">Meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">location</p></td>
+<td align="left" valign="top"><p class="table">A directory that the files are located.</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">prefix</p></td>
+<td align="left" valign="top"><p class="table">The prefix of the files</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">suffix</p></td>
+<td align="left" valign="top"><p class="table">The suffix of the files, for instance: ".txt"
+pattern A UNIX glob style pattern, for instance: "<strong>foo</strong>" would match
+all file names that contain foo. When this mapper is used to specify
+output filenames, pattern is ignored.</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">file</span> f1<span style="color: #990000">;</span>
+<span style="color: #008080">file</span> f2 <span style="color: #990000"><</span>concurrent_mapper<span style="color: #990000">;</span>prefix<span style="color: #990000">=</span><span style="color: #FF0000">"foo"</span><span style="color: #990000">,</span> suffix<span style="color: #990000">=</span><span style="color: #FF0000">".txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>The above example would use concurrent mapper for f1 and f2, and
+generate f2 filename with prefix "foo" and extension ".txt"</p></div>
+</div>
+<div class="sect2">
+<h3 id="_file_system_mapper">3.4. File system mapper</h3>
+<div class="paragraph"><p>filesys_mapper is similar to the simple mapper, but maps a file or a
+list of files to an array. Each of the filename is mapped as an element
+in the array. The order of files in the resulting array is not defined.</p></div>
+<div class="paragraph"><p>TODO: note on difference between location as a relative vs absolute path
+wrt staging to remote location - as mihael said: It’s because you
+specify that location in the mapper. Try location="." instead of
+location="/sandbox/…"</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">parameter</th>
+<th align="left" valign="top">meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">location</p></td>
+<td align="left" valign="top"><p class="table">The directory where the files are located.</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">prefix</p></td>
+<td align="left" valign="top"><p class="table">The prefix of the files</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">suffix</p></td>
+<td align="left" valign="top"><p class="table">The suffix of the files, for instance: ".txt"</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">pattern</p></td>
+<td align="left" valign="top"><p class="table">A UNIX glob style pattern, for instance: "<strong>foo</strong>" would match
+all file names that contain foo.</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">file</span> texts<span style="color: #990000">[]</span> <span style="color: #990000"><</span>filesys_mapper<span style="color: #990000">;</span>prefix<span style="color: #990000">=</span><span style="color: #FF0000">"foo"</span><span style="color: #990000">,</span> suffix<span style="color: #990000">=</span><span style="color: #FF0000">".txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>The above example would map all filenames that start with "foo" and
+have an extension ".txt" into the array texts. For example, if the
+specified directory contains files: foo1.txt, footest.txt,
+foo__1.txt, then the mapping might be:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">texts[0]</p></td>
+<td align="left" valign="top"><p class="table">footest.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">texts[1]</p></td>
+<td align="left" valign="top"><p class="table">foo1.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">texts[2]</p></td>
+<td align="left" valign="top"><p class="table">foo__1.txt</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_fixed_array_mapper">3.5. fixed array mapper</h3>
+<div class="paragraph"><p>The fixed_array_mapper maps from a string that contains a list of
+filenames into a file array.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">parameter</th>
+<th align="left" valign="top">Meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">files</p></td>
+<td align="left" valign="top"><p class="table">A string that contains a list of filenames, separated by space,
+comma or colon</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">file</span> texts<span style="color: #990000">[]</span> <span style="color: #990000"><</span>fixed_array_mapper<span style="color: #990000">;</span>files<span style="color: #990000">=</span><span style="color: #FF0000">"file1.txt, fileB.txt, file3.txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>would cause a mapping like this:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">texts[0]</p></td>
+<td align="left" valign="top"><p class="table">file1.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">texts[1]</p></td>
+<td align="left" valign="top"><p class="table">fileB.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">texts[2]</p></td>
+<td align="left" valign="top"><p class="table">file3.txt</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_array_mapper">3.6. array mapper</h3>
+<div class="paragraph"><p>The array_mapper maps from an array of strings into a file</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">parameter</th>
+<th align="left" valign="top">meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">files</p></td>
+<td align="left" valign="top"><p class="table">An array of strings containing one filename per element</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">string</span> s<span style="color: #990000">[]</span> <span style="color: #990000">=</span> <span style="color: #990000">[</span> <span style="color: #FF0000">"a.txt"</span><span style="color: #990000">,</span> <span style="color: #FF0000">"b.txt"</span><span style="color: #990000">,</span> <span style="color: #FF0000">"c.txt"</span> <span style="color: #990000">];</span>
+
+<span style="color: #008080">file</span> f<span style="color: #990000">[]</span> <span style="color: #990000"><</span>array_mapper<span style="color: #990000">;</span>files<span style="color: #990000">=</span>s<span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>This will establish the mapping:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">f[0]</p></td>
+<td align="left" valign="top"><p class="table">a.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">f[1]</p></td>
+<td align="left" valign="top"><p class="table">b.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">f[2]</p></td>
+<td align="left" valign="top"><p class="table">c.txt</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_regular_expression_mapper">3.7. regular expression mapper</h3>
+<div class="paragraph"><p>The regexp_mapper transforms one file name to another using regular
+expression matching.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">parameter</th>
+<th align="left" valign="top">meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">source</p></td>
+<td align="left" valign="top"><p class="table">The source file name</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">match</p></td>
+<td align="left" valign="top"><p class="table">Regular expression pattern to match, use</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">()</p></td>
+<td align="left" valign="top"><p class="table">to match whatever
+regular expression is inside the parentheses, and indicate the start and
+end of a group; the contents of a group can be retrieved with the</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">\\number</p></td>
+<td align="left" valign="top"><p class="table">special sequence (two backslashes are needed because the
+backslash is an escape sequence introducer)</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">transform</p></td>
+<td align="left" valign="top"><p class="table">The pattern of the file name to transform to, use \number to
+reference the group matched.</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">string</span> s <span style="color: #990000">=</span> <span style="color: #FF0000">"picture.gif"</span><span style="color: #990000">;</span>
+<span style="color: #008080">file</span> f <span style="color: #990000"><</span>regexp_mapper<span style="color: #990000">;</span>
+  source<span style="color: #990000">=</span>s<span style="color: #990000">,</span>
+  match<span style="color: #990000">=</span><span style="color: #FF0000">"(.*)gif"</span><span style="color: #990000">,</span>
+  transform<span style="color: #990000">=</span><span style="color: #FF0000">"</span><span style="color: #CC33CC">\\</span><span style="color: #FF0000">1jpg"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>This example transforms a string ending gif into one ending jpg and
+maps that to a file.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">f</p></td>
+<td align="left" valign="top"><p class="table">picture.jpg</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_csv_mapper">3.8. csv mapper</h3>
+<div class="paragraph"><p>The csv_mapper maps the content of a CSV (comma-separated value) file
+into an array of structures. The dataset type needs to be correctly
+defined to conform to the column names in the file. For instance, if the
+file contains columns: name age GPA then the type needs to have member
+elements like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> student <span style="color: #FF0000">{</span>
+  <span style="color: #008080">file</span> name<span style="color: #990000">;</span>
+  <span style="color: #008080">file</span> age<span style="color: #990000">;</span>
+  <span style="color: #008080">file</span> GPA<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>If the file does not contain a header with column info, then the column
+names are assumed as column1, column2, etc.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Parameter</th>
+<th align="left" valign="top">Meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">file</p></td>
+<td align="left" valign="top"><p class="table">The name of the CSV file to read mappings from.</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">header</p></td>
+<td align="left" valign="top"><p class="table">Whether the file has a line describing header info; default is</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">true</p></td>
+<td align="left" valign="top"><p class="table"></p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">skip</p></td>
+<td align="left" valign="top"><p class="table">The number of lines to skip at the beginning (after header line);
+default is 0.</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">hdelim</p></td>
+<td align="left" valign="top"><p class="table">Header field delimiter; default is the value of the</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">delim</p></td>
+<td align="left" valign="top"><p class="table">parameter</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">delim</p></td>
+<td align="left" valign="top"><p class="table">Content field delimiters; defaults are space, tab and comma</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">student</span> stus<span style="color: #990000">[]</span> <span style="color: #990000"><</span>csv_mapper<span style="color: #990000">;</span>file<span style="color: #990000">=</span><span style="color: #FF0000">"stu_list.txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>The above example would read a list of student info from file
+"stu_list.txt" and map them into a student array. By default, the file
+should contain a header line specifying the names of the columns. If
+stu_list.txt contains the following:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>name<span style="color: #990000">,</span>age<span style="color: #990000">,</span>gpa
+<span style="color: #993399">101</span><span style="color: #990000">-</span>name<span style="color: #990000">.</span>txt<span style="color: #990000">,</span> <span style="color: #993399">101</span><span style="color: #990000">-</span>age<span style="color: #990000">.</span>txt<span style="color: #990000">,</span> <span style="color: #993399">101</span><span style="color: #990000">-</span>gpa<span style="color: #990000">.</span>txt
+name55<span style="color: #990000">.</span>txt<span style="color: #990000">,</span> age55<span style="color: #990000">.</span>txt<span style="color: #990000">,</span> age55<span style="color: #990000">.</span>txt
+q<span style="color: #990000">,</span> r<span style="color: #990000">,</span> s</tt></pre></div></div>
+<div class="paragraph"><p>then some of the mappings produced by this example would be:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">stus[0].name</th>
+<th align="left" valign="top">101-name.txt</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">stus[0].age</p></td>
+<td align="left" valign="top"><p class="table">101-age.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[0].gpa</p></td>
+<td align="left" valign="top"><p class="table">101-gpa.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[1].name</p></td>
+<td align="left" valign="top"><p class="table">name55.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[1].age</p></td>
+<td align="left" valign="top"><p class="table">age55.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[1].gpa</p></td>
+<td align="left" valign="top"><p class="table">gpa55.txt</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[2].name</p></td>
+<td align="left" valign="top"><p class="table">q</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[2].age</p></td>
+<td align="left" valign="top"><p class="table">r</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[2].gpa</p></td>
+<td align="left" valign="top"><p class="table">s</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_external_mapper">3.9. external mapper</h3>
+<div class="paragraph"><p>The external mapper, ext maps based on the output of a supplied Unix
+executable.</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">parameter</p></td>
+<td align="left" valign="top"><p class="table">meaning</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">exec</p></td>
+<td align="left" valign="top"><p class="table">The name of the executable (relative to the current directory, if
+an absolute path is not specified)</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">*</p></td>
+<td align="left" valign="top"><p class="table">Other parameters are passed to the executable prefixed with a - symbol</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="paragraph"><p>The output of the executable should consist of two columns of data,
+separated by a space. The first column should be the path of the mapped
+variable, in SwiftScript syntax (for example [2] means the 2nd element
+of an array) or the symbol $ to represent the root of the mapped
+variable.</p></div>
+<div class="paragraph"><p>Example: With the following in mapper.sh,</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-style: italic"><span style="color: #9A1900">#!/bin/bash</span></span>
+echo <span style="color: #FF0000">"[2] qux"</span>
+echo <span style="color: #FF0000">"[0] foo"</span>
+echo <span style="color: #FF0000">"[1] bar"</span></tt></pre></div></div>
+<div class="paragraph"><p>then a mapping statement:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">student</span> stus<span style="color: #990000">[]</span> <span style="color: #990000"><</span>ext<span style="color: #990000">;</span>exec<span style="color: #990000">=</span><span style="color: #FF0000">"mapper.sh"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>would map</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Swift variable</th>
+<th align="left" valign="top">Filename</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">stus[0]</p></td>
+<td align="left" valign="top"><p class="table">foo</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[1]</p></td>
+<td align="left" valign="top"><p class="table">bar</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">stus[2]</p></td>
+<td align="left" valign="top"><p class="table">qux</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_commands">4. Commands</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>The commands detailed in this section are available in the bin/
+directory of a Swift installation and can by run from the commandline if
+that directory is placed on the PATH.</p></div>
+<div class="sect2">
+<h3 id="_swift">4.1. swift</h3>
+<div class="paragraph"><p>The swift command is the main command line tool for executing
+SwiftScript programs.</p></div>
+<div class="sect3">
+<h4 id="_command_line_syntax">4.1.1. Command-line Syntax</h4>
+<div class="paragraph"><p>The swift command is invoked as follows: swift [options]
+SwiftScript-program [SwiftScript-arguments]* with options taken from the
+following list, and SwiftScript-arguments made available to the
+SwiftScript program through the @arg function.</p></div>
+<div class="paragraph"><p>Swift command-line options</p></div>
+<div class="paragraph"><p>-help or -h</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Display usage information</tt></pre>
+</div></div>
+<div class="paragraph"><p>-typecheck</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Does a typecheck of a SwiftScript program, instead of executing it.</tt></pre>
+</div></div>
+<div class="paragraph"><p>-dryrun</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Runs the SwiftScript program without submitting any jobs (can be
+used to get a graph)</tt></pre>
+</div></div>
+<div class="paragraph"><p>-monitor</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Shows a graphical resource monitor</tt></pre>
+</div></div>
+<div class="paragraph"><p>-resume file</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Resumes the execution using a log file</tt></pre>
+</div></div>
+<div class="paragraph"><p>-config file</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Indicates the Swift configuration file to be used for this run.
+Properties in this configuration file will override the default
+properties. If individual command line arguments are used for
+properties, they will override the contents of this file.</tt></pre>
+</div></div>
+<div class="paragraph"><p>-verbose | -v</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Increases the level of output that Swift produces on the console to
+include more detail about the execution</tt></pre>
+</div></div>
+<div class="paragraph"><p>-debug | -d</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Increases the level of output that Swift produces on the console to
+include lots of detail about the execution</tt></pre>
+</div></div>
+<div class="paragraph"><p>-logfile file</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Specifies a file where log messages should go to. By default Swift
+uses the name of the program being run and a numeric index (e.g.
+myworkflow.1.log)</tt></pre>
+</div></div>
+<div class="paragraph"><p>-runid identifier</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Specifies the run identifier. This must be unique for every
+invocation and is used in several places to keep files from
+different executions cleanly separated. By default, a datestamp and
+random number are used to generate a run identifier. When using this
+parameter, care should be taken to ensure that the run ID remains
+unique with respect to all other run IDs that might be used,
+irrespective of (at least) expected execution sites, program or user.</tt></pre>
+</div></div>
+<div class="paragraph"><p>-tui</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Displays an interactive text mode monitor during a run. (since Swift
+0.9)</tt></pre>
+</div></div>
+<div class="paragraph"><p>In addition, the following Swift properties can be set on the command line:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+caching.algorithm
+</p>
+</li>
+<li>
+<p>
+clustering.enabled
+</p>
+</li>
+<li>
+<p>
+clustering.min.time
+</p>
+</li>
+<li>
+<p>
+clustering.queue.delay
+</p>
+</li>
+<li>
+<p>
+ip.address
+</p>
+</li>
+<li>
+<p>
+kickstart.always.transfer
+</p>
+</li>
+<li>
+<p>
+kickstart.enabled
+</p>
+</li>
+<li>
+<p>
+lazy.errors
+</p>
+</li>
+<li>
+<p>
+pgraph
+</p>
+</li>
+<li>
+<p>
+pgraph.graph.options
+</p>
+</li>
+<li>
+<p>
+pgraph.node.options
+</p>
+</li>
+<li>
+<p>
+sitedir.keep
+</p>
+</li>
+<li>
+<p>
+sites.file
+</p>
+</li>
+<li>
+<p>
+tc.file
+</p>
+</li>
+<li>
+<p>
+tcp.port.range
+</p>
+</li>
+</ul></div>
+</div>
+<div class="sect3">
+<h4 id="_return_codes">4.1.2. Return codes</h4>
+<div class="paragraph"><p>The swift command may exit with the following return codes:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">value</th>
+<th align="left" valign="top">meaning</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">0</p></td>
+<td align="left" valign="top"><p class="table">success</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">1</p></td>
+<td align="left" valign="top"><p class="table">command line syntax error or missing project name</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">2</p></td>
+<td align="left" valign="top"><p class="table">error during execution</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">3</p></td>
+<td align="left" valign="top"><p class="table">error during compilation</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">4</p></td>
+<td align="left" valign="top"><p class="table">input file does not exist</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+<div class="sect3">
+<h4 id="_environment_variables">4.1.3. Environment variables</h4>
+<div class="paragraph"><p>The swift is influenced by the following environment variables:</p></div>
+<div class="paragraph"><p>GLOBUS_HOSTNAME, GLOBUS_TCP_PORT_RANGE - set in the environment
+before running Swift. These can be set to inform Swift of the
+configuration of your local firewall. More information can be found in
+the Globus firewall How-to <a href="http://dev.globus.org/wiki/FirewallHowTo">http://dev.globus.org/wiki/FirewallHowTo</a>.</p></div>
+<div class="paragraph"><p>COG_OPTS - set in the environment before running Swift. Options set in
+this variable will be passed as parameters to the Java Virtual Machine
+which will run Swift. The parameters vary between virtual machine
+imlementations, but can usually be used to alter settings such as
+maximum heap size. Typing <em>java -help</em> will sometimes give a list of
+commands. The Sun Java 1.4.2 command line options are documented here
+<a href="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html">http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html</a>.</p></div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_swift_osg_ress_site_catalog">4.2. swift-osg-ress-site-catalog</h3>
+<div class="paragraph"><p>The swift-osg-ress-site-catalog command generates a site catalog based
+on OSG <a href="http://www.opensciencegrid.org/">http://www.opensciencegrid.org/</a>'s ReSS information system
+(since Swift 0.9)</p></div>
+<div class="paragraph"><p>Usage: <strong>swift-osg-ress-site-catalog [options]</strong></p></div>
+<div class="paragraph"><p>--help</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Show help message</tt></pre>
+</div></div>
+<div class="paragraph"><p>--vo=[name]</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Set what VO to query ReSS for</tt></pre>
+</div></div>
+<div class="paragraph"><p>--engage-verified</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Only retrieve sites verified by the Engagement VO site verification
+tests This can not be used together with |--vo|, as the query will
+only work for sites advertising support for the Engagement VO.</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This option means information will be retrieved from the Engagement
+collector instead of the top-level ReSS collector.</tt></pre>
+</div></div>
+<div class="paragraph"><p>--out=[filename]</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Write to [filename] instead of stdout</tt></pre>
+</div></div>
+<div class="paragraph"><p>--condor-g</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Generates sites files which will submit jobs using a local Condor-G
+installation rather than through direct GRAM2 submission. (since
+Swift 0.10)</tt></pre>
+</div></div>
+</div>
+<div class="sect2">
+<h3 id="_swift_plot_log">4.3. swift-plot-log</h3>
+<div class="paragraph"><p>swift-plot-log generates summaries of Swift run log files.</p></div>
+<div class="paragraph"><p>Usage: swift-plot-log [logfile] [targets]</p></div>
+<div class="paragraph"><p>When no targets are specified, swift-plog-log will generate an HTML
+report for the run. When targets are specified, only those named targets
+will be generated.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_executing_app_procedures">5. Executing app procedures</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This section describes how Swift executes app procedures, and
+requirements on the behaviour of application programs used in app
+procedures. These requirements are primarily to ensure that the Swift
+can run your application in different places and with the various fault
+tolerance mechanisms in place.</p></div>
+<div class="sect2">
+<h3 id="_mapping_of_app_semantics_into_unix_process_execution_semantics">5.1. Mapping of app semantics into unix process execution semantics</h3>
+<div class="paragraph"><p>This section describes how an app procedure invocation is translated
+into a (remote) unix process execution. It does not describe the
+mechanisms by which Swift performs that translation; that is described
+in the next section.</p></div>
+<div class="paragraph"><p>In this section, this example SwiftScript program is used for reference:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+
+<span style="font-weight: bold"><span style="color: #000000">app</span></span> <span style="color: #990000">(</span><span style="color: #008080">file</span> o<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">count</span></span><span style="color: #990000">(</span><span style="color: #008080">file</span> i<span style="color: #990000">)</span> <span style="color: #FF0000">{</span>
+  wc @<span style="color: #008080">i</span> stdout<span style="color: #990000">=</span>@o<span style="color: #990000">;</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">file</span> q <span style="color: #990000"><</span><span style="color: #FF0000">"input.txt"</span><span style="color: #990000">>;</span>
+<span style="color: #008080">file</span> r <span style="color: #990000"><</span><span style="color: #FF0000">"output.txt"</span><span style="color: #990000">>;</span></tt></pre></div></div>
+<div class="paragraph"><p>The executable for wc will be looked up in tc.data.</p></div>
+<div class="paragraph"><p>This unix executable will then be executed in some application
+procedure workspace. This means:</p></div>
+<div class="paragraph"><p>Each application procedure workspace will have an application workspace
+directory. (TODO: can collapse terms application procedure workspace
+and application workspace directory ?</p></div>
+<div class="paragraph"><p>This application workspace directory will not be shared with any other
+application procedure execution attempt; all application procedure
+execution attempts will run with distinct application procedure
+workspaces. (for the avoidance of doubt: If a SwiftScript procedure
+invocation is subject to multiple application procedure execution
+attempts (due to Swift-level restarts, retries or replication) then each
+of those application procedure execution attempts will be made in a
+different application procedure workspace. )</p></div>
+<div class="paragraph"><p>The application workspace directory will be a directory on a POSIX
+filesystem accessible throughout the application execution by the
+application executable.</p></div>
+<div class="paragraph"><p>Before the application executable is executed:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+The application workspace directory will exist.
+</p>
+</li>
+<li>
+<p>
+The input files will exist inside the application workspace
+      directory (but not necessarily as direct children; there may be
+      subdirectories within the application workspace directory).
+</p>
+</li>
+<li>
+<p>
+The input files will be those files mapped to input parameters
+      of the application procedure invocation. (In the example, this
+      means that the file input.txt will exist in the application
+      workspace directory)
+</p>
+</li>
+<li>
+<p>
+For each input file dataset, it will be the case that @filename
+      or @filenames invoked with that dataset as a parameter will
+      return the path relative to the application workspace directory
+      for the file(s) that are associated with that dataset. (In the
+      example, that means that @i will evaluate to the path input.txt)
+</p>
+</li>
+<li>
+<p>
+For each file-bound parameter of the Swift procedure invocation,
+      the associated files (determined by data type?) will always exist.
+</p>
+</li>
+<li>
+<p>
+The input files must be treated as read only files. This may or
+      may not be enforced by unix file system permissions. They may or
+      may not be copies of the source file (conversely, they may be
+      links to the actual source file).
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p>During/after the application executable execution, the following must
+be true:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+If the application executable execution was successful (in the
+      opinion of the application executable), then the application
+      executable should exit with unix return code 0; if the
+      application executable execution was unsuccessful (in the opinion
+      of the application executable), then the application executable
+      should exit with unix return code not equal to 0.
+</p>
+</li>
+<li>
+<p>
+Each file mapped from an output parameter of the SwiftScript
+      procedure call must exist. Files will be mapped in the same way as
+      for input files.
+</p>
+<div class="literalblock">
+<div class="content">
+<pre><tt>(? Is it defined that output subdirectories will be precreated
+before execution or should app executables expect to make them?
+That's probably determined by the present behaviour of wrapper.sh)</tt></pre>
+</div></div>
+</li>
+<li>
+<p>
+Output produced by running the application executable on some
+      inputs should be the same no matter how many times, when or where
+      that application executable is run. <em>The same</em> can vary depending
+      on application (for example, in an application it might be
+      acceptable for a PNG→JPEG conversion to produce different,
+      similar looking, output jpegs depending on the environment)
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p>Things to not assume:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+anything about the path of the application workspace directory
+</p>
+</li>
+<li>
+<p>
+that either the application workspace directory will be deleted or
+      will continue to exist or will remain unmodified after execution
+      has finished
+</p>
+</li>
+<li>
+<p>
+that files can be passed(?def) between application procedure
+      invocations through any mechanism except through files known to
+      Swift through the mapping mechanism (there is some exception here
+      for external datasets - there are a separate set of assertions
+      that hold for external datasets)
+</p>
+</li>
+<li>
+<p>
+that application executables will run on any particular site of
+      those available, or than any combination of applications will run
+      on the same or different sites.
+</p>
+</li>
+</ul></div>
+</div>
+<div class="sect2">
+<h3 id="_how_swift_implements_the_site_execution_model">5.2. How Swift implements the site execution model</h3>
+<div class="paragraph"><p>This section describes the implementation of the semantics described in
+the previous section.</p></div>
+<div class="paragraph"><p>Swift executes application procedures on one or more sites.</p></div>
+<div class="paragraph"><p>Each site consists of:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+worker nodes. There is some execution mechanism through which
+      the Swift client side executable can execute its wrapper script
+      on those worker nodes. This is commonly GRAM or Falkon or coasters.
+</p>
+</li>
+<li>
+<p>
+a site-shared file system. This site shared filesystem is
+      accessible through some file transfer mechanism from the Swift
+      client side executable. This is commonly GridFTP or coasters. This
+      site shared filesystem is also accessible through the posix file
+      system on all worker nodes, mounted at the same location as seen
+      through the file transfer mechanism. Swift is configured with the
+      location of some site working directory on that site-shared file
+      system.
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p>There is no assumption that the site shared file system for one site is
+accessible from another site.</p></div>
+<div class="paragraph"><p>For each workflow run, on each site that is used by that run, a run
+directory is created in the site working directory, by the Swift client
+side.</p></div>
+<div class="paragraph"><p>In that run directory are placed several subdirectories:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+shared/ - site shared files cache
+</p>
+</li>
+<li>
+<p>
+kickstart/ - when kickstart is used, kickstart record files for
+      each job that has generated a kickstart record.
+</p>
+</li>
+<li>
+<p>
+info/ - wrapper script log files
+</p>
+</li>
+<li>
+<p>
+status/ - job status files
+</p>
+</li>
+<li>
+<p>
+jobs/ - application workspace directories (optionally placed
+      here - see below)
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p>Application execution looks like this:</p></div>
+<div class="paragraph"><p>For each application procedure call:</p></div>
+<div class="paragraph"><p>The Swift client side selects a site; copies the input files for that
+procedure call to the site shared file cache if they are not already in
+the cache, using the file transfer mechanism; and then invokes the
+wrapper script on that site using the execution mechanism.</p></div>
+<div class="paragraph"><p>The wrapper script creates the application workspace directory; places
+the input files for that job into the application workspace directory
+using either cp or ln -s (depending on a configuration option);
+executes the application unix executable; copies output files from the
+application workspace directory to the site shared directory using cp;
+creates a status file under the status/ directory; and exits,
+returning control to the Swift client side. Logs created during the
+execution of the wrapper script are stored under the info/ directory.</p></div>
+<div class="paragraph"><p>The Swift client side then checks for the presence of and deletes a
+status file indicating success; and copies files from the site shared
+directory to the appropriate client side location.</p></div>
+<div class="paragraph"><p>The job directory is created (in the default mode) under the jobs/
+directory. However, it can be created under an arbitrary other path,
+which allows it to be created on a different file system (such as a
+worker node local file system in the case that the worker node has a
+local file system).</p></div>
+<div class="paragraph"><p><span class="image">
+<img src="swift-site-model.png" alt="swift-site-model.png" />
+</span></p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_technical_overview_of_the_swift_architecture">6. Technical overview of the Swift architecture</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This section attempts to provide a technical overview of the Swift
+architecture.</p></div>
+<div class="sect2">
+<h3 id="_execution_layer">6.1. Execution layer</h3>
+<div class="paragraph"><p>The execution layer causes an application program (in the form of a unix
+executable) to be executed either locally or remotely.</p></div>
+<div class="paragraph"><p>The two main choices are local unix execution and execution through
+GRAM. Other options are available, and user provided code can also be
+plugged in.</p></div>
+<div class="paragraph"><p>The kickstart utility can be used to capture environmental
+information at execution time to aid in debugging and provenance capture.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_swiftscript_language_compilation_layer">6.2. SwiftScript language compilation layer</h3>
+<div class="paragraph"><p>Step i: text to XML intermediate form parser/processor. parser written
+in ANTLR - see resources/VDL.g. The XML Schema Definition (XSD) for the
+intermediate language is in resources/XDTM.xsd.</p></div>
+<div class="paragraph"><p>Step ii: XML intermediate form to Karajan workflow. Karajan.java - reads
+the XML intermediate form. compiles to karajan workflow language - for
+example, expressions are converted from SwiftScript syntax into Karajan
+syntax, and function invocations become karajan function invocations
+with various modifications to parameters to accomodate return parameters
+and dataset handling.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_swift_karajan_library_layer">6.3. Swift/karajan library layer</h3>
+<div class="paragraph"><p>Some Swift functionality is provided in the form of Karajan libraries
+that are used at runtime by the Karajan workflows that the Swift
+compiler generates.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_ways_in_which_swift_can_be_extended">7. Ways in which Swift can be extended</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Swift is extensible in a number of ways. It is possible to add mappers
+to accomodate different filesystem arrangements, site selectors to
+change how Swift decides where to run each job, and job submission
+interfaces to submit jobs through different mechanisms.</p></div>
+<div class="paragraph"><p>A number of mappers are provided as part of the Swift release and
+documented in the mappers section. New mappers can be
+implemented in Java by implementing the org.griphyn.vdl.mapping.Mapper
+interface. The Swift tutorial
+<a href="http://www.ci.uchicago.edu/swift/guides/tutorial.php">http://www.ci.uchicago.edu/swift/guides/tutorial.php</a> contains a simple
+example of this.</p></div>
+<div class="paragraph"><p>Swift provides a default site selector, the Adaptive Scheduler. New site
+selectors can be plugged in by implementing the
+org.globus.cog.karajan.scheduler.Scheduler interface and modifying
+libexec/scheduler.xml and etc/karajan.properties to refer to the new
+scheduler.</p></div>
+<div class="paragraph"><p>Execution providers and filesystem providers, which allow to Swift to
+execute jobs and to stage files in and out through mechanisms such as
+GRAM and GridFTP can be implemented as Java CoG kit providers.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_function_reference">8. Function reference</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This section details functions that are available for use in the
+SwiftScript language.</p></div>
+<div class="sect2">
+<h3 id="_arg">8.1. @arg</h3>
+<div class="paragraph"><p>Takes a command line parameter name as a string parameter and an
+optional default value and returns the value of that string parameter
+from the command line. If no default value is specified and the command
+line parameter is missing, an error is generated. If a default value is
+specified and the command line parameter is missing, @arg will return
+the default value.</p></div>
+<div class="paragraph"><p>Command line parameters recognized by @arg begin with exactly one
+hyphen and need to be positioned after the script name.</p></div>
+<div class="paragraph"><p>For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span>@<span style="font-weight: bold"><span style="color: #000000">arg</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"myparam"</span><span style="color: #990000">));</span>
+<span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span>@<span style="font-weight: bold"><span style="color: #000000">arg</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"optionalparam"</span><span style="color: #990000">,</span> <span style="color: #FF0000">"defaultvalue"</span><span style="color: #990000">));</span></tt></pre></div></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ <span style="color: #008080">swift</span> arg<span style="color: #990000">.</span>swift <span style="color: #990000">-</span>myparam<span style="color: #990000">=</span>hello
+<span style="color: #008080">Swift</span> v0<span style="color: #990000">.</span><span style="color: #993399">3</span><span style="color: #990000">-</span><span style="color: #008080">dev</span> <span style="font-weight: bold"><span style="color: #000000">r1674</span></span> <span style="color: #990000">(</span><span style="color: #008080">modified</span> locally<span style="color: #990000">)</span>
+
+RunID<span style="color: #990000">:</span> <span style="color: #993399">20080220</span><span style="color: #990000">-</span><span style="color: #993399">1548</span><span style="color: #990000">-</span>ylc4pmda
+<span style="color: #008080">SwiftScript</span> trace<span style="color: #990000">:</span> defaultvalue
+<span style="color: #008080">SwiftScript</span> trace<span style="color: #990000">:</span> hello</tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_extractint">8.2. @extractint</h3>
+<div class="paragraph"><p>@extractint(file) will read the specified file, parse an integer from
+the file contents and return that integer.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_filename">8.3. @filename</h3>
+<div class="paragraph"><p>@filename(v) will return a string containing the filename(s) for the
+file(s) mapped to the variable v. When more than one filename is
+returned, the filenames will be space separated inside a single string
+return value.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_filenames">8.4. @filenames</h3>
+<div class="paragraph"><p>@filenames(v) will return multiple values (!) containing the
+filename(s) for the file(s) mapped to the variable v. (compare to
+ at filename)</p></div>
+</div>
+<div class="sect2">
+<h3 id="_regexp">8.5. @regexp</h3>
+<div class="paragraph"><p>@regexp(input,pattern,replacement) will apply regular expression
+substitution using the Java java.util.regexp API
+<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html">http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html</a>.
+For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">string</span> v <span style="color: #990000">=</span>  @<span style="font-weight: bold"><span style="color: #000000">regexp</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"abcdefghi"</span><span style="color: #990000">,</span> <span style="color: #FF0000">"c(def)g"</span><span style="color: #990000">,</span><span style="color: #FF0000">"monkey"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>will assign the value "abmonkeyhi" to the variable v.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_strcat">8.6. @strcat</h3>
+<div class="paragraph"><p>@strcat(a,b,c,d,…) will return a string containing all of the
+strings passed as parameters joined into a single string. There may be
+any number of parameters.</p></div>
+<div class="paragraph"><p>The + operator concatenates two strings: @strcat(a,b) is the same as
+a + b</p></div>
+</div>
+<div class="sect2">
+<h3 id="_strcut">8.7. @strcut</h3>
+<div class="paragraph"><p>@strcut(input,pattern) will match the regular expression in the
+pattern parameter against the supplied input string and return the
+section that matches the first matching parenthesised group.</p></div>
+<div class="paragraph"><p>For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">string</span> t <span style="color: #990000">=</span> <span style="color: #FF0000">"my name is John and i like puppies."</span><span style="color: #990000">;</span>
+<span style="color: #008080">string</span> name <span style="color: #990000">=</span> @<span style="font-weight: bold"><span style="color: #000000">strcut</span></span><span style="color: #990000">(</span>t<span style="color: #990000">,</span> <span style="color: #FF0000">"my name is ([^ ]*) "</span><span style="color: #990000">);</span>
+<span style="color: #008080">string</span> out <span style="color: #990000">=</span> @<span style="font-weight: bold"><span style="color: #000000">strcat</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"Your name is "</span><span style="color: #990000">,</span>name<span style="color: #990000">);</span>
+<span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span>out<span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>will output the message: Your name is John.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_strsplit">8.8. @strsplit</h3>
+<div class="paragraph"><p>@strsplit(input,pattern) will split the input string based on
+separators that match the given pattern and return a string array.
+(since Swift 0.9)</p></div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">string</span> t <span style="color: #990000">=</span> <span style="color: #FF0000">"my name is John and i like puppies."</span><span style="color: #990000">;</span>
+<span style="color: #008080">string</span> words<span style="color: #990000">[]</span> <span style="color: #990000">=</span> @<span style="font-weight: bold"><span style="color: #000000">strsplit</span></span><span style="color: #990000">(</span>t<span style="color: #990000">,</span> <span style="color: #FF0000">"</span><span style="color: #CC33CC">\\</span><span style="color: #FF0000">s"</span><span style="color: #990000">);</span>
+foreach word <span style="color: #008080">in</span> words <span style="color: #FF0000">{</span>
+    <span style="font-weight: bold"><span style="color: #000000">trace</span></span><span style="color: #990000">(</span>word<span style="color: #990000">);</span>
+<span style="color: #FF0000">}</span></tt></pre></div></div>
+<div class="paragraph"><p>will output one word of the sentence on each line (though not
+necessarily in order, due to the fact that foreach iterations execute in
+parallel).</p></div>
+</div>
+<div class="sect2">
+<h3 id="_toint">8.9. @toint</h3>
+<div class="paragraph"><p>@toint(input) will parse its input string into an integer. This can be
+used with @arg to pass input parameters to a SwiftScript program as
+integers.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_built_in_procedure_reference">9. Built-in procedure reference</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This section details built-in procedures that are available for use in
+the SwiftScript language.</p></div>
+<div class="sect2">
+<h3 id="_readdata">9.1. readData</h3>
+<div class="paragraph"><p>readData will read data from a specified file.</p></div>
+<div class="paragraph"><p>The format of the input file is controlled by the type of the return value.</p></div>
+<div class="paragraph"><p>For scalar return types, such as int, the specified file should contain
+a single value of that type.</p></div>
+<div class="paragraph"><p>For arrays of scalars, the specified file should contain one value per
+line.</p></div>
+<div class="paragraph"><p>For structs of scalars, the file should contain two rows. The first row
+should be structure member names separated by whitespace. The second row
+should be the corresponding values for each structure member, separated
+by whitespace, in the same order as the header row.</p></div>
+<div class="paragraph"><p>For arrays of structs, the file should contain a heading row listing
+structure member names separated by whitespace. There should be one row
+for each element of the array, with structure member elements listed in
+the same order as the header row and separated by whitespace. (since
+Swift 0.4)</p></div>
+</div>
+<div class="sect2">
+<h3 id="_readdata2">9.2. readdata2</h3>
+<div class="paragraph"><p>readdata2 will read data from a specified file, like readdata, but
+using a different file format more closely related to that used by the
+ext mapper.</p></div>
+<div class="paragraph"><p>Input files should list, one per line, a path into a Swift structure,
+and the value for that position in the structure:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>rows<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">].</span>columns<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="color: #993399">0</span>
+rows<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">].</span>columns<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="color: #993399">2</span>
+rows<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">].</span>columns<span style="color: #990000">[</span><span style="color: #993399">2</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="color: #993399">4</span>
+rows<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">].</span>columns<span style="color: #990000">[</span><span style="color: #993399">0</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="color: #993399">1</span>
+rows<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">].</span>columns<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="color: #993399">3</span>
+rows<span style="color: #990000">[</span><span style="color: #993399">1</span><span style="color: #990000">].</span>columns<span style="color: #990000">[</span><span style="color: #993399">2</span><span style="color: #990000">]</span> <span style="color: #990000">=</span> <span style="color: #993399">5</span></tt></pre></div></div>
+<div class="paragraph"><p>which can be read into a structure defined like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> vector <span style="color: #FF0000">{</span>
+        <span style="color: #009900">int</span> columns<span style="color: #990000">[];</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">type</span> matrix <span style="color: #FF0000">{</span>
+        <span style="color: #008080">vector</span> rows<span style="color: #990000">[];</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">matrix</span> m<span style="color: #990000">;</span>
+
+m <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">readData2</span></span><span style="color: #990000">(</span><span style="color: #FF0000">"readData2.in"</span><span style="color: #990000">);</span></tt></pre></div></div>
+<div class="paragraph"><p>(since Swift 0.7)</p></div>
+</div>
+<div class="sect2">
+<h3 id="_trace">9.3. trace</h3>
+<div class="paragraph"><p>trace will log its parameters. By default these will appear on both
+stdout and in the run log file. Some formatting occurs to produce the
+log message. The particular output format should not be relied upon.
+(since Swift 0.4)</p></div>
+</div>
+<div class="sect2">
+<h3 id="_writedata">9.4. writeData</h3>
+<div class="paragraph"><p>writeData will write out data structures in the format described for
+readData</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_swift_configuration_properties">10. Swift configuration properties</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Various aspects of the behavior of the Swift Engine can be configured
+through properties. The Swift Engine recognizes a global, per
+installation properties file which can found in etc/swift.properties
+in the Swift installation directory and a user properties file which can
+be created by each user in ~/.swift/swift.properties. The Swift Engine
+will first load the global properties file. It will then try to load the
+user properties file. If a user properties file is found, individual
+properties explicitly set in that file will override the respective
+properties in the global properties file. Furthermore, some of the
+properties can be overridden directly using command line arguments to
+the <strong>swift</strong> command.</p></div>
+<div class="paragraph"><p>Swift properties are specified in the following format:</p></div>
+<div class="paragraph"><p><name>=<value></p></div>
+<div class="paragraph"><p>The value can contain variables which will be expanded when the
+properties file is read. Expansion is performed when the name of the
+variable is used inside the standard shell dereference construct:
+configuration file:</p></div>
+<div class="paragraph"><p>Swift Configuration Variables</p></div>
+<div class="paragraph"><p>swift.home</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Points to the Swift installation directory ($SWIFT_HOME). In
+general, this should not be set as Swift can find its own
+installation directory, and incorrectly setting it may impair the
+correct functionality of Swift.</tt></pre>
+</div></div>
+<div class="paragraph"><p>user.name</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The name of the current logged in user.</tt></pre>
+</div></div>
+<div class="paragraph"><p>user.home</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The user's home directory.</tt></pre>
+</div></div>
+<div class="paragraph"><p>The following is a list of valid Swift properties:</p></div>
+<div class="paragraph"><p>Swift Properties</p></div>
+<div class="paragraph"><p>caching.algorithm</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: LRU</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: LRU</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Swift caches files that are staged in on remote resources, and files
+that are produced remotely by applications, such that they can be
+re-used if needed without being transfered again. However, the
+amount of remote file system space to be used for caching can be
+limited using the swift:storagesize profile entry in the sites.xml file. Example:</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><pool</span></span> <span style="color: #009900">handle</span><span style="color: #990000">=</span><span style="color: #FF0000">"example"</span> <span style="color: #009900">sysinfo</span><span style="color: #990000">=</span><span style="color: #FF0000">"INTEL32::LINUX"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><gridftp</span></span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"gsiftp://example.org"</span> <span style="color: #009900">storage</span><span style="color: #990000">=</span><span style="color: #FF0000">"/scratch/swift"</span> <span style="color: #009900">major</span><span style="color: #990000">=</span><span style="color: #FF0000">"2"</span> <span style="color: #009900">minor</span><span style="color: #990000">=</span><span style="color: #FF0000">"4"</span> <span style="color: #009900">patch</span><span style="color: #990000">=</span><span style="color: #FF0000">"3"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><jobmanager</span></span> <span style="color: #009900">universe</span><span style="color: #990000">=</span><span style="color: #FF0000">"vanilla"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"example.org/jobmanager-pbs"</span> <span style="color: #009900">major</span><span style="color: #990000">=</span><span style="color: #FF0000">"2"</span> <span style="color: #009900">minor</span><span style="color: #990000">=</span><span style="color: #FF0000">"4"</span> <span style="color: #009900">patch</span><span style="color: #990000">=</span><span style="color: #FF0000">"3"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><workdirectory></span></span>/scratch/swift<span style="font-weight: bold"><span style="color: #0000FF"></workdirectory></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"SWIFT"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"storagesize"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>20000000<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"></pool></span></span></tt></pre></div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The decision of which files to keep in the cache and which files to
+remove is made considering the value of the caching.algorithm
+property. Currently, the only available value for this property is
+LRU, which would cause the least recently used files to be deleted
+first.</tt></pre>
+</div></div>
+<div class="paragraph"><p>clustering.enabled</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Enables clustering.</tt></pre>
+</div></div>
+<div class="paragraph"><p>clustering.min.time</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <int></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 60</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Indicates the threshold wall time for clustering, in seconds. Jobs
+that have a wall time smaller than the value of this property will
+be considered for clustering.</tt></pre>
+</div></div>
+<div class="paragraph"><p>clustering.queue.delay</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <int></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 4</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This property indicates the interval, in seconds, at which the
+clustering queue is processed.</tt></pre>
+</div></div>
+<div class="paragraph"><p>execution.retries</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: positive integers</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 2</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The number of time a job will be retried if it fails (giving a
+maximum of 1 + execution.retries attempts at execution)</tt></pre>
+</div></div>
+<div class="paragraph"><p>foreach.max.threads</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: positive integers</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 1024</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Limits the number of concurrent iterations that each foreach
+statement can have at one time. This conserves memory for swift
+programs that have large numbers of iterations (which would
+otherwise all be executed in parallel). (since Swift 0.9)</tt></pre>
+</div></div>
+<div class="paragraph"><p>ip.address</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <ipaddress></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: N/A</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The Globus GRAM service uses a callback mechanism to send
+notifications about the status of submitted jobs. The callback
+mechanism requires that the Swift client be reachable from the hosts
+the GRAM services are running on. Normally, Swift can detect the
+correct IP address of the client machine. However, in certain cases
+(such as the client machine having more than one network interface)
+the automatic detection mechanism is not reliable. In such cases,
+the IP address of the Swift client machine can be specified using
+this property. The value of this property must be a numeric address
+without quotes.</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This option is deprecated and the hostname property should be used
+instead.</tt></pre>
+</div></div>
+<div class="paragraph"><p>kickstart.always.transfer</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This property controls when output from Kickstart is transfered back
+to the submit site, if Kickstart is enabled. When set to false,
+Kickstart output is only transfered for jobs that fail. If set to
+true, Kickstart output is transfered after every job is completed
+or failed.</tt></pre>
+</div></div>
+<div class="paragraph"><p>kickstart.enabled</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false, maybe</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: maybe</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This option allows controlling of when Swift uses Kickstart.
+A value of false disables the use of Kickstart,
+while a value of true enables the use of Kickstart, in which case
+sites specified in the sites.xml file must have valid
+gridlaunch attributes. The maybe value will enable the use of
+Kickstart only on sites that have the gridlaunch attribute
+specified.</tt></pre>
+</div></div>
+<div class="paragraph"><p>lazy.errors</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Swift can report application errors in two modes, depending on the
+value of this property. If set to false, Swift will report the
+first error encountered and immediately stop execution. If set to
+true, Swift will attempt to run as much as possible from a
+SwiftScript program before stopping execution and reporting all
+errors encountered.</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>When developing SwiftScript programs, using the default value of
+false can make the program easier to debug. However in production
+runs, using true will allow more of a SwiftScript program to be
+run before Swift aborts execution.</tt></pre>
+</div></div>
+<div class="paragraph"><p>pgraph</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false, <file></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Swift can generate a Graphviz <http://www.graphviz.org/> file
+representing the structure of the SwiftScript program it has run. If
+this property is set to true, Swift will save the provenance graph
+in a file named by concatenating the program name and the instance
+ID (e.g. helloworld-ht0adgi315l61.dot).</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>If set to false, no provenance graph will be generated. If a file
+name is used, then the provenance graph will be saved in the
+specified file.</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The generated dot file can be rendered into a graphical form using
+Graphviz <http://www.graphviz.org/>, for example with a command-line
+such as:</tt></pre>
+</div></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ swift -pgraph graph1<span style="color: #990000">.</span>dot q1<span style="color: #990000">.</span>swift
+$ dot -ograph<span style="color: #990000">.</span>png -Tpng graph1<span style="color: #990000">.</span>dot</tt></pre></div></div>
+<div class="paragraph"><p>pgraph.graph.options</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <string></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: splines="compound", rankdir="TB"</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This property specifies a Graphviz <http://www.graphviz.org>
+specific set of parameters for the graph.</tt></pre>
+</div></div>
+<div class="paragraph"><p>pgraph.node.options</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <string></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: color="seagreen", style="filled"</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Used to specify a set of Graphviz <http://www.graphviz.org> specific
+properties for the nodes in the graph.</tt></pre>
+</div></div>
+<div class="paragraph"><p>provenance.log</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This property controls whether the log file will contain provenance
+information enabling this will increase the size of log files,
+sometimes significantly.</tt></pre>
+</div></div>
+<div class="paragraph"><p>replication.enabled</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Enables/disables replication. Replication is used to deal with jobs
+sitting in batch queues for abnormally large amounts of time. If
+replication is enabled and certain conditions are met, Swift creates
+and submits replicas of jobs, and allows multiple instances of a job
+to compete.</tt></pre>
+</div></div>
+<div class="paragraph"><p>replication.limit</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: positive integers</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 3</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The maximum number of replicas that Swift should attempt.</tt></pre>
+</div></div>
+<div class="paragraph"><p>sitedir.keep</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Indicates whether the working directory on the remote site should be
+left intact even when a run completes successfully. This can be used
+to inspect the site working directory for debugging purposes.</tt></pre>
+</div></div>
+<div class="paragraph"><p>sites.file</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <file></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: ${swift.home}/etc/sites.xml</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Points to the location of the site catalog, which contains a list of
+all sites that Swift should use.</tt></pre>
+</div></div>
+<div class="paragraph"><p>status.mode</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: files, provider</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: files</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Controls how Swift will communicate the result code of running user
+programs from workers to the submit side. In files mode, a file
+indicating success or failure will be created on the site shared
+filesystem. In provider mode, the execution provider job status
+will be used.</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>provider mode requires the underlying job execution system to
+correctly return exit codes. In at least the cases of GRAM2, and
+clusters used with any provider, exit codes are not returned, and so
+files mode must be used in those cases. Otherwise, provider mode
+can be used to reduce the amount of filesystem access. (since Swift
+0.8)</tt></pre>
+</div></div>
+<div class="paragraph"><p>tc.file</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <file></tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: ${swift.home}/etc/tc.data</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Points to the location of the transformation catalog file which
+contains information about installed applications. Details about the
+format of the transformation catalog can be found here
+<http://vds.uchicago.edu/vds/doc/userguide/html/H_TransformationCatalog.html>.</tt></pre>
+</div></div>
+<div class="paragraph"><p>tcp.port.range</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <start>,<end> where start and end are integers</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: none</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>A TCP port range can be specified to restrict the ports on which
+GRAM callback services are started. This is likely needed if your
+submit host is behind a firewall, in which case the firewall should
+be configured to allow incoming connections on ports in the range.</tt></pre>
+</div></div>
+<div class="paragraph"><p>throttle.file.operations</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <int>, off</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 8</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Limits the total number of concurrent file operations that can
+happen at any given time. File operations (like transfers) require
+an exclusive connection to a site. These connections can be
+expensive to establish. A large number of concurrent file operations
+may cause Swift to attempt to establish many such expensive
+connections to various sites. Limiting the number of concurrent file
+operations causes Swift to use a small number of cached connections
+and achieve better overall performance.</tt></pre>
+</div></div>
+<div class="paragraph"><p>throttle.host.submit</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <int>, off</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 2</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Limits the number of concurrent submissions for any of the sites
+Swift will try to send jobs to. In other words it guarantees that no
+more than the value of this throttle jobs sent to any site will be
+concurrently in a state of being submitted.</tt></pre>
+</div></div>
+<div class="paragraph"><p>throttle.score.job.factor</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <int>, off</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 4</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>The Swift scheduler has the ability to limit the number of
+concurrent jobs allowed on a site based on the performance history
+of that site. Each site is assigned a score (initially 1), which can
+increase or decrease based on whether the site yields successful or
+faulty job runs. The score for a site can take values in the (0.1,
+100) interval. The number of allowed jobs is calculated using the
+following formula:</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>2 + score*throttle.score.job.factor</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This means a site will always be allowed at least two concurrent
+jobs and at most 2 + 100*throttle.score.job.factor. With a default
+of 4 this means at least 2 jobs and at most 402.</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This parameter can also be set per site using the jobThrottle
+profile key in a site catalog entry.</tt></pre>
+</div></div>
+<div class="paragraph"><p>throttle.submit</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <int>, off</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 4</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Limits the number of concurrent submissions for a run. This throttle
+only limits the number of concurrent tasks (jobs) that are being
+sent to sites, not the total number of concurrent jobs that can be
+run. The submission stage in GRAM is one of the most CPU expensive
+stages (due mostly to the mutual authentication and delegation).
+Having too many concurrent submissions can overload either or both
+the submit host CPU and the remote host/head node causing degraded
+performance.</tt></pre>
+</div></div>
+<div class="paragraph"><p>throttle.transfers</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: <int>, off</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: 4</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Limits the total number of concurrent file transfers that can happen
+at any given time. File transfers consume bandwidth. Too many
+concurrent transfers can cause the network to be overloaded
+preventing various other signaling traffic from flowing properly.</tt></pre>
+</div></div>
+<div class="paragraph"><p>ticker.disable</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>When set to true, suppresses the output progress ticker that Swift
+sends to the console every few seconds during a run (since Swift 0.9)</tt></pre>
+</div></div>
+<div class="paragraph"><p>wrapper.invocation.mode</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: absolute, relative</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: absolute</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Determines if Swift remote wrappers will be executed by specifying
+an absolute path, or a path relative to the job initial working
+directory. In most cases, execution will be successful with either
+option. However, some execution sites ignore the specified initial
+working directory, and so absolute must be used. Conversely on
+some sites, job directories appear in a different place on the
+worker node file system than on the filesystem access node, with the
+execution system handling translation of the job initial working
+directory. In such cases, relative mode must be used. (since Swift
+0.9)</tt></pre>
+</div></div>
+<div class="paragraph"><p>wrapper.parameter.mode</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Controls how Swift will supply parameters to the remote wrapper
+script. args mode will pass parameters on the command line. Some
+execution systems do not pass commandline parameters sufficiently
+cleanly for Swift to operate correctly. files mode will pass
+parameters through an additional input file (since Swift 0.95). This
+provides a cleaner communication channel for parameters, at the
+expense of transferring an additional file for each job invocation.</tt></pre>
+</div></div>
+<div class="paragraph"><p>wrapperlog.always.transfer</p></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Valid values: true, false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>Default value: false</tt></pre>
+</div></div>
+<div class="literalblock">
+<div class="content">
+<pre><tt>This property controls when output from the Swift remote wrapper is
+transfered back to the submit site. When set to false, wrapper
+logs are only transfered for jobs that fail. If set to true,
+wrapper logs are transfered after every job is completed or failed.</tt></pre>
+</div></div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>sites.file=${vds.home}/etc/sites.xml
+tc.file=${vds.home}/etc/tc.data
+ip.address=192.168.0.1</tt></pre></div></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_profiles">11. Profiles</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Profiles are configuration parameters than can be specified either for
+sites or for transformation catalog entries. They influence the
+behaviour of Swift towards that site (for example, by changing the load
+Swift will place on that sites) or when running a particular procedure.</p></div>
+<div class="paragraph"><p>Profile entries for a site are specified in the site catalog. Profile
+entries for specific procedures are specified in the transformation
+catalog.</p></div>
+<div class="sect2">
+<h3 id="_karajan_namespace">11.1. Karajan namespace</h3>
+<div class="paragraph"><p>maxSubmitRate limits the maximum rate of job submission, in jobs per
+second. For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"karajan"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"maxSubmitRate"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>0.2<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span></tt></pre></div></div>
+<div class="paragraph"><p>will limit job submission to 0.2 jobs per second (or equivalently, one
+job every five seconds).</p></div>
+<div class="paragraph"><p>jobThrottle allows the job throttle factor (see Swift property
+throttle.score.job.factor to be
+set per site.</p></div>
+<div class="paragraph"><p>initialScore allows the initial score for rate limiting and site
+selection to be set to a value other than 0.</p></div>
+<div class="paragraph"><p>delayBase controls how much a site will be delayed when it performs
+poorly. With each reduction in a sites score by 1, the delay between
+execution attempts will increase by a factor of delayBase.</p></div>
+<div class="paragraph"><p>status.mode allows the status.mode property to be set per-site instead
+of for an entire run. See the Swift configuration properties section for
+more information. (since Swift 0.8)</p></div>
+</div>
+<div class="sect2">
+<h3 id="_swift_namespace">11.2. swift namespace</h3>
+<div class="paragraph"><p>storagesize limits the amount of space that will be used on the remote
+site for temporary files. When more than that amount of space is used,
+the remote temporary file cache will be cleared using the algorithm
+specified in the caching.algorithm property.</p></div>
+<div class="paragraph"><p>wrapperInterpreter - The wrapper interpreter indicates the command
+(executable) to be used to run the Swift wrapper script. The default is
+"/bin/bash" on Unix sites and "cscript.exe" on Windows sites.</p></div>
+<div class="paragraph"><p>wrapperInterpreterOptions - Allows specifying additional options to the
+executable used to run the Swift wrapper. The defaults are no options on
+Unix sites and "Nologo" on Windows sites.</p></div>
+<div class="paragraph"><p>wrapperScript - Specifies the name of the wrapper script to be used on a
+site. The defaults are "_swiftwrap" on Unix sites and "_swiftwrap.vbs"
+on Windows sites. If you specify a custom wrapper script, it must be
+present in the "libexec" directory of the Swift installation.</p></div>
+<div class="paragraph"><p>cleanupCommand Indicates the command to be run at the end of a Swift
+run to clean up the run directories on a remote site. Defaults are
+"/bin/rm" on Unix sites and "cmd.exe" on Windows sites</p></div>
+<div class="paragraph"><p>cleanupCommandOptions Specifies the options to be passed to the
+cleanup command above. The options are passed in the argument list to
+the cleanup command. After the options, the last argument is the
+directory to be deleted. The default on Unix sites is "-rf". The default
+on Windows sites is ["/C", "del", "/Q"].</p></div>
+</div>
+<div class="sect2">
+<h3 id="_globus_namespace">11.3. Globus namespace</h3>
+<div class="paragraph"><p>maxwalltime specifies a walltime limit for each job, in minutes.</p></div>
+<div class="paragraph"><p>The following formats are recognized:</p></div>
+<div class="ulist"><ul>
+<li>
+<p>
+Minutes
+</p>
+</li>
+<li>
+<p>
+Hours:Minutes
+</p>
+</li>
+<li>
+<p>
+Hours:Minutes:Seconds
+</p>
+</li>
+</ul></div>
+<div class="paragraph"><p>Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">localhost</span>       echo    <span style="color: #990000">/</span>bin<span style="color: #990000">/</span>echo       <span style="color: #008080">INSTALLED</span>       INTEL32<span style="color: #990000">::</span><span style="color: #008080">LINUX</span>  GLOBUS<span style="color: #990000">::</span>maxwalltime<span style="color: #990000">=</span><span style="color: #FF0000">"00:20:00"</span></tt></pre></div></div>
+<div class="paragraph"><p>When replication is enabled (see replication), then
+walltime will also be enforced at the Swift client side: when a job has
+been active for more than twice the maxwalltime, Swift will kill the job
+and regard it as failed.</p></div>
+<div class="paragraph"><p>When clustering is used, maxwalltime will be used to select which jobs
+will be clustered together. More information on this is available in the
+clustering section.</p></div>
+<div class="paragraph"><p>When coasters as used, maxwalltime influences the default coaster
+worker maxwalltime, and which jobs will be sent to which workers. More
+information on this is available in the coasters section.</p></div>
+<div class="paragraph"><p>queue is used by the PBS, GRAM2 and GRAM4 providers. This profile
+entry specifies which queue jobs will be submitted to. The valid queue
+names are site-specific.</p></div>
+<div class="paragraph"><p>host_types specifies the types of host that are permissible for a job
+to run on. The valid values are site-specific. This profile entry is
+used by the GRAM2 and GRAM4 providers.</p></div>
+<div class="paragraph"><p>condor_requirements allows a requirements string to be specified when
+Condor is used as an LRM behind GRAM2. Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span>
+<span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"condor_requirements"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>Arch == "X86_64" || Arch="INTEL"<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span></tt></pre></div></div>
+<div class="paragraph"><p>slots When using coasters, this parameter specifies the
+maximum number of jobs/blocks that the coaster scheduler will have
+running at any given time. The default is 20.</p></div>
+<div class="paragraph"><p>workersPerNode - This parameter determines how many coaster workers are
+started one each compute node. The default value is 1.</p></div>
+<div class="paragraph"><p>nodeGranularity - When allocating a coaster worker block, this parameter
+restricts the number of nodes in a block to a multiple of this value.
+The total number of workers will then be a multiple of workersPerNode *
+nodeGranularity. The default value is 1.</p></div>
+<div class="paragraph"><p>allocationStepSize - Each time the coaster block scheduler computes a
+schedule, it will attempt to allocate a number of slots from the number
+of available slots (limited using the above slots profile). This
+parameter specifies the maximum fraction of slots that are allocated in
+one schedule. Default is 0.1.</p></div>
+<div class="paragraph"><p>lowOverallocation - Overallocation is a function of the walltime of a
+job which determines how long (time-wise) a worker job will be. For
+example, if a number of 10s jobs are submitted to the coaster service,
+and the overallocation for 10s jobs is 10, the coaster scheduler will
+attempt to start worker jobs that have a walltime of 100s. The
+overallocation is controlled by manipulating the end-points of an
+overallocation function. The low endpoint, specified by this parameter,
+is the overallocation for a 1s job. The high endpoint is the
+overallocation for a (theoretical) job of infinite length. The
+overallocation for job sizes in the [1s, +inf) interval is determined
+using an exponential decay function: overallocation(walltime) = walltime
+* (lowOverallocation - highOverallocation) * exp(-walltime *
+overallocationDecayFactor) + highOverallocation The default value of
+lowOverallocation is 10.</p></div>
+<div class="paragraph"><p>highOverallocation - The high overallocation endpoint (as described
+above). Default: 1</p></div>
+<div class="paragraph"><p>overallocationDecayFactor - The decay factor for the overallocation
+curve. Default 0.001 (1e-3).</p></div>
+<div class="paragraph"><p>spread - When a large number of jobs is submitted to the a coaster
+service, the work is divided into blocks. This parameter allows a rough
+control of the relative sizes of those blocks. A value of 0 indicates
+that all work should be divided equally between the blocks (and blocks
+will therefore have equal sizes). A value of 1 indicates the largest
+possible spread. The existence of the spread parameter is based on the
+assumption that smaller overall jobs will generally spend less time in
+the queue than larger jobs. By submitting blocks of different sizes,
+submitted jobs may be finished quicker by smaller blocks. Default: 0.9.</p></div>
+<div class="paragraph"><p>reserve - Reserve time is a time in the allocation of a worker that sits
+at the end of the worker time and is useable only for critical
+operations. For example, a job will not be submitted to a worker if it
+overlaps its reserve time, but a job that (due to inaccurate walltime
+specification) runs into the reserve time will not be killed (note that
+once the worker exceeds its walltime, the queuing system will kill the
+job anyway). Default 10 (s).</p></div>
+<div class="paragraph"><p>maxnodes - Determines the maximum number of nodes that can be allocated
+in one coaster block. Default: unlimited.</p></div>
+<div class="paragraph"><p>maxtime - Indicates the maximum walltime that a coaster block can have.
+Default: unlimited.</p></div>
+<div class="paragraph"><p>remoteMonitorEnabled - If set to "true", the client side will get a
+Swing window showing, graphically, the state of the coaster scheduler
+(blocks, jobs, etc.). Default: false</p></div>
+</div>
+<div class="sect2">
+<h3 id="_env_namespace">11.4. env namespace</h3>
+<div class="paragraph"><p>Profile keys set in the env namespace will be set in the unix
+environment of the executed job. Some environment variables influence
+the worker-side behaviour of Swift:</p></div>
+<div class="paragraph"><p>PATHPREFIX - set in env namespace profiles. This path is prefixed onto
+the start of the PATH when jobs are executed. It can be more useful
+than setting the PATH environment variable directly, because setting
+PATH will cause the execution site’s default path to be lost.</p></div>
+<div class="paragraph"><p>SWIFT_JOBDIR_PATH - set in env namespace profiles. If set, then Swift
+will use the path specified here as a worker-node local temporary
+directory to copy input files to before running a job. If unset, Swift
+will keep input files on the site-shared filesystem. In some cases,
+copying to a worker-node local directory can be much faster than having
+applications access the site-shared filesystem directly.</p></div>
+<div class="paragraph"><p>SWIFT_EXTRA_INFO - set in env namespace profiles. If set, then Swift
+will execute the command specified in SWIFT_EXTRA_INFO on execution
+sites immediately before each application execution, and will record the
+stdout of that command in the wrapper info log file for that job. This
+is intended to allow software version and other arbitrary information
+about the remote site to be gathered and returned to the submit side.
+(since Swift 0.9)</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_the_site_catalog_sites_xml">12. The Site Catalog - sites.xml</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>The site catalog lists details of each site that Swift can use. The
+default file contains one entry for local execution, and a large number
+of commented-out example entries for other sites.</p></div>
+<div class="paragraph"><p>By default, the site catalog is stored in etc/sites.xml. This path can
+be overridden with the sites.file configuration property, either in
+the Swift configuration file or on the command line.</p></div>
+<div class="paragraph"><p>The sites file is formatted as XML. It consists of <pool> elements,
+one for each site that Swift will use.</p></div>
+<div class="sect2">
+<h3 id="_pool_element">12.1. Pool element</h3>
+<div class="paragraph"><p>Each pool element must have a handle attribute, giving a symbolic
+name for the site. This can be any name, but must correspond to entries
+for that site in the transformation catalog.</p></div>
+<div class="paragraph"><p>Optionally, the gridlaunch attribute can be used to specify the path
+to kickstart on the site.</p></div>
+<div class="paragraph"><p>Each pool must specify a file transfer method, an execution method and
+a remote working directory. Optionally, profile settings can
+be specified.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_file_transfer_method">12.2. File transfer method</h3>
+<div class="paragraph"><p>Transfer methods are specified with either the <gridftp> element or
+the <filesystem> element.</p></div>
+<div class="paragraph"><p>To use gridftp or local filesystem copy, use the <gridftp> element:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><gridftp</span></span>  <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"gsiftp://evitable.ci.uchicago.edu"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The url attribute may specify a GridFTP server, using the gsiftp URI
+scheme; or it may specify that filesystem copying will be used (which
+assumes that the site has access to the same filesystem as the
+submitting machine) using the URI local://localhost.</p></div>
+<div class="paragraph"><p>Filesystem access using scp (the SSH copy protocol) can be specified
+using the <filesystem> element:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><filesystem</span></span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"www11.i2u2.org"</span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"ssh"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>For additional ssh configuration information, see the ssh execution
+provider documentation below.</p></div>
+<div class="paragraph"><p>Filesystem access using CoG coasters can be also be
+specified using the <filesystem> element. More detail about
+configuring that can be found in the CoG coasters section.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_execution_method">12.3. Execution method</h3>
+<div class="paragraph"><p>Execution methods may be specified either with the <jobmanager> or
+<execution> element.</p></div>
+<div class="paragraph"><p>The <jobmanager> element can be used to specify execution through
+GRAM2. For example,</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><jobmanager</span></span> <span style="color: #009900">universe</span><span style="color: #990000">=</span><span style="color: #FF0000">"vanilla"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"evitable.ci.uchicago.edu/jobmanager-fork"</span> <span style="color: #009900">major</span><span style="color: #990000">=</span><span style="color: #FF0000">"2"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The universe attribute should always be set to vanilla. The url
+attribute should specify the name of the GRAM2 gatekeeper host, and the
+name of the jobmanager to use. The major attribute should always be set
+to 2.</p></div>
+<div class="paragraph"><p>The <execution> element can be used to specify execution through other
+execution providers:</p></div>
+<div class="paragraph"><p>To use GRAM4, specify the gt4 provider. For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"gt4"</span> <span style="color: #009900">jobmanager</span><span style="color: #990000">=</span><span style="color: #FF0000">"PBS"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"tg-grid.uc.teragrid.org"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The url attribute should specify the GRAM4 submission site. The
+jobmanager attribute should specify which GRAM4 jobmanager will be used.</p></div>
+<div class="paragraph"><p>For local execution, the local provider should be used, like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"local"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"none"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>For PBS execution, the pbs provider should be used:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"pbs"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"none"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The GLOBUS::queue profile key can be used to
+specify which PBS queue jobs will be submitted to.</p></div>
+<div class="paragraph"><p>For execution through a local Condor installation, the condor provider
+should be used. This provider can run jobs either in the default vanilla
+universe, or can use Condor-G to run jobs on remote sites.</p></div>
+<div class="paragraph"><p>When running locally, only the <execution> element needs to be specified:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"condor"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"none"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>When running with Condor-G, it is necessary to specify the Condor grid
+universe and the contact string for the remote site. For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"condor"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"jobType"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>grid<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span>
+<span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"gridResource"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>gt2 belhaven-1.renci.org/jobmanager-fork<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span></tt></pre></div></div>
+<div class="paragraph"><p>For execution through SSH, the ssh provider should be used:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"www11.i2u2.org"</span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"ssh"</span><span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>with configuration made in ~/.ssh/auth.defaults with the string
+<em>www11.i2u2.org</em> changed to the appropriate host name:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>www11<span style="color: #990000">.</span>i2u2<span style="color: #990000">.</span>org<span style="color: #990000">.</span><span style="font-weight: bold"><span style="color: #0000FF">type</span></span><span style="color: #990000">=</span>key
+www11<span style="color: #990000">.</span>i2u2<span style="color: #990000">.</span>org<span style="color: #990000">.</span><span style="color: #009900">username</span><span style="color: #990000">=</span>hategan
+www11<span style="color: #990000">.</span>i2u2<span style="color: #990000">.</span>org<span style="color: #990000">.</span><span style="color: #009900">key</span><span style="color: #990000">=</span>/home/mike<span style="color: #990000">/.</span>ssh/i2u2portal
+www11<span style="color: #990000">.</span>i2u2<span style="color: #990000">.</span>org<span style="color: #990000">.</span><span style="color: #009900">passphrase</span><span style="color: #990000">=</span>XXXX</tt></pre></div></div>
+<div class="paragraph"><p>For execution using the CoG Coaster mechanism, the coaster
+provider should be used:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"coaster"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"tg-grid.uc.teragrid.org"</span>
+    <span style="color: #009900">jobmanager</span><span style="color: #990000">=</span><span style="color: #FF0000">"gt2:gt2:pbs"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>More details about configuration of coasters can be found in the section
+on coasters.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_work_directory">12.4. Work directory</h3>
+<div class="paragraph"><p>The workdirectory element specifies where on the site files can be
+stored.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><workdirectory></span></span>/home/benc<span style="font-weight: bold"><span style="color: #0000FF"></workdirectory></span></span></tt></pre></div></div>
+<div class="paragraph"><p>This file must be accessible through the transfer mechanism specified in
+the <gridftp> element and also mounted on all worker nodes that will
+be used for execution. A shared cluster scratch filesystem is
+appropriate for this.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_profiles_2">12.5. Profiles</h3>
+<div class="paragraph"><p>Profile keys can be specified using the <profile> element.
+For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"queue"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>fast<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The site catalog format is an evolution of the VDS site catalog format
+which is documented here
+<a href="http://vds.uchicago.edu/vds/doc/userguide/html/H_SiteCatalog.html">http://vds.uchicago.edu/vds/doc/userguide/html/H_SiteCatalog.html</a>.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_the_transformation_catalog_tc_data">13. The Transformation Catalog - tc.data</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>The transformation catalog lists where application executables are
+located on remote sites.</p></div>
+<div class="paragraph"><p>By default, the site catalog is stored in etc/tc.data. This path can
+be overridden with the tc.file configuration property, either in the
+Swift configuration file or on the command line.</p></div>
+<div class="paragraph"><p>The format is one line per executable per site, with fields separated by
+tabs. Spaces cannot be used to separate fields.</p></div>
+<div class="paragraph"><p>Some example entries:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>localhost  echo    /bin/echo       INSTALLED       INTEL32<span style="color: #990000">::</span>LINUX  null
+TGUC       touch   /usr/bin/touch  INSTALLED       INTEL32<span style="color: #990000">::</span>LINUX  GLOBUS<span style="color: #990000">::</span><span style="color: #009900">maxwalltime</span><span style="color: #990000">=</span><span style="color: #FF0000">"0:1"</span></tt></pre></div></div>
+<div class="paragraph"><p>The fields are: site, transformation name, executable path, installation
+status, platform, and profile entrys.</p></div>
+<div class="paragraph"><p>The site field should correspond to a site name listed in the sites catalog.</p></div>
+<div class="paragraph"><p>The transformation name should correspond to the transformation name
+used in a SwiftScript app procedure.</p></div>
+<div class="paragraph"><p>The executable path should specify where the particular executable is
+located on that site.</p></div>
+<div class="paragraph"><p>The installation status and platform fields are not used. Set them to
+INSTALLED and INTEL32::LINUX respectively.</p></div>
+<div class="paragraph"><p>The profiles field should be set to null if no profile entries are to
+be specified, or should contain the profile entries separated by
+semicolons.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_build_options">14. Build options</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>See the Swift download page
+<a href="http://www.ci.uchicago.edu/swift/downloads/">http://www.ci.uchicago.edu/swift/downloads/</a> for instructions on
+downloading and building Swift from source. When building, various build
+options can be supplied on the ant commandline. These are summarised here:</p></div>
+<div class="paragraph"><p>with-provider-condor - build with CoG condor provider</p></div>
+<div class="paragraph"><p>with-provider-coaster - build with CoG coaster provider (see the
+section on coasters). Since 0.8, coasters are always built,
+and this option has no effect.</p></div>
+<div class="paragraph"><p>with-provider-deef - build with Falkon provider deef. In order for
+this option to work, it is necessary to check out the provider-deef code
+in the cog/modules directory alongside swift:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ cd cog/modules
+$ svn co https<span style="color: #990000">:</span>//svn<span style="color: #990000">.</span>ci<span style="color: #990000">.</span>uchicago<span style="color: #990000">.</span>edu/svn/vdl<span style="color: #993399">2</span>/provider-deef
+$ cd <span style="color: #990000">..</span>/swift
+$ ant -Dwith-provider-deef<span style="color: #990000">=</span><span style="font-weight: bold"><span style="color: #0000FF">true</span></span> redist</tt></pre></div></div>
+<div class="paragraph"><p>with-provider-wonky - build with provider-wonky, an execution provider
+that provides delays and unreliability for the purposes of testing
+Swift’s fault tolerance mechanisms. In order for this option to work, it
+is necessary to check out the provider-wonky code in the |cog/modules|
+directory alongside swift:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ cd cog/modules
+$ svn co https<span style="color: #990000">:</span>//svn<span style="color: #990000">.</span>ci<span style="color: #990000">.</span>uchicago<span style="color: #990000">.</span>edu/svn/vdl<span style="color: #993399">2</span>/provider-wonky
+$ cd <span style="color: #990000">..</span>/swift<span style="color: #990000">|*</span>
+$ ant -Dwith-provider-wonky<span style="color: #990000">=</span><span style="font-weight: bold"><span style="color: #0000FF">true</span></span> redist</tt></pre></div></div>
+<div class="paragraph"><p>no-supporting - produces a distribution without supporting commands
+such as grid-proxy-init. This is intended for when the Swift
+distribution will be used in an environment where those commands are
+already provided by other packages, where the Swift package should be
+providing only Swift commands, and where the presence of commands such
+as grid-proxy-init from the Swift distribution in the path will mask the
+presence of those commands from their true distribution package such as
+a Globus Toolkit package.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ ant -Dno-supporting<span style="color: #990000">=</span><span style="font-weight: bold"><span style="color: #0000FF">true</span></span> redist</tt></pre></div></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_kickstart">15. Kickstart</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Kickstart is a tool that can be used to gather various information about
+the remote execution environment for each job that Swift tries to run.</p></div>
+<div class="paragraph"><p>For each job, Kickstart generates an XML invocation record. By default
+this record is staged back to the submit host if the job fails.</p></div>
+<div class="paragraph"><p>Before it can be used it must be installed on the remote site and the
+sites file must be configured to point to kickstart.</p></div>
+<div class="paragraph"><p>Kickstart can be downloaded as part of the Pegasus <em>worker package</em>
+available from the worker packages section of the Pegasus download page
+<a href="http://pegasus.isi.edu/code.php">http://pegasus.isi.edu/code.php</a>.</p></div>
+<div class="paragraph"><p>Untar the relevant worker package somewhere where it is visible to all
+of the worker nodes on the remote execution machine (such as in a shared
+application filesystem).</p></div>
+<div class="paragraph"><p>Now configure the gridlaunch attribute of the sites catalog to point to
+that path, by adding a gridlaunch attribute to the pool element in
+the site catalog:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><pool</span></span> <span style="color: #009900">handle</span><span style="color: #990000">=</span><span style="color: #FF0000">"example"</span> <span style="color: #009900">gridlaunch</span><span style="color: #990000">=</span><span style="color: #FF0000">"/usr/local/bin/kickstart"</span> <span style="color: #009900">sysinfo</span><span style="color: #990000">=</span><span style="color: #FF0000">"INTEL32::LINUX"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>
+...
+<span style="font-weight: bold"><span style="color: #0000FF"></pool></span></span></tt></pre></div></div>
+<div class="paragraph"><p>There are various kickstat.* properties, which have sensible default
+values. These are documented in the properties section.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_reliability_mechanisms">16. Reliability mechanisms</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>This section details reliabilty mechanisms in Swift: retries, restarts
+and replication.</p></div>
+<div class="sect2">
+<h3 id="_retries">16.1. Retries</h3>
+<div class="paragraph"><p>If an application procedure execution fails, Swift will attempt that
+execution again repeatedly until it succeeds, up until the limit defined
+in the execution.retries configuration property.</p></div>
+<div class="paragraph"><p>Site selection will occur for retried jobs in the same way that it
+happens for new jobs. Retried jobs may run on the same site or may run
+on a different site.</p></div>
+<div class="paragraph"><p>If the retry limit execution.retries is reached for an application
+procedure, then that application procedure will fail. This will cause
+the entire run to fail - either immediately (if the lazy.errors
+property is false) or after all other possible work has been attempted
+(if the lazy.errors property is true).</p></div>
+</div>
+<div class="sect2">
+<h3 id="_restarts">16.2. Restarts</h3>
+<div class="paragraph"><p>If a run fails, Swift can resume the program from the point of failure.
+When a run fails, a restart log file will be left behind in a file named
+using the unique job ID and a .rlog extension. This restart log can
+then be passed to a subsequent Swift invocation using the -resume
+parameter. Swift will resume execution, avoiding execution of
+invocations that have previously completed successfully. The SwiftScript
+source file and input data files should not be modified between runs.</p></div>
+<div class="paragraph"><p>Every run creates a restart log file with a named composed of the file
+name of the workflow being executed, an invocation ID, a numeric ID, and
+the .rlog extension. For example, example.swift, when executed,
+could produce the following restart log file:
+example-ht0adgi315l61.0.rlog. Normally, if the run completes
+successfully, the restart log file is deleted. If however the workflow
+fails, swift can use the restart log file to continue execution from a
+point before the failure occurred. In order to restart from a restart
+log file, the -resume logfile argument can be used after the
+SwiftScript program file name. Example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>$ swift -resume example-ht0adgi315l61<span style="color: #990000">.</span><span style="color: #993399">0</span><span style="color: #990000">.</span>rlog example<span style="color: #990000">.</span>swift<span style="color: #990000">.</span></tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_replication">16.3. Replication</h3>
+<div class="paragraph"><p>When an execution job has been waiting in a site queue for a certain
+period of time, Swift can resubmit replicas of that job (up to the limit
+defined in the replication.limit configuration property). When any of
+those jobs moves from queued to active state, all of the other replicas
+will be cancelled.</p></div>
+<div class="paragraph"><p>This is intended to deal with situations where some sites have a
+substantially longer (sometimes effectively infinite) queue time than
+other sites. Selecting those slower sites can cause a very large delay
+in overall run time.</p></div>
+<div class="paragraph"><p>Replication can be enabled by setting the replication.enabled
+configuration property to true. The maximum number of replicas that
+will be submitted for a job is controlled by the replication.limit
+configuration property.</p></div>
+<div class="paragraph"><p>When replication is enabled, Swift will also enforce the maxwalltime
+profile setting for jobs as documented in the profiles section.</p></div>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_clustering">17. Clustering</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Swift can group a number of short job submissions into a single larger
+job submission to minimize overhead involved in launching jobs (for
+example, caused by security negotiation and queuing delay). In general,
+CoG coasters should be used in preference to the clustering
+mechanism documented in this section.</p></div>
+<div class="paragraph"><p>By default, clustering is disabled. It can be activated by setting the
+clustering.enabled property to true.</p></div>
+<div class="paragraph"><p>A job is eligible for clustering if the GLOBUS::maxwalltime profile
+is specified in the tc.data entry for that job, and its value is
+less than the value of the clustering.min.time property.</p></div>
+<div class="paragraph"><p>Two or more jobs are considered compatible if they share the same site
+and do not have conflicting profiles (e.g. different values for the same
+environment variable).</p></div>
+<div class="paragraph"><p>When a submitted job is eligible for clustering, it will be put in a
+clustering queue rather than being submitted to a remote site. The
+clustering queue is processed at intervals specified by the
+clustering.queue.delay property. The
+processing of the clustering queue consists of selecting compatible jobs
+and grouping them into clusters whose maximum wall time does not exceed
+twice the value of the clustering.min.time property.</p></div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_coasters">18. Coasters</h2>
+<div class="sectionbody">
+<div class="paragraph"><p>Coasters were introduced in Swift v0.6 as an experimental feature.</p></div>
+<div class="paragraph"><p>In many applications, Swift performance can be greatly enhanced by the
+use of CoG coasters. CoG coasters provide a low-overhead job submission
+and file transfer mechanism suited for the execution of short jobs (on
+the order of a few seconds) and the transfer of small files (on the
+order of a few kilobytes) for which other grid protocols such as GRAM
+and GridFTP are poorly suited.</p></div>
+<div class="paragraph"><p>The coaster mechanism submits a head job using some other execution
+mechanism such as GRAM, and for each worker node that will be used in a
+remote cluster, it submits a worker job, again using some other
+execution mechanism such as GRAM. Details on the design of the coaster
+mechanism can be found here. <a href="http://wiki.cogkit.org/wiki/Coasters">http://wiki.cogkit.org/wiki/Coasters</a></p></div>
+<div class="paragraph"><p>The head job manages file transfers and the dispatch of execution jobs
+to workers. Much of the overhead associated with other grid protocols
+(such as authentication and authorization, and allocation of worker
+nodes by the site’s local resource manager) is reduced, because that
+overhead is associated with the allocation of a coaster head or coaster
+worker, rather than with every Swift-level procedure invocation;
+potentially hundreds or thousands of Swift-level procedure invocations
+can be run through a single worker.</p></div>
+<div class="paragraph"><p>Coasters can be configured for use in two situations: job execution and
+file transfer.</p></div>
+<div class="paragraph"><p>To use for job execution, specify a sites.xml execution element like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><execution</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"coaster"</span> <span style="color: #009900">jobmanager</span><span style="color: #990000">=</span><span style="color: #FF0000">"gt2:gt2:pbs"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"grid.myhost.org"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The jobmanager string contains more detail than with other providers. It
+contains either two or three colon separated fields: 1:the provider to
+be use to execute the coaster head job - this provider will submit from
+the Swift client side environment. Commonly this will be one of the GRAM
+providers; 2: the provider to be used to execute coaster worker jobs.
+This provider will be used to submit from the coaster head job
+environment, so a local scheduler provider can sometimes be used instead
+of GRAM. 3: optionally, the jobmanager to be used when submitting worker
+job using the provider specified in field 2.</p></div>
+<div class="paragraph"><p>To use for file transfer, specify a sites.xml filesystem element like this:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><filesystem</span></span> <span style="color: #009900">provider</span><span style="color: #990000">=</span><span style="color: #FF0000">"coaster"</span> <span style="color: #009900">url</span><span style="color: #990000">=</span><span style="color: #FF0000">"gt2://grid.myhost.org"</span> <span style="font-weight: bold"><span style="color: #0000FF">/></span></span></tt></pre></div></div>
+<div class="paragraph"><p>The url parameter should be a pseudo-URI formed with the URI scheme
+being the name of the provider to use to submit the coaster head job,
+and the hostname portion being the hostname to be used to execute the
+coaster head job. Note that this provider and hostname will be used for
+execution of a coaster head job, not for file transfer; so for example,
+a GRAM endpoint should be specified here rather than a GridFTP endpoint.</p></div>
+<div class="paragraph"><p>Coasters are affected by the following profile settings, which are
+documented in the Globus namespace profile section:</p></div>
+<div class="tableblock">
+<table rules="all"
+width="100%"
+frame="border"
+cellspacing="0" cellpadding="4">
+<col width="50%" />
+<col width="50%" />
+<thead>
+<tr>
+<th align="left" valign="top">Profile key</th>
+<th align="left" valign="top">Brief description</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td align="left" valign="top"><p class="table">slots</p></td>
+<td align="left" valign="top"><p class="table">How many maximum LRM jobs/worker blocks are allowed</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">workersPerNode</p></td>
+<td align="left" valign="top"><p class="table">How many coaster workers to run per execution node</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">nodeGranularity</p></td>
+<td align="left" valign="top"><p class="table">Each worker block uses a number of nodes that is a
+multiple of this number</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">lowOverallocation</p></td>
+<td align="left" valign="top"><p class="table">How many times larger than the job walltime should a
+block’s walltime be if all jobs are 1s long</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">highOverallocation</p></td>
+<td align="left" valign="top"><p class="table">How many times larger than the job walltime should a
+block’s walltime be if all jobs are infinitely long</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">overallocationDecayFactor</p></td>
+<td align="left" valign="top"><p class="table">How quickly should the overallocation curve
+tend towards the highOverallocation as job walltimes get larger</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">spread</p></td>
+<td align="left" valign="top"><p class="table">By how much should worker blocks vary in worker size</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">workersPerNode</p></td>
+<td align="left" valign="top"><p class="table">How many coaster workers to run per execution node</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">reserve</p></td>
+<td align="left" valign="top"><p class="table">How many seconds to reserve in a block’s walltime for
+starting/shutdown operations</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">maxnodes</p></td>
+<td align="left" valign="top"><p class="table">The maximum number of nodes allowed in a block</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">maxtime</p></td>
+<td align="left" valign="top"><p class="table">The maximum number of walltime allowed for a block</p></td>
+</tr>
+<tr>
+<td align="left" valign="top"><p class="table">remoteMonitorEnabled</p></td>
+<td align="left" valign="top"><p class="table">If true, show a graphical display of the status of
+the coaster service</p></td>
+</tr>
+</tbody>
+</table>
+</div>
+</div>
+</div>
+<div class="sect1">
+<h2 id="_how_to_tips_for_specific_user_communities">19. How-To Tips for Specific User Communities</h2>
+<div class="sectionbody">
+<div class="sect2">
+<h3 id="_saving_logs_for_uchicago_ci_users">19.1. Saving Logs - for UChicago CI Users</h3>
+<div class="paragraph"><p>If you have a UChicago Computation Institute account, run this command
+in your submit directory after each run. It will copy all your logs and
+kickstart records into a directory at the CI for reporting, usage
+tracking, support and debugging.</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>rsync --ignore-existing <span style="color: #990000">*.</span>log <span style="color: #990000">*.</span>d login<span style="color: #990000">.</span>ci<span style="color: #990000">.</span>uchicago<span style="color: #990000">.</span>edu<span style="color: #990000">:</span>/disks/ci-gpfs/swift/swift-logs<span style="color: #990000">/</span> --verbose</tt></pre></div></div>
+</div>
+<div class="sect2">
+<h3 id="_specifying_teragrid_allocations">19.2. Specifying TeraGrid allocations</h3>
+<div class="paragraph"><p>TeraGrid users with no default project or with several project
+allocations can specify a project allocation using a profile key in the
+site catalog entry for a TeraGrid site:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><profile</span></span> <span style="color: #009900">namespace</span><span style="color: #990000">=</span><span style="color: #FF0000">"globus"</span> <span style="color: #009900">key</span><span style="color: #990000">=</span><span style="color: #FF0000">"project"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>TG-CCR080002N<span style="font-weight: bold"><span style="color: #0000FF"></profile></span></span></tt></pre></div></div>
+<div class="paragraph"><p>More information on the TeraGrid allocations process can be found here
+<a href="http://www.teragrid.org/userinfo/access/allocations.php">http://www.teragrid.org/userinfo/access/allocations.php</a>.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_launching_mpi_jobs_from_swift">19.3. Launching MPI jobs from Swift</h3>
+<div class="paragraph"><p>Here is an example of running a simple MPI program.</p></div>
+<div class="paragraph"><p>In SwiftScript, we make an invocation that does not look any different
+from any other invocation. In the below code, we do not have any input
+files, and have two output files on stdout and stderr:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="color: #008080">type</span> file<span style="color: #990000">;</span>
+
+<span style="color: #990000">(</span><span style="color: #008080">file</span> o<span style="color: #990000">,</span> <span style="color: #008080">file</span> e<span style="color: #990000">)</span> <span style="font-weight: bold"><span style="color: #000000">p</span></span><span style="color: #990000">()</span> <span style="color: #FF0000">{</span>
+    app <span style="color: #FF0000">{</span>
+        <span style="color: #008080">mpi</span> stdout<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>o<span style="color: #990000">)</span> stderr<span style="color: #990000">=</span>@<span style="font-weight: bold"><span style="color: #000000">filename</span></span><span style="color: #990000">(</span>e<span style="color: #990000">);</span>
+    <span style="color: #FF0000">}</span>
+<span style="color: #FF0000">}</span>
+
+<span style="color: #008080">file</span> mpiout <span style="color: #990000"><</span><span style="color: #FF0000">"mpi.out"</span><span style="color: #990000">>;</span>
+<span style="color: #008080">file</span> mpierr <span style="color: #990000"><</span><span style="color: #FF0000">"mpi.err"</span><span style="color: #990000">>;</span>
+
+<span style="color: #990000">(</span>mpiout<span style="color: #990000">,</span> mpierr<span style="color: #990000">)</span> <span style="color: #990000">=</span> <span style="font-weight: bold"><span style="color: #000000">p</span></span><span style="color: #990000">();</span></tt></pre></div></div>
+<div class="paragraph"><p>Now we define how <em>mpi</em> will run in tc.data:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt>tguc    mpi             /home/benc/mpi/mpi<span style="color: #990000">.</span>sh   INSTALLED       INTEL32<span style="color: #990000">::</span>LINUX GLOBUS<span style="color: #990000">::</span><span style="color: #009900">host_xcount</span><span style="color: #990000">=</span><span style="color: #993399">3</span></tt></pre></div></div>
+<div class="paragraph"><p>mpi.sh is a wrapper script that launches the MPI program. It must be
+installed on the remote site:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-style: italic"><span style="color: #9A1900">#!/bin/bash</span></span>
+mpirun -np <span style="color: #993399">3</span> -machinefile <span style="color: #009900">$PBS_NODEFILE</span> /home/benc/mpi/a<span style="color: #990000">.</span>out</tt></pre></div></div>
+<div class="paragraph"><p>Because of the way that Swift runs its server side code,
+provider-specific MPI modes (such as GRAM jobType=mpi) should not be
+used. Instead, the mpirun command should be explicitly invoked.</p></div>
+</div>
+<div class="sect2">
+<h3 id="_running_on_windows">19.4. Running on Windows</h3>
+<div class="paragraph"><p>Since 10/11/09, the development version of Swift has the ability to run
+on a Windows machine, as well as the ability to submit jobs to a Windows
+site (provided that an appropriate provider is used).</p></div>
+<div class="paragraph"><p>In order to launch Swift on Windows, use the provided batch file
+(swift.bat). In certain cases, when a large number of jar libraries are
+present in the Swift lib directory and depending on the exact location
+of the Swift installation, the classpath environment variable that the
+Swift batch launcher tries to create may be larger than what Windows can
+handle. In such a case, either install Swift in a directory closer to
+the root of the disk (say, c:\swift) or remove non-essential jar files
+from the Swift lib directory.</p></div>
+<div class="paragraph"><p>Due to the large differences between Windows and Unix environments,
+Swift must use environment specific tools to achieve some of its goals.
+In particular, each Swift executable is launched using a wrapper script.
+This script is a Bourne Shell script. On Windows machines, which have no
+Bourne Shell interpreter installed by default, the Windows Scripting
+Host is used instead, and the wrapper script is written in VBScript.
+Similarly, when cleaning up after a run, the "/bin/rm" command available
+in typical Unix environments must be replaced by the "del" shell command.</p></div>
+<div class="paragraph"><p>It is important to note that in order to select the proper set of tools
+to use, Swift must know when a site runs under Windows. To inform Swift
+of this, specify the "sysinfo" attribute for the "pool" element in the
+site catalog. For example:</p></div>
+<div class="listingblock">
+<div class="content"><!-- Generator: GNU source-highlight 3.1.4
+by Lorenzo Bettini
+http://www.lorenzobettini.it
+http://www.gnu.org/software/src-highlite -->
+<pre><tt><span style="font-weight: bold"><span style="color: #0000FF"><pool</span></span> <span style="color: #009900">handle</span><span style="color: #990000">=</span><span style="color: #FF0000">"localhost"</span> <span style="color: #009900">sysinfo</span><span style="color: #990000">=</span><span style="color: #FF0000">"INTEL32::WINDOWS"</span><span style="font-weight: bold"><span style="color: #0000FF">></span></span>
+...
+<span style="font-weight: bold"><span style="color: #0000FF"></pool></span></span></tt></pre></div></div>
+</div>
+</div>
+</div>
+</div>
+<div id="footnotes"><hr /></div>
+<div id="footer">
+<div id="footer-text">
+Last updated 2011-05-16 14:11:15 CDT
+</div>
+</div>
+</body>
+</html>

Added: trunk/docs/userguide/userguide.txt
===================================================================
--- trunk/docs/userguide/userguide.txt	                        (rev 0)
+++ trunk/docs/userguide/userguide.txt	2011-05-16 19:38:01 UTC (rev 4480)
@@ -0,0 +1,3000 @@
+Swift User Guide
+================
+
+:toc:
+:icons:
+:website: http://www.ci.uchicago.edu/swift/guides/userguide.php
+:numbered:
+
+Overview
+--------
+This manual provides reference material for Swift: the SwiftScript
+language and the Swift runtime system. For introductory material,
+consult the Swift tutorial
+<http://www.ci.uchicago.edu/swift/guides/tutorial.php>.
+
+Swift is a data-oriented coarse grained scripting language that supports
+dataset typing and mapping, dataset iteration, conditional branching,
+and procedural composition.
+
+Swift programs (or workflows) are written in a language called
+SwiftScript.
+
+SwiftScript programs are dataflow oriented - they are primarily
+concerned with processing (possibly large) collections of data files, by
+invoking programs to do that processing. Swift handles execution of such
+programs on remote sites by choosing sites, handling the staging of
+input and output files to and from the chosen sites and remote execution
+of program code.
+
+
+The SwiftScript Language
+------------------------
+
+Language basics
+~~~~~~~~~~~~~~~
+A Swift script describes data, application components, invocations of
+applications components, and the inter-relations (data flow) between
+those invocations.
+
+Data is represented in a script by strongly-typed single-assignment
+variables. The syntax superficially resembles C and Java. For example,
+{ and } characters are used to enclose blocks of statements.
+
+Types in Swift can be atomic or composite. An atomic type can be
+either a primitive type or a mapped type. Swift provides a fixed set
+of primitive types, such as integer and string. A mapped type
+indicates that the actual data does not reside in CPU addressable memory
+(as it would in conventional programming languages), but in POSIX-like
+files. Composite types are further subdivided into structures and
+arrays. Structures are similar in most respects to structure types in
+other languages. Arrays use numeric indices, but are sparse. They can
+contain elements of any type, including other array types, but all
+elements in an array must be of the same type. We often refer to
+instances of composites of mapped types as datasets.
+
+image:type-hierarchy.png[]
+
+Mapped type and composite type variable declarations can be annotated
+with a mapping descriptor indicating the file(s) that make up that
+dataset. For example, the following line declares a variable named
+photo with type image. It additionally declares that the data for
+this variable is stored in a single file named shane.jpeg.
+
+[java]
+source~~~~
+image photo <"shane.jpeg">;  
+source~~~~
+
+Component programs of scripts are declared in an app declaration, with
+the description of the command line syntax for that program and a list
+of input and output data. An app block describes a functional/dataflow
+style interface to imperative components.
+
+For example, the following example lists a procedure which makes use of
+the ImageMagick <http://www.imagemagick.org/> convert command to
+rotate a supplied image by a specified angle:
+
+[java]
+source~~~~
+app (image output) rotate(image input) {  
+  convert "-rotate" angle @input @output;  
+}  
+source~~~~
+
+A procedure is invoked using the familiar syntax:
+
+[java]
+source~~~~
+rotated = rotate(photo, 180);  
+source~~~~
+
+While this looks like an assignment, the actual unix level execution
+consists of invoking the command line specified in the app
+declaration, with variables on the left of the assignment bound to the
+output parameters, and variables to the right of the procedure
+invocation passed as inputs.
+
+The examples above have used the type image without any definition of
+that type. We can declare it as a marker type which has no structure
+exposed to SwiftScript:
+
+[java]
+source~~~~
+type image;  
+source~~~~
+
+This does not indicate that the data is unstructured; but it indicates
+that the structure of the data is not exposed to SwiftScript. Instead,
+SwiftScript will treat variables of this type as individual opaque files.
+
+With mechanisms to declare types, map variables to data files, and
+declare and invoke procedures, we can build a complete (albeit simple)
+script:
+
+[java]
+source~~~~
+type image;  
+image photo <"shane.jpeg">;  
+image rotated <"rotated.jpeg">;  
+  
+app (image output) rotate(image input, int angle) {  
+   convert "-rotate" angle @input @output;  
+}  
+  
+rotated = rotate(photo, 180);  
+source~~~~
+
+This script can be invoked from the command line:
+[txt]
+source~~~~
+  $ ls *.jpeg
+  shane.jpeg
+  $ swift example.swift
+  ...
+  $ ls *.jpeg
+  shane.jpeg rotated.jpeg
+source~~~~
+
+This executes a single convert command, hiding from the user features
+such as remote multisite execution and fault tolerance that will be
+discussed in a later section.
+
+.Figure 1. shane.jpeg
+image:userguide-shane.jpeg[]
+
+.Figure 2. rotated.jpeg
+image:userguide-rotated.jpeg[]
+
+
+Arrays and Parallel Execution
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Arrays of values can be declared using the [] suffix. An array be
+mapped to a collection of files, one element per file, by using a
+different form of mapping expression. For example, the filesys_mapper 
+maps all files matching a particular unix glob pattern into an array:
+
+[java]
+source~~~~
+file frames[] <filesys_mapper; pattern="*.jpeg">;  
+source~~~~
+
+The foreach construct can be used to apply the same block of code to
+each element of an array:
+
+[java]
+source~~~~
+foreach f,ix in frames {  
+  output[ix] = rotate(frames, 180);  
+}  
+source~~~~
+
+Sequential iteration can be expressed using the iterate construct:
+
+[java]
+source~~~~
+step[0] = initialCondition();  
+iterate ix {  
+  step[ix] = simulate(step[ix-1]);  
+}  
+source~~~~
+
+This fragment will initialise the 0-th element of the step array to
+some initial condition, and then repeatedly run the simulate
+procedure, using each execution's outputs as input to the next step.
+
+Ordering of execution
+~~~~~~~~~~~~~~~~~~~~~
+Non-array variables are single-assignment, which means that they must
+be assigned to exactly one value during execution. A procedure or
+expression will be executed when all of its input parameters have been
+assigned values. As a result of such execution, more variables may
+become assigned, possibly allowing further parts of the script to execute.
+
+In this way, scripts are implicitly parallel. Aside from serialisation
+implied by these dataflow dependencies, execution of component programs
+can proceed in parallel.
+
+In this fragment, execution of procedures p and q can happen in
+parallel:
+
+[java]
+source~~~~
+y=p(x);  
+z=q(x);  
+source~~~~
+
+while in this fragment, execution is serialised by the variable y,
+with procedure p executing before q.
+
+[java]
+source~~~~
+y=p(x);  
+z=q(y);  
+source~~~~
+
+Arrays in SwiftScript are more monotonic - a generalisation of being
+assignment. Knowledge about the content of an array increases during
+execution, but cannot otherwise change. Each element of the array is
+itself single assignment or monotonic (depending on its type). During a
+run all values for an array are eventually known, and that array is
+regarded as closed.
+
+Statements which deal with the array as a whole will often wait for the
+array to be closed before executing (thus, a closed array is the
+equivalent of a non-array type being assigned). However, a foreach
+statement will apply its body to elements of an array as they become
+known. It will not wait until the array is closed.
+
+Consider this script:
+[java]
+source~~~~
+file a[];  
+file b[];  
+foreach v,i in a {  
+  b[i] = p(v);  
+}  
+a[0] = r();  
+a[1] = s();  
+source~~~~
+
+Initially, the foreach statement will have nothing to execute, as the
+array a has not been assigned any values. The procedures r and s
+will execute. As soon as either of them is finished, the corresponding
+invocation of procedure p will occur. After both r and s have
+completed, the array a will be closed since no other statements in the
+script make an assignment to a.
+
+
+Compound procedures
+~~~~~~~~~~~~~~~~~~~
+
+As with many other programming languages, procedures consisting of
+SwiftScript code can be defined. These differ from the previously
+mentioned procedures declared with the app keyword, as they invoke
+other SwiftScript procedures rather than a component program.
+
+[java]
+source~~~~
+(file output) process (file input) {  
+  file intermediate;  
+  intermediate = first(input);  
+  output = second(intermediate);  
+}  
+  
+file x <"x.txt">;  
+file y <"y.txt">;  
+y = process(x);  
+source~~~~
+
+This will invoke two procedures, with an intermediate data file named
+anonymously connecting the first and second procedures.
+
+Ordering of execution is generally determined by execution of app
+procedures, not by any containing compound procedures. In this code block:
+
+[java]
+source~~~~
+(file a, file b) A() {  
+  a = A1();  
+  b = A2();  
+}  
+file x, y, s, t;  
+(x,y) = A();  
+s = S(x);  
+t = S(y);  
+source~~~~
+
+then a valid execution order is: A1 S(x) A2 S(y). The compound
+procedure A does not have to have fully completed for its return
+values to be used by subsequent statements.
+
+
+More about types
+~~~~~~~~~~~~~~~~
+
+Each variable and procedure parameter in SwiftScript is strongly typed.
+Types are used to structure data, to aid in debugging and checking
+program correctness and to influence how Swift interacts with data.
+
+The image type declared in previous examples is a marker type.
+Marker types indicate that data for a variable is stored in a single
+file with no further structure exposed at the SwiftScript level.
+
+Arrays have been mentioned above, in the arrays section. A code block
+may be applied to each element of an array using foreach; or
+individual elements may be references using [] notation.
+
+There are a number of primitive types:
+
+[options="header"]
+|================
+|type    |contains
+|int     |integers
+|string  |strings of text
+|float	 |floating point numbers, that behave the same as Java doubles
+|boolean |true/false
+|================
+
+
+Complex types may be defined using the type keyword:
+
+[java]
+source~~~~
+type headerfile;  
+type voxelfile;  
+type volume {  
+  headerfile h;  
+  voxelfile v;  
+}  
+source~~~~
+
+Members of a complex type can be accessed using the . operator:
+
+[java]
+source~~~~
+volume brain;  
+o = p(brain.h);  
+source~~~~
+
+Sometimes data may be stored in a form that does not fit with Swift's
+file-and-site model; for example, data might be stored in an RDBMS on
+some database server. In that case, a variable can be declared to have
+external type. This indicates that Swift should use the variable to
+determine execution dependency, but should not attempt other data
+management; for example, it will not perform any form of data stage-in
+or stage-out it will not manage local data caches on sites; and it will
+not enforce component program atomicity on data output. This can add
+substantial responsibility to component programs, in exchange for
+allowing arbitrary data storage and access methods to be plugged in to
+scripts.
+
+[java]
+source~~~~
+type file;  
+  
+app (external o) populateDatabase() {  
+  populationProgram;  
+}  
+  
+app (file o) analyseDatabase(external i) {  
+  analysisProgram @o;  
+}  
+  
+external database;  
+file result <"results.txt">;  
+  
+database = populateDatabase();  
+result = analyseDatabase(database);  
+source~~~~
+
+Some external database is represented by the database variable. The
+populateDatabase procedure populates the database with some data, and
+the analyseDatabase procedure performs some subsequent analysis on
+that database. The declaration of database contains no mapping; and
+the procedures which use database do not reference them in any way;
+the description of database is entirely outside of the script. The
+single assignment and execution ordering rules will still apply though;
+populateDatabase will always be run before analyseDatabase.
+
+Data model
+~~~~~~~~~~
+Data processed by Swift is strongly typed. It may be take the form of
+values in memory or as out-of-core files on disk. Language constructs
+called mappers specify how each piece of data is stored.
+
+
+Mappers
+~~~~~~~
+When a DSHandle represents a data file (or container of datafiles), it
+is associated with a mapper. The mapper is used to identify which files
+belong to that DSHandle.
+
+A dataset's physical representation is declared by a mapping descriptor,
+which defines how each element in the dataset's logical schema is stored
+in, and fetched from, physical structures such as directories, files,
+and remote servers.
+
+Mappers are parameterized to take into account properties such as
+varying dataset location. In order to access a dataset, we need to know
+three things: its type, its mapping, and the value(s) of any
+parameter(s) associated with the mapping descriptor. For example, if we
+want to describe a dataset, of type imagefile, and whose physical
+representation is a file called "file1.bin" located at
+"/home/yongzh/data/", then the dataset might be declared as follows:
+
+[java]
+source~~~~
+imagefile f1<single_file_mapper;file="/home/yongzh/data/file1.bin">  
+source~~~~
+
+The above example declares a dataset called f1, which uses a single file
+mapper to map a file from a specific location.
+
+SwiftScript has a simplified syntax for this case, since
+single_file_mapper is frequently used:
+
+[java]
+source~~~~
+binaryfile f1<"/home/yongzh/data/file1.bin">  
+source~~~~
+
+Swift comes with a number of mappers that handle common mapping
+patterns. These are documented in the mappers section of this
+guide.
+
+More technical details about SwiftScript
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+The syntax of SwiftScript has a superficial resemblance to C and Java.
+For example, { and } characters are used to enclose blocks of statements.
+
+A SwiftScript program consists of a number of statements. Statements may
+declare types, procedures and variables, assign values to variables, and
+express operations over arrays.
+
+
+Variables
+^^^^^^^^^
+Variables in SwiftScript are declared to be of a specific type.
+Assignments to those variables must be data of that type. SwiftScript
+variables are single-assignment - a value may be assigned to a variable
+at most once. This assignment can happen at declaration time or later on
+in execution. When an attempt to read from a variable that has not yet
+been assigned is made, the code performing the read is suspended until
+that variable has been written to. This forms the basis for Swift's
+ability to parallelise execution - all code will execute in parallel
+unless there are variables shared between the code that cause sequencing.
+
+
+Variable Declarations
+^^^^^^^^^^^^^^^^^^^^^
+Variable declaration statements declare new variables. They can
+optionally assign a value to them or map those variables to on-disk files.
+
+Declaration statements have the general form:
+
+[java]
+source~~~~
+typename variablename (<mapping> | = initialValue ) ;  
+source~~~~
+
+The format of the mapping expression is defined in the Mappers section.
+initialValue may be either an expression or a procedure call that
+returns a single value.
+
+Variables can also be declared in a multivalued-procedure statement,
+described in another section.
+
+
+Assignment Statements
+^^^^^^^^^^^^^^^^^^^^^
+Assignment statements assign values to previously declared variables.
+Assignments may only be made to variables that have not already been
+assigned. Assignment statements have the general form:
+
+[java]
+source~~~~
+variable = value;  
+source~~~~
+
+where value can be either an expression or a procedure call that returns
+a single value.
+
+Variables can also be assigned in a multivalued-procedure statement,
+described in another section.
+
+
+Procedures
+~~~~~~~~~~
+There are two kinds of procedure: An atomic procedure, which describes
+how an external program can be executed; and compound procedures which
+consist of a sequence of SwiftScript statements.
+
+A procedure declaration defines the name of a procedure and its input
+and output parameters. SwiftScript procedures can take multiple inputs
+and produce multiple outputs. Inputs are specified to the right of the
+function name, and outputs are specified to the left. For example:
+
+[java]
+source~~~~
+(type3 out1, type4 out2) myproc (type1 in1, type2 in2)  
+source~~~~
+
+The above example declares a procedure called myproc, which has two
+inputs in1 (of type type1) and in2 (of type type2) and two
+outputs out1 (of type type3) and out2 (of type type4).
+
+A procedure input parameter can be an optional parameter in which case
+it must be declared with a default value. When calling a procedure, both
+positional parameter and named parameter passings can be passed,
+provided that all optional parameters are declared after the required
+parameters and any optional parameter is bound using keyword parameter
+passing. For example, if myproc1 is defined as:
+
+[java]
+source~~~~
+(binaryfile bf) myproc1 (int i, string s="foo")  
+source~~~~
+
+Then that procedure can be called like this, omitting the optional
+[java]
+source~~~~
+parameter s:
+binaryfile mybf = myproc1(1);  
+source~~~~
+
+or like this supplying a value for the optional parameter s:
+[java]
+source~~~~
+binaryfile mybf = myproc1 (1, s="bar");  
+source~~~~
+
+Atomic procedures
+^^^^^^^^^^^^^^^^^
+An atomic procedure specifies how to invoke an external executable
+program, and how logical data types are mapped to command line arguments.
+
+Atomic procedures are defined with the app keyword:
+
+[java]
+source~~~~
+app (binaryfile bf) myproc (int i, string s="foo") {  
+    myapp i s @filename(bf);  
+}             
+source~~~~
+
+which specifies that myproc invokes an executable called myapp,
+passing the values of i, s and the filename of bf as command line
+arguments.
+
+
+Compound procedures
+^^^^^^^^^^^^^^^^^^^
+A compound procedure contains a set of SwiftScript statements:
+
+[java]
+source~~~~
+(type2 b) foo_bar (type1 a) {  
+    type3 c;  
+    c = foo(a);    // c holds the result of foo  
+    b = bar(c);    // c is an input to bar  
+}  
+source~~~~
+
+Control Constructs
+~~~~~~~~~~~~~~~~~~
+SwiftScript provides if, switch, foreach, and iterate
+constructs, with syntax and semantics similar to comparable constructs
+in other high-level languages.
+
+
+foreach
+^^^^^^^
+The foreach construct is used to apply a block of statements to each
+element in an array. For example:
+
+[java]
+source~~~~
+check_order (file a[]) {  
+    foreach f in a {  
+        compute(f);  
+    }  
+}  
+source~~~~
+
+foreach statements have the general form:
+
+[java]
+source~~~~
+foreach controlvariable (,index) in expression {  
+    statements  
+}  
+source~~~~
+
+The block of statements is evaluated once for each element in
+expression which must be an array, with controlvariable set to the
+corresponding element and index (if specified) set to the integer
+position in the array that is being iterated over.
+
+
+if
+^^
+The if statement allows one of two blocks of statements to be
+executed, based on a boolean predicate. if statements generally have
+the form:
+
+[java]
+source~~~~
+if(predicate) {  
+    statements  
+} else {  
+    statements  
+}  
+source~~~~
+
+where predicate is a boolean expression.
+
+
+switch
+^^^^^^
+
+switch expressions allow one of a selection of blocks to be chosen
+based on the value of a numerical control expression. switch
+statements take the general form:
+
+[java]
+source~~~~
+switch(controlExpression) {  
+    case n1:  
+        statements2  
+    case n2:  
+        statements2  
+    [...]  
+    default:  
+        statements  
+}  
+source~~~~
+
+The control expression is evaluated, the resulting numerical value used
+to select a corresponding case, and the statements belonging to that
+case block are evaluated. If no case corresponds, then the statements
+belonging to the default block are evaluated.
+
+Unlike C or Java switch statements, execution does not fall through to
+subsequent case blocks, and no break statement is necessary at the
+end of each block.
+
+
+iterate
+^^^^^^^
+iterate expressions allow a block of code to be evaluated repeatedly,
+with an integer parameter sweeping upwards from 0 until a termination
+condition holds.
+
+The general form is:
+
+[java]
+source~~~~
+iterate var {  
+    statements;  
+} until (terminationExpression);  
+source~~~~
+
+with the variable var starting at 0 and increasing by one in each
+iteration. That variable is in scope in the statements block and when
+evaluating the termination expression.
+
+Operators
+~~~~~~~~~
+The following infix operators are available for use in SwiftScript
+expressions.
+
+[options="header"]
+|=================
+|operator|purpose
+|+|numeric addition; string concatenation
+|-|numeric subtraction
+|*|numeric multiplication
+|/|floating point division
+|%/|integer division
+|%%|integer remainder of division
+|== !=|comparison and not-equal-to
+|< > <= >=|numerical ordering
+|&& \|\||boolean and, or
+|!|boolean not
+|=================
+
+Global constants
+~~~~~~~~~~~~~~~~
+
+At the top level of a SwiftScript program, the global modified may be
+added to a declaration so that it is visible throughout the program,
+rather than only at the top level of the program. This allows global
+constants (of any type) to be defined. (since Swift 0.10)
+
+
+Imports
+~~~~~~~
+The import directive can be used to import definitions from another
+SwiftScript file. (since Swift 0.10)
+
+For example, a SwiftScript program might contain this:
+
+[java]
+source~~~~
+import defs;  
+file f;  
+source~~~~    
+
+which would import the content of defs.swift in the current directory:
+
+[java]
+source~~~~
+type file;  
+source~~~~    
+
+Imported files are read from the current working directory.
+
+There is no requirement that a module is imported only once. If a module
+is imported multiple times, for example in different files, then Swift
+will only process the imports once.
+
+Imports may contain anything that is valid in a SwiftScript program,
+including code that causes remote execution.
+
+Mappers
+-------
+Mappers provide a mechanism to specify the layout of mapped datasets on
+disk. This is needed when Swift must access files to transfer them to
+remote sites for execution or to pass to applications.
+
+Swift provides a number of mappers that are useful in common cases. This
+section details those standard mappers. For more complex cases, it is
+possible to write application-specific mappers in Java and use them
+within a SwiftScript program.
+
+
+The single file mapper
+~~~~~~~~~~~~~~~~~~~~~~
+The single_file_mapper maps a single physical file to a dataset.
+
+[options="header"]
+|=======================
+|Swift variable|Filename
+|f|myfile
+|f[0]|INVALID
+|f.bar|INVALID
+|=======================
+		
+[options="header"]
+|=================
+|parameter|meaning
+|file|The location of the physical file including path and file name.
+|=================
+
+Example:
+[java]
+source~~~~
+file f <single_file_mapper;file="plot_outfile_param">;  
+source~~~~
+
+There is a simplified syntax for this mapper:
+[java]
+source~~~~
+file f <"plot_outfile_param">;  
+source~~~~
+
+The simple mapper
+~~~~~~~~~~~~~~~~~
+The simple_mapper maps a file or a list of files into an array by
+prefix, suffix, and pattern. If more than one file is matched, each of
+the file names will be mapped as a subelement of the dataset.
+
+[options="header"]
+|====================
+|Parameter|Meaning
+|location|A directory that the files are located.
+|prefix|The prefix of the files
+|suffix|The suffix of the files, for instance: ".txt"
+|pattern|A UNIX glob style pattern, for instance: "*foo*" would match
+all file names that contain foo. When this mapper is used to specify
+output filenames, pattern is ignored.
+|====================
+
+[java]
+source~~~~
+type file;  
+file f <simple_mapper;prefix="foo", suffix=".txt">;  
+source~~~~          
+
+The above maps all filenames that start with foo and have an extension
+.txt into file f.
+
+[options="header"]
+|================
+|Swift variable|Filename
+|f|foo.txt
+|=================
+[java]
+source~~~~
+type messagefile;  
+  
+(messagefile t) greeting(string m) {.  
+    app {  
+        echo m stdout=@filename(t);  
+    }  
+}  
+  
+messagefile outfile <simple_mapper;prefix="foo",suffix=".txt">;  
+  
+outfile = greeting("hi");  
+source~~~~      
+
+This will output the string 'hi' to the file foo.txt.
+
+The simple_mapper can be used to map arrays. It will map the array
+index into the filename between the prefix and suffix.
+
+[java]
+source~~~~
+type messagefile;  
+  
+(messagefile t) greeting(string m) {   
+    app {  
+        echo m stdout=@filename(t);  
+    }  
+}  
+
+messagefile outfile[] <simple_mapper;prefix="baz",suffix=".txt">;  
+  
+outfile[0] = greeting("hello");  
+outfile[1] = greeting("middle");  
+outfile[2] = greeting("goodbye");  
+source~~~~  
+
+[options="header"]
+|=======================
+|Swift variable|Filename
+|outfile[0]|baz0000.txt
+|outfile[1]|baz0001.txt
+|outfile[2]|baz0002.txt
+|=======================
+		
+simple_mapper can be used to map structures. It will map the name of
+the structure member into the filename, between the prefix and the suffix.
+
+[java]
+source~~~~
+type messagefile;  
+  
+type mystruct {  
+  messagefile left;  
+  messagefile right;  
+};  
+  
+(messagefile t) greeting(string m) {   
+    app {  
+        echo m stdout=@filename(t);  
+    }  
+}  
+  
+mystruct out <simple_mapper;prefix="qux",suffix=".txt">;  
+  
+out.left = greeting("hello");  
+out.right = greeting("goodbye");  
+source~~~~      
+
+This will output the string "hello" into the file qux.left.txt and the
+string "goodbye" into the file qux.right.txt.
+
+[options="header"]
+|=======================
+|Swift variable|Filename
+|out.left|quxleft.txt
+|out.right|quxright.txt
+|=======================
+		
+concurrent mapper
+~~~~~~~~~~~~~~~~~
+concurrent_mapper is almost the same as the simple mapper, except that
+it is used to map an output file, and the filename generated will
+contain an extract sequence that is unique. This mapper is the default
+mapper for variables when no mapper is specified.
+
+
+[options="header"]
+|=================
+|Parameter|Meaning
+|location|A directory that the files are located.
+|prefix|The prefix of the files
+|suffix|The suffix of the files, for instance: ".txt"
+pattern	A UNIX glob style pattern, for instance: "*foo*" would match
+all file names that contain foo. When this mapper is used to specify
+output filenames, pattern is ignored.
+|=================
+
+Example:
+[java]
+source~~~~
+file f1;  
+file f2 <concurrent_mapper;prefix="foo", suffix=".txt">;  
+source~~~~          
+
+The above example would use concurrent mapper for f1 and f2, and
+generate f2 filename with prefix "foo" and extension ".txt"
+
+
+File system mapper
+~~~~~~~~~~~~~~~~~~
+filesys_mapper is similar to the simple mapper, but maps a file or a
+list of files to an array. Each of the filename is mapped as an element
+in the array. The order of files in the resulting array is not defined.
+
+TODO: note on difference between location as a relative vs absolute path
+wrt staging to remote location - as mihael said: It's because you
+specify that location in the mapper. Try location="." instead of
+location="/sandbox/..."
+
+[options="header"]
+|======================
+|parameter|meaning
+|location|The directory where the files are located.
+|prefix|The prefix of the files
+|suffix|The suffix of the files, for instance: ".txt"
+|pattern|A UNIX glob style pattern, for instance: "*foo*" would match
+all file names that contain foo.
+|======================
+
+Example:
+[java]
+source~~~~
+file texts[] <filesys_mapper;prefix="foo", suffix=".txt">;  
+source~~~~          
+
+The above example would map all filenames that start with "foo" and
+have an extension ".txt" into the array texts. For example, if the
+specified directory contains files: foo1.txt, footest.txt,
+foo__1.txt, then the mapping might be:
+
+[options="header"]
+|=================
+|Swift variable|Filename
+|texts[0]|footest.txt
+|texts[1]|foo1.txt
+|texts[2]|foo__1.txt
+|=================
+		
+
+
+fixed array mapper
+~~~~~~~~~~~~~~~~~~
+The fixed_array_mapper maps from a string that contains a list of
+filenames into a file array.
+
+[options="header"]
+|=================
+|parameter|Meaning
+|files|A string that contains a list of filenames, separated by space,
+comma or colon
+|=================
+
+Example:
+
+[java]
+source~~~~
+file texts[] <fixed_array_mapper;files="file1.txt, fileB.txt, file3.txt">;  
+source~~~~          
+
+would cause a mapping like this:
+
+[options="header"]
+|========
+|Swift variable|Filename
+|texts[0]|file1.txt
+|texts[1]|fileB.txt
+|texts[2]|file3.txt
+|========
+
+array mapper
+~~~~~~~~~~~~
+The array_mapper maps from an array of strings into a file
+
+[options="header"]
+|============
+|parameter|meaning
+|files|An array of strings containing one filename per element
+|==============
+
+Example:
+[java]
+source~~~~
+string s[] = [ "a.txt", "b.txt", "c.txt" ];  
+  
+file f[] <array_mapper;files=s>;  
+source~~~~
+
+This will establish the mapping:
+
+[options="header"]
+|==========
+|Swift variable|Filename
+|f[0]|a.txt
+|f[1]|b.txt
+|f[2]|c.txt
+|==========
+
+regular expression mapper
+~~~~~~~~~~~~~~~~~~~~~~~~~
+The regexp_mapper transforms one file name to another using regular
+expression matching.
+
+[options="header"]
+|==========
+|parameter|meaning
+|source|The source file name
+|match|Regular expression pattern to match, use |()| to match whatever
+regular expression is inside the parentheses, and indicate the start and
+end of a group; the contents of a group can be retrieved with the
+|\\number|special sequence (two backslashes are needed because the
+backslash is an escape sequence introducer)
+|transform|The pattern of the file name to transform to, use \number to
+reference the group matched.
+|==========
+
+Example:
+[java]
+source~~~~
+string s = "picture.gif";  
+file f <regexp_mapper;  
+  source=s,  
+  match="(.*)gif",  
+  transform="\\1jpg">;   
+source~~~~
+
+This example transforms a string ending gif into one ending jpg and
+maps that to a file.
+
+[options="header"]
+|===========
+|Swift variable|Filename
+|f|picture.jpg
+|=============		
+
+
+csv mapper
+~~~~~~~~~~
+The csv_mapper maps the content of a CSV (comma-separated value) file
+into an array of structures. The dataset type needs to be correctly
+defined to conform to the column names in the file. For instance, if the
+file contains columns: name age GPA then the type needs to have member
+elements like this:
+
+[java]
+source~~~~
+type student {  
+  file name;  
+  file age;  
+  file GPA;  
+}  
+source~~~~
+
+If the file does not contain a header with column info, then the column
+names are assumed as column1, column2, etc.
+
+[options="header"]
+|============
+|Parameter|Meaning
+|file|The name of the CSV file to read mappings from.
+|header|Whether the file has a line describing header info; default is |true|
+|skip|The number of lines to skip at the beginning (after header line);
+default is 0.
+|hdelim|Header field delimiter; default is the value of the |delim| parameter
+|delim|Content field delimiters; defaults are space, tab and comma
+|=============
+
+Example:
+[java]
+source~~~~
+student stus[] <csv_mapper;file="stu_list.txt">;  
+source~~~~
+
+The above example would read a list of student info from file
+"stu_list.txt" and map them into a student array. By default, the file
+should contain a header line specifying the names of the columns. If
+stu_list.txt contains the following:
+
+[java]
+source~~~~
+name,age,gpa
+101-name.txt, 101-age.txt, 101-gpa.txt
+name55.txt, age55.txt, age55.txt
+q, r, s
+source~~~~
+
+then some of the mappings produced by this example would be:
+
+[options="header"]
+|=========
+|stus[0].name|101-name.txt
+|stus[0].age|101-age.txt
+|stus[0].gpa|101-gpa.txt
+|stus[1].name|name55.txt
+|stus[1].age|age55.txt
+|stus[1].gpa|gpa55.txt
+|stus[2].name|q
+|stus[2].age|r
+|stus[2].gpa|s
+|=========
+		
+
+
+external mapper
+~~~~~~~~~~~~~~~
+The external mapper, ext maps based on the output of a supplied Unix
+executable.
+
+[option="header"]
+|=============
+|parameter|meaning
+|exec|The name of the executable (relative to the current directory, if
+an absolute path is not specified)
+|*|Other parameters are passed to the executable prefixed with a - symbol
+|==============
+
+The output of the executable should consist of two columns of data,
+separated by a space. The first column should be the path of the mapped
+variable, in SwiftScript syntax (for example [2] means the 2nd element
+of an array) or the symbol $ to represent the root of the mapped
+variable.
+
+Example: With the following in mapper.sh,
+
+[shell]
+source~~~~
+#!/bin/bash
+echo "[2] qux"
+echo "[0] foo"
+echo "[1] bar"
+source~~~~
+			
+then a mapping statement:
+
+[java]
+source~~~~~
+student stus[] <ext;exec="mapper.sh">;  
+source~~~~
+
+would map
+
+[options="header"]
+|============
+|Swift variable|Filename
+|stus[0]|foo
+|stus[1]|bar
+|stus[2]|qux
+|===========
+
+Commands
+--------
+The commands detailed in this section are available in the bin/
+directory of a Swift installation and can by run from the commandline if
+that directory is placed on the PATH.
+
+
+swift
+~~~~~
+The swift command is the main command line tool for executing
+SwiftScript programs.
+
+
+Command-line Syntax
+^^^^^^^^^^^^^^^^^^^
+The swift command is invoked as follows: swift [options]
+SwiftScript-program [SwiftScript-arguments]* with options taken from the
+following list, and SwiftScript-arguments made available to the
+SwiftScript program through the @arg function.
+
+Swift command-line options
+
+-help or -h
+
+    Display usage information
+
+-typecheck
+
+    Does a typecheck of a SwiftScript program, instead of executing it.
+
+-dryrun
+
+    Runs the SwiftScript program without submitting any jobs (can be
+    used to get a graph)
+
+-monitor
+
+    Shows a graphical resource monitor
+
+-resume file
+
+    Resumes the execution using a log file
+
+-config file
+
+    Indicates the Swift configuration file to be used for this run.
+    Properties in this configuration file will override the default
+    properties. If individual command line arguments are used for
+    properties, they will override the contents of this file.
+
+-verbose | -v
+
+    Increases the level of output that Swift produces on the console to
+    include more detail about the execution
+
+-debug | -d
+
+    Increases the level of output that Swift produces on the console to
+    include lots of detail about the execution
+
+-logfile file
+
+    Specifies a file where log messages should go to. By default Swift
+    uses the name of the program being run and a numeric index (e.g.
+    myworkflow.1.log)
+
+-runid identifier
+
+    Specifies the run identifier. This must be unique for every
+    invocation and is used in several places to keep files from
+    different executions cleanly separated. By default, a datestamp and
+    random number are used to generate a run identifier. When using this
+    parameter, care should be taken to ensure that the run ID remains
+    unique with respect to all other run IDs that might be used,
+    irrespective of (at least) expected execution sites, program or user.
+
+-tui
+
+    Displays an interactive text mode monitor during a run. (since Swift
+    0.9) 
+
+In addition, the following Swift properties can be set on the command line:
+
+    * caching.algorithm
+    * clustering.enabled
+    * clustering.min.time
+    * clustering.queue.delay
+    * ip.address
+    * kickstart.always.transfer
+    * kickstart.enabled
+    * lazy.errors
+    * pgraph
+    * pgraph.graph.options
+    * pgraph.node.options
+    * sitedir.keep
+    * sites.file
+    * tc.file
+    * tcp.port.range
+
+
+Return codes
+^^^^^^^^^^^^
+
+The swift command may exit with the following return codes:
+
+[options="header"]
+|=========
+|value|meaning
+|0|success
+|1|command line syntax error or missing project name
+|2|error during execution
+|3|error during compilation
+|4|input file does not exist
+|===========
+
+Environment variables
+^^^^^^^^^^^^^^^^^^^^^
+
+The swift is influenced by the following environment variables:
+
+GLOBUS_HOSTNAME, GLOBUS_TCP_PORT_RANGE - set in the environment
+before running Swift. These can be set to inform Swift of the
+configuration of your local firewall. More information can be found in
+the Globus firewall How-to <http://dev.globus.org/wiki/FirewallHowTo>.
+
+COG_OPTS - set in the environment before running Swift. Options set in
+this variable will be passed as parameters to the Java Virtual Machine
+which will run Swift. The parameters vary between virtual machine
+imlementations, but can usually be used to alter settings such as
+maximum heap size. Typing 'java -help' will sometimes give a list of
+commands. The Sun Java 1.4.2 command line options are documented here
+<http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html>.
+
+
+swift-osg-ress-site-catalog
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+The swift-osg-ress-site-catalog command generates a site catalog based
+on OSG <http://www.opensciencegrid.org/>'s ReSS information system
+(since Swift 0.9)
+
+Usage: *swift-osg-ress-site-catalog [options]*
+
+--help
+
+    Show help message
+
+--vo=[name]
+
+    Set what VO to query ReSS for
+
+--engage-verified
+
+    Only retrieve sites verified by the Engagement VO site verification
+    tests This can not be used together with |--vo|, as the query will
+    only work for sites advertising support for the Engagement VO.
+
+    This option means information will be retrieved from the Engagement
+    collector instead of the top-level ReSS collector.
+
+--out=[filename]
+
+    Write to [filename] instead of stdout
+
+--condor-g
+
+    Generates sites files which will submit jobs using a local Condor-G
+    installation rather than through direct GRAM2 submission. (since
+    Swift 0.10)
+
+
+swift-plot-log
+~~~~~~~~~~~~~~
+swift-plot-log generates summaries of Swift run log files.
+
+Usage: swift-plot-log [logfile] [targets]
+
+When no targets are specified, swift-plog-log will generate an HTML
+report for the run. When targets are specified, only those named targets
+will be generated.
+
+
+Executing app procedures
+------------------------
+This section describes how Swift executes app procedures, and
+requirements on the behaviour of application programs used in app
+procedures. These requirements are primarily to ensure that the Swift
+can run your application in different places and with the various fault
+tolerance mechanisms in place.
+
+
+Mapping of app semantics into unix process execution semantics
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+This section describes how an app procedure invocation is translated
+into a (remote) unix process execution. It does not describe the
+mechanisms by which Swift performs that translation; that is described
+in the next section.
+
+In this section, this example SwiftScript program is used for reference:
+
+[java]
+source~~~~~
+type file;  
+  
+app (file o) count(file i) {  
+  wc @i stdout=@o;  
+}  
+  
+file q <"input.txt">;  
+file r <"output.txt">;  
+source~~~~
+
+The executable for wc will be looked up in tc.data.
+
+This unix executable will then be executed in some application
+procedure workspace. This means:
+
+Each application procedure workspace will have an application workspace
+directory. (TODO: can collapse terms application procedure workspace
+and application workspace directory ?
+
+This application workspace directory will not be shared with any other
+application procedure execution attempt; all application procedure
+execution attempts will run with distinct application procedure
+workspaces. (for the avoidance of doubt: If a SwiftScript procedure
+invocation is subject to multiple application procedure execution
+attempts (due to Swift-level restarts, retries or replication) then each
+of those application procedure execution attempts will be made in a
+different application procedure workspace. )
+
+The application workspace directory will be a directory on a POSIX
+filesystem accessible throughout the application execution by the
+application executable.
+
+Before the application executable is executed:
+
+    * The application workspace directory will exist.
+
+    * The input files will exist inside the application workspace
+      directory (but not necessarily as direct children; there may be
+      subdirectories within the application workspace directory).
+
+    * The input files will be those files mapped to input parameters
+      of the application procedure invocation. (In the example, this
+      means that the file input.txt will exist in the application
+      workspace directory)
+
+    * For each input file dataset, it will be the case that @filename
+      or @filenames invoked with that dataset as a parameter will
+      return the path relative to the application workspace directory
+      for the file(s) that are associated with that dataset. (In the
+      example, that means that @i will evaluate to the path input.txt)
+
+    * For each file-bound parameter of the Swift procedure invocation,
+      the associated files (determined by data type?) will always exist.
+
+    * The input files must be treated as read only files. This may or
+      may not be enforced by unix file system permissions. They may or
+      may not be copies of the source file (conversely, they may be
+      links to the actual source file).
+
+During/after the application executable execution, the following must
+be true:
+
+    * If the application executable execution was successful (in the
+      opinion of the application executable), then the application
+      executable should exit with unix return code 0; if the
+      application executable execution was unsuccessful (in the opinion
+      of the application executable), then the application executable
+      should exit with unix return code not equal to 0.
+
+    * Each file mapped from an output parameter of the SwiftScript
+      procedure call must exist. Files will be mapped in the same way as
+      for input files.
+
+      (? Is it defined that output subdirectories will be precreated
+      before execution or should app executables expect to make them?
+      That's probably determined by the present behaviour of wrapper.sh)
+
+    * Output produced by running the application executable on some
+      inputs should be the same no matter how many times, when or where
+      that application executable is run. 'The same' can vary depending
+      on application (for example, in an application it might be
+      acceptable for a PNG->JPEG conversion to produce different,
+      similar looking, output jpegs depending on the environment)
+
+Things to not assume:
+
+    * anything about the path of the application workspace directory
+
+    * that either the application workspace directory will be deleted or
+      will continue to exist or will remain unmodified after execution
+      has finished
+
+    * that files can be passed(?def) between application procedure
+      invocations through any mechanism except through files known to
+      Swift through the mapping mechanism (there is some exception here
+      for external datasets - there are a separate set of assertions
+      that hold for external datasets)
+
+    * that application executables will run on any particular site of
+      those available, or than any combination of applications will run
+      on the same or different sites.
+
+
+How Swift implements the site execution model
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+This section describes the implementation of the semantics described in
+the previous section.
+
+Swift executes application procedures on one or more sites.
+
+Each site consists of:
+
+    * worker nodes. There is some execution mechanism through which
+      the Swift client side executable can execute its wrapper script
+      on those worker nodes. This is commonly GRAM or Falkon or coasters.
+
+    * a site-shared file system. This site shared filesystem is
+      accessible through some file transfer mechanism from the Swift
+      client side executable. This is commonly GridFTP or coasters. This
+      site shared filesystem is also accessible through the posix file
+      system on all worker nodes, mounted at the same location as seen
+      through the file transfer mechanism. Swift is configured with the
+      location of some site working directory on that site-shared file
+      system.
+
+There is no assumption that the site shared file system for one site is
+accessible from another site.
+
+For each workflow run, on each site that is used by that run, a run
+directory is created in the site working directory, by the Swift client
+side.
+
+In that run directory are placed several subdirectories:
+
+    * shared/ - site shared files cache
+
+    * kickstart/ - when kickstart is used, kickstart record files for
+      each job that has generated a kickstart record.
+
+    * info/ - wrapper script log files
+
+    * status/ - job status files
+
+    * jobs/ - application workspace directories (optionally placed
+      here - see below)
+
+Application execution looks like this:
+
+For each application procedure call:
+
+The Swift client side selects a site; copies the input files for that
+procedure call to the site shared file cache if they are not already in
+the cache, using the file transfer mechanism; and then invokes the
+wrapper script on that site using the execution mechanism.
+
+The wrapper script creates the application workspace directory; places
+the input files for that job into the application workspace directory
+using either cp or ln -s (depending on a configuration option);
+executes the application unix executable; copies output files from the
+application workspace directory to the site shared directory using cp;
+creates a status file under the status/ directory; and exits,
+returning control to the Swift client side. Logs created during the
+execution of the wrapper script are stored under the info/ directory.
+
+The Swift client side then checks for the presence of and deletes a
+status file indicating success; and copies files from the site shared
+directory to the appropriate client side location.
+
+The job directory is created (in the default mode) under the jobs/
+directory. However, it can be created under an arbitrary other path,
+which allows it to be created on a different file system (such as a
+worker node local file system in the case that the worker node has a
+local file system).
+
+image:swift-site-model.png[]
+
+Technical overview of the Swift architecture
+--------------------------------------------
+This section attempts to provide a technical overview of the Swift
+architecture.
+
+Execution layer
+~~~~~~~~~~~~~~~
+The execution layer causes an application program (in the form of a unix
+executable) to be executed either locally or remotely.
+
+The two main choices are local unix execution and execution through
+GRAM. Other options are available, and user provided code can also be
+plugged in.
+
+The kickstart utility can be used to capture environmental
+information at execution time to aid in debugging and provenance capture.
+
+
+SwiftScript language compilation layer
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Step i: text to XML intermediate form parser/processor. parser written
+in ANTLR - see resources/VDL.g. The XML Schema Definition (XSD) for the
+intermediate language is in resources/XDTM.xsd.
+
+Step ii: XML intermediate form to Karajan workflow. Karajan.java - reads
+the XML intermediate form. compiles to karajan workflow language - for
+example, expressions are converted from SwiftScript syntax into Karajan
+syntax, and function invocations become karajan function invocations
+with various modifications to parameters to accomodate return parameters
+and dataset handling.
+
+
+Swift/karajan library layer
+~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Some Swift functionality is provided in the form of Karajan libraries
+that are used at runtime by the Karajan workflows that the Swift
+compiler generates.
+
+
+Ways in which Swift can be extended
+-----------------------------------
+Swift is extensible in a number of ways. It is possible to add mappers
+to accomodate different filesystem arrangements, site selectors to
+change how Swift decides where to run each job, and job submission
+interfaces to submit jobs through different mechanisms.
+
+A number of mappers are provided as part of the Swift release and
+documented in the mappers section. New mappers can be
+implemented in Java by implementing the org.griphyn.vdl.mapping.Mapper
+interface. The Swift tutorial
+<http://www.ci.uchicago.edu/swift/guides/tutorial.php> contains a simple
+example of this.
+
+Swift provides a default site selector, the Adaptive Scheduler. New site
+selectors can be plugged in by implementing the
+org.globus.cog.karajan.scheduler.Scheduler interface and modifying
+libexec/scheduler.xml and etc/karajan.properties to refer to the new
+scheduler.
+
+Execution providers and filesystem providers, which allow to Swift to
+execute jobs and to stage files in and out through mechanisms such as
+GRAM and GridFTP can be implemented as Java CoG kit providers.
+
+
+Function reference
+------------------
+This section details functions that are available for use in the
+SwiftScript language.
+
+ at arg
+~~~~
+Takes a command line parameter name as a string parameter and an
+optional default value and returns the value of that string parameter
+from the command line. If no default value is specified and the command
+line parameter is missing, an error is generated. If a default value is
+specified and the command line parameter is missing, @arg will return
+the default value.
+
+Command line parameters recognized by @arg begin with exactly one
+hyphen and need to be positioned after the script name.
+
+For example:
+
+[java]
+source~~~~
+trace(@arg("myparam"));  
+trace(@arg("optionalparam", "defaultvalue"));  
+source~~~~              
+
+[java]
+source~~~~
+$ swift arg.swift -myparam=hello
+Swift v0.3-dev r1674 (modified locally)
+
+RunID: 20080220-1548-ylc4pmda
+SwiftScript trace: defaultvalue
+SwiftScript trace: hello
+source~~~~			
+
+ at extractint
+~~~~~~~~~~~
+ at extractint(file) will read the specified file, parse an integer from
+the file contents and return that integer.
+
+
+ at filename
+~~~~~~~~~
+ at filename(v) will return a string containing the filename(s) for the
+file(s) mapped to the variable v. When more than one filename is
+returned, the filenames will be space separated inside a single string
+return value.
+
+
+ at filenames
+~~~~~~~~~~
+ at filenames(v) will return multiple values (!) containing the
+filename(s) for the file(s) mapped to the variable v. (compare to
+ at filename)
+
+ at regexp
+~~~~~~~
+ at regexp(input,pattern,replacement) will apply regular expression
+substitution using the Java java.util.regexp API
+<http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html>.
+For example:
+
+[java]
+source~~~~
+string v =  @regexp("abcdefghi", "c(def)g","monkey");  
+source~~~~
+
+will assign the value "abmonkeyhi" to the variable v.
+
+ at strcat
+~~~~~~~
+ at strcat(a,b,c,d,...) will return a string containing all of the
+strings passed as parameters joined into a single string. There may be
+any number of parameters.
+
+The + operator concatenates two strings: @strcat(a,b) is the same as
+a + b
+
+ at strcut
+~~~~~~~
+ at strcut(input,pattern) will match the regular expression in the
+pattern parameter against the supplied input string and return the
+section that matches the first matching parenthesised group.
+
+For example:
+[java]
+source~~~~
+string t = "my name is John and i like puppies.";  
+string name = @strcut(t, "my name is ([^ ]*) ");  
+string out = @strcat("Your name is ",name);  
+trace(out);
+source~~~~  
+              
+will output the message: Your name is John.
+
+ at strsplit
+~~~~~~~~~
+ at strsplit(input,pattern) will split the input string based on
+separators that match the given pattern and return a string array.
+(since Swift 0.9)
+
+Example:
+[java]
+source~~~~
+string t = "my name is John and i like puppies.";  
+string words[] = @strsplit(t, "\\s");  
+foreach word in words {  
+    trace(word);  
+}  
+source~~~~              
+
+will output one word of the sentence on each line (though not
+necessarily in order, due to the fact that foreach iterations execute in
+parallel).
+
+
+ at toint
+~~~~~~
+ at toint(input) will parse its input string into an integer. This can be
+used with @arg to pass input parameters to a SwiftScript program as
+integers.
+
+
+Built-in procedure reference
+----------------------------
+This section details built-in procedures that are available for use in
+the SwiftScript language.
+
+readData
+~~~~~~~~
+readData will read data from a specified file.
+
+The format of the input file is controlled by the type of the return value.
+
+For scalar return types, such as int, the specified file should contain
+a single value of that type.
+
+For arrays of scalars, the specified file should contain one value per
+line.
+
+For structs of scalars, the file should contain two rows. The first row
+should be structure member names separated by whitespace. The second row
+should be the corresponding values for each structure member, separated
+by whitespace, in the same order as the header row.
+
+For arrays of structs, the file should contain a heading row listing
+structure member names separated by whitespace. There should be one row
+for each element of the array, with structure member elements listed in
+the same order as the header row and separated by whitespace. (since
+Swift 0.4)
+
+readdata2
+~~~~~~~~~
+readdata2 will read data from a specified file, like readdata, but
+using a different file format more closely related to that used by the
+ext mapper.
+
+Input files should list, one per line, a path into a Swift structure,
+and the value for that position in the structure:
+
+[java]
+source~~~~
+rows[0].columns[0] = 0                                                          
+rows[0].columns[1] = 2                                                          
+rows[0].columns[2] = 4                                                          
+rows[1].columns[0] = 1                                                          
+rows[1].columns[1] = 3                                                          
+rows[1].columns[2] = 5
+source~~~~			
+
+which can be read into a structure defined like this:
+
+[java]
+source~~~~
+type vector {                                                                     
+        int columns[];                                                            
+}                                                                                 
+                                                                                  
+type matrix {                                                                     
+        vector rows[];                                                            
+}                                                                                 
+                                                                                  
+matrix m;                                                                         
+                                                                                  
+m = readData2("readData2.in");      
+source~~~~                  
+
+(since Swift 0.7)
+
+trace
+~~~~~
+trace will log its parameters. By default these will appear on both
+stdout and in the run log file. Some formatting occurs to produce the
+log message. The particular output format should not be relied upon.
+(since Swift 0.4)
+
+writeData
+~~~~~~~~~
+writeData will write out data structures in the format described for
+readData
+
+Swift configuration properties
+------------------------------
+Various aspects of the behavior of the Swift Engine can be configured
+through properties. The Swift Engine recognizes a global, per
+installation properties file which can found in etc/swift.properties
+in the Swift installation directory and a user properties file which can
+be created by each user in ~/.swift/swift.properties. The Swift Engine
+will first load the global properties file. It will then try to load the
+user properties file. If a user properties file is found, individual
+properties explicitly set in that file will override the respective
+properties in the global properties file. Furthermore, some of the
+properties can be overridden directly using command line arguments to
+the *swift* command.
+
+Swift properties are specified in the following format:
+
+<name>=<value>
+
+The value can contain variables which will be expanded when the
+properties file is read. Expansion is performed when the name of the
+variable is used inside the standard shell dereference construct:
+${name}. The following variables can be used in the Swift
+configuration file:
+
+Swift Configuration Variables
+
+swift.home
+
+    Points to the Swift installation directory ($SWIFT_HOME). In
+    general, this should not be set as Swift can find its own
+    installation directory, and incorrectly setting it may impair the
+    correct functionality of Swift.
+
+user.name
+
+    The name of the current logged in user.
+
+user.home
+
+    The user's home directory.
+
+The following is a list of valid Swift properties:
+
+Swift Properties
+
+caching.algorithm
+
+    Valid values: LRU
+
+    Default value: LRU
+
+    Swift caches files that are staged in on remote resources, and files
+    that are produced remotely by applications, such that they can be
+    re-used if needed without being transfered again. However, the
+    amount of remote file system space to be used for caching can be
+    limited using the swift:storagesize profile entry in the sites.xml file. Example:
+
+[xml]
+source~~~~
+<pool handle="example" sysinfo="INTEL32::LINUX">
+<gridftp url="gsiftp://example.org" storage="/scratch/swift" major="2" minor="4" patch="3"/>
+<jobmanager universe="vanilla" url="example.org/jobmanager-pbs" major="2" minor="4" patch="3"/>
+<workdirectory>/scratch/swift</workdirectory>
+<profile namespace="SWIFT" key="storagesize">20000000</profile>
+</pool>
+source~~~~
+
+    The decision of which files to keep in the cache and which files to
+    remove is made considering the value of the caching.algorithm
+    property. Currently, the only available value for this property is
+    LRU, which would cause the least recently used files to be deleted
+    first.
+
+clustering.enabled
+
+    Valid values: true, false
+
+    Default value: false
+
+    Enables clustering.
+
+clustering.min.time
+
+    Valid values: <int>
+
+    Default value: 60
+
+    Indicates the threshold wall time for clustering, in seconds. Jobs
+    that have a wall time smaller than the value of this property will
+    be considered for clustering.
+
+clustering.queue.delay
+
+    Valid values: <int>
+
+    Default value: 4
+
+    This property indicates the interval, in seconds, at which the
+    clustering queue is processed.
+
+execution.retries
+
+    Valid values: positive integers
+
+    Default value: 2
+
+    The number of time a job will be retried if it fails (giving a
+    maximum of 1 + execution.retries attempts at execution)
+
+foreach.max.threads
+
+    Valid values: positive integers
+
+    Default value: 1024
+
+    Limits the number of concurrent iterations that each foreach
+    statement can have at one time. This conserves memory for swift
+    programs that have large numbers of iterations (which would
+    otherwise all be executed in parallel). (since Swift 0.9)
+
+ip.address
+
+    Valid values: <ipaddress>
+
+    Default value: N/A
+
+    The Globus GRAM service uses a callback mechanism to send
+    notifications about the status of submitted jobs. The callback
+    mechanism requires that the Swift client be reachable from the hosts
+    the GRAM services are running on. Normally, Swift can detect the
+    correct IP address of the client machine. However, in certain cases
+    (such as the client machine having more than one network interface)
+    the automatic detection mechanism is not reliable. In such cases,
+    the IP address of the Swift client machine can be specified using
+    this property. The value of this property must be a numeric address
+    without quotes.
+
+    This option is deprecated and the hostname property should be used
+    instead.
+
+kickstart.always.transfer
+
+    Valid values: true, false
+
+    Default value: false
+
+    This property controls when output from Kickstart is transfered back
+    to the submit site, if Kickstart is enabled. When set to false,
+    Kickstart output is only transfered for jobs that fail. If set to
+    true, Kickstart output is transfered after every job is completed
+    or failed.
+
+kickstart.enabled
+
+    Valid values: true, false, maybe
+
+    Default value: maybe
+
+    This option allows controlling of when Swift uses Kickstart. 
+    A value of false disables the use of Kickstart,
+    while a value of true enables the use of Kickstart, in which case
+    sites specified in the sites.xml file must have valid
+    gridlaunch attributes. The maybe value will enable the use of
+    Kickstart only on sites that have the gridlaunch attribute
+    specified.
+
+lazy.errors
+
+    Valid values: true, false
+
+    Default value: false
+
+    Swift can report application errors in two modes, depending on the
+    value of this property. If set to false, Swift will report the
+    first error encountered and immediately stop execution. If set to
+    true, Swift will attempt to run as much as possible from a
+    SwiftScript program before stopping execution and reporting all
+    errors encountered.
+
+    When developing SwiftScript programs, using the default value of
+    false can make the program easier to debug. However in production
+    runs, using true will allow more of a SwiftScript program to be
+    run before Swift aborts execution.
+
+pgraph
+
+    Valid values: true, false, <file>
+
+    Default value: false
+
+    Swift can generate a Graphviz <http://www.graphviz.org/> file
+    representing the structure of the SwiftScript program it has run. If
+    this property is set to true, Swift will save the provenance graph
+    in a file named by concatenating the program name and the instance
+    ID (e.g. helloworld-ht0adgi315l61.dot).
+
+    If set to false, no provenance graph will be generated. If a file
+    name is used, then the provenance graph will be saved in the
+    specified file.
+
+    The generated dot file can be rendered into a graphical form using
+    Graphviz <http://www.graphviz.org/>, for example with a command-line
+    such as:
+
+[shell]
+source~~~~
+$ swift -pgraph graph1.dot q1.swift
+$ dot -ograph.png -Tpng graph1.dot
+source~~~~						
+
+pgraph.graph.options
+
+    Valid values: <string>
+
+    Default value: splines="compound", rankdir="TB"
+
+    This property specifies a Graphviz <http://www.graphviz.org>
+    specific set of parameters for the graph.
+
+pgraph.node.options
+
+    Valid values: <string>
+
+    Default value: color="seagreen", style="filled"
+
+    Used to specify a set of Graphviz <http://www.graphviz.org> specific
+    properties for the nodes in the graph.
+
+provenance.log
+
+    Valid values: true, false
+
+    Default value: false
+
+    This property controls whether the log file will contain provenance
+    information enabling this will increase the size of log files,
+    sometimes significantly.
+
+replication.enabled
+
+    Valid values: true, false
+
+    Default value: false
+
+    Enables/disables replication. Replication is used to deal with jobs
+    sitting in batch queues for abnormally large amounts of time. If
+    replication is enabled and certain conditions are met, Swift creates
+    and submits replicas of jobs, and allows multiple instances of a job
+    to compete.
+
+replication.limit
+
+    Valid values: positive integers
+
+    Default value: 3
+
+    The maximum number of replicas that Swift should attempt.
+
+sitedir.keep
+
+    Valid values: true, false
+
+    Default value: false
+
+    Indicates whether the working directory on the remote site should be
+    left intact even when a run completes successfully. This can be used
+    to inspect the site working directory for debugging purposes.
+
+sites.file
+
+    Valid values: <file>
+
+    Default value: ${swift.home}/etc/sites.xml
+
+    Points to the location of the site catalog, which contains a list of
+    all sites that Swift should use.
+
+status.mode
+
+    Valid values: files, provider
+
+    Default value: files
+
+    Controls how Swift will communicate the result code of running user
+    programs from workers to the submit side. In files mode, a file
+    indicating success or failure will be created on the site shared
+    filesystem. In provider mode, the execution provider job status
+    will be used.
+
+    provider mode requires the underlying job execution system to
+    correctly return exit codes. In at least the cases of GRAM2, and
+    clusters used with any provider, exit codes are not returned, and so
+    files mode must be used in those cases. Otherwise, provider mode
+    can be used to reduce the amount of filesystem access. (since Swift
+    0.8)
+
+tc.file
+
+    Valid values: <file>
+
+    Default value: ${swift.home}/etc/tc.data
+
+    Points to the location of the transformation catalog file which
+    contains information about installed applications. Details about the
+    format of the transformation catalog can be found here
+    <http://vds.uchicago.edu/vds/doc/userguide/html/H_TransformationCatalog.html>.
+
+
+tcp.port.range
+
+    Valid values: <start>,<end> where start and end are integers
+
+    Default value: none
+
+    A TCP port range can be specified to restrict the ports on which
+    GRAM callback services are started. This is likely needed if your
+    submit host is behind a firewall, in which case the firewall should
+    be configured to allow incoming connections on ports in the range.
+
+throttle.file.operations
+
+    Valid values: <int>, off
+
+    Default value: 8
+
+    Limits the total number of concurrent file operations that can
+    happen at any given time. File operations (like transfers) require
+    an exclusive connection to a site. These connections can be
+    expensive to establish. A large number of concurrent file operations
+    may cause Swift to attempt to establish many such expensive
+    connections to various sites. Limiting the number of concurrent file
+    operations causes Swift to use a small number of cached connections
+    and achieve better overall performance.
+
+throttle.host.submit
+
+    Valid values: <int>, off
+
+    Default value: 2
+
+    Limits the number of concurrent submissions for any of the sites
+    Swift will try to send jobs to. In other words it guarantees that no
+    more than the value of this throttle jobs sent to any site will be
+    concurrently in a state of being submitted.
+
+throttle.score.job.factor
+
+    Valid values: <int>, off
+
+    Default value: 4
+
+    The Swift scheduler has the ability to limit the number of
+    concurrent jobs allowed on a site based on the performance history
+    of that site. Each site is assigned a score (initially 1), which can
+    increase or decrease based on whether the site yields successful or
+    faulty job runs. The score for a site can take values in the (0.1,
+    100) interval. The number of allowed jobs is calculated using the
+    following formula:
+
+    2 + score*throttle.score.job.factor
+
+    This means a site will always be allowed at least two concurrent
+    jobs and at most 2 + 100*throttle.score.job.factor. With a default
+    of 4 this means at least 2 jobs and at most 402.
+
+    This parameter can also be set per site using the jobThrottle
+    profile key in a site catalog entry.
+
+throttle.submit
+
+    Valid values: <int>, off
+
+    Default value: 4
+
+    Limits the number of concurrent submissions for a run. This throttle
+    only limits the number of concurrent tasks (jobs) that are being
+    sent to sites, not the total number of concurrent jobs that can be
+    run. The submission stage in GRAM is one of the most CPU expensive
+    stages (due mostly to the mutual authentication and delegation).
+    Having too many concurrent submissions can overload either or both
+    the submit host CPU and the remote host/head node causing degraded
+    performance.
+
+throttle.transfers
+
+    Valid values: <int>, off
+
+    Default value: 4	
+
+    Limits the total number of concurrent file transfers that can happen
+    at any given time. File transfers consume bandwidth. Too many
+    concurrent transfers can cause the network to be overloaded
+    preventing various other signaling traffic from flowing properly.
+
+ticker.disable
+
+    Valid values: true, false
+
+    Default value: false
+
+    When set to true, suppresses the output progress ticker that Swift
+    sends to the console every few seconds during a run (since Swift 0.9)
+
+wrapper.invocation.mode
+
+    Valid values: absolute, relative
+
+    Default value: absolute
+
+    Determines if Swift remote wrappers will be executed by specifying
+    an absolute path, or a path relative to the job initial working
+    directory. In most cases, execution will be successful with either
+    option. However, some execution sites ignore the specified initial
+    working directory, and so absolute must be used. Conversely on
+    some sites, job directories appear in a different place on the
+    worker node file system than on the filesystem access node, with the
+    execution system handling translation of the job initial working
+    directory. In such cases, relative mode must be used. (since Swift
+    0.9)
+
+wrapper.parameter.mode
+
+    Controls how Swift will supply parameters to the remote wrapper
+    script. args mode will pass parameters on the command line. Some
+    execution systems do not pass commandline parameters sufficiently
+    cleanly for Swift to operate correctly. files mode will pass
+    parameters through an additional input file (since Swift 0.95). This
+    provides a cleaner communication channel for parameters, at the
+    expense of transferring an additional file for each job invocation.
+
+wrapperlog.always.transfer
+
+    Valid values: true, false
+
+    Default value: false
+
+    This property controls when output from the Swift remote wrapper is
+    transfered back to the submit site. When set to false, wrapper
+    logs are only transfered for jobs that fail. If set to true,
+    wrapper logs are transfered after every job is completed or failed.
+
+Example:
+
+[source,xml]
+sites.file=${vds.home}/etc/sites.xml
+tc.file=${vds.home}/etc/tc.data
+ip.address=192.168.0.1
+
+Profiles
+--------
+Profiles are configuration parameters than can be specified either for
+sites or for transformation catalog entries. They influence the
+behaviour of Swift towards that site (for example, by changing the load
+Swift will place on that sites) or when running a particular procedure.
+
+Profile entries for a site are specified in the site catalog. Profile
+entries for specific procedures are specified in the transformation
+catalog.
+
+
+Karajan namespace
+~~~~~~~~~~~~~~~~~
+maxSubmitRate limits the maximum rate of job submission, in jobs per
+second. For example:
+
+[source,xml]
+<profile namespace="karajan" key="maxSubmitRate">0.2</profile>
+
+will limit job submission to 0.2 jobs per second (or equivalently, one
+job every five seconds).
+
+jobThrottle allows the job throttle factor (see Swift property
+throttle.score.job.factor to be
+set per site.
+
+initialScore allows the initial score for rate limiting and site
+selection to be set to a value other than 0.
+
+delayBase controls how much a site will be delayed when it performs
+poorly. With each reduction in a sites score by 1, the delay between
+execution attempts will increase by a factor of delayBase.
+
+status.mode allows the status.mode property to be set per-site instead
+of for an entire run. See the Swift configuration properties section for
+more information. (since Swift 0.8)
+
+swift namespace
+~~~~~~~~~~~~~~~
+storagesize limits the amount of space that will be used on the remote
+site for temporary files. When more than that amount of space is used,
+the remote temporary file cache will be cleared using the algorithm
+specified in the caching.algorithm property.
+
+wrapperInterpreter - The wrapper interpreter indicates the command
+(executable) to be used to run the Swift wrapper script. The default is
+"/bin/bash" on Unix sites and "cscript.exe" on Windows sites.
+
+wrapperInterpreterOptions - Allows specifying additional options to the
+executable used to run the Swift wrapper. The defaults are no options on
+Unix sites and "Nologo" on Windows sites.
+
+wrapperScript - Specifies the name of the wrapper script to be used on a
+site. The defaults are "_swiftwrap" on Unix sites and "_swiftwrap.vbs"
+on Windows sites. If you specify a custom wrapper script, it must be
+present in the "libexec" directory of the Swift installation.
+
+cleanupCommand Indicates the command to be run at the end of a Swift
+run to clean up the run directories on a remote site. Defaults are
+"/bin/rm" on Unix sites and "cmd.exe" on Windows sites
+
+cleanupCommandOptions Specifies the options to be passed to the
+cleanup command above. The options are passed in the argument list to
+the cleanup command. After the options, the last argument is the
+directory to be deleted. The default on Unix sites is "-rf". The default
+on Windows sites is ["/C", "del", "/Q"].
+
+
+Globus namespace
+~~~~~~~~~~~~~~~~
+maxwalltime specifies a walltime limit for each job, in minutes.
+
+The following formats are recognized:
+
+    * Minutes
+    * Hours:Minutes
+    * Hours:Minutes:Seconds
+
+Example:
+[source,java]
+localhost	echo	/bin/echo	INSTALLED	INTEL32::LINUX	GLOBUS::maxwalltime="00:20:00"
+
+When replication is enabled (see replication), then
+walltime will also be enforced at the Swift client side: when a job has
+been active for more than twice the maxwalltime, Swift will kill the job
+and regard it as failed.
+
+When clustering is used, maxwalltime will be used to select which jobs
+will be clustered together. More information on this is available in the
+clustering section.
+
+When coasters as used, maxwalltime influences the default coaster
+worker maxwalltime, and which jobs will be sent to which workers. More
+information on this is available in the coasters section.
+
+queue is used by the PBS, GRAM2 and GRAM4 providers. This profile
+entry specifies which queue jobs will be submitted to. The valid queue
+names are site-specific.
+
+host_types specifies the types of host that are permissible for a job
+to run on. The valid values are site-specific. This profile entry is
+used by the GRAM2 and GRAM4 providers.
+
+condor_requirements allows a requirements string to be specified when
+Condor is used as an LRM behind GRAM2. Example: 
+
+[source,xml]
+<profile
+namespace="globus" key="condor_requirements">Arch == "X86_64" || Arch="INTEL"</profile>
+
+slots When using coasters, this parameter specifies the
+maximum number of jobs/blocks that the coaster scheduler will have
+running at any given time. The default is 20.
+
+workersPerNode - This parameter determines how many coaster workers are
+started one each compute node. The default value is 1.
+
+nodeGranularity - When allocating a coaster worker block, this parameter
+restricts the number of nodes in a block to a multiple of this value.
+The total number of workers will then be a multiple of workersPerNode *
+nodeGranularity. The default value is 1.
+
+allocationStepSize - Each time the coaster block scheduler computes a
+schedule, it will attempt to allocate a number of slots from the number
+of available slots (limited using the above slots profile). This
+parameter specifies the maximum fraction of slots that are allocated in
+one schedule. Default is 0.1.
+
+lowOverallocation - Overallocation is a function of the walltime of a
+job which determines how long (time-wise) a worker job will be. For
+example, if a number of 10s jobs are submitted to the coaster service,
+and the overallocation for 10s jobs is 10, the coaster scheduler will
+attempt to start worker jobs that have a walltime of 100s. The
+overallocation is controlled by manipulating the end-points of an
+overallocation function. The low endpoint, specified by this parameter,
+is the overallocation for a 1s job. The high endpoint is the
+overallocation for a (theoretical) job of infinite length. The
+overallocation for job sizes in the [1s, +inf) interval is determined
+using an exponential decay function: overallocation(walltime) = walltime
+* (lowOverallocation - highOverallocation) * exp(-walltime *
+overallocationDecayFactor) + highOverallocation The default value of
+lowOverallocation is 10.
+
+highOverallocation - The high overallocation endpoint (as described
+above). Default: 1
+
+overallocationDecayFactor - The decay factor for the overallocation
+curve. Default 0.001 (1e-3).
+
+spread - When a large number of jobs is submitted to the a coaster
+service, the work is divided into blocks. This parameter allows a rough
+control of the relative sizes of those blocks. A value of 0 indicates
+that all work should be divided equally between the blocks (and blocks
+will therefore have equal sizes). A value of 1 indicates the largest
+possible spread. The existence of the spread parameter is based on the
+assumption that smaller overall jobs will generally spend less time in
+the queue than larger jobs. By submitting blocks of different sizes,
+submitted jobs may be finished quicker by smaller blocks. Default: 0.9.
+
+reserve - Reserve time is a time in the allocation of a worker that sits
+at the end of the worker time and is useable only for critical
+operations. For example, a job will not be submitted to a worker if it
+overlaps its reserve time, but a job that (due to inaccurate walltime
+specification) runs into the reserve time will not be killed (note that
+once the worker exceeds its walltime, the queuing system will kill the
+job anyway). Default 10 (s).
+
+maxnodes - Determines the maximum number of nodes that can be allocated
+in one coaster block. Default: unlimited.
+
+maxtime - Indicates the maximum walltime that a coaster block can have.
+Default: unlimited.
+
+remoteMonitorEnabled - If set to "true", the client side will get a
+Swing window showing, graphically, the state of the coaster scheduler
+(blocks, jobs, etc.). Default: false
+
+env namespace
+~~~~~~~~~~~~~
+Profile keys set in the env namespace will be set in the unix
+environment of the executed job. Some environment variables influence
+the worker-side behaviour of Swift:
+
+PATHPREFIX - set in env namespace profiles. This path is prefixed onto
+the start of the PATH when jobs are executed. It can be more useful
+than setting the PATH environment variable directly, because setting
+PATH will cause the execution site's default path to be lost.
+
+SWIFT_JOBDIR_PATH - set in env namespace profiles. If set, then Swift
+will use the path specified here as a worker-node local temporary
+directory to copy input files to before running a job. If unset, Swift
+will keep input files on the site-shared filesystem. In some cases,
+copying to a worker-node local directory can be much faster than having
+applications access the site-shared filesystem directly.
+
+SWIFT_EXTRA_INFO - set in env namespace profiles. If set, then Swift
+will execute the command specified in SWIFT_EXTRA_INFO on execution
+sites immediately before each application execution, and will record the
+stdout of that command in the wrapper info log file for that job. This
+is intended to allow software version and other arbitrary information
+about the remote site to be gathered and returned to the submit side.
+(since Swift 0.9)
+
+The Site Catalog - sites.xml
+----------------------------
+The site catalog lists details of each site that Swift can use. The
+default file contains one entry for local execution, and a large number
+of commented-out example entries for other sites.
+
+By default, the site catalog is stored in etc/sites.xml. This path can
+be overridden with the sites.file configuration property, either in
+the Swift configuration file or on the command line.
+
+The sites file is formatted as XML. It consists of <pool> elements,
+one for each site that Swift will use.
+
+
+Pool element
+~~~~~~~~~~~~
+Each pool element must have a handle attribute, giving a symbolic
+name for the site. This can be any name, but must correspond to entries
+for that site in the transformation catalog.
+
+Optionally, the gridlaunch attribute can be used to specify the path
+to kickstart on the site.
+
+Each pool must specify a file transfer method, an execution method and
+a remote working directory. Optionally, profile settings can
+be specified.
+
+
+File transfer method
+~~~~~~~~~~~~~~~~~~~~
+Transfer methods are specified with either the <gridftp> element or
+the <filesystem> element.
+
+To use gridftp or local filesystem copy, use the <gridftp> element:
+
+[source,xml]
+<gridftp  url="gsiftp://evitable.ci.uchicago.edu" />
+
+The url attribute may specify a GridFTP server, using the gsiftp URI
+scheme; or it may specify that filesystem copying will be used (which
+assumes that the site has access to the same filesystem as the
+submitting machine) using the URI local://localhost.
+
+Filesystem access using scp (the SSH copy protocol) can be specified
+using the <filesystem> element:
+
+[source,xml]
+<filesystem url="www11.i2u2.org" provider="ssh"/>
+
+For additional ssh configuration information, see the ssh execution
+provider documentation below.
+
+Filesystem access using CoG coasters can be also be
+specified using the <filesystem> element. More detail about
+configuring that can be found in the CoG coasters section.
+
+Execution method
+~~~~~~~~~~~~~~~~
+Execution methods may be specified either with the <jobmanager> or
+<execution> element.
+
+The <jobmanager> element can be used to specify execution through
+GRAM2. For example,
+
+[source,xml]
+<jobmanager universe="vanilla" url="evitable.ci.uchicago.edu/jobmanager-fork" major="2" />
+
+The universe attribute should always be set to vanilla. The url
+attribute should specify the name of the GRAM2 gatekeeper host, and the
+name of the jobmanager to use. The major attribute should always be set
+to 2.
+
+The <execution> element can be used to specify execution through other
+execution providers:
+
+To use GRAM4, specify the gt4 provider. For example:
+
+[source,xml]
+<execution provider="gt4" jobmanager="PBS" url="tg-grid.uc.teragrid.org" />
+
+The url attribute should specify the GRAM4 submission site. The
+jobmanager attribute should specify which GRAM4 jobmanager will be used.
+
+For local execution, the local provider should be used, like this:
+
+[source,xml]
+<execution provider="local" url="none" />
+
+For PBS execution, the pbs provider should be used:
+
+[source,xml]
+<execution provider="pbs" url="none" />
+
+The GLOBUS::queue profile key can be used to
+specify which PBS queue jobs will be submitted to.
+
+For execution through a local Condor installation, the condor provider
+should be used. This provider can run jobs either in the default vanilla
+universe, or can use Condor-G to run jobs on remote sites.
+
+When running locally, only the <execution> element needs to be specified:
+
+[source,xml]
+<execution provider="condor" url="none" />
+
+When running with Condor-G, it is necessary to specify the Condor grid
+universe and the contact string for the remote site. For example:
+
+[source,xml]
+ <execution provider="condor" />
+ <profile namespace="globus" key="jobType">grid</profile>
+ <profile namespace="globus" key="gridResource">gt2 belhaven-1.renci.org/jobmanager-fork</profile>
+
+For execution through SSH, the ssh provider should be used:
+
+[source,xml]
+<execution url="www11.i2u2.org" provider="ssh"/>
+
+with configuration made in ~/.ssh/auth.defaults with the string
+'www11.i2u2.org' changed to the appropriate host name:
+
+[source,shell]
+www11.i2u2.org.type=key
+www11.i2u2.org.username=hategan
+www11.i2u2.org.key=/home/mike/.ssh/i2u2portal
+www11.i2u2.org.passphrase=XXXX
+
+For execution using the CoG Coaster mechanism, the coaster
+provider should be used:
+
+[source,xml]
+<execution provider="coaster" url="tg-grid.uc.teragrid.org"
+    jobmanager="gt2:gt2:pbs" />
+
+More details about configuration of coasters can be found in the section
+on coasters.
+
+Work directory
+~~~~~~~~~~~~~~
+The workdirectory element specifies where on the site files can be
+stored.
+
+[source,xml]
+<workdirectory>/home/benc</workdirectory>
+
+This file must be accessible through the transfer mechanism specified in
+the <gridftp> element and also mounted on all worker nodes that will
+be used for execution. A shared cluster scratch filesystem is
+appropriate for this.
+
+Profiles
+~~~~~~~~
+Profile keys can be specified using the <profile> element.
+For example:
+
+[source,xml]
+<profile namespace="globus" key="queue">fast</profile>
+
+The site catalog format is an evolution of the VDS site catalog format
+which is documented here
+<http://vds.uchicago.edu/vds/doc/userguide/html/H_SiteCatalog.html>.
+
+
+The Transformation Catalog - tc.data
+------------------------------------
+The transformation catalog lists where application executables are
+located on remote sites.
+
+By default, the site catalog is stored in etc/tc.data. This path can
+be overridden with the tc.file configuration property, either in the
+Swift configuration file or on the command line.
+
+The format is one line per executable per site, with fields separated by
+tabs. Spaces cannot be used to separate fields.
+
+Some example entries:
+[source,shell]
+localhost  echo    /bin/echo       INSTALLED       INTEL32::LINUX  null
+TGUC       touch   /usr/bin/touch  INSTALLED       INTEL32::LINUX  GLOBUS::maxwalltime="0:1"
+
+The fields are: site, transformation name, executable path, installation
+status, platform, and profile entrys.
+
+The site field should correspond to a site name listed in the sites catalog.
+
+The transformation name should correspond to the transformation name
+used in a SwiftScript app procedure.
+
+The executable path should specify where the particular executable is
+located on that site.
+
+The installation status and platform fields are not used. Set them to
+INSTALLED and INTEL32::LINUX respectively.
+
+The profiles field should be set to null if no profile entries are to
+be specified, or should contain the profile entries separated by
+semicolons.
+
+Build options
+-------------
+See the Swift download page
+<http://www.ci.uchicago.edu/swift/downloads/> for instructions on
+downloading and building Swift from source. When building, various build
+options can be supplied on the ant commandline. These are summarised here:
+
+with-provider-condor - build with CoG condor provider
+
+with-provider-coaster - build with CoG coaster provider (see the
+section on coasters). Since 0.8, coasters are always built,
+and this option has no effect.
+
+with-provider-deef - build with Falkon provider deef. In order for
+this option to work, it is necessary to check out the provider-deef code
+in the cog/modules directory alongside swift:
+
+[source,shell]
+$ cd cog/modules
+$ svn co https://svn.ci.uchicago.edu/svn/vdl2/provider-deef
+$ cd ../swift
+$ ant -Dwith-provider-deef=true redist
+			
+with-provider-wonky - build with provider-wonky, an execution provider
+that provides delays and unreliability for the purposes of testing
+Swift's fault tolerance mechanisms. In order for this option to work, it
+is necessary to check out the provider-wonky code in the |cog/modules|
+directory alongside swift:
+
+[source,shell]
+$ cd cog/modules
+$ svn co https://svn.ci.uchicago.edu/svn/vdl2/provider-wonky
+$ cd ../swift|*
+$ ant -Dwith-provider-wonky=true redist
+			
+no-supporting - produces a distribution without supporting commands
+such as grid-proxy-init. This is intended for when the Swift
+distribution will be used in an environment where those commands are
+already provided by other packages, where the Swift package should be
+providing only Swift commands, and where the presence of commands such
+as grid-proxy-init from the Swift distribution in the path will mask the
+presence of those commands from their true distribution package such as
+a Globus Toolkit package.
+
+[source,shell]
+$ ant -Dno-supporting=true redist
+
+Kickstart
+---------
+Kickstart is a tool that can be used to gather various information about
+the remote execution environment for each job that Swift tries to run.
+
+For each job, Kickstart generates an XML invocation record. By default
+this record is staged back to the submit host if the job fails.
+
+Before it can be used it must be installed on the remote site and the
+sites file must be configured to point to kickstart.
+
+Kickstart can be downloaded as part of the Pegasus 'worker package'
+available from the worker packages section of the Pegasus download page
+<http://pegasus.isi.edu/code.php>.
+
+Untar the relevant worker package somewhere where it is visible to all
+of the worker nodes on the remote execution machine (such as in a shared
+application filesystem).
+
+Now configure the gridlaunch attribute of the sites catalog to point to
+that path, by adding a gridlaunch attribute to the pool element in
+the site catalog:
+
+[source,xml]
+<pool handle="example" gridlaunch="/usr/local/bin/kickstart" sysinfo="INTEL32::LINUX">
+...
+</pool>
+
+There are various kickstat.* properties, which have sensible default
+values. These are documented in the properties section.
+
+Reliability mechanisms
+----------------------
+This section details reliabilty mechanisms in Swift: retries, restarts
+and replication.
+
+Retries
+~~~~~~~
+If an application procedure execution fails, Swift will attempt that
+execution again repeatedly until it succeeds, up until the limit defined
+in the execution.retries configuration property.
+
+Site selection will occur for retried jobs in the same way that it
+happens for new jobs. Retried jobs may run on the same site or may run
+on a different site.
+
+If the retry limit execution.retries is reached for an application
+procedure, then that application procedure will fail. This will cause
+the entire run to fail - either immediately (if the lazy.errors
+property is false) or after all other possible work has been attempted
+(if the lazy.errors property is true).
+
+Restarts
+~~~~~~~~
+If a run fails, Swift can resume the program from the point of failure.
+When a run fails, a restart log file will be left behind in a file named
+using the unique job ID and a .rlog extension. This restart log can
+then be passed to a subsequent Swift invocation using the -resume
+parameter. Swift will resume execution, avoiding execution of
+invocations that have previously completed successfully. The SwiftScript
+source file and input data files should not be modified between runs.
+
+Every run creates a restart log file with a named composed of the file
+name of the workflow being executed, an invocation ID, a numeric ID, and
+the .rlog extension. For example, example.swift, when executed,
+could produce the following restart log file:
+example-ht0adgi315l61.0.rlog. Normally, if the run completes
+successfully, the restart log file is deleted. If however the workflow
+fails, swift can use the restart log file to continue execution from a
+point before the failure occurred. In order to restart from a restart
+log file, the -resume logfile argument can be used after the
+SwiftScript program file name. Example:
+
+[source,shell]
+$ swift -resume example-ht0adgi315l61.0.rlog example.swift.
+
+Replication
+~~~~~~~~~~~
+When an execution job has been waiting in a site queue for a certain
+period of time, Swift can resubmit replicas of that job (up to the limit
+defined in the replication.limit configuration property). When any of
+those jobs moves from queued to active state, all of the other replicas
+will be cancelled.
+
+This is intended to deal with situations where some sites have a
+substantially longer (sometimes effectively infinite) queue time than
+other sites. Selecting those slower sites can cause a very large delay
+in overall run time.
+
+Replication can be enabled by setting the replication.enabled
+configuration property to true. The maximum number of replicas that
+will be submitted for a job is controlled by the replication.limit
+configuration property.
+
+When replication is enabled, Swift will also enforce the maxwalltime
+profile setting for jobs as documented in the profiles section.
+
+Clustering
+----------
+Swift can group a number of short job submissions into a single larger
+job submission to minimize overhead involved in launching jobs (for
+example, caused by security negotiation and queuing delay). In general,
+CoG coasters should be used in preference to the clustering
+mechanism documented in this section.
+
+By default, clustering is disabled. It can be activated by setting the
+clustering.enabled property to true.
+
+A job is eligible for clustering if the GLOBUS::maxwalltime profile 
+is specified in the tc.data entry for that job, and its value is 
+less than the value of the clustering.min.time property.
+
+Two or more jobs are considered compatible if they share the same site
+and do not have conflicting profiles (e.g. different values for the same
+environment variable).
+
+When a submitted job is eligible for clustering, it will be put in a
+clustering queue rather than being submitted to a remote site. The
+clustering queue is processed at intervals specified by the
+clustering.queue.delay property. The
+processing of the clustering queue consists of selecting compatible jobs
+and grouping them into clusters whose maximum wall time does not exceed
+twice the value of the clustering.min.time property.
+
+Coasters
+--------
+Coasters were introduced in Swift v0.6 as an experimental feature.
+
+In many applications, Swift performance can be greatly enhanced by the
+use of CoG coasters. CoG coasters provide a low-overhead job submission
+and file transfer mechanism suited for the execution of short jobs (on
+the order of a few seconds) and the transfer of small files (on the
+order of a few kilobytes) for which other grid protocols such as GRAM
+and GridFTP are poorly suited.
+
+The coaster mechanism submits a head job using some other execution
+mechanism such as GRAM, and for each worker node that will be used in a
+remote cluster, it submits a worker job, again using some other
+execution mechanism such as GRAM. Details on the design of the coaster
+mechanism can be found here. <http://wiki.cogkit.org/wiki/Coasters>
+
+The head job manages file transfers and the dispatch of execution jobs
+to workers. Much of the overhead associated with other grid protocols
+(such as authentication and authorization, and allocation of worker
+nodes by the site's local resource manager) is reduced, because that
+overhead is associated with the allocation of a coaster head or coaster
+worker, rather than with every Swift-level procedure invocation;
+potentially hundreds or thousands of Swift-level procedure invocations
+can be run through a single worker.
+
+Coasters can be configured for use in two situations: job execution and
+file transfer.
+
+To use for job execution, specify a sites.xml execution element like this:
+
+[source,xml]
+<execution provider="coaster" jobmanager="gt2:gt2:pbs" url="grid.myhost.org">
+
+The jobmanager string contains more detail than with other providers. It
+contains either two or three colon separated fields: 1:the provider to
+be use to execute the coaster head job - this provider will submit from
+the Swift client side environment. Commonly this will be one of the GRAM
+providers; 2: the provider to be used to execute coaster worker jobs.
+This provider will be used to submit from the coaster head job
+environment, so a local scheduler provider can sometimes be used instead
+of GRAM. 3: optionally, the jobmanager to be used when submitting worker
+job using the provider specified in field 2.
+
+To use for file transfer, specify a sites.xml filesystem element like this:
+
+[source,xml]
+<filesystem provider="coaster" url="gt2://grid.myhost.org" />
+
+The url parameter should be a pseudo-URI formed with the URI scheme
+being the name of the provider to use to submit the coaster head job,
+and the hostname portion being the hostname to be used to execute the
+coaster head job. Note that this provider and hostname will be used for
+execution of a coaster head job, not for file transfer; so for example,
+a GRAM endpoint should be specified here rather than a GridFTP endpoint.
+
+Coasters are affected by the following profile settings, which are
+documented in the Globus namespace profile section:
+
+[options="header"]
+|=================
+|Profile key|Brief description
+|slots|How many maximum LRM jobs/worker blocks are allowed
+|workersPerNode|How many coaster workers to run per execution node
+|nodeGranularity|Each worker block uses a number of nodes that is a
+multiple of this number
+|lowOverallocation|How many times larger than the job walltime should a
+block's walltime be if all jobs are 1s long
+|highOverallocation|How many times larger than the job walltime should a
+block's walltime be if all jobs are infinitely long
+|overallocationDecayFactor|How quickly should the overallocation curve
+tend towards the highOverallocation as job walltimes get larger
+|spread|By how much should worker blocks vary in worker size
+|workersPerNode|How many coaster workers to run per execution node
+|reserve|How many seconds to reserve in a block's walltime for
+starting/shutdown operations
+|maxnodes|The maximum number of nodes allowed in a block
+|maxtime|The maximum number of walltime allowed for a block
+|remoteMonitorEnabled|If true, show a graphical display of the status of
+the coaster service
+|==================
+
+How-To Tips for Specific User Communities
+-----------------------------------------
+
+Saving Logs - for UChicago CI Users
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+If you have a UChicago Computation Institute account, run this command
+in your submit directory after each run. It will copy all your logs and
+kickstart records into a directory at the CI for reporting, usage
+tracking, support and debugging.
+
+[source,shell]
+rsync --ignore-existing *.log *.d login.ci.uchicago.edu:/disks/ci-gpfs/swift/swift-logs/ --verbose
+
+Specifying TeraGrid allocations
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+TeraGrid users with no default project or with several project
+allocations can specify a project allocation using a profile key in the
+site catalog entry for a TeraGrid site:
+
+[source,xml]
+<profile namespace="globus" key="project">TG-CCR080002N</profile>
+
+More information on the TeraGrid allocations process can be found here
+<http://www.teragrid.org/userinfo/access/allocations.php>.
+
+Launching MPI jobs from Swift
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+Here is an example of running a simple MPI program.
+
+In SwiftScript, we make an invocation that does not look any different
+from any other invocation. In the below code, we do not have any input
+files, and have two output files on stdout and stderr:
+
+[java]
+source~~~~
+type file;  
+  
+(file o, file e) p() {   
+    app {  
+        mpi stdout=@filename(o) stderr=@filename(e);  
+    }  
+}  
+  
+file mpiout <"mpi.out">;  
+file mpierr <"mpi.err">;  
+  
+(mpiout, mpierr) = p();  
+source~~~~
+
+Now we define how 'mpi' will run in tc.data:
+[source,shell]
+tguc    mpi             /home/benc/mpi/mpi.sh   INSTALLED       INTEL32::LINUX GLOBUS::host_xcount=3
+
+mpi.sh is a wrapper script that launches the MPI program. It must be
+installed on the remote site:
+
+[source,shell]
+#!/bin/bash
+mpirun -np 3 -machinefile $PBS_NODEFILE /home/benc/mpi/a.out 
+
+Because of the way that Swift runs its server side code,
+provider-specific MPI modes (such as GRAM jobType=mpi) should not be
+used. Instead, the mpirun command should be explicitly invoked.
+
+Running on Windows
+~~~~~~~~~~~~~~~~~~
+Since 10/11/09, the development version of Swift has the ability to run
+on a Windows machine, as well as the ability to submit jobs to a Windows
+site (provided that an appropriate provider is used).
+
+In order to launch Swift on Windows, use the provided batch file
+(swift.bat). In certain cases, when a large number of jar libraries are
+present in the Swift lib directory and depending on the exact location
+of the Swift installation, the classpath environment variable that the
+Swift batch launcher tries to create may be larger than what Windows can
+handle. In such a case, either install Swift in a directory closer to
+the root of the disk (say, c:\swift) or remove non-essential jar files
+from the Swift lib directory.
+
+Due to the large differences between Windows and Unix environments,
+Swift must use environment specific tools to achieve some of its goals.
+In particular, each Swift executable is launched using a wrapper script.
+This script is a Bourne Shell script. On Windows machines, which have no
+Bourne Shell interpreter installed by default, the Windows Scripting
+Host is used instead, and the wrapper script is written in VBScript.
+Similarly, when cleaning up after a run, the "/bin/rm" command available
+in typical Unix environments must be replaced by the "del" shell command.
+
+It is important to note that in order to select the proper set of tools
+to use, Swift must know when a site runs under Windows. To inform Swift
+of this, specify the "sysinfo" attribute for the "pool" element in the
+site catalog. For example:
+
+[source,xml]
+<pool handle="localhost" sysinfo="INTEL32::WINDOWS">  
+...  
+</pool>  

Deleted: trunk/docs/userguide-rotated.jpeg
===================================================================
(Binary files differ)

Deleted: trunk/docs/userguide-shane.jpeg
===================================================================
(Binary files differ)

Deleted: trunk/docs/userguide.xml
===================================================================
--- trunk/docs/userguide.xml	2011-05-16 19:29:35 UTC (rev 4479)
+++ trunk/docs/userguide.xml	2011-05-16 19:38:01 UTC (rev 4480)
@@ -1,4337 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [] >
-
-<article>
-	<articleinfo revision="0.1">
-		<title>Swift User Guide</title>
-		<subtitle>Source control $LastChangedRevision$</subtitle>
-	</articleinfo>
-
-	<section id="overview">
-		<title>Overview</title>
-		<para>
-This manual provides reference material for Swift: the SwiftScript language
-and the Swift runtime system. For introductory material, consult
-the <ulink url="./tutorial.php">Swift <!-- http://www.ci.uchicago.edu/swift/guides/ -->
-tutorial</ulink>.
-	</para>
-	<para>
-Swift is a data-oriented coarse grained scripting language that
-supports dataset typing and mapping, dataset iteration,
-conditional branching, and procedural composition.
-	</para>
-	<para>
-Swift programs (or <firstterm>workflows</firstterm>) are written in
-a language called <firstterm>SwiftScript</firstterm>.
-	</para>
-	<para>
-SwiftScript programs are dataflow oriented - they are primarily
-concerned with processing (possibly large) collections of data files,
-by invoking programs to do that processing. Swift handles execution of
-such programs on remote sites by choosing sites, handling the staging
-of input and output files to and from the chosen sites and remote execution
-of program code.
-	</para>
-	</section>
-	<section id="language">
-		<title>The SwiftScript Language</title>
-<section><title>Language basics</title>
-<para>
-A Swift script describes data, application components, invocations
-of applications components, and the inter-relations (data flow)
-between those invocations.
-</para>
-<para>
-Data is represented in a script by strongly-typed single-assignment
-variables. The syntax superficially resembles C and Java. For example,
-<literal>{</literal> and <literal>}</literal> characters are used to
-enclose blocks of statements.
-</para>
-<para>
-Types in Swift can be <firstterm>atomic</firstterm> or
-<firstterm>composite</firstterm>. An atomic type can be either a
-<firstterm>primitive type</firstterm> or a <firstterm>mapped type</firstterm>.
-Swift provides a fixed set of primitive types, such as
-<firstterm>integer</firstterm> and <firstterm>string</firstterm>. A mapped
-type indicates that the actual data does not reside in CPU addressable
-memory (as it would in conventional programming languages), but in
-POSIX-like files. Composite types are further subdivided into
-<firstterm>structures</firstterm> and <firstterm>arrays</firstterm>.
-Structures are similar in most respects to structure types in other languages.
-Arrays use numeric indices, but are sparse. They can contain elements of
-any type, including other array types, but all elements in an array must be
-of the same type.  We often refer to instances of composites of mapped types
-as <firstterm>datasets</firstterm>.
-</para>
-<imagedata fileref="type-hierarchy.png" />
-<para>
-Mapped type and composite type variable declarations can be annotated with a
-<firstterm>mapping descriptor</firstterm> indicating the file(s) that make up
-that dataset.  For example, the following line declares a variable named
-<literal>photo</literal> with type <literal>image</literal>. It additionally
-declares that the data for this variable is stored in a single file named
-<filename>shane.jpeg</filename>.
-</para>
-
-<programlisting>
-  image photo <"shane.jpeg">;
-</programlisting>
-
-<para>
-Component programs of scripts are declared in an <firstterm>app
-declaration</firstterm>, with the description of the command line syntax
-for that program and a list of input and output data. An <literal>app</literal>
-block describes a functional/dataflow style interface to imperative
-components.
-</para>
-
-<para>
-For example, the following example lists a procedure which makes use  of
-the <ulink url="http://www.imagemagick.org/"> ImageMagick</ulink>
-<command>convert</command> command to rotate a supplied
-image by a specified angle:
-</para>
-
-<programlisting>
-  app (image output) rotate(image input) {
-    convert "-rotate" angle @input @output;
-  }
-</programlisting>
-
-<para>
-A procedure is invoked using the familiar syntax:
-</para>
-
-<programlisting>
-  rotated = rotate(photo, 180);
-</programlisting>
-
-<para>
-While this looks like an assignment, the actual unix level execution
-consists of invoking the command line specified in the <literal>app</literal>
-declaration, with variables on the left of the assignment bound to the
-output parameters, and variables to the right of the procedure
-invocation passed as inputs.
-</para>
-
-<para>
-The examples above have used the type <literal>image</literal> without any
-definition of that type. We can declare it as a <firstterm>marker type</firstterm>
-which has no structure exposed to SwiftScript:
-</para>
-
-<programlisting>
-  type image;
-</programlisting>
-
-<para>
-This does not indicate that the data is unstructured; but it indicates
-that the structure of the data is not exposed to SwiftScript. Instead,
-SwiftScript will treat variables of this type as individual opaque
-files.
-</para>
-
-<para>
-With mechanisms to declare types, map variables to data files, and
-declare and invoke procedures, we can build a complete (albeit simple)
-script:
-</para>
-
-<programlisting>
- type image;
- image photo <"shane.jpeg">;
- image rotated <"rotated.jpeg">;
-
- app (image output) rotate(image input, int angle) {
-    convert "-rotate" angle @input @output;
- }
-
- rotated = rotate(photo, 180);
-</programlisting>
-
-<para>
-This script can be invoked from the command line:
-</para>
-
-<screen>
-  $ <userinput>ls *.jpeg</userinput>
-  shane.jpeg
-  $ <userinput>swift example.swift</userinput>
-  ...
-  $ <userinput>ls *.jpeg</userinput>
-  shane.jpeg rotated.jpeg
-</screen>
-
-<para>
-This executes a single <literal>convert</literal> command, hiding from the
-user features such as remote multisite execution and fault tolerance that
-will be discussed in a later section.
-</para>
-<figure> <title>shane.jpeg</title>
-<imagedata fileref="userguide-shane.jpeg" />
-</figure>
-<figure> <title>rotated.jpeg</title>
-<imagedata fileref="userguide-rotated.jpeg" />
-</figure>
-</section>
-
-<section><title>Arrays and Parallel Execution</title>
-<para>
-Arrays of values can be declared using the <literal>[]</literal> suffix. An
-array be mapped to a collection of files, one element per file, by using
-a different form of mapping expression.  For example, the
-<link linkend="mapper.filesys_mapper"><literal>filesys_mapper</literal></link>
-maps all files matching a particular unix glob pattern into an array:
-</para>
-
-<programlisting>
-  file frames[] <filesys_mapper; pattern="*.jpeg">;
-</programlisting>
-
-<para>
-The <firstterm><literal>foreach</literal></firstterm> construct can be used
-to apply the same block of code to each element of an array:
-</para>
-
-<programlisting>
-   foreach f,ix in frames {
-     output[ix] = rotate(frames, 180);
-   }
-</programlisting>
-
-<para>
-Sequential iteration can be expressed using the <literal>iterate</literal>
-construct:
-</para>
-
-<programlisting>
-   step[0] = initialCondition();
-   iterate ix {
-     step[ix] = simulate(step[ix-1]);
-   }
-</programlisting>
-
-<para>
-This fragment will initialise the 0-th element of the <literal>step</literal>
-array to some initial condition, and then repeatedly run the
-<literal>simulate</literal> procedure, using each execution's outputs as
-input to the next step.
-</para>
-
-</section>
-
-<section><title>Ordering of execution</title>
-
-<para>
-Non-array variables are <firstterm>single-assignment</firstterm>, which
-means that they must be assigned to exactly one value during execution.
-A procedure or expression will be executed when all of its input parameters
-have been assigned values. As a result of such execution, more variables may
-become assigned, possibly allowing further parts of the script to
-execute.
-</para>
-
-<para>
-In this way, scripts are implicitly parallel. Aside from serialisation
-implied by these dataflow dependencies, execution of component programs
-can proceed in parallel.
-</para>
-
-<para>
-In this fragment, execution of procedures <literal>p</literal> and
-<literal>q</literal> can happen in parallel:
-</para>
-
-<programlisting>
-  y=p(x);
-  z=q(x);
-</programlisting>
-
-<para>while in this fragment, execution is serialised by the variable
-<literal>y</literal>, with procedure <literal>p</literal> executing
-before <literal>q</literal>.</para>
-
-<programlisting>
- y=p(x);
- z=q(y);
-</programlisting>
-
-<para>
-Arrays in SwiftScript are more
-<firstterm>monotonic</firstterm> - a generalisation of being
-assignment. Knowledge about the
-content of an array increases during execution, but cannot otherwise
-change. Each element of the array is itself single assignment or monotonic
-(depending on its type).
-During a run all values for an array are eventually known, and that array
-is regarded as <firstterm>closed</firstterm>.
-</para>
-
-<para>
-Statements which deal with the array as a whole will often wait for the array
-to be closed before executing (thus, a closed array is the equivalent
-of a non-array type being assigned). However, a <literal>foreach</literal>
-statement will apply its body to elements of an array as they become
-known. It will not wait until the array is closed.
-</para>
-
-<para>
-Consider this script:
-</para>
-
-<programlisting>
- file a[];
- file b[];
- foreach v,i in a {
-   b[i] = p(v);
- }
- a[0] = r();
- a[1] = s();
-</programlisting>
-
-<para>
-Initially, the <literal>foreach</literal> statement will have nothing to
-execute, as the array <literal>a</literal> has not been assigned any values.
-The procedures <literal>r</literal> and <literal>s</literal> will execute.
-As soon as either of them is finished, the corresponding invocation of
-procedure <literal>p</literal> will occur. After both <literal>r</literal>
-and <literal>s</literal> have completed, the array <literal>a</literal> will
-be closed since no other statements in the script make an assignment to
-<literal>a</literal>.
-</para>
-
-</section>
-
-<section><title>Compound procedures</title>
-<para>
-As with many other programming languages, procedures consisting of SwiftScript
-code can be defined. These differ from the previously mentioned procedures
-declared with the <literal>app</literal> keyword, as they invoke other
-SwiftScript procedures rather than a component program.
-</para>
-
-<programlisting>
- (file output) process (file input) {
-   file intermediate;
-   intermediate = first(input);
-   output = second(intermediate);
- }
-
- file x <"x.txt">;
- file y <"y.txt">;
- y = process(x);
-</programlisting>
-
-<para>
-This will invoke two procedures, with an intermediate data file named
-anonymously connecting the <literal>first</literal> and
-<literal>second</literal> procedures.
-</para>
-
-<para>
-Ordering of execution is generally determined by execution of
-<literal>app</literal> procedures, not by any containing compound procedures.
-In this code block:
-</para>
-
-<programlisting>
- (file a, file b) A() {
-   a = A1();
-   b = A2();
- }
- file x, y, s, t;
- (x,y) = A();
- s = S(x);
- t = S(y);
-</programlisting>
-
-<para>
-then a valid execution order is: <literal>A1 S(x) A2 S(y)</literal>. The
-compound procedure <literal>A</literal> does not have to have fully completed
-for its return values to be used by subsequent statements.
-</para>
-
-</section>
-
-<section><title>More about types</title>
-<para>
-Each variable and procedure parameter in SwiftScript is strongly typed.
-Types are used to structure data, to aid in debugging and checking program
-correctness and to influence how Swift interacts with data.
-</para>
-
-<para>
-The <literal>image</literal> type declared in previous examples is a
-<firstterm>marker type</firstterm>. Marker types indicate that data for a
-variable is stored in a single file with no further structure exposed at
-the SwiftScript level.
-</para>
-
-<para>
-Arrays have been mentioned above, in the arrays section. A code block
-may be applied to each element of an array using <literal>foreach</literal>;
-or individual elements may be references using <literal>[]</literal> notation.
-</para>
-
-<para>There are a number of primitive types:</para>
-
-<table frame="all">
- <tgroup cols="2" align="left" colsep="1" rowsep="1">
-  <thead><row><entry>type</entry><entry>contains</entry></row></thead>
-  <tbody>
-   <row><entry>int</entry><entry>integers</entry></row>
-   <row><entry>string</entry><entry>strings of text</entry></row>
-   <row><entry>float</entry><entry>floating point numbers, that behave the same as Java <literal>double</literal>s</entry></row>
-   <row><entry>boolean</entry><entry>true/false</entry></row>
-  </tbody>
- </tgroup>
-</table>
-
-<para>
-Complex types may be defined using the <literal>type</literal> keyword:
-</para>
-<programlisting>
-  type headerfile;
-  type voxelfile;
-  type volume {
-    headerfile h;
-    voxelfile v;
-  }
-</programlisting>
-
-<para>
-Members of a complex type can be accessed using the <literal>.</literal>
-operator:
-</para>
-
-<programlisting>
-  volume brain;
-  o = p(brain.h);
-</programlisting>
-
-<para>
-Sometimes data may be stored in a form that does not fit with Swift's
-file-and-site model; for example, data might be stored in an RDBMS on some
-database server. In that case, a variable can be declared to have
-<firstterm><literal>external</literal></firstterm> type. This indicates that
-Swift should use the variable to determine execution dependency, but should
-not attempt other data management; for example, it will not perform any form
-of data stage-in or stage-out it will not manage local data caches on sites;
-and it will not enforce component program atomicity on data output. This can
-add substantial responsibility to component programs, in exchange for allowing
-arbitrary data storage and access methods to be plugged in to scripts.
-</para>
-
-<programlisting>
-  type file;
-
-  app (external o) populateDatabase() {
-    populationProgram;
-  }
-
-  app (file o) analyseDatabase(external i) {
-    analysisProgram @o;
-  }
-
-  external database;
-  file result <"results.txt">;
-
-  database = populateDatabase();
-  result = analyseDatabase(database);
-</programlisting>
-
-<para>
-Some external database is represented by the <literal>database</literal>
-variable. The <literal>populateDatabase</literal> procedure populates the
-database with some data, and the <literal>analyseDatabase</literal> procedure
-performs some subsequent analysis on that database. The declaration of
-<literal>database</literal> contains no mapping; and the procedures which
-use <literal>database</literal> do not reference them in any way; the
-description of <literal>database</literal> is entirely outside of the script.
-The single assignment and execution ordering rules will still apply though;
-<literal>populateDatabase</literal> will always be run before
-<literal>analyseDatabase</literal>.
-</para>
-
-</section>
-
-<section><title>Data model</title>
-<para>Data processed by Swift is strongly typed. It may be take the form
-of values in memory or as out-of-core files on disk. Language constructs
-called mappers specify how each piece of data is stored.</para>
-
-<section><title>Mappers</title>
-		<para>
-When a DSHandle represents a data file (or container of datafiles), it is
-associated with a mapper. The mapper is used to
-identify which files belong to that DSHandle.
-		</para>
-		<para>
-A dataset's physical representation is declared by a mapping descriptor,
-which defines how each element in the dataset's logical schema is
-stored in, and fetched from, physical structures such as directories,
-files, and remote servers.
-</para>
-
-<para>
-Mappers are parameterized to take into account properties such as
-varying dataset location.
-In order
-to access a dataset, we need to know three things: its type,
-its mapping, and the value(s) of any parameter(s) associated
-with the mapping descriptor. For example, if we want to describe a dataset,
-of type imagefile, and whose physical
-representation is a file called "file1.bin" located at "/home/yongzh/data/",
-then the dataset might be declared as follows:
-</para>
-
-<programlisting>
-imagefile f1<single_file_mapper;file="/home/yongzh/data/file1.bin">
-</programlisting>
-
-<para>
-The above example declares a dataset called f1, which uses a single
-file mapper to map a file from a specific location.
-</para>
-<para>
-SwiftScript has a simplified syntax for this case, since single_file_mapper
-is frequently used:
-
-<programlisting>
-binaryfile f1<"/home/yongzh/data/file1.bin">
-</programlisting>
-</para>
-
-<para>
-Swift comes with a number of mappers that handle common mapping patterns.
-These are documented in the <link linkend="mappers">mappers section</link>
-of this guide.
-</para>
-
-</section>
-
-		</section>
-		<section>
-			<title>More technical details about SwiftScript</title>
-<para>The syntax of SwiftScript has a superficial resemblance to C and
-Java. For example, { and } characters are used to enclose blocks of
-statements.
-</para>
-			<para>
-A SwiftScript program consists of a number of statements.
-Statements may declare types, procedures and variables, assign values to
-variables, and express operations over arrays.
-			</para>
-
-
-		<section><title>Variables</title>
-<para>Variables in SwiftScript are declared to be of a specific type.
-Assignments to those variables must be data of that type.
-SwiftScript variables are single-assignment - a value may be assigned
-to a variable at most once. This assignment can happen at declaration time
-or later on in execution. When an attempt to read from a variable
-that has not yet been assigned is made, the code performing the read
-is suspended until that variable has been written to. This forms the
-basis for Swift's ability to parallelise execution - all code will
-execute in parallel unless there are variables shared between the code
-that cause sequencing.</para>
-
-		<section>
-			<title>Variable Declarations</title>
-			<para>
-Variable declaration statements declare new variables. They can
-optionally assign a value to them or map those variables to on-disk files.
-			</para>
-<para>
-Declaration statements have the general form:
-<programlisting>
-  typename variablename (<mapping> | = initialValue ) ;
-</programlisting>
-The format of the mapping expression is defined in the Mappers section.
-initialValue may be either an expression or a procedure call that
-returns a single value.
-</para>
-<para>Variables can also be declared in a multivalued-procedure statement,
-described in another section.</para>
-		</section>
-
-		<section>
-			<title>Assignment Statements</title>
-			<para>
-Assignment statements assign values to previously declared variables.
-Assignments may only be made to variables that have not already been
-assigned. Assignment statements have the general form:
-
-<programlisting>
-  variable = value;
-</programlisting>
-where value can be either an expression or a procedure call that returns
-a single value.
-			</para>
-
-			<para>
-Variables can also be assigned in a multivalued-procedure statement,
-described in another section.
-			</para>
-		</section>
-</section>
-
-<section><title>Procedures</title>
-
-<para>There are two kinds of procedure: An atomic procedure, which
-describes how an external program can be executed; and compound
-procedures which consist of a sequence of SwiftScript statements.
-</para>
-
-			<para>
-A procedure declaration defines the name of a procedure and its
-input and output parameters. SwiftScript procedures can take multiple
-inputs and produce multiple outputs.  Inputs are specified to the right
-of the function name, and outputs are specified to the left. For example:
-
-<programlisting>
-(type3 out1, type4 out2) myproc (type1 in1, type2 in2)
-</programlisting>
-
-The above example declares a procedure called <literal>myproc</literal>, which
-has two inputs <literal>in1</literal> (of type <literal>type1</literal>)
-and <literal>in2</literal> (of type <literal>type2</literal>)
-and two outputs <literal>out1</literal> (of type <literal>type3</literal>)
-and <literal>out2</literal> (of type <literal>type4</literal>).
-			</para>
-
-			<para>
-A procedure input parameter can be an <firstterm>optional
-parameter</firstterm> in which case it must be declared with a default
-value.  When calling a procedure, both positional parameter and named
-parameter passings can be passed, provided that all optional
-parameters are declared after the required parameters and any
-optional parameter is bound using keyword parameter passing.
-For example, if <literal>myproc1</literal> is defined as:
-
-<programlisting>
-(binaryfile bf) myproc1 (int i, string s="foo")
-</programlisting>
-
-Then that procedure can be called like this, omitting the optional
-parameter <literal>s</literal>:
-
-<programlisting>
-binaryfile mybf = myproc1(1);
-</programlisting>
-
-or like this supplying a value for the optional parameter
-<literal>s</literal>:
-
-<programlisting>
-binaryfile mybf = myproc1 (1, s="bar");
-</programlisting>
-
-			</para>
-
-<section id="procedures.atomic"><title>Atomic procedures</title>
-			<para>
-An atomic procedure specifies how to invoke an
-external executable program, and how logical data
-types are mapped to command line arguments.
-			</para>
-
-			<para>
-Atomic procedures are defined with the <literal>app</literal> keyword:
-<programlisting>
-app (binaryfile bf) myproc (int i, string s="foo") {
-	myapp i s @filename(bf);
-}
-</programlisting>
-
-which specifies that <literal>myproc</literal> invokes an executable
-called <literal>myapp</literal>,
-passing the values of <literal>i</literal>, <literal>s</literal>
-and the filename of <literal>bf</literal> as command line arguments.
-			</para>
-</section>
-
-<section id="procedures.compound"><title>Compound procedures</title>
-			<para>
-A compound procedure contains a set of SwiftScript statements:
-
-<programlisting>
-(type2 b) foo_bar (type1 a) {
-	type3 c;
-	c = foo(a);    // c holds the result of foo
-	b = bar(c);    // c is an input to bar
-}
-</programlisting>
-		</para>
-
-		</section>
-</section>
-		<section>
-			<title>Control Constructs</title>
-			<para>
-SwiftScript provides <literal>if</literal>, <literal>switch</literal>,
-<literal>foreach</literal>, and <literal>iterate</literal> constructs,
-with syntax and semantics similar to comparable constructs in
-other high-level languages.
-			</para>
-			<section><title>foreach</title>
-			<para>
-The <literal>foreach</literal> construct is used to apply a block of statements to
-each element in an array. For example:
-
-<programlisting>
-check_order (file a[]) {
-	foreach f in a {
-		compute(f);
-	}
-}
-</programlisting>
-</para>
-<para>
-<literal>foreach</literal> statements have the general form:
-
-<programlisting>
-foreach controlvariable (,index) in expression {
-    statements
-}
-</programlisting>
-
-The block of statements is evaluated once for each element in
-<literal>expression</literal> which must be an array,
-with <literal>controlvariable</literal> set to the corresponding element
-and <literal>index</literal> (if specified) set to the
-integer position in the array that is being iterated over.
-
-			</para>
-			</section>
-
-			<section><title>if</title>
-			<para>
-The <literal>if</literal> statement allows one of two blocks of statements to be
-executed, based on a boolean predicate. <literal>if</literal> statements generally
-have the form:
-<programlisting>
-if(predicate) {
-    statements
-} else {
-    statements
-}
-</programlisting>
-
-where <literal>predicate</literal> is a boolean expression.
-			</para>
-			</section>
-
-			<section><title>switch</title>
-			<para>
-<literal>switch</literal> expressions allow one of a selection of blocks to be chosen based on
-the value of a numerical control expression. <literal>switch</literal> statements take the
-general form:
-<programlisting>
-switch(controlExpression) {
-    case n1:
-        statements2
-    case n2:
-        statements2
-    [...]
-    default:
-        statements
-}
-</programlisting>
-The control expression is evaluated, the resulting numerical value used to
-select a corresponding <literal>case</literal>, and the statements belonging to that
-<literal>case</literal> block
-are evaluated. If no case corresponds, then the statements belonging to
-the <literal>default</literal> block are evaluated.
-			</para>
-<para>Unlike C or Java switch statements, execution does not fall through to
-subsequent <literal>case</literal> blocks, and no <literal>break</literal>
-statement is necessary at the end of each block.
-</para>
-			</section>
-
-			<section id="construct.iterate"><title>iterate</title>
-				<para>
-<literal>iterate</literal> expressions allow a block of code to be evaluated repeatedly, with an
-integer parameter sweeping upwards from 0 until a termination condition
-holds.
-				</para>
-				<para>
-The general form is:
-<programlisting>
-iterate var {
-	statements;
-} until (terminationExpression);
-</programlisting>
-with the variable <literal>var</literal> starting at 0 and increasing
-by one in each iteration. That
-variable is in scope in the statements block and when evaluating the
-termination expression.
-				</para>
-			</section>
-		</section>
-	</section>
-
-	<section><title>Operators</title>
-
-<para>The following infix operators are available for use in
-SwiftScript expressions.
-</para>
-<table frame="all">
-<tgroup cols="2" align="left" colsep="1" rowsep="1">
- <thead><row><entry>operator</entry><entry>purpose</entry></row></thead>
- <tbody>
-  <row><entry>+</entry><entry>numeric addition; string concatenation</entry></row>
-  <row><entry>-</entry><entry>numeric subtraction</entry></row>
-  <row><entry>*</entry><entry>numeric multiplication</entry></row>
-  <row><entry>/</entry><entry>floating point division</entry></row>
-  <row><entry>%/</entry><entry>integer division</entry></row>
-  <row><entry>%%</entry><entry>integer remainder of division</entry></row>
-  <row><entry>== !=</entry><entry>comparison and not-equal-to</entry></row>
-  <row><entry> < > <= >=</entry><entry>numerical ordering</entry></row>
-  <row><entry>&& ||</entry><entry>boolean and, or</entry></row>
-  <row><entry>!</entry><entry>boolean not</entry></row>
- </tbody>
-</tgroup>
-</table>
-	</section>
-
-	<section id="globals"><title>Global constants</title>
-		<para>
-At the top level of a SwiftScript program, the <literal>global</literal>
-modified may be added to a declaration so that it is visible throughout
-the program, rather than only at the top level of the program. This allows
-global constants (of any type) to be defined. (since Swift 0.10)
-		</para>
-	</section>
-
-	<section id="imports"><title>Imports</title>
-		<para>
-The <literal>import</literal> directive can be used to import definitions from
-another SwiftScript file. (since Swift 0.10)
-		</para>
-		<para>
-For example, a SwiftScript program might contain this:
-			<programlisting>
-import defs;
-file f;
-			</programlisting>
-which would import the content of <filename>defs.swift</filename> in the
-current directory:
-			<programlisting>
-type file;
-			</programlisting>
-		</para>
-		<para>
-Imported files are read from the current working directory.
-		</para>
-		<para>
-There is no requirement that a module is imported only once. If a module
-is imported multiple times, for example in different files, then Swift will
-only process the imports once.
-		</para>
-		<para>
-Imports may contain anything that is valid in a SwiftScript program,
-including code that causes remote execution.
-		</para>
-	</section>
-
-</section>
-		<section id="mappers">
-		<title>Mappers</title>
-		<para>
-Mappers provide a mechanism to specify the layout of mapped datasets on
-disk. This is needed when Swift must access files to transfer them to
-remote sites for execution or to pass to applications.</para>
-		<para>
-Swift provides a number of mappers that are useful in common cases. This
-section details those standard mappers. For more complex cases, it is
-possible to write application-specific mappers in Java and
-use them within a SwiftScript program.
-		</para>
-
-		<section id="mapper.single_file_mapper"><title>The single file mapper</title>
-
-			<para>
-The <literal>single_file_mapper</literal> maps a single physical file to a dataset.
-			</para>
-<para>
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       f                                 myfile
-
-       f[0]                              INVALID
-
-       f.bar                             INVALID
-
-		</screen>
-</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-  <row><entry>file</entry><entry>The location of the physical file including path and file name.</entry></row>
- </tbody>
-</tgroup>
-</table>
-
-<para>Example:
-			<programlisting>
-	file f <single_file_mapper;file="plot_outfile_param">;</programlisting>
-
-There is a simplified syntax for this mapper:
-
-
-			<programlisting>
-	file f <"plot_outfile_param">;</programlisting>
-</para>
-	</section>
-
-	<section id="mapper.simple_mapper"><title>The simple mapper</title>
-<para>The <literal>simple_mapper</literal> maps a file or a list of files
-into an array by prefix, suffix, and pattern.  If more than one file is
-matched, each of the file names will be mapped as a subelement of the dataset.
-</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-  <row><entry>location</entry><entry>A directory that the files are located.</entry></row>
-  <row><entry>prefix</entry><entry>The prefix of the files</entry></row>
-  <row><entry>suffix</entry><entry>The suffix of the files, for instance: <literal>".txt"</literal></entry></row>
-  <row><entry>pattern</entry><entry>A UNIX glob style pattern, for instance:
-<literal>"*foo*"</literal> would match all file names that
-contain <literal>foo</literal>. When this mapper is used to specify output
-filenames, <literal>pattern</literal> is ignored.</entry></row>
- </tbody>
-</tgroup>
-</table>
-
-
-
-<para>Examples:</para>
-
-<para>
-		<programlisting>
-	type file;
-	file f <simple_mapper;prefix="foo", suffix=".txt">;
-			</programlisting>
-The above maps all filenames that start with <filename>foo</filename> and
-have an extension <filename>.txt</filename> into file f.
-
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       f                                 foo.txt
-
-		</screen>
-</para>
-
-<para>
-	<programlisting>
-type messagefile;
-
-(messagefile t) greeting(string m) {.
-    app {
-        echo m stdout=@filename(t);
-    }
-}
-
-messagefile outfile <simple_mapper;prefix="foo",suffix=".txt">;
-
-outfile = greeting("hi");
-	</programlisting>
-
-This will output the string 'hi' to the file <filename>foo.txt</filename>.
-	</para>
-
-	<para>
-The <literal>simple_mapper</literal> can be used to map arrays. It will map the array index
-into the filename between the prefix and suffix.
-
-<programlisting>
-type messagefile;
-
-(messagefile t) greeting(string m) {
-    app {
-        echo m stdout=@filename(t);
-    }
-}
-
-messagefile outfile[] <simple_mapper;prefix="baz",suffix=".txt">;
-
-outfile[0] = greeting("hello");
-outfile[1] = greeting("middle");
-outfile[2] = greeting("goodbye");
-</programlisting>
-
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       outfile[0]                        baz0000.txt
-       outfile[1]                        baz0001.txt
-       outfile[2]                        baz0002.txt
-
-		</screen>
-
-	</para>
-
-	<para>
-<literal>simple_mapper</literal> can be used to map structures. It will map the name of the
-structure member into the filename, between the prefix and the
-suffix.
-
-	<programlisting>
-type messagefile;
-
-type mystruct {
-  messagefile left;
-  messagefile right;
-};
-
-(messagefile t) greeting(string m) {
-    app {
-        echo m stdout=@filename(t);
-    }
-}
-
-mystruct out <simple_mapper;prefix="qux",suffix=".txt">;
-
-out.left = greeting("hello");
-out.right = greeting("goodbye");
-	</programlisting>
-
-This will output the string "hello" into the file
-<filename>qux.left.txt</filename> and the string "goodbye"
-into the file <filename>qux.right.txt</filename>.
-
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       out.left                          quxleft.txt
-       out.right                         quxright.txt
-
-		</screen>
-	</para>
-
-	</section>
-
-	<section id="mapper.concurrent_mapper"><title>concurrent mapper</title>
-<para>
-<literal>concurrent_mapper</literal> is almost the same as the simple mapper,
-except that it is used to map an output file, and the filename
-generated will contain an extract sequence that is unique.
-This mapper is the default mapper for variables when no mapper is
-specified.
-</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-  <row><entry>location</entry><entry>A directory that the files are located.</entry></row>
-  <row><entry>prefix</entry><entry>The prefix of the files</entry></row>
-  <row><entry>suffix</entry><entry>The suffix of the files, for instance: <literal>".txt"</literal></entry></row>
-  <row><entry>pattern</entry><entry>A UNIX glob style pattern, for instance:
-<literal>"*foo*"</literal> would match all file names that
-contain <literal>foo</literal>. When this mapper is used to specify output
-filenames, <literal>pattern</literal> is ignored.</entry></row>
- </tbody>
-</tgroup>
-</table>
-
-
-	<para>Example:
-		<programlisting>
-	file f1;
-	file f2 <concurrent_mapper;prefix="foo", suffix=".txt">;
-			</programlisting>
-The above example would use concurrent mapper for <literal>f1</literal> and
-<literal>f2</literal>, and
-generate <literal>f2</literal> filename with prefix <filename>"foo"</filename> and extension <filename>".txt"</filename>
-	</para>
-	</section>
-
-	<section id="mapper.filesys_mapper"><title>file system mapper</title>
-
-<para><literal>filesys_mapper</literal> is similar to the simple mapper,
-but maps a file or
-a list of files to an array. Each of the filename is
-mapped as an element in the array. The order of files in the resulting
-array is not defined.
-	</para>
-
-<para>TODO: note on difference between location as a relative vs absolute
-path wrt staging to remote location - as mihael said:
-It's because you specify that location in the mapper. Try location="."
-instead of location="/sandbox/..."</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-  <row><entry>location</entry><entry>The directory where the files are located.</entry></row>
-  <row><entry>prefix</entry><entry>The prefix of the files</entry></row>
-  <row><entry>suffix</entry><entry>The suffix of the files, for instance: <literal>".txt"</literal></entry></row>
-  <row><entry>pattern</entry><entry>A UNIX glob style pattern, for instance:
-<literal>"*foo*"</literal> would match all file names that
-contain <literal>foo</literal>.
-</entry></row>
- </tbody>
-</tgroup>
-</table>
-
-	<para>Example:
-			<programlisting>
-	file texts[] <filesys_mapper;prefix="foo", suffix=".txt">;
-			</programlisting>
-The above example would map all filenames that start with <filename>"foo"</filename>
-and have an extension <filename>".txt"</filename> into the array <literal>texts</literal>.
-For example, if the specified directory contains files: <filename>foo1.txt</filename>, <filename>footest.txt</filename>,
-<filename>foo__1.txt</filename>, then the mapping might be:
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       texts[0]                          footest.txt
-       texts[1]                          foo1.txt
-       texts[2]                          foo__1.txt
-
-		</screen>
-</para>
-	</section>
-
-	<section id="mapper.fixed_array_mapper"><title>fixed array mapper</title>
-<para>The <literal>fixed_array_mapper</literal> maps from a string that
-contains a list of filenames into a file array.</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-  <row><entry>files</entry><entry>A string that contains a list of filenames, separated by space, comma or colon</entry></row>
-  </tbody>
- </tgroup>
-</table>
-
-	<para>Example:
-			<programlisting>
-	file texts[] <fixed_array_mapper;files="file1.txt, fileB.txt, file3.txt">;
-			</programlisting>
-would cause a mapping like this:
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       texts[0]                          file1.txt
-       texts[1]                          fileB.txt
-       texts[2]                          file3.txt
-
-		</screen>
-</para>
-	</section>
-
-	<section id="mapper.array_mapper"><title>array mapper</title>
-	<para>The <literal>array_mapper</literal> maps from an array of strings
-into a file</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-  <row><entry>files</entry><entry>An array of strings containing one filename per element</entry></row>
-  </tbody>
-</tgroup>
-</table>
-
-	<para> Example:
-		<programlisting>
-string s[] = [ "a.txt", "b.txt", "c.txt" ];
-
-file f[] <array_mapper;files=s>;
-		</programlisting>
-This will establish the mapping:
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       f[0]                              a.txt
-       f[1]                              b.txt
-       f[2]                              c.txt
-
-		</screen>
-
-	</para>
-	</section>
-
-	<section id="mapper.regexp_mapper"><title>regular expression mapper</title>
-<para>The <literal>regexp_mapper</literal> transforms one file name to
-another using regular expression matching.</para>
-
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-    <row><entry>source</entry><entry>The source file name</entry></row>
-    <row><entry>match</entry><entry>Regular expression pattern to match, use
-<literal>()</literal> to match whatever regular expression is inside the
-parentheses, and indicate the start and end of a group; the contents of a
-group can be retrieved with the <literal>\\number</literal> special sequence
-(two backslashes are needed because the backslash is an escape sequence introducer)
-</entry></row>
-    <row><entry>transform</entry><entry>The pattern of the file name to
-transform to, use <literal>\number</literal> to reference the
-group matched.</entry></row>
- </tbody>
-</tgroup>
-</table>
-
-<para>Example:
-	<programlisting>
-  string s = "picture.gif";
-  file f <regexp_mapper;
-    source=s,
-    match="(.*)gif",
-    transform="\\1jpg">; </programlisting>
-
-This example transforms a string ending <literal>gif</literal> into one
-ending <literal>jpg</literal> and maps that to a file.
-
-		<screen>
-    Swift variable ------------------->  Filename
-
-       f                                    picture.jpg
-		</screen>
-
-</para>
-
-</section>
-
-<section><title>csv mapper</title>
-
-<para>
-The <literal>csv_mapper</literal> maps the content of a CSV (comma-separated
-value) file into an array of structures. The dataset type needs to be
-correctly defined to conform to the column names in the
-file. For instance, if the file contains columns:
-<literal>name age GPA</literal> then the type needs to have member elements
-like this:
-<programlisting>
-  type student {
-    file name;
-    file age;
-    file GPA;
-  }
-</programlisting>
-
-If the file does not contain a header with column info, then the column
-names are assumed as <literal>column1</literal>, <literal>column2</literal>,
-etc.
-</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-    <row><entry>file</entry><entry>The name of the CSV file to read mappings from.</entry></row>
-    <row><entry>header</entry><entry>Whether the file has a line describing header info; default is <literal>true</literal></entry></row>
-    <row><entry>skip</entry><entry>The number of lines to skip at the beginning (after header line); default is <literal>0</literal>.</entry></row>
-    <row><entry>hdelim</entry><entry>Header field delimiter; default is the value of the <literal>delim</literal> parameter</entry></row>
-    <row><entry>delim</entry><entry>Content field delimiters; defaults are space, tab and comma</entry></row>
- </tbody>
-</tgroup>
-</table>
-
-	<para>Example:
-			<programlisting>
-	student stus[] <csv_mapper;file="stu_list.txt">;
-			</programlisting>
-The above example would read a list of student info from file
-<filename>"stu_list.txt"</filename> and map them into a student array. By default, the file should contain a header line specifying the names of the columns.
-If <filename>stu_list.txt</filename> contains the following:
-<screen>
-name,age,gpa
-101-name.txt, 101-age.txt, 101-gpa.txt
-name55.txt, age55.txt, age55.txt
-q, r, s
-</screen>
-then some of the mappings produced by this example would be:
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       stus[0].name                         101-name.txt
-       stus[0].age                          101-age.txt
-       stus[0].gpa                          101-gpa.txt
-       stus[1].name                         name55.txt
-       stus[1].age                          age55.txt
-       stus[1].gpa                          gpa55.txt
-       stus[2].name                         q
-       stus[2].age                          r
-       stus[2].gpa                          s
-
-		</screen>
-</para>
-	</section>
-
-	<section id="mapper.ext_mapper"><title>external mapper</title>
-		<para>
-The external mapper, <literal>ext</literal> maps based on the output of a
-supplied Unix executable.
-		</para>
-
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>parameter</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-    <row><entry>exec</entry><entry>The name of the executable
-(relative to the current directory, if an absolute path is not
-specified)</entry></row>
-    <row><entry>*</entry><entry>Other parameters are passed to the
-executable prefixed with a <literal>-</literal> symbol</entry></row>
- </tbody>
-</tgroup>
-</table>
-
-	<para>
-The output of the executable should consist of two columns of data, separated
-by a space. The first column should be the path of the mapped variable,
-in SwiftScript syntax (for example <literal>[2]</literal> means the 2nd element of an
-array) or the symbol <literal>$</literal> to represent the root of the mapped variable.
-	</para>
-
-	<para> Example:
-With the following in <filename>mapper.sh</filename>,
-			<screen>
-#!/bin/bash
-echo "[2] qux"
-echo "[0] foo"
-echo "[1] bar"
-			</screen>
-
-then a mapping statement:
-
-			<programlisting>
-	student stus[] <ext;exec="mapper.sh">;
-			</programlisting>
-
-would map
-
-		<screen>
-
-    Swift variable ------------------->  Filename
-
-       stus[0]                              foo
-       stus[1]                              bar
-       stus[2]                              qux
-
-		</screen>
-
-		</para>
-
-	</section>
-
-	<section id="mapper.mapping_uris"><title>mapping URIs</title>
-		<para>
-The above mappers may be used to map files based on a URI which can be specified in the filename. This is useful for mapping files on remote machines.
-		</para>
-	<para>
-
-	<para> Example:
-
-			<programlisting>
-	student st <single_file_mapper;file="gsiftp://communicado.ci.uchicago.edu//tmp/student.txt">;
-			</programlisting>
-
-		</para>
-		</para>
-
-	</section>
-
-	</section>
-	<section id="commands"><title>Commands</title>
-		<para>
-The commands detailed in this section are available in the
-<filename>bin/</filename> directory of a Swift installation and can
-by run from the commandline if that directory is placed on the
-PATH.
-		</para>
-	<section id="swiftcommand">
-	<title>swift</title>
-	<para>
-The <command>swift</command> command is the main command line tool
-for executing SwiftScript programs.
-	</para>
-	<section><title>Command-line Syntax</title>
-<para>The <command>swift</command> command is invoked as follows:
-<command>swift [options] SwiftScript-program [SwiftScript-arguments]</command>
-with options taken from the following list, and SwiftScript-arguments
-made available to the SwiftScript program through the
-<link linkend="function.arg">@arg</link> function.
-</para>
-  <variablelist><title>Swift command-line options</title>
-  <varlistentry><term>-help or -h</term>
-    <listitem><para>
-      Display usage information </para></listitem>
-  </varlistentry>
-  <varlistentry><term>-typecheck</term>
-    <listitem><para>
-      Does a typecheck of a SwiftScript program, instead of executing it.</para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-dryrun</term>
-    <listitem><para>
-      Runs the SwiftScript program without submitting any jobs (can be used to get
-      a graph)
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-monitor</term>
-    <listitem><para>
-      Shows a graphical resource monitor
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-resume <literal>file</literal></term>
-    <listitem><para>
-      Resumes the execution using a log file
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-config <literal>file</literal></term>
-    <listitem><para>
-      Indicates the Swift configuration file to be used for this run.
-      Properties in this configuration file will override the default
-      properties. If individual command line arguments are used for
-      properties, they will override the contents of this file.
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-verbose | -v</term>
-    <listitem><para>
-      Increases the level of output that Swift produces on the console
-      to include more detail about the execution
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-debug | -d</term>
-    <listitem><para>
-      Increases the level of output that Swift produces on the console
-      to include lots of detail about the execution
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-logfile <literal>file</literal></term>
-    <listitem><para>
-      Specifies a file where log messages should go to. By default
-      Swift uses the name of the program being run and a numeric index
-      (e.g. myworkflow.1.log)
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-runid <literal>identifier</literal></term>
-    <listitem><para>
-      Specifies the run identifier. This must be unique for every invocation
-      and is used in several places to keep files from different executions
-      cleanly separated. By default, a datestamp and random number are used
-      to generate a run identifier. When using this parameter, care should be
-      taken to ensure that the run ID remains unique with respect to all
-      other run IDs that might be used, irrespective of (at least) expected
-      execution sites, program or user.
-    </para></listitem>
-  </varlistentry>
-
-  <varlistentry><term>-tui</term>
-    <listitem>
-      Displays an interactive text mode monitor during a run. (since Swift 0.9)
-    </listitem>
-  </varlistentry>
-
-</variablelist>
-
-<para>In addition, the following Swift properties can be set on the
-command line:
-
-<itemizedlist>
-<listitem>caching.algorithm</listitem>
-<listitem>clustering.enabled</listitem>
-<listitem>clustering.min.time</listitem>
-<listitem>clustering.queue.delay</listitem>
-<listitem>ip.address</listitem>
-<listitem>kickstart.always.transfer</listitem>
-<listitem>kickstart.enabled</listitem>
-<listitem>lazy.errors</listitem>
-<listitem>pgraph</listitem>
-<listitem>pgraph.graph.options</listitem>
-<listitem>pgraph.node.options</listitem>
-<listitem>sitedir.keep</listitem>
-<listitem>sites.file</listitem>
-<listitem>tc.file</listitem>
-<listitem>tcp.port.range</listitem>
-</itemizedlist>
-</para>
-
-	</section>
-	<section><title>Return codes</title>
-	<para>
-The <command>swift</command> command may exit with the following return codes:
-<table frame="all">
-<tgroup cols='2' align='left' colsep='1' rowsep='1'>
- <thead>
-  <row>
-   <entry>value</entry>
-   <entry>meaning</entry>
-  </row>
- </thead>
- <tbody>
-  <row><entry>0</entry><entry>success</entry></row>
-  <row><entry>1</entry><entry>command line syntax error or missing project name</entry></row>
-  <row><entry>2</entry><entry>error during execution</entry></row>
-  <row><entry>3</entry><entry>error during compilation</entry></row>
-  <row><entry>4</entry><entry>input file does not exist</entry></row>
- </tbody>
- </tgroup>
-</table>
-	</para>
-	</section>
-	<section><title>Environment variables</title>
-		<para>The <command>swift</command> is influenced by the
-following environment variables:
-		</para>
-		<para>
-<literal>GLOBUS_HOSTNAME</literal>, <literal>GLOBUS_TCP_PORT_RANGE</literal> - set in the environment before running
-Swift. These can be set to inform Swift of the
-configuration of your local firewall. More information can be found in
-<ulink url="http://dev.globus.org/wiki/FirewallHowTo">the Globus firewall
-How-to</ulink>.
-		</para>
-		<para>
-<literal>COG_OPTS</literal> - set in the environment before running Swift. Options set in this
-variable will be passed as parameters to the Java Virtual Machine which
-will run Swift. The parameters vary between virtual machine imlementations,
-but can usually be used to alter settings such as maximum heap size.
-Typing 'java -help' will sometimes give a list of commands. The Sun Java
-1.4.2 command line options are <ulink url="http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/java.html">documented here</ulink>.
-		</para>
-
-
-	</section>
-
-	</section>
-
-	<section><title>swift-osg-ress-site-catalog</title>
-			<para>
-The <command>swift-osg-ress-site-catalog</command> command generates a site
-catalog based on <ulink url="http://www.opensciencegrid.org/">OSG</ulink>'s
-ReSS information system (since Swift 0.9)
-			</para>
-			<para>
-Usage: <command>swift-osg-ress-site-catalog [options]</command>
-			</para>
-			<variablelist>
-			<varlistentry><term>--help</term>
-				<listitem>
-<para>Show help message</para>
-				</listitem>
-			</varlistentry>
-
-			<varlistentry><term>--vo=[name]</term>
-				<listitem>
-<para>Set what VO to query ReSS for</para>
-				</listitem>
-			</varlistentry>
-
-			<varlistentry><term>--engage-verified</term>
-				<listitem>
-<para>Only retrieve sites verified by the Engagement VO site
-verification tests This can not be used together with <literal>--vo</literal>,
-as the query will only work for sites advertising support for the
-Engagement VO.</para>
-
-<para>This option means information will be retrieved from the
-Engagement collector instead of the top-level ReSS collector.</para>
-
-				</listitem>
-			</varlistentry>
-
-			<varlistentry><term>--out=[filename]</term>
-				<listitem>
-<para>Write to [filename] instead of stdout</para>
-				</listitem>
-			</varlistentry>
-
-			<varlistentry><term>--condor-g</term>
-				<listitem>
-<para>Generates sites files which will submit jobs using a local Condor-G
-installation rather than through direct GRAM2 submission. (since Swift 0.10)</para>
-				</listitem>
-			</varlistentry>
-
-
-
-			</variablelist>
-
-
-		</section>
-
-
-	<section><title>swift-plot-log</title>
-		<para>
-<command>swift-plot-log</command> generates summaries of Swift run log
-files.
-		</para>
-		<para>
-Usage: <command>swift-plot-log [logfile] [targets]</command>
-		</para>
-		<para>
-When no targets are specified, <command>swift-plog-log</command> will
-generate an HTML report for the run. When targets are specified, only
-those named targets will be generated.
-		</para>
-	</section>
-
-	</section>
-	<section id="appmodel"> <title>Executing <literal>app</literal> procedures</title>
-	<para>
-This section describes how Swift executes <literal>app</literal> procedures,
-and requirements on the behaviour of application programs used in
-<literal>app</literal> procedures.
-These requirements are primarily to ensure
-that the Swift can run your application in different places and with the
-various fault tolerance mechanisms in place.
-	</para>
-
-<section><title>Mapping of <literal>app</literal> semantics into unix
-process execution semantics</title>
-
-<para>This section describes how an <literal>app</literal> procedure
-invocation is translated into a (remote) unix process execution. It does not
-describe the mechanisms by which Swift performs that translation; that
-is described in the next section.</para>
-
-<para>In this section, this example SwiftScript program is used
-for reference:</para>
-
-<programlisting>
- type file;
-
- app (file o) count(file i) {
-   wc @i stdout=@o;
- }
-
- file q <"input.txt">;
- file r <"output.txt">;
-</programlisting>
-
-<para>
-The executable for wc will be looked up in tc.data.
-</para>
-
-<para>
-This unix executable will then be executed in some <firstterm>application
-procedure workspace</firstterm>. This means:
-</para>
-
-<para>
-Each application procedure workspace will have an application workspace
-directory.  (TODO: can collapse terms //application procedure workspace//
-and //application workspace directory// ?
-</para>
-
-<para>
-This application workspace directory will not be shared with any other
-<firstterm>application procedure execution attempt</firstterm>; all
-application procedure
-execution attempts will run with distinct application procedure
-workspaces. (for the avoidance of doubt:
- If a <firstterm>SwiftScript procedure invocation</firstterm> is subject
-to multiple application procedure execution attempts (due to Swift-level
-restarts, retries or replication) then each of those application procedure
-execution attempts will be made in a different application procedure workspace.
-)</para>
-
-<para>
-The application workspace directory will be a directory on a POSIX
-filesystem accessible throughout the application execution by the
-application executable.
-</para>
-
-<para>
-Before the <firstterm>application executable</firstterm> is executed:
-</para>
-
-<itemizedlist>
-
-<listitem><para>
-The application workspace directory will exist.
-</para></listitem>
-
-<listitem><para>
-The <firstterm>input files</firstterm> will exist inside the application workspace
-directory (but not necessarily as direct children; there may be
-subdirectories within the application workspace directory).
-</para></listitem>
-
-<listitem><para>
-The input files will be those files <firstterm>mapped</firstterm>
-to <firstterm>input parameters</firstterm> of the application procedure
-invocation. (In the example, this means that the file
-<filename>input.txt</filename> will exist in the application workspace
-directory)
-</para></listitem>
-
-<listitem><para>
-For each input file dataset, it will be the case that
-<literal>@filename</literal> or
-<literal>@filenames</literal> invoked with that dataset as a parameter
-will return the path
-relative to the application workspace directory for the file(s) that are
-associated with that dataset. (In the example, that means that <literal>@i</literal> will
-evaluate to the path <filename>input.txt</filename>)
-</para></listitem>
-
-<listitem><para>
-For each <firstterm>file-bound</firstterm> parameter of the Swift procedure invocation, the
-associated files (determined by data type?) will always exist.
-</para></listitem>
-
-<listitem><para>
-The input files must be treated as read only files. This may or may not
-be enforced by unix file system permissions. They may or may not be copies
-of the source file (conversely, they may be links to the actual source file).
-</para></listitem>
-
-</itemizedlist>
-
-<para>
-During/after the <firstterm>application executable execution</firstterm>,
-the following must be true:
-</para>
-
-<itemizedlist>
-<listitem><para>
-If the application executable execution was successful (in the opinion
-of the application executable), then the application executable should
-exit with <firstterm>unix return code</firstterm> <literal>0</literal>;
-if the application executable execution
-was unsuccessful (in the opinion of the application executable), then the
-application executable should exit with unix return code not equal to
-<literal>0</literal>.
-</para></listitem>
-
-<listitem><para>
-Each file mapped from an output parameter of the SwiftScript procedure
-call must exist. Files will be mapped in the same way as for input files.
-</para>
-<para>
-(? Is it defined that output subdirectories will be precreated before
-execution or should app executables expect to make them? That's probably
-determined by the present behaviour of wrapper.sh)
-</para></listitem>
-
-<listitem><para>
-Output produced by running the application executable on some inputs should
-be the same no matter how many times, when or where that application
-executable is run. 'The same' can vary depending on application (for example,
-in an application it might be acceptable for a PNG->JPEG conversion to
-produce different, similar looking, output jpegs depending on the
-environment)
-</para></listitem>
-
-</itemizedlist>
-
-<para>
-Things to not assume:
-</para>
-
-<itemizedlist>
-
-<listitem><para>
-anything about the path of the application workspace directory
-</para></listitem>
-
-<listitem><para>
-that either the application workspace directory will be deleted or will
-continue to exist or will remain unmodified after execution has finished
-</para></listitem>
-
-<listitem><para>
-that files can be passed(?def) between application procedure invocations
-through any mechanism except through files known to Swift through the
-mapping mechanism (there is some exception here for <literal>external</literal>
-datasets - there are a separate set of assertions that hold for
-<literal>external</literal> datasets)
-</para></listitem>
-
-<listitem><para>
-that application executables will run on any particular site of those
-available, or than any combination of applications will run on the same or
-different sites.
-</para></listitem>
-
-</itemizedlist>
-
-</section>
-
-<section><title>
-How Swift implements the site execution model
-</title>
-
-<para>
-This section describes the implementation of the semantics described
-in the previous section.
-</para>
-
-<para>
-Swift executes application procedures on one or more <firstterm>sites</firstterm>.
-</para>
-
-<para>
-Each site consists of:
-</para>
-
-<itemizedlist>
-<listitem><para>
-worker nodes. There is some <firstterm>execution mechanism</firstterm>
-through which the Swift client side executable can execute its
-<firstterm>wrapper script</firstterm> on those
-worker nodes. This is commonly GRAM or Falkon or coasters.
-</para></listitem>
-
-<listitem><para>
-a site-shared file system. This site shared filesystem is accessible
-through some <firstterm>file transfer mechanism</firstterm> from the
-Swift client side
-executable. This is commonly GridFTP or coasters. This site shared
-filesystem is also accessible through the posix file system on all worker
-nodes, mounted at the same location as seen through the file transfer
-mechanism. Swift is configured with the location of some <firstterm>site working
-directory</firstterm> on that site-shared file system.
-</para></listitem>
-</itemizedlist>
-
-<para>
-There is no assumption that the site shared file system for one site is
-accessible from another site.
-</para>
-
-<para>
-For each workflow run, on each site that is used by that run, a <firstterm>run
-directory</firstterm> is created in the site working directory, by the Swift client
-side.
-</para>
-
-<para>
-In that run directory are placed several subdirectories:
-</para>
-
-<itemizedlist>
-<listitem><para>
-<filename>shared/</filename> - site shared files cache
-</para></listitem>
-
-<listitem><para>
-<filename>kickstart/</filename> - when kickstart is used, kickstart record files
-for each job that has generated a kickstart record.
-</para></listitem>
-
-
-<listitem><para>
-<filename>info/</filename> - wrapper script log files
-</para></listitem>
-
-<listitem><para>
-<filename>status/</filename> - job status files
-</para></listitem>
-
-<listitem><para>
-<filename>jobs/</filename> - application workspace directories (optionally placed here -
-see below)
-</para></listitem>
-</itemizedlist>
-
-<para>
-Application execution looks like this:
-</para>
-
-<para>
-For each application procedure call:
-</para>
-
-<para>
-The Swift client side selects a site; copies the input files for that
-procedure call to the site shared file cache if they are not already in
-the cache, using the file transfer mechanism; and then invokes the wrapper
-script on that site using the execution mechanism.
-</para>
-
-<para>
-The wrapper script creates the application workspace directory; places the
-input files for that job into the application workspace directory using
-either <literal>cp</literal> or <literal>ln -s</literal> (depending on a configuration option); executes the
-application unix executable; copies output files from the application
-workspace directory to the site shared directory using <literal>cp</literal>; creates a
-status file under the <filename>status/</filename> directory; and exits, returning control to
-the Swift client side. Logs created during the execution of the wrapper
-script are stored under the <filename>info/</filename> directory.
-</para>
-
-<para>
-The Swift client side then checks for the presence of and deletes a status
-file indicating success; and copies files from the site shared directory to
-the appropriate client side location.
-</para>
-
-<para>
-The job directory is created (in the default mode) under the <filename>jobs/</filename>
-directory. However, it can be created under an arbitrary other path, which
-allows it to be created on a different file system (such as a worker node
-local file system in the case that the worker node has a local file
-system).
-</para>
-
-</section>
-<imagedata fileref="swift-site-model.png" />
-	</section>
-
-	<section id="techoverview">
-	<title>Technical overview of the Swift architecture</title>
-	<para>
-This section attempts to provide a technical overview of the Swift
-architecture.
-	</para>
-
-	<section><title>karajan - the core execution engine</title>
-	</section>
-
-	<section><title>Execution layer</title>
-	<para>
-The execution layer causes an application program (in the form of a unix
-executable) to be executed either locally or remotely.
-	</para>
-	<para>
-The two main choices are local unix execution and execution through GRAM.
-Other options are available, and user provided code can also be plugged in.
-	</para>
-	<para>
-The <link linkend="kickstart">kickstart</link> utility can
-be used to capture environmental information at execution time
-to aid in debugging and provenance capture.
-	</para>
-	</section>
-
-	<section><title>SwiftScript language compilation layer</title>
-	<para>
-Step i: text to XML intermediate form parser/processor. parser written in
-ANTLR - see resources/VDL.g. The XML Schema Definition (XSD) for the
-intermediate language is in resources/XDTM.xsd.
-	</para>
-	<para>
-Step ii: XML intermediate form to Karajan workflow. Karajan.java - reads
-the XML intermediate form. compiles to karajan workflow language - for
-example, expressions are converted from SwiftScript syntax into Karajan
-syntax, and function invocations become karajan function invocations
-with various modifications to parameters to accomodate return parameters
-and dataset handling.
-	</para>
-	</section>
-
-	<section><title>Swift/karajan library layer</title>
-	<para>
-Some Swift functionality is provided in the form of Karajan libraries
-that are used at runtime by the Karajan workflows that the Swift
-compiler generates.
-	</para>
-	</section>
-
-	</section>
-
-	<section id="extending"><title>Ways in which Swift can be extended</title>
-<para>Swift is extensible in a number of ways. It is possible to add
-mappers to accomodate different filesystem arrangements, site selectors
-to change how Swift decides where to run each job, and job submission
-interfaces to submit jobs through different mechanisms.
-</para>
-<para>A number of mappers are provided as part of the Swift release and
-documented in the <link linkend="mappers">mappers</link> section.
-New mappers can be implemented
-in Java by implementing the org.griphyn.vdl.mapping.Mapper interface. The
-<ulink url="http://www.ci.uchicago.edu/swift/guides/tutorial.php">Swift
-tutorial</ulink> contains a simple example of this.
-</para>
-<para>Swift provides a default site selector, the Adaptive Scheduler.
-New site selectors can be plugged in by implementing the
-org.globus.cog.karajan.scheduler.Scheduler interface and modifying
-libexec/scheduler.xml and etc/karajan.properties to refer to the new
-scheduler.
-</para>
-<para>Execution providers and filesystem providers, which allow to Swift
-to execute jobs and to stage files in and out through mechanisms such
-as GRAM and GridFTP can be implemented as Java CoG kit providers.
-</para>
-	</section>
-
-	<section id="functions"><title>Function reference</title>
-		<para>
-This section details functions that are available for use in the SwiftScript
-language.
-		</para>
-		<section id="function.arg"><title>@arg</title>
-			<para>
-Takes a command line parameter name as a string parameter and an optional
-default value and returns the value of that string parameter from the
-command line. If no default value is specified and the command line parameter
-is missing, an error is generated. If a default value is specified and the
-command line parameter is missing, <literal>@arg</literal> will return the default value.
-			</para>
-			<para>
-Command line parameters recognized by <literal>@arg</literal> begin with exactly one hyphen
-and need to be positioned after the script name.
-			</para>
-
-			<para>For example:</para>
-			<programlisting>
-trace(@arg("myparam"));
-trace(@arg("optionalparam", "defaultvalue"));
-			</programlisting>
-			<screen>
-$ <userinput>swift arg.swift -myparam=hello</userinput>
-Swift v0.3-dev r1674 (modified locally)
-
-RunID: 20080220-1548-ylc4pmda
-SwiftScript trace: defaultvalue
-SwiftScript trace: hello
-			</screen>
-
-		</section>
-
-		<section id="function.extractint"><title>@extractint</title>
-			<para>
-<literal>@extractint(file)</literal> will read the specified file, parse an integer from the
-file contents and return that integer.
-			</para>
-		</section>
-
-		<section id="function.filename"><title>@filename</title>
-			<para>
-<literal>@filename(v)</literal> will return a string containing the filename(s) for the file(s)
-mapped to the variable <literal>v</literal>. When more than one filename is returned, the
-filenames will be space separated inside a single string return value.
-			</para>
-		</section>
-		<section id="function.filenames"><title>@filenames</title>
-			<para>
-<literal>@filenames(v)</literal> will return multiple values (!) containing the filename(s) for
-the file(s) mapped to the variable <literal>v</literal>. (compare to
-<link linkend="function.filename">@filename</link>)
-			</para>
-		</section>
-		<section id="function.regexp"><title>@regexp</title>
-			<para>
-<literal>@regexp(input,pattern,replacement)</literal> will apply regular expression
-substitution using the <ulink url="http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html">Java java.util.regexp API</ulink>. For example:
-<programlisting>
-string v =  @regexp("abcdefghi", "c(def)g","monkey");
-</programlisting>
-will assign the value <literal>"abmonkeyhi"</literal> to the variable <literal>v</literal>.
-			</para>
-		</section>
-		<section id="function.strcat"><title>@strcat</title>
-			<para>
-<literal>@strcat(a,b,c,d,...)</literal> will return a string containing all of the strings
-passed as parameters joined into a single string. There may be any number
-of parameters.
-			</para>
-			<para>
-The <literal>+</literal> operator concatenates two strings: <literal>@strcat(a,b)</literal> is the same as <literal>a + b</literal>
-			</para>
-		</section>
-		<section id="function.strcut"><title>@strcut</title>
-			<para>
-<literal>@strcut(input,pattern)</literal> will match the regular expression in the pattern
-parameter against the supplied input string and return the section that
-matches the first matching parenthesised group.
-			</para>
-			<para>
-For example:
-			</para>
-
-			<programlisting>
-string t = "my name is John and i like puppies.";
-string name = @strcut(t, "my name is ([^ ]*) ");
-string out = @strcat("Your name is ",name);
-trace(out);
-			</programlisting>
-
-			<para>
-will output the message: <literal>Your name is John</literal>.
-			</para>
-		</section>
-
-		<section id="function.strsplit"><title>@strsplit</title>
-			<para>
-<literal>@strsplit(input,pattern)</literal> will split the input string based on separators
-that match the given pattern and return a string array. (since Swift 0.9)
-			</para>
-			<para>
-Example:
-			</para>
-
-			<programlisting>
-string t = "my name is John and i like puppies.";
-string words[] = @strsplit(t, "\\s");
-foreach word in words {
-	trace(word);
-}
-			</programlisting>
-
-			<para>
-will output one word of the sentence on each line (though
-not necessarily in order, due to the fact that foreach
-iterations execute in parallel).
-			</para>
-		</section>
-
-
-		<section id="function.toint"><title>@toint</title>
-			<para>
-<literal>@toint(input)</literal> will parse its input string into an integer. This can be
-used with <literal>@arg</literal> to pass input parameters to a SwiftScript program as
-integers.
-			</para>
-		</section>
-	</section>
-
-	<section id="procedures"><title>Built-in procedure reference</title>
-		<para>
-This section details built-in procedures that are available for use in
-the SwiftScript language.
-		</para>
-
-		<section id="procedure.readdata"><title>readData</title>
-			<para>
-<literal>readData</literal> will read data from a specified file.
-			</para>
-			<para>
-The format of the input file is controlled by the type of the return
-value.
-			</para>
-
-			<para>
-For scalar return types, such as int, the specified file should contain
-a single value of that type.
-			</para>
-			<para>
-For arrays of scalars, the specified file should contain one value
-per line.
-			</para>
-			<para>
-For structs of scalars, the file should contain two rows.
-The first row should be structure member names separated by whitespace.
-The second row should be the corresponding values for each structure
-member, separated by whitespace, in the same order as the header row.
-			</para>
-			<para>
-For arrays of structs, the file should contain a heading row listing
-structure member names separated by whitespace. There should be one row
-for each element of the array, with structure member elements listed in
-the same order as the header row and separated by whitespace. (since Swift 0.4)
-			</para>
-
-		</section>
-		<section id="procedure.readdata2"><title>readdata2</title>
-			<para>
-<literal>readdata2</literal> will read data from a specified file, like <literal>readdata</literal>, but using
-a different file format more closely related to that used by the
-ext mapper.
-			</para>
-			<para>
-Input files should list, one per line, a path into a Swift structure, and
-the value for that position in the structure:
-				<screen>
-rows[0].columns[0] = 0
-rows[0].columns[1] = 2
-rows[0].columns[2] = 4
-rows[1].columns[0] = 1
-rows[1].columns[1] = 3
-rows[1].columns[2] = 5
-				</screen>
-which can be read into a structure defined like this:
-				<programlisting>
-type vector {
-        int columns[];
-}
-
-type matrix {
-        vector rows[];
-}
-
-matrix m;
-
-m = readData2("readData2.in");
-				</programlisting>
-			</para>
-
-			<para>
-(since Swift 0.7)
-			</para>
-		</section>
-		<section id="procedure.trace"><title>trace</title>
-			<para>
-<literal>trace</literal> will log its parameters. By default these will appear on both stdout
-and in the run log file. Some formatting occurs to produce the log message.
-The particular output format should not be relied upon. (since Swift 0.4)
-			</para>
-		</section>
-
-		<section id="procedure.writedata"><title>writeData</title>
-			<para>
-<literal>writeData</literal> will write out data structures in the format
-described for <literal>readData</literal>
-			</para>
-		</section>
-	</section>
-
-	<section id="engineconfiguration">
-
-		<title>Swift configuration properties</title>
-
-		<para>
-
-			Various aspects of the behavior of the Swift Engine can be
-			configured through properties. The Swift Engine recognizes a global,
-			per installation properties file which can found in <filename
-			class="file">etc/swift.properties</filename> in the Swift installation directory and a user
-			properties file which can be created by each user in <filename
-			class="file">~/.swift/swift.properties</filename>. The Swift Engine
-			will first load the global properties file. It will then try to load
-			the user properties file. If a user properties file is found,
-			individual properties explicitly set in that file will override the
-			respective properties in the global properties file. Furthermore,
-			some of the properties can be overridden directly using command line
-			arguments to the <link
-			linkend="swiftcommand"><command>swift</command> command</link>.
-
-		</para>
-
-			<para>
-
-				Swift properties are specified in the following format:
-
-<screen>
-<name>=<value>
-</screen>
-
-				The value can contain variables which will be expanded when the
-				properties file is read. Expansion is performed when the name of
-				the variable is used inside the standard shell dereference
-				construct: <literal>${<varname>name</varname>}</literal>. The following variables
-				can be used in the Swift configuration file:
-
-				<variablelist>
-					<title>Swift Configuration Variables</title>
-
-					<varlistentry>
-						<term>
-							<varname>swift.home</varname>
-						</term>
-						<listitem>
-							<para>
-
-								Points to the Swift installation directory
-								(<filename
-								class="directory"><envar>$SWIFT_HOME</envar></filename>). In general, this should not be set
-as Swift can find its own installation directory, and incorrectly setting it
-may impair the correct functionality of Swift.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<varname>user.name</varname>
-						</term>
-						<listitem>
-							<para>
-
-								The name of the current logged in user.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<varname>user.home</varname>
-						</term>
-						<listitem>
-							<para>
-
-								The user's home directory.
-
-							</para>
-						</listitem>
-					</varlistentry>
-				</variablelist>
-
-				The following is a list of valid Swift properties:
-
-				<variablelist>
-					<title>Swift Properties</title>
-
-					<varlistentry id="property.caching.algorithm">
-						<term>
-							<property>caching.algorithm</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>LRU</literal>
-							</para>
-
-							<para>
-								Default value: <literal>LRU</literal>
-							</para>
-
-							<para>
-
-								Swift caches files that are staged in on remote
-								resources, and files that are produced remotely
-								by applications, such that they can be re-used
-								if needed without being transfered again.
-								However, the amount of remote file system space
-								to be used for caching can be limited using the
-								<link linkend="profile.swift.storagesize"><property>swift:storagesize</property></link> profile
-								entry in the sites.xml file. Example:
-
-<screen>
-
-<pool handle="example" sysinfo="INTEL32::LINUX">
-	<gridftp url="gsiftp://example.org" storage="/scratch/swift" major="2" minor="4" patch="3"/>
-	<jobmanager universe="vanilla" url="example.org/jobmanager-pbs" major="2" minor="4" patch="3"/>
-	<workdirectory>/scratch/swift</workdirectory>
-	<profile namespace="SWIFT" key="storagesize">20000000</profile>
-</pool>
-
-</screen>
-
-
-								The decision of which files to keep in the cache
-								and which files to remove is made considering
-								the value of the
-								<property>caching.algorithm</property> property.
-								Currently, the only available value for this
-								property is <literal>LRU</literal>, which would
-								cause the least recently used files to be
-								deleted first.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry id="property.clustering.enabled">
-						<term>
-							<property>clustering.enabled</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-								Enables <link linkend="clustering">clustering</link>.
-							</para>
-
-						</listitem>
-					</varlistentry>
-
-					<varlistentry id="property.clustering.min.time">
-						<term>
-							<property>clustering.min.time</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><int></parameter>
-							</para>
-
-							<para>
-								Default value: <literal>60</literal>
-							</para>
-
-							<para>
-
-								Indicates the threshold wall time for
-								clustering, in seconds. Jobs that have a
-								wall time smaller than the value of this
-								property will be considered for clustering.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry id="property.clustering.queue.delay">
-						<term>
-							<property>clustering.queue.delay</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><int></parameter>
-							</para>
-
-							<para>
-								Default value: <literal>4</literal>
-							</para>
-
-							<para>
-
-								This property indicates the interval, in
-								seconds, at which the clustering queue is
-								processed.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry id="property.execution.retries">
-						<term>execution.retries</term>
-						<listitem>
-							<para>
-								Valid values: positive integers
-							</para>
-							<para>
-								Default value: 2
-							</para>
-							<para>
-								The number of time a job will be retried if it
-								fails (giving a maximum of 1 +
-								execution.retries attempts at execution)
-							</para>
-						</listitem>
-					</varlistentry>
-
-
-					<varlistentry id="property.foreach.max.threads">
-						<term>foreach.max.threads</term>
-						<listitem>
-							<para>
-								Valid values: positive integers
-							</para>
-							<para>
-								Default value: 1024
-							</para>
-							<para>
-Limits the number of concurrent iterations that each foreach statement
-can have at one time. This conserves memory for swift programs that
-have large numbers of iterations (which would otherwise all be executed
-in parallel). (since Swift 0.9)
-							</para>
-						</listitem>
-					</varlistentry>
-
-
-					<varlistentry>
-						<term>
-							<property>ip.address</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><ipaddress></parameter>
-							</para>
-
-							<para>
-								Default value: N/A
-							</para>
-
-							<para>
-								The Globus GRAM service uses a callback
-								mechanism to send notifications about the status
-								of submitted jobs. The callback mechanism
-								requires that the Swift client be reachable from
-								the hosts the GRAM services are running on.
-								Normally, Swift can detect the correct IP address
-								of the client machine. However, in certain cases
-								(such as the client machine having more than one
-								network interface) the automatic detection
-								mechanism is not reliable. In such cases, the IP
-								address of the Swift client machine can be
-								specified using this property. The value of this
-								property must be a numeric address without quotes.
-							</para>
-							<para>
-								This option is deprecated and the hostname
-								property should be used instead.
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>kickstart.always.transfer</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-
-								This property controls when output from
-								Kickstart is transfered back to the submit site,
-								if Kickstart is enabled. When set to
-								<literal>false</literal>, Kickstart output is
-								only transfered for jobs that fail. If set to
-								<literal>true</literal>, Kickstart output is
-								transfered after every job is completed or
-								failed.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>kickstart.enabled</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>, <literal>maybe</literal>
-							</para>
-
-							<para>
-								Default value: <literal>maybe</literal>
-							</para>
-
-							<para>
-
-								This option allows controlling of
-								when Swift uses <link linkend="kickstart">Kickstart</link>. A value of
-								<literal>false</literal> disables the use of
-								Kickstart, while a value of
-								<literal>true</literal> enables the use of
-								Kickstart, in which case sites specified in the
-								<filename type="file">sites.xml</filename> file
-								must have valid
-								<parameter>gridlaunch</parameter> attributes.
-								The <literal>maybe</literal> value will
-								enable the use of Kickstart only
-								on sites that have the
-								<parameter>gridlaunch</parameter> attribute
-								specified.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>lazy.errors</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-
-								Swift can report application errors in two
-								modes, depending on the value of this property.
-								If set to <constant>false</constant>, Swift will
-								report the first error encountered and
-								immediately stop execution. If set to
-								<constant>true</constant>, Swift will attempt to
-								run as much as possible from a SwiftScript program before
-								stopping execution and reporting all errors
-								encountered.
-							</para>
-							<para>When developing SwiftScript programs, using the
-								default value of <constant>false</constant> can
-								make the program easier to debug. However
-								in production runs, using <constant>true</constant>
-								will allow more of a SwiftScript program to be run before
-								Swift aborts execution.
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>pgraph</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>, <parameter><file></parameter>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-
-								Swift can generate a
-<ulink url="http://www.graphviz.org/">Graphviz</ulink> file representing
-								the structure of the SwiftScript program it has run. If this
-								property is set to <literal>true</literal>,
-								Swift will save the provenance graph in a file
-								named by concatenating the program name and the
-								instance ID (e.g. <filename
-								class="file">helloworld-ht0adgi315l61.dot</filename>).
-							</para>
-							<para>
-								If set to <literal>false</literal>, no
-								provenance  graph will be generated. If a file
-								name is used, then  the provenance graph will be
-								saved in the specified file.
-							</para>
-							<para>
-								The generated dot file can be rendered
-								into a graphical form using
-								<ulink
-								url="http://www.graphviz.org/">Graphviz</ulink>,
-								for example with a command-line such as:
-							</para>
-							<screen>
-$ <userinput>swift -pgraph graph1.dot q1.swift</userinput>
-$ <userinput>dot -ograph.png -Tpng graph1.dot</userinput>
-							</screen>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>pgraph.graph.options</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><string></parameter>
-							</para>
-
-							<para>
-								Default value: <literal>splines="compound", rankdir="TB"</literal>
-							</para>
-
-							<para>
-
-								This property specifies a <ulink
-								url="http://www.graphviz.org">Graphviz</ulink>
-								specific set of parameters for the graph.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>pgraph.node.options</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><string></parameter>
-							</para>
-
-							<para>
-								Default value: <literal>color="seagreen", style="filled"</literal>
-							</para>
-
-							<para>
-
-								Used to specify a set of <ulink
-								url="http://www.graphviz.org">Graphviz</ulink>
-								specific properties for the nodes in the graph.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>provenance.log</property>
-						</term>
-						<listitem>
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>
-							</para>
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-							<para>
-								This property controls whether the log file will contain provenance information enabling this will increase the size of log files, sometimes significantly.
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>replication.enabled</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-Enables/disables replication. Replication is used to deal with jobs sitting
-in batch queues for abnormally large amounts of time. If replication is enabled
-and certain conditions are met, Swift creates and submits replicas of jobs, and
-allows multiple instances of a job to compete.
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>replication.limit</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: positive integers
-							</para>
-
-							<para>
-								Default value: 3
-							</para>
-
-							<para>
-The maximum number of replicas that Swift should attempt.
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>sitedir.keep</property>
-						</term>
-						<listitem>
-							<para>
-								Valid values: <parameter>true</parameter>, <parameter>false</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-Indicates whether the working directory on the remote site should be
-left intact even when a run completes successfully. This can be
-used to inspect the site working directory for debugging purposes.
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>sites.file</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><file></parameter>
-							</para>
-
-							<para>
-								Default value: ${<varname>swift.home</varname>}<literal>/etc/sites.xml</literal>
-							</para>
-
-							<para>
-
-								Points to the location of the site
-								catalog, which contains a list of all sites that
-								Swift should use.
-
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>status.mode</property>
-						</term>
-						<listitem>
-							<para>
-								Valid values: <parameter>files</parameter>, <parameter>provider</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>files</literal>
-							</para>
-
-							<para>
-Controls how Swift will communicate the result code of running user programs
-from workers to the submit side. In <literal>files</literal> mode, a file
-indicating success or failure will be created on the site shared filesystem.
-In <literal>provider</literal> mode, the execution provider job status will
-be used.
-							</para>
-							<para>
-<literal>provider</literal> mode requires the underlying job execution system
-to correctly return exit codes. In at least the cases of GRAM2, and clusters
-used with any provider, exit codes are not returned, and so
-<literal>files</literal> mode must be used in those cases.  Otherwise,
-<literal>provider</literal> mode can be used to reduce the amount of
-filesystem access. (since Swift 0.8)
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>tc.file</property>
-						</term>
-						<listitem>
-							<para>
-								Valid values: <parameter><file></parameter>
-							</para>
-
-							<para>
-								Default value: ${<varname>swift.home</varname>}<literal>/etc/tc.data</literal>
-							</para>
-
-							<para>
-
-								Points to the location of the transformation
-								catalog file which contains information about
-								installed applications. Details about the format
-								of the transformation catalog can be found
-								<ulink
-								url="http://vds.uchicago.edu/vds/doc/userguide/html/H_TransformationCatalog.html">here</ulink>.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-  					<varlistentry>
-						<term>
-							<property>tcp.port.range</property>
-						</term>
-						<listitem>
-							<para>Valid values: <parameter><start></parameter>,<parameter><end></parameter> where start and end are integers</para>
-							<para>Default value: none</para>
-							<para>
-A TCP port range can be specified to restrict the ports on which
-GRAM callback services are started. This is likely needed if your
- submit host is behind a firewall, in which case the firewall
-should be configured to allow incoming connections on ports in
-the range.
-							</para>
-						</listitem>
-  </varlistentry>
-
-
-					<varlistentry>
-						<term>
-							<property>throttle.file.operations</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><int></parameter>, <parameter>off</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>8</literal>
-							</para>
-
-							<para>
-
-								Limits the total number of concurrent file
-								operations that can happen at any given time.
-								File operations (like transfers) require an
-								exclusive connection to a site. These
-								connections can be expensive to establish. A
-								large number of concurrent file operations may
-								cause Swift to attempt to establish many  such
-								expensive connections to various sites. Limiting
-								the number of concurrent file operations causes
-								Swift to use a small number of cached
-								connections and achieve better overall
-								performance.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>throttle.host.submit</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><int></parameter>, <parameter>off</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>2</literal>
-							</para>
-
-							<para>
-
-								Limits the number of concurrent submissions for
-								any of the sites Swift will try to send jobs to.
-								In other words it guarantees that no more than
-								the  value of this throttle jobs sent to any
-								site will be concurrently in a state of being
-								submitted.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry id="property.throttle.score.job.factor">
-						<term>
-							<property>throttle.score.job.factor</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><int></parameter>, <parameter>off</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>4</literal>
-							</para>
-
-							<para>
-								The Swift scheduler has the ability to limit
-								the number of concurrent jobs allowed on a
-								site based on the performance history of that
-								site. Each site is assigned a score (initially
-								1), which can increase or decrease based on
-								whether the site yields successful or faulty
-								job runs. The score for a site can take values
-								in the (0.1, 100) interval. The number of
-								allowed jobs is calculated using the
-								following formula:
-							</para>
-							<para>
-								2 + score*throttle.score.job.factor
-							</para>
-							<para>
-								This means a site will always be allowed
-								at least two concurrent jobs and at most
-								2 + 100*throttle.score.job.factor. With a
-								default of 4 this means at least 2 jobs and
-								at most 402.
-							</para>
-							<para>
-								This parameter can also be set per site
-								using the jobThrottle profile key in a site
-								catalog entry.
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>throttle.submit</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><int></parameter>, <parameter>off</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>4</literal>
-							</para>
-
-							<para>
-
-								Limits the number of concurrent submissions for
-								a run. This throttle only limits
-								the number of concurrent tasks (jobs) that are
-								being sent to sites, not the total number of
-								concurrent jobs that can be run. The submission
-								stage in GRAM is one of the most CPU expensive
-								stages (due mostly to the mutual authentication
-								and delegation). Having too many  concurrent
-								submissions can overload either or both the
-								submit host CPU and the remote host/head node
-								causing degraded performance.
-
-							</para>
-
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>throttle.transfers</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <parameter><int></parameter>, <parameter>off</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>4</literal>
-							</para>
-
-							<para>
-
-								Limits the total number of concurrent file
-								transfers that can happen at any given time.
-								File transfers consume bandwidth. Too many
-								concurrent transfers can cause the network to be
-								overloaded preventing various other signaling
-								traffic from flowing properly.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>ticker.disable</property>
-						</term>
-						<listitem>
-							<para>
-								Valid values: <parameter>true</parameter>, <parameter>false</parameter>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-When set to true, suppresses the output progress ticker that Swift sends
-to the console every few seconds during a run (since Swift 0.9)
-							</para>
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>wrapper.invocation.mode</property>
-						</term>
-						<listitem>
-							<para>
-Valid values: <parameter>absolute</parameter>, <parameter>relative</parameter>
-							</para>
-							<para>
-Default value: <literal>absolute</literal>
-							</para>
-							<para>
-Determines if Swift remote wrappers will be executed by specifying an
-absolute path, or a path relative to the job initial working directory.
-In most cases, execution will be successful with either option. However,
-some execution sites ignore the specified initial working directory, and
-so <literal>absolute</literal> must be used. Conversely on some sites,
-job directories appear in a different place on the worker node file system
-than on the filesystem access node, with the execution system handling
-translation of the job initial working directory. In such cases,
-<literal>relative</literal> mode must be used. (since Swift 0.9)
-							</para>
-
-						</listitem>
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>wrapper.parameter.mode</property>
-						</term>
-						<listitem>
-							<para>
-Controls how Swift will supply parameters to the remote wrapper script.
-<literal>args</literal> mode will pass parameters on the command line. Some
-execution systems do not pass commandline parameters sufficiently cleanly
-for Swift to operate correctly.
-<literal>files</literal> mode will pass parameters through an additional
-input file (since Swift 0.95). This provides a cleaner communication channel
-for parameters, at the expense of transferring an additional file for each
-job invocation.
-							</para>
-						</listitem>
-
-					</varlistentry>
-
-					<varlistentry>
-						<term>
-							<property>wrapperlog.always.transfer</property>
-						</term>
-						<listitem>
-
-							<para>
-								Valid values: <literal>true</literal>, <literal>false</literal>
-							</para>
-
-							<para>
-								Default value: <literal>false</literal>
-							</para>
-
-							<para>
-
-								This property controls when output from
-								the Swift remote wrapper is transfered
-								back to the submit site. When set to
-								<literal>false</literal>, wrapper logs are
-								only transfered for jobs that fail. If set to
-								<literal>true</literal>, wrapper logs are
-								transfered after every job is completed or
-								failed.
-
-							</para>
-						</listitem>
-					</varlistentry>
-
-				</variablelist>
-
-				Example:
-
-<screen>
-sites.file=${vds.home}/etc/sites.xml
-tc.file=${vds.home}/etc/tc.data
-ip.address=192.168.0.1
-</screen>
-
-			</para>
-
-	</section>
-
-
-	<section id="profiles"><title>Profiles</title>
-		<para>
-Profiles are configuration parameters than can be specified either for
-sites or for transformation catalog entries. They influence the behaviour
-of Swift towards that site (for example, by changing the load Swift will
-place on that sites) or when running a particular procedure.
-		</para>
-		<para>
-Profile entries for a site are specified in the site catalog. Profile
-entries for specific procedures are specified in the transformation
-catalog.
-		</para>
-		<section id="profile.karajan"><title>Karajan namespace</title>
-			<para id="profile.karajan.maxsubmitrate"><literal>maxSubmitRate</literal> limits the maximum rate of job submission, in jobs per second.
-For example:
-<screen>
-<profile namespace="karajan" key="maxSubmitRate">0.2</profile>
-</screen>
-will limit job submission to 0.2 jobs per second (or equivalently,
-one job every five seconds).
-			</para>
-			<para id="profile.karajan.jobThrottle"><literal>jobThrottle</literal>
-allows the job throttle factor (see Swift property <link linkend="property.throttle.score.job.factor">throttle.score.job.factor</link>) to be set per site.
-			</para>
-			<para id="profile.karajan.initialScore"><literal>initialScore</literal>
-allows the initial score for rate limiting and site selection to be set to
-a value other than 0.
-			</para>
-			<para id="profile.karajan.delayBase"><literal>delayBase</literal> controls how much a site will be delayed when it performs poorly. With each reduction
-in a sites score by 1, the delay between execution attempts will increase by
-a factor of delayBase.</para>
-			<para id="profile.karajan.status.mode"><literal>status.mode</literal> allows the status.mode property to be set per-site instead of for an entire run.
-See the Swift configuration properties section for more information.
-(since Swift 0.8)</para>
-		</section>
-		<section id="profile.swift"><title>swift namespace</title>
-			<para id="profile.swift.storagesize"><literal>storagesize</literal> limits the
-amount of space that will be used on the remote site for temporary files.
-When more than that amount of space is used, the remote temporary file
-cache will be cleared using the algorithm specified in the
-<link linkend="property.caching.algorithm"><literal>caching.algorithm</literal></link> property.
-			</para>
-			<para id="swift.wrapperInterpreter"><literal>wrapperInterpreter</literal>
-The wrapper interpreter indicates the command (executable) to be used to run the Swift wrapper
-script. The default is "/bin/bash" on Unix sites and "cscript.exe" on Windows sites.
-			</para>
-			<para id="swift.wrapperInterpreterOptions"><literal>wrapperInterpreterOptions</literal>
-Allows specifying additional options to the executable used to run the Swift wrapper. The defaults
-are no options on Unix sites and "//Nologo" on Windows sites.
-			</para>
-			<para id="swift.wrapperScript"><literal>wrapperScript</literal>
-Specifies the name of the wrapper script to be used on a site. The defaults are "_swiftwrap" on
-Unix sites and "_swiftwrap.vbs" on Windows sites. If you specify a custom wrapper script, it
-must be present in the "libexec" directory of the Swift installation.
-			</para>
-			<para id="swift.cleanupCommand"><literal>cleanupCommand</literal>
-Indicates the command to be run at the end of a Swift run to clean up the run directories on a
-remote site. Defaults are "/bin/rm" on Unix sites and "cmd.exe" on Windows sites
-			</para>
-			<para id="swift.cleanupCommandOptions"><literal>cleanupCommandOptions</literal>
-Specifies the options to be passed to the cleanup command above. The options are passed in the
-argument list to the cleanup command. After the options, the last argument is the directory
-to be deleted. The default on Unix sites is "-rf". The default on Windows sites is ["/C", "del", "/Q"].
-			</para>
-
-		</section>
-		<section id="profile.globus"><title>Globus namespace</title>
-			<para id="profile.globus.maxwalltime"><literal>maxwalltime</literal> specifies a walltime limit for each job, in minutes.
-			</para>
-			<para>
-The following formats are recognized:
-				<itemizedlist>
-					<listitem>Minutes</listitem>
-					<listitem>Hours:Minutes</listitem>
-					<listitem>Hours:Minutes:Seconds</listitem>
-				</itemizedlist>
-			</para>
-			<para>Example:</para>
-<screen>
-localhost	echo	/bin/echo	INSTALLED	INTEL32::LINUX	GLOBUS::maxwalltime="00:20:00"
-</screen>
-			<para>When replication is enabled (see <link linkend="replication">replication</link>), then walltime will also be enforced at the Swift client side: when
-a job has been active for more than twice the maxwalltime, Swift will kill the
-job and regard it as failed.
-			</para>
-			<para>
-When clustering is used, <literal>maxwalltime</literal> will be used to
-select which jobs will be clustered together. More information on this is
-available in the <link linkend="clustering">clustering section</link>.
-			</para>
-			<para>
-When coasters as used, <literal>maxwalltime</literal> influences the default
-coaster worker maxwalltime, and which jobs will be sent to which workers.
-More information on this is available in the <link linkend="coasters">coasters
-section</link>.
-			</para>
-			<para id="profile.globus.queue"><literal>queue</literal>
-is used by the PBS, GRAM2 and GRAM4 providers. This profile
-entry specifies which queue jobs will be submitted to. The valid queue names
-are site-specific.
-			</para>
-			<para id="profile.globus.host_types"><literal>host_types</literal>
-specifies the types of host that are permissible for a job to run on.
-The valid values are site-specific. This profile entry is used by the
-GRAM2 and GRAM4 providers.
-			</para>
-			<para id="profile.globus.condor_requirements"><literal>condor_requirements</literal> allows a requirements string to be specified
-when Condor is used as an LRM behind GRAM2. Example: <literal><profile namespace="globus" key="condor_requirements">Arch == "X86_64" || Arch="INTEL"</profile></literal>
-			</para>
-			<para id="profile.slots"><literal>slots</literal>
-When using <link linkend="coasters">coasters</link>, this parameter
-specifies the maximum number of jobs/blocks that the coaster scheduler will have running at any given time.
-The default is 20.
-			</para>
-			<para id="profile.jobsPerNode"><literal>jobsPerNode</literal>
-This parameter determines how many coaster workers are
-started one each compute node. The default value is 1.
-			</para>
-			<para id="profile.nodeGranularity"><literal>nodeGranularity</literal>
-When allocating a coaster worker block, this parameter
-restricts the number of nodes in a block to a multiple of this value. The total number of workers will
-then be a multiple of jobsPerNode * nodeGranularity. The default value is 1.
-			</para>
-			<para id="profile.allocationStepSize"><literal>allocationStepSize</literal>
-Each time the coaster block scheduler computes a schedule, it will attempt to allocate a
-number of slots from the number of available slots (limited using the above slots profile). This
-parameter specifies the maximum fraction of slots that are allocated in one schedule. Default is
-0.1.
-			</para>
-			<para id="profile.lowOverallocation"><literal>lowOverallocation</literal>
-Overallocation is a function of the walltime of a job which determines how long (time-wise) a
-worker job will be. For example, if a number of 10s jobs are submitted to the coaster service,
-and the overallocation for 10s jobs is 10, the coaster scheduler will attempt to start worker
-jobs that have a walltime of 100s. The overallocation is controlled by manipulating the end-points
-of an overallocation function. The low endpoint, specified by this parameter, is the overallocation
-for a 1s job. The high endpoint is the overallocation for a (theoretical) job of infinite length.
-The overallocation for job sizes in the [1s, +inf) interval is determined using an exponential decay function:
-
-overallocation(walltime) = walltime * (lowOverallocation - highOverallocation) * exp(-walltime * overallocationDecayFactor) + highOverallocation
-
-The default value of lowOverallocation is 10.
-			</para>
-			<para id="profile.highOverallocation"><literal>highOverallocation</literal>
-The high overallocation endpoint (as described above). Default: 1
-			</para>
-			<para id="profile.overallocationDecayFactor"><literal>overallocationDecayFactor</literal>
-The decay factor for the overallocation curve. Default 0.001 (1e-3).
-			</para>
-			<para id="profile.spread"><literal>spread</literal>
-When a large number of jobs is submitted to the a coaster service, the work is divided into blocks. This
-parameter allows a rough control of the relative sizes of those blocks. A value of 0 indicates that all work
-should be divided equally between the blocks (and blocks will therefore have equal sizes). A value of 1
-indicates the largest possible spread. The existence of the spread parameter is based on the assumption
-that smaller overall jobs will generally spend less time in the queue than larger jobs. By submitting
-blocks of different sizes, submitted jobs may be finished quicker by smaller blocks. Default: 0.9.
-			</para>
-			<para id="profile.reserve"><literal>reserve</literal>
-Reserve time is a time in the allocation of a worker that sits at the end of the worker time and
-is useable only for critical operations. For example, a job will not be submitted to a worker if
-it overlaps its reserve time, but a job that (due to inaccurate walltime specification) runs into
-the reserve time will not be killed (note that once the worker exceeds its walltime, the queuing
-system will kill the job anyway). Default 10 (s).
-			</para>
-			<para id="profile.maxnodes"><literal>maxnodes</literal>
-Determines the maximum number of nodes that can be allocated in one coaster block. Default: unlimited.
-			</para>
-			<para id="profile.maxtime"><literal>maxtime</literal>
-Indicates the maximum walltime that a coaster block can have. Default: unlimited.
-			</para>
-			<para id="profile.remoteMonitorEnabled"><literal>remoteMonitorEnabled</literal>
-If set to "true", the client side will get a Swing window showing, graphically, the state of the
-coaster scheduler (blocks, jobs, etc.). Default: false
-			</para>
-<!--
-			Reminds me this functionality should be added to the new coaster stuff
-			<para id="profile.globus.coasterInternalIP"><literal>coasterInternalIP</literal>
-specifies the internal address of the coaster head node, to be used by
-coaster workers to communicate with the coaster head node. This can be used
-when the address determined automatically by the coaster provider
-is inaccessible from coaster workers (for example, when the workers
-reside on an unrouted internal network). (since Swift 0.9)
-			</para>
-
--->
-		</section>
-
-		<section id="profile.env"><title>env namespace</title>
-			<para>
-Profile keys set in the env namespace will be set in the unix environment of the
-executed job. Some environment variables influence the worker-side
-behaviour of Swift:
-			</para>
-			<para>
-<literal>PATHPREFIX</literal> - set in env namespace profiles. This path is prefixed onto the start
-of the <literal>PATH</literal> when jobs are
-executed. It can be more useful than setting the <literal>PATH</literal> environment variable directly,
-because setting <literal>PATH</literal> will cause the execution site's default path to be lost.
-			</para>
-			<para>
-<literal>SWIFT_JOBDIR_PATH</literal> - set in env namespace profiles. If set, then Swift will
-use the path specified here as a worker-node local temporary directory to
-copy input files to before running a job. If unset, Swift will keep input
-files on the site-shared filesystem. In some cases, copying to a worker-node
-local directory can be much faster than having applications access the
-site-shared filesystem directly.
-			</para>
-			<para>
-<literal>SWIFT_EXTRA_INFO</literal> - set in env namespace profiles. If set,
-then Swift will execute the command specified in
-<literal>SWIFT_EXTRA_INFO</literal> on execution sites immediately before
-each application execution, and will record the stdout of that command in the
-wrapper info log file for that job. This is intended to allow software
-version and other arbitrary information about the remote site to be gathered
-and returned to the submit side. (since Swift 0.9)
-			</para>
-		</section>
-	</section>
-
-	<section id="sitecatalog"><title>The Site Catalog - sites.xml</title>
-		<para>
-The site catalog lists details of each site that Swift can use. The default
-file contains one entry for local execution, and a large number of
-commented-out example entries for other sites.
-		</para>
-
-		<para>
-By default, the site catalog is stored in <filename>etc/sites.xml</filename>.
-This path can be overridden with the <literal>sites.file</literal> configuration property,
-either in the Swift configuration file or on the command line.
-		</para>
-
-		<para>
-The sites file is formatted as XML. It consists of <literal><pool></literal> elements,
-one for each site that Swift will use.
-		</para>
-
-		<section><title>Pool element</title>
-		<para>
-Each <literal>pool</literal> element must have a <literal>handle</literal> attribute, giving a symbolic name
-for the site. This can be any name, but must correspond to entries for
-that site in the transformation catalog.
-		</para>
-
-		<para>
-Optionally, the <literal>gridlaunch</literal> attribute can be used to specify the path to
-<link linkend="kickstart">kickstart</link> on the site.
-		</para>
-
-		<para>
-Each <literal>pool</literal> must specify a file transfer method, an execution method
-and a remote working directory. Optionally, <link linkend="profiles">profile settings</link> can be specified.
-		</para>
-
-</section>
-<section><title>File transfer method</title>
-
-		<para>
-Transfer methods are specified with either
-the <literal><gridftp></literal> element or the
-<literal><filesystem></literal> element.
-		</para>
-		<para>
-To use gridftp or local filesystem copy, use the <literal><gridftp></literal>
-element:
-<screen>
-<gridftp  url="gsiftp://evitable.ci.uchicago.edu" />
-</screen>
-The <literal>url</literal> attribute may specify a GridFTP server, using the gsiftp URI scheme;
-or it may specify that filesystem copying will be used (which assumes that
-the site has access to the same filesystem as the submitting machine) using
-the URI <literal>local://localhost</literal>.
-		</para>
-		<para>
-Filesystem access using scp (the SSH copy protocol) can be specified using the
-<literal><filesystem></literal> element:
-<screen>
-<filesystem url="www11.i2u2.org" provider="ssh"/>
-</screen>
-For additional ssh configuration information, see the ssh execution
-provider documentation below.
-		</para>
-		<para>
-Filesystem access using <link linkend="coasters">CoG coasters</link> can be
-also be specified using the <literal><filesystem></literal> element. More detail about
-configuring that can be found in the <link linkend="coasters">CoG
-coasters</link> section.
-		</para>
-</section>
-
-<section><title>Execution method</title>
-
-		<para>
-Execution methods may be specified either with the <literal><jobmanager></literal>
-or <literal><execution></literal> element.
-		</para>
-
-		<para>
-The <literal><jobmanager></literal> element can be used to specify
-execution through GRAM2. For example,
-<screen>
-    <jobmanager universe="vanilla" url="evitable.ci.uchicago.edu/jobmanager-fork" major="2" />
-</screen>
-The <literal>universe</literal> attribute should always be set to vanilla. The
-<literal>url</literal> attribute
-should specify the name of the GRAM2 gatekeeper host, and the name of the
-jobmanager to use. The major attribute should always be set to 2.
-		</para>
-
-		<para>
-The <literal><execution></literal> element can be used to specify
-execution through other execution providers:
-		</para>
-		<para>
-To use GRAM4, specify the <literal>gt4</literal> provider. For example:
-<screen>
-<execution provider="gt4" jobmanager="PBS" url="tg-grid.uc.teragrid.org" />
-</screen>
-The <literal>url</literal> attribute should specify the GRAM4 submission site.
-The <literal>jobmanager</literal>
-attribute should specify which GRAM4 jobmanager will be used.
-		</para>
-
-		<para>
-For local execution, the <literal>local</literal> provider should be used,
-like this:
-<screen>
-<execution provider="local" url="none" />
-</screen>
-		</para>
-
-		<para>
-For PBS execution, the <literal>pbs</literal> provider should be used:
-<screen>
-<execution provider="pbs" url="none" />
-</screen>
-The <literal><link linkend="profile.globus.queue">GLOBUS::queue</link></literal> profile key
-can be used to specify which PBS queue jobs will be submitted to.
-		</para>
-
-		<para>
-For execution through a local Condor installation, the <literal>condor</literal>
-provider should be used. This provider can run jobs either in the default
-vanilla universe, or can use Condor-G to run jobs on remote sites.
-		</para>
-		<para>
-When running locally, only the <literal><execution></literal> element
-needs to be specified:
-<screen>
-<execution provider="condor" url="none" />
-</screen>
-		</para>
-		<para>
-When running with Condor-G, it is necessary to specify the Condor grid
-universe and the contact string for the remote site. For example:
-<screen>
- <execution provider="condor" />
- <profile namespace="globus" key="jobType">grid</profile>
- <profile namespace="globus" key="gridResource">gt2 belhaven-1.renci.org/jobmanager-fork</profile>
-</screen>
-		</para>
-
-		<para>
-For execution through SSH, the <literal>ssh</literal> provider should be used:
-<screen>
-<execution url="www11.i2u2.org" provider="ssh"/>
-</screen>
-with configuration made in <filename>~/.ssh/auth.defaults</filename> with
-the string 'www11.i2u2.org' changed to the appropriate host name:
-<screen>
-www11.i2u2.org.type=key
-www11.i2u2.org.username=hategan
-www11.i2u2.org.key=/home/mike/.ssh/i2u2portal
-www11.i2u2.org.passphrase=XXXX
-</screen>
-		</para>
-		<para>
-For execution using the
-<link linkend="coasters">CoG Coaster mechanism</link>, the <literal>coaster</literal> provider
-should be used:
-<screen>
-<execution provider="coaster" url="tg-grid.uc.teragrid.org"
-    jobmanager="gt2:gt2:pbs" />
-</screen>
-More details about configuration of coasters can be found in the
-<link linkend="coasters">section on coasters</link>.
-		</para>
-</section>
-<section><title>Work directory</title>
-
-		<para>
-The <literal>workdirectory</literal> element specifies where on the site files can be
-stored.
-<screen>
-<workdirectory>/home/benc</workdirectory>
-</screen>
-This file must be accessible through the transfer mechanism specified
-in the <literal><gridftp></literal> element and also mounted on all worker nodes that
-will be used for execution. A shared cluster scratch filesystem is
-appropriate for this.
-		</para>
-
-</section>
-<section><title>Profiles</title>
-
-		<para>
-<link linkend="profiles">Profile keys</link> can be specified using
-the <profile> element. For example:
-<screen>
-<profile namespace="globus" key="queue">fast</profile>
-</screen>
-		</para>
-		</section>
-
-		<para>
-The site catalog format is an evolution of the VDS site catalog format which
-is documented
-<ulink url="http://vds.uchicago.edu/vds/doc/userguide/html/H_SiteCatalog.html">here</ulink>.
-		</para>
-	</section>
-
-	<section id="transformationcatalog"><title>The Transformation Catalog - tc.data</title>
-		<para>
-The transformation catalog lists where application executables are located
-on remote sites.
-		</para>
-		<para>
-By default, the site catalog is stored in <filename>etc/tc.data</filename>.
-This path can be overridden with the <literal>tc.file</literal> configuration property,
-either in the Swift configuration file or on the command line.
-		</para>
-		<para>
-The format is one line per executable per site, with fields separated by
-tabs. Spaces cannot be used to separate fields.
-		</para>
-		<para>Some example entries:
-<screen>
-localhost  echo    /bin/echo       INSTALLED       INTEL32::LINUX  null
-localhost  touch   /bin/touch      INSTALLED       INTEL32::LINUX  null
-
-TGUC       touch   /usr/bin/touch  INSTALLED       INTEL32::LINUX  GLOBUS::maxwalltime="0:1"
-TGUC       R       /usr/bin/R      INSTALLED       INTEL32::LINUX  env::R_LIBS=/home/skenny/R_libs
-</screen>
-		</para>
-		<para>
-The fields are: site, transformation name, executable path, installation
-status, platform, and profile entries.
-		</para>
-		<para>
-The site field should correspond to a site name listed in the sites
-catalog.</para>
-		<para>
-The transformation name should correspond to the transformation name
-used in a SwiftScript <literal>app</literal> procedure.
-		</para>
-		<para>
-The executable path should specify where the particular executable is
-located on that site.
-		</para>
-		<para>
-The installation status and platform fields are not used. Set them to
-<literal>INSTALLED</literal> and <literal>INTEL32::LINUX</literal> respectively.
-		</para>
-		<para>
-The profiles field should be set to <literal>null</literal> if no profile entries are to be
-specified, or should contain the profile entries separated by semicolons.
-		</para>
-
-	<section id="transformationcatalog.shell_invocation"><title>shell invocation</title>
-		<para>
-Because the above implementation requires an entry for each executable on a given site, it is often preferable to simply have a single element for each site in the transformation catalog representing a wrapper that sets the environment and then invokes the shell to call a given application. This wrapper is installed on the site and can be used to set the <literal>PATH</literal> and other environment variables prior to invoking the shell so that each executable need not be entered in the <literal>tc.data</literal> file.
-		</para>
-		<para>for example, the entries for <literal>TGUC</literal> and <literal>localhost</literal> can now each be collapsed into a single line:
-<screen>
-localhost  shell    /usr/local/bin/swiftshell       INSTALLED       INTEL32::LINUX  null
-TGUC       shell    /usr/local/bin/swiftshell       INSTALLED       INTEL32::LINUX  null
-</screen>
-where <literal>swiftshell</literal> sets up the users's environment so that all the installed applications are added to the <literal>PATH</literal> before the application is invoked.
-		</para>
-<para>
-<literal>touch</literal> would now be called in the SwiftScript like this:
-<screen>
-app (file tout) shelltest(){
-    shell "touch" @filename(tout);
-}
-</screen>
-</para>
-		</section>
-	</section>
-
-	<section id="buildoptions"><title>Build options</title>
-		<para>
-See <ulink url="http://www.ci.uchicago.edu/swift/downloads/">the
-Swift download page</ulink> for instructions on downloading and
-building Swift from source. When building, various build options can
-be supplied on the ant commandline. These are summarised here:
-		</para>
-		<para>
-<literal>with-provider-condor</literal> - build with CoG condor provider
-		</para>
-		<para>
-<literal>with-provider-coaster</literal> - build with CoG coaster provider (see
-<link linkend="coasters">the section on coasters</link>). Since 0.8,
-coasters are always built, and this option has no effect.
-		</para>
-		<para>
-<literal>with-provider-deef</literal> - build with Falkon provider deef. In order for this
-option to work, it is necessary to check out the provider-deef code in
-the cog/modules directory alongside swift:
-
-			<screen>
-$ <userinput>cd cog/modules</userinput>
-$ <userinput>svn co https://svn.ci.uchicago.edu/svn/vdl2/provider-deef</userinput>
-$ <userinput>cd ../swift</userinput>
-$ <userinput>ant -Dwith-provider-deef=true redist</userinput>
-			</screen>
-
-		</para>
-		<para>
-<literal>with-provider-wonky</literal> - build with provider-wonky, an execution provider
-that provides delays and unreliability for the purposes of testing Swift's
-fault tolerance mechanisms. In order for this option to work, it is
-necessary to check out the provider-wonky code in the <filename>cog/modules</filename>
-directory alongside swift:
-
-			<screen>
-$ <userinput>cd cog/modules</userinput>
-$ <userinput>svn co https://svn.ci.uchicago.edu/svn/vdl2/provider-wonky</userinput>
-$ <userinput>cd ../swift</userinput>
-$ <userinput>ant -Dwith-provider-wonky=true redist</userinput>
-			</screen>
-		</para>
-		<para>
-<literal>no-supporting</literal> - produces a distribution without supporting commands such
-as <command>grid-proxy-init</command>. This is intended for when the Swift distribution will be
-used in an environment where those commands are already provided by other
-packages, where the Swift package should be providing only Swift
-commands, and where the presence of commands such as grid-proxy-init from
-the Swift distribution in the path will mask the presence of those
-commands from their true distribution package such as a Globus Toolkit
-package.
-<screen>
-$ <userinput>ant -Dno-supporting=true redist</userinput>
-</screen>
-		</para>
-	</section>
-
-	<section id="kickstart"> <title>Kickstart</title>
-		<para>
-
-Kickstart is a tool that can be used to gather various information
-about the remote execution environment for each job that Swift tries
-to run.
-		</para>
-
-		<para>
-For each job, Kickstart generates an XML <firstterm>invocation
-record</firstterm>. By default this record is staged back to the submit
-host if the job fails.
-		</para>
-
-		<para>
-Before it can be used it must be installed on the remote site and
-the sites file must be configured to point to kickstart.
-		</para>
-
-		<para>
-Kickstart can be downloaded as part of the Pegasus 'worker package' available
-from the worker packages section of <ulink url="http://pegasus.isi.edu/code.php">the Pegasus download page</ulink>.
-		</para>
-		<para>
-Untar the relevant worker package somewhere where it is visible to all of the
-worker nodes on the remote execution machine (such as in a shared application
-filesystem).
-		</para>
-
-<para>Now configure the gridlaunch attribute of the sites catalog
-to point to that path, by adding a <parameter>gridlaunch</parameter>
-attribute to the <function>pool</function> element in the site
-catalog:
-
-<screen>
-
-<pool handle="example" gridlaunch="/usr/local/bin/kickstart" sysinfo="INTEL32::LINUX">
-[...]
-</pool>
-
-</screen>
-
-		</para>
-
-		<para>
-There are various kickstat.* properties, which have sensible default
-values. These are documented in <link linkend="engineconfiguration">the
-properties section</link>.
-		</para>
-
-
-
-	</section>
-
-	<section id="reliability"><title>Reliability mechanisms</title>
-	<para>
-This section details reliabilty mechanisms in Swift: retries, restarts
-and replication.
-	</para>
-
-	<section id="retries"> <title>Retries</title>
-		<para>
-If an application procedure execution fails, Swift will attempt that
-execution again repeatedly until it succeeds, up until the limit
-defined in the <literal>execution.retries</literal> configuration
-property.
-		</para>
-		<para>
-Site selection will occur for retried jobs in the same way that it happens
-for new jobs. Retried jobs may run on the same site or may run on a
-different site.
-		</para>
-		<para>
-If the retry limit <literal>execution.retries</literal> is reached for an
-application procedure, then that application procedure will fail. This will
-cause the entire run to fail - either immediately (if the
-<literal>lazy.errors</literal> property is <literal>false</literal>) or
-after all other possible work has been attempted (if the
-<literal>lazy.errors</literal> property is <literal>true</literal>).
-		</para>
-	</section>
-
-	<section id="restart"> <title>Restarts</title>
-		<para>
-If a run fails, Swift can resume the program from the point of
-failure. When a run fails, a restart log file will be left behind in
-a file named using the unique job ID and a <filename>.rlog</filename> extension. This restart log
-can then be passed to a subsequent Swift invocation using the <literal>-resume</literal>
-parameter. Swift will resume execution, avoiding execution of invocations
-that have previously completed successfully. The SwiftScript source file
-and input data files should not be modified between runs.
-		</para>
-		<para>
-Every run creates a restart
-log file with a named composed of the file name of the workflow
-being executed, an invocation ID, a numeric ID, and the <filename
-class="file">.rlog</filename> extension. For example, <filename
-class="file">example.swift</filename>, when executed, could produce
-the following restart log file: <filename
-class="file">example-ht0adgi315l61.0.rlog</filename>. Normally, if
-the run completes successfully, the restart log file is
-deleted. If however the workflow fails, <command>swift</command>
-can use the restart log file to continue
-execution from a point before the
-failure occurred. In order to restart from a restart log
-file, the <option>-resume <parameter><filename
-class="file">logfile</filename></parameter></option> argument can be
-used after the SwiftScript program file name. Example:
-
-<screen>
-<prompt>$</prompt> <command>swift</command> <option>-resume <filename
-class="file">example-ht0adgi315l61.0.rlog</filename></option> <option><filename
-class="file">example.swift</filename></option>.
-</screen>
-
-		</para>
-	</section>
-
-	<section id="replication"><title>Replication</title>
-		<para>
-When an execution job has been waiting in a site queue for a certain
-period of time, Swift can resubmit replicas of that job (up to the limit
-defined in the <literal>replication.limit</literal> configuration property).
-When any of those jobs moves from queued to active state, all of the
-other replicas will be cancelled.
-		</para>
-		<para>
-This is intended to deal with situations where some sites have a substantially
-longer (sometimes effectively infinite) queue time than other sites.
-Selecting those slower sites can cause a very large delay in overall run time.
-		</para>
-		<para>
-Replication can be enabled by setting the
-<literal>replication.enabled</literal> configuration property to
-<literal>true</literal>. The maximum number of replicas that will be
-submitted for a job is controlled by the <literal>replication.limit</literal>
-configuration property.
-		</para>
-		<para>
-When replication is enabled, Swift will also enforce the
-<literal>maxwalltime</literal> profile setting for jobs as documented in
-the <link linkend="profiles">profiles section</link>.
-		</para>
-	</section>
-
-	</section>
-
-	<section id="clustering"><title>Clustering</title>
-		<para>
-Swift can group a number of short job submissions into a single larger
-job submission to minimize overhead involved in launching jobs (for example,
-caused by security negotiation and queuing delay). In general,
-<link linkend="coasters">CoG coasters</link> should be used in preference
-to the clustering mechanism documented in this section.
-		</para>
-
-		<para>
-By default, clustering is disabled. It can be activated by setting the
-<link linkend="property.clustering.enabled">clustering.enabled</link>
-property to true.
-		</para>
-
-		<para>
-A job is eligible for clustering if
-the <link linkend="profile.globus.maxwalltime"><property>GLOBUS::maxwalltime</property></link> profile is specified in the <filename
-type="file">tc.data</filename> entry for that job, and its value is
-less than the value of the
-<link linkend="property.clustering.min.time"><property>clustering.min.time</property></link>
-property.
-		</para>
-
-		<para>
-Two or more jobs are considered compatible if they share the same site
-and do not have conflicting profiles (e.g. different values for the same
-environment variable).
-		</para>
-
-		<para>
-When a submitted job is eligible for clustering,
-it will be put in a clustering queue rather than being submitted to
-a remote site. The clustering queue is processed at intervals
-specified by the
-<link linkend="property.clustering.queue.delay"><property>clustering.queue.delay</property></link>
-property. The processing of the clustering queue consists of selecting
-compatible jobs and grouping them into clusters whose maximum wall time does
-not exceed twice the value of the <property>clustering.min.time</property>
-property.
-		</para>
-
-
-	</section>
-
-
-
-	<section id="coasters"><title>Coasters</title>
-<para>Coasters were introduced in Swift v0.6 as an experimental feature.
-</para>
-<para>
-In many applications, Swift performance can be greatly enhanced by the
-use of CoG coasters. CoG coasters provide a low-overhead job submission
-and file transfer mechanism suited for the execution of short jobs
-(on the order of a few seconds) and the transfer of small files (on the
-order of a few kilobytes) for which other grid protocols such as GRAM
-and GridFTP are poorly suited.
-</para>
-<para>
-The coaster mechanism submits a head job using some other execution
-mechanism such as GRAM, and for each worker node that will be used in
-a remote cluster, it submits a worker job, again using some other
-execution mechanism such as GRAM. Details on the design of the coaster
-mechanism can be found
-<ulink url="http://wiki.cogkit.org/wiki/Coasters">
-here.</ulink>
-</para>
-<para>
-The head job manages file transfers and the dispatch of execution jobs
-to workers. Much of the overhead associated with other grid protocols
-(such as authentication and authorization, and allocation of worker nodes
-by the site's local resource manager) is reduced, because that overhead
-is associated with the allocation of a coaster head or coaster worker,
-rather than with every Swift-level procedure invocation; potentially hundreds
-or thousands of Swift-level procedure invocations can be run through a single
-worker.
-</para>
-<para>
-Coasters can be configured for use in two situations: job execution and
-file transfer.
-</para>
-<para>
-To use for job execution, specify a sites.xml execution element like this:
-<screen>
-<execution provider="coaster" jobmanager="gt2:gt2:pbs" url="grid.myhost.org">
-</screen>
-The jobmanager string contains more detail than with other providers. It
-contains either two or three colon separated fields:
-1:the provider to be use to execute the coaster head job - this provider
-will submit from the Swift client side environment. Commonly this will be
-one of the GRAM providers; 2: the provider
-to be used to execute coaster worker jobs. This provider will be used
-to submit from the coaster head job environment, so a local scheduler
-provider can sometimes be used instead of GRAM. 3: optionally, the
-jobmanager to be used when submitting worker job using the provider
-specified in field 2.
-</para>
-<para>
-To use for file transfer, specify a sites.xml filesystem element like this:
-<screen>
-<filesystem provider="coaster" url="gt2://grid.myhost.org" />
-</screen>
-The url parameter should be a pseudo-URI formed with the URI scheme being
-the name of the provider to use to submit the coaster head job, and the
-hostname portion being the hostname to be used to execute the coaster
-head job. Note that this provider and hostname will be used for execution
-of a coaster head job, not for file transfer; so for example, a GRAM
-endpoint should be specified here rather than a GridFTP endpoint.
-</para>
-<para>
-Coasters are affected by the following profile settings, which are
-documented in the <link linkend="profile.globus">Globus namespace profile
-section</link>:
-</para>
-
-<table frame="all">
- <tgroup cols="2" align="left" colsep="1" rowsep="1">
-  <thead><row><entry>profile key</entry><entry>brief description</entry></row></thead>
-  <tbody>
-   <row><entry>slots</entry><entry>How many maximum LRM jobs/worker blocks are allowed</entry></row>
-   <row><entry>jobsPerNode</entry><entry>How many coaster workers to run per execution node</entry></row>
-   <row><entry>nodeGranularity</entry><entry>Each worker block uses a number of nodes that is a multiple of this number</entry></row>
-   <row><entry>lowOverallocation</entry><entry>How many times larger than the job walltime should a block's walltime be if all jobs are 1s long</entry></row>
-   <row><entry>highOverallocation</entry><entry>How many times larger than the job walltime should a block's walltime be if all jobs are infinitely long</entry></row>
-   <row><entry>overallocationDecayFactor</entry><entry>How quickly should the overallocation curve tend towards the highOverallocation as job walltimes get larger</entry></row>
-   <row><entry>spread</entry><entry>By how much should worker blocks vary in worker size</entry></row>
-   <row><entry>jobsPerNode</entry><entry>How many coaster workers to run per execution node</entry></row>
-   <row><entry>reserve</entry><entry>How many seconds to reserve in a block's walltime for starting/shutdown operations</entry></row>
-   <row><entry>maxnodes</entry><entry>The maximum number of nodes allowed in a block</entry></row>
-   <row><entry>maxtime</entry><entry>The maximum number of walltime allowed for a block</entry></row>
-   <row><entry>remoteMonitorEnabled</entry><entry>If true, show a graphical display of the status of the coaster service</entry></row>
-  </tbody>
- </tgroup>
-</table>
-	</section>
-	<section id="localhowtos"><title>How-To Tips for Specific User Communities</title>
-		<section id="savinglogs"><title>Saving Logs - for UChicago CI Users</title>
-			<para>
-If you have a UChicago Computation Institute account, run this command in your
-submit directory after each run. It will copy all your logs and kickstart
-records into a directory at the CI for reporting, usage tracking, support and debugging.
-			</para>
-			<para>
-<screen>
-rsync --ignore-existing *.log *.d login.ci.uchicago.edu:/disks/ci-gpfs/swift/swift-logs/ --verbose
-</screen>
-			</para>
-		</section>
-		<section><title>Specifying TeraGrid allocations</title>
-<para>TeraGrid users with no default project or with several project
-allocations can specify a project allocation using a profile key in
-the site catalog entry for a TeraGrid site:
-<screen>
-<profile namespace="globus" key="project">TG-CCR080002N</profile>
-</screen>
-</para>
-
-<para>
-More information on the TeraGrid allocations process can
-be found <ulink url="http://www.teragrid.org/userinfo/access/allocations.php">here</ulink>.
-</para>
-
-		</section>
-		<section id="tips.mpi"><title>Launching MPI jobs from Swift</title>
-<para>
-Here is an example of running a simple MPI program.
-</para>
-<para>
-In SwiftScript, we make an invocation that does not look any different
-from any other invocation. In the below code, we do not have any input
-files, and have two output files on stdout and stderr:
-<programlisting>
-type file;
-
-(file o, file e) p() {
-    app {
-        mpi stdout=@filename(o) stderr=@filename(e);
-    }
-}
-
-file mpiout <"mpi.out">;
-file mpierr <"mpi.err">;
-
-(mpiout, mpierr) = p();
-</programlisting>
-</para>
-<para>
-Now we define how 'mpi' will run in tc.data:
-<screen>
-tguc    mpi             /home/benc/mpi/mpi.sh   INSTALLED       INTEL32::LINUX GLOBUS::host_xcount=3
-</screen>
-</para>
-<para>
-mpi.sh is a wrapper script that launches the MPI program. It must be installed
-on the remote site:
-<screen>
-#!/bin/bash
-mpirun -np 3 -machinefile $PBS_NODEFILE /home/benc/mpi/a.out
-</screen>
-</para>
-<para>
-Because of the way that Swift runs its server side code, provider-specific
-MPI modes (such as GRAM jobType=mpi) should not be used. Instead, the
-mpirun command should be explicitly invoked.
-</para>
-		</section>
-		<section id="tips.windows"><title>Running on Windows</title>
-			<para>
-
-				Since 10/11/09, the development version of Swift has the
-ability to run on a Windows machine, as well as the ability to submit
-jobs to a Windows site (provided that an appropriate provider is used).
-
-			</para>
-			<para>
-
-In order to launch Swift on Windows, use the provided batch file
-(swift.bat). In certain cases, when a large number of jar libraries are
-present in the Swift lib directory and depending on the exact location
-of the Swift installation, the classpath environment variable that the
-Swift batch launcher tries to create may be larger than what Windows can
-handle. In such a case, either install Swift in a directory closer to
-the root of the disk (say, c:\swift) or remove non-essential jar files
-from the Swift lib directory.
-
-			</para>
-
-			<para>
-
-Due to the large differences between Windows and Unix environments,
-Swift must use environment specific tools to achieve some of its goals.
-In particular, each Swift executable is launched using a wrapper script.
-This script is a Bourne Shell script. On Windows machines, which have no
-Bourne Shell interpreter installed by default, the Windows Scripting
-Host is used instead, and the wrapper script is written in VBScript.
-Similarly, when cleaning up after a run, the "/bin/rm" command available
-in typical Unix environments must be replaced by the "del" shell command.
-
-			</para>
-
-			<para>
-
-It is important to note that in order to select the proper set of tools
-to use, Swift must know when a site runs under Windows. To inform Swift
-of this, specify the "sysinfo" attribute for the "pool" element in the
-site catalog. For example:
-
-<programlisting>
-	<pool handle="localhost" sysinfo="INTEL32::WINDOWS">
-	...
-	</pool>
-</programlisting>
-
-			</para>
-		</section>
-	</section>
-
-  <section id="cdm">
-    <title>Collective Data Management</title>
-
-    <programlisting>
-
-CDM Features
-
-Overview:
-
-   1. The user specifies a CDM policy in a file, customarily fs.data.
-   2. fs.data is given to Swift on the command line.
-   3. The Swift data module (org.globus.swift.data) is informed of the CDM policy.
-   4. At job launch time, the VDL Karajan code queries the CDM policy,
-         1. altering the file staging phase, and
-         2. sending fs.data to the compute site.
-   5. At job run time, the Swift wrapper script
-         1. consults a Perl script to obtain policy, and
-         2. uses wrapper extensions to modify data movement.
-   6. Similarly, stage out can be changed.
-
-
-Command line:
-
-    * swift -sites.file sites.xml -tc.file tc.data -cdm.file fs.data stream.swift
-
-
-CDM policy file format:
-
-Example:
-
-# Describe CDM for my job
-property GATHER_LIMIT 1
-rule .*input.txt DIRECT /gpfs/homes/wozniak/data
-rule .*xfile*.data BROADCAST /dev/shm
-rule .* DEFAULT
-
-The lines contain:
-
-   1. A directive, either rule or property
-   2. A rule has:
-         1. A regular expression
-         2. A policy token
-         3. Additional policy-specific arguments
-   3. A property has
-         1. A policy property token
-         2. The token value
-   4. Comments with # .
-   5. Blank lines are ignored.
-
-
-Notes:
-
-   1. The policy file is used as a lookup database by Swift and Perl methods.
-   2. For example, a lookup with the database above given the argument input.txt would result in the Direct policy.
-   3. If the lookup does not succeed, the result is DEFAULT.
-   4. Policies are listed as subclasses of org.globus.swift.data.policy.Policy .
-
-
-Policy Descriptions:
-
-Default:
-
-    * Just use file staging as provided by Swift/CoG.  Identical to behavior if no CDM file is given.
-
-
-Broadcast:
-
-        rule .*xfile*.data BROADCAST /dev/shm
-
-    * The input files matching the pattern will be stored in the given directory, an LFS location, with links in the job directory.
-    * On the BG/P, this will make use of the f2cn tool.
-    * On machines not implementing an efficient broadcast, we will just ensure correctness.  For example, on a workstation, the location could be in a /tmp RAM FS.
-
-
-Direct:
-
-        rule .*input.txt DIRECT /gpfs/scratch/wozniak/
-
-    * Allows for direct I/O to the parallel FS without staging.
-    * The input files matching the pattern must already exist in the given directory, a GFS location.  Links will be placed in the job directory.
-    * The output files matching the pattern will be stored in the given directory, with links in the job directory.
-    * Example: In the rule above, the Swift-generated file name ./data/input.txt would be accessed by the user job in /gpfs/homes/wozniak/data/input.txt .
-
-
-Local:
-
-        rule .*input.txt LOCAL dd /gpfs/homes/wozniak/data obs=64K
-
-    * Allows for client-directed input copy to the compute node.
-    * The user may specify cp or dd as the input transfer program.
-
-    * The input files matching the pattern must already exist in the given directory, a GFS location.  Copies will be placed in the job directory.
-    * Argument list: [tool] [GFS directory] [tool arguments]*
-
-
-Gather:
-
-    property GATHER_LIMIT 500000000 # 500 MB
-    property GATHER_DIR /dev/shm/gather
-    property GATHER_TARGET /gpfs/wozniak/data/gather_target
-    rule .*.output.txt GATHER
-
-    * The output files matching the pattern will be present to tasks in the job directory as usual but noted in a _swiftwrap shell array GATHER_OUTPUT.
-    * The GATHER_OUTPUT files will be cached in the GATHER_DIR, an LFS location.
-    * The cache will be flushed when a job ends if a du on GATHER_DIR exceeds GATHER_LIMIT.
-    * As the cache fills or on stage out, the files will be bundled into randomly named tarballs in GATHER_TARGET, a GFS location.
-    * If the compute node is an SMP, GATHER_DIR is a shared resource.  It is protected by the link file GATHER_DIR/.cdm.lock .
-    * Unpacking the tarballs in GATHER_TARGET will produce the user-specified filenames.
-
-    Summary:
-
-   1. Files created by application
-   2. Acquire lock
-   3. Move files to cache
-   4. Check cache size
-   5. If limit exceeded, move all cache files to outbox
-   6. Release lock
-   7. If limit was exceeded, stream outbox as tarball to target
-
-
-    Notes:
-
-    * Gather required quite a bit of shell functionality to manage the lock, etc. This is placed in cdm_lib.sh .
-    * vdl_int.k needed an additional task submission (cdm_cleanup.sh) to perform the final flush at workflow completion time .  This task also uses cdm_lib.sh .
-
-
-VDL/Karajan processing:
-
-   1. CDM functions are available in Karajan via the cdm namespace.
-   2. These functions are defined in org.globus.swift.data.Query .
-   3. If CDM is enabled, VDL skips file staging for files unless the policy is DEFAULT.
-
-
-Swift wrapper CDM routines:
-
-   1. The cdm.pl script is shipped to the compute node if CDM is enabled.
-   2. When linking in inputs, CDM is consulted by _swiftwrap:cdm_lookup().
-   3. The cdm_action() shell function handles CDM methods, typically just producing a link.
-
-
-Test case:
-
-(See About.txt for more information.)
-
-   1. Simple test cases are in:
-      https://svn.mcs.anl.gov/repos/wozniak/collab/cdm/scripts/cdm-direct and
-      https://svn.mcs.anl.gov/repos/wozniak/collab/cdm/scripts/all-pairs
-   2. Do a:
-      mkdir cdm
-      cd cdm
-      svn co https://svn.mcs.anl.gov/repos/wozniak/collab/cdm/scripts
-   3. In cdm-direct, run:
-      source ./setup.sh local local local
-   4. Run workflow:
-      swift -sites.file sites.xml -tc.file tc.data -cdm.file fs.data stream.swift
-   5. Note that staging is skipped for input.txt
-      policy: file://localhost/input.txt : DIRECT
-      FILE_STAGE_IN_START file=input.txt ...
-      FILE_STAGE_IN_SKIP file=input.txt policy=DIRECT
-      FILE_STAGE_IN_END file=input.txt ...
-   6. In the wrapper output, the input file is handled by CDM functionality:
-      Progress  2010-01-21 13:50:32.466572727-0600  LINK_INPUTS
-      CDM_POLICY: DIRECT /homes/wozniak/cdm/scripts/cdm-direct
-      CDM: jobs/t/cp_sh-tkul4nmj input.txt DIRECT /homes/wozniak/cdm/scripts/cdm-direct
-      CDM[DIRECT]: Linking jobs/t/cp_sh-tkul4nmj/input.txt to /homes/wozniak/cdm/scripts/cdm-direct/input.txt
-      Progress  2010-01-21 13:50:32.486016708-0600  EXECUTE
-   7. all-pairs is quite similar but uses more policies.
-
-
-PTMap case:
-
-   1. Start with vanilla PTMap:
-      cd cdm
-      mkdir apps
-      cd apps
-      https://svn.mcs.anl.gov/repos/wozniak/collab/cdm/apps/ptmap
-   2. Source setup.sh
-   3. Use start.sh, which
-         1. applies CDM policy from fs.local.data
-
-
-CDM site-aware policy file format:
-
-Example:
-
-# Describe CDM for my job
-# Use DIRECT and BROADCAST if on cluster1, else use DEFAULT behavior
-property GATHER_LIMIT 1
-rule cluster1 .*input.txt DIRECT /gpfs/homes/wozniak/data
-rule cluster1 .*xfile*.data BROADCAST /dev/shm
-rule ANYWHERE .* DEFAULT
-
-The lines contain:
-
-   1. A directive, either rule or property
-   2. A rule has:
-         1. A regular expression for site matchin
-         2. A regular expression for filename matching
-         3. A policy token
-         4. Additional policy-specific arguments
-   3. A property has
-         1. A policy property token
-         2. The token value
-   4. Comments with # .
-   5. Blank lines are ignored.
-
-    </programlisting>
-
-  </section>
-</article>
-




More information about the Swift-commit mailing list