[dna-commits] DNA SVN: r1574 - in trunk/docs: reference/src/main/docbook/en-US and 6 other directories.

dna-commits at lists.jboss.org dna-commits at lists.jboss.org
Sat Jan 9 16:31:34 EST 2010


Author: rhauch
Date: 2010-01-09 16:31:34 -0500 (Sat, 09 Jan 2010)
New Revision: 1574

Added:
   trunk/docs/reference/src/main/docbook/en-US/content/jcr/query_and_search.xml
   trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors.png
Removed:
   trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors-0.2.png
Modified:
   trunk/docs/gettingstarted/src/main/docbook/en-US/content/sequencer_example.xml
   trunk/docs/gettingstarted/src/main/docbook/en-US/content/using_dna.xml
   trunk/docs/reference/src/main/docbook/en-US/content/core/connector.xml
   trunk/docs/reference/src/main/docbook/en-US/content/core/sequencing.xml
   trunk/docs/reference/src/main/docbook/en-US/content/developers/testing.xml
   trunk/docs/reference/src/main/docbook/en-US/content/developers/tools.xml
   trunk/docs/reference/src/main/docbook/en-US/content/introduction.xml
   trunk/docs/reference/src/main/docbook/en-US/content/jcr/configuration.xml
   trunk/docs/reference/src/main/docbook/en-US/content/jcr/rest_service.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/compact_node_types.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/ddl.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/image.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_class.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_source.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/microsoft_office.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/mp3.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/text.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/xml.xml
   trunk/docs/reference/src/main/docbook/en-US/content/sequencers/zip.xml
   trunk/docs/reference/src/main/docbook/en-US/custom.dtd
   trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors-future.png
   trunk/docs/reference/src/main/docbook/en-US/master.xml
Log:
DNA-621 More improvements to the Getting Started and Reference Guide. The query language section is incomplete, but that will be finished very soon.

Modified: trunk/docs/gettingstarted/src/main/docbook/en-US/content/sequencer_example.xml
===================================================================
--- trunk/docs/gettingstarted/src/main/docbook/en-US/content/sequencer_example.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/gettingstarted/src/main/docbook/en-US/content/sequencer_example.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -191,8 +191,7 @@
 		<para>The <code>main(String[] argv)</code> method is of course the method that is executed when the application is run.  This code
 		  creates the JBoss DNA configuration using the programmatic style.
 		</para>
-		<programlisting role="JAVA"><![CDATA[
-// Create the configuration. 
+		<programlisting role="JAVA"><![CDATA[// Create the configuration. 
 String repositoryId = "content";
 String workspaceName = "default";
 JcrConfiguration config = new JcrConfiguration();

Modified: trunk/docs/gettingstarted/src/main/docbook/en-US/content/using_dna.xml
===================================================================
--- trunk/docs/gettingstarted/src/main/docbook/en-US/content/using_dna.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/gettingstarted/src/main/docbook/en-US/content/using_dna.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -440,8 +440,123 @@
 				JAAS also needs to be configured, and this can be done using the application server's configuration or in your
 				web application if you're using a simple servlet container. For more details, see the &ReferenceGuide;.
 			</para>
+			<note>
+				<para>
+					The JBoss DNA community has solicited input on how we can make it easier to consume and use JBoss DNA in applications
+					that do not use Maven. Check out the <ulink url="http://community.jboss.org/thread/146589">discussion thread</ulink>,
+					and please add any suggestions or opinions!
+				</para>
+			</note>
+			<para>
+				Then, your web application needs to reference the <code>Resource</code> and state its requirements in its 
+				<code>web.xml</code>:
+			</para>
+<programlisting role="XML"><![CDATA[<resource-env-ref>
+   <description>Repository</description>
+   <resource-env-ref-name>jcr/local</resource-env-ref-name>
+   <resource-env-ref-type>javax.jcr.Repository</resource-env-ref-type>
+</resource-env-ref>]]></programlisting>
+			<para>
+				Note that the value of <code>resource-env-ref-name</code> matches the value of the name attribute on the 
+				<code>&lt;Resource></code> tag in the <code>context.xml</code> described above.  This is a must.
+			</para>
+			<para>
+				At this point, your web application can perform the lookup of the &Repository; object, create and use a &Session;,
+				and then close the &Session;.  Here's an example of a JSP page that does this:
+			</para>
+<programlisting role="JAVA"><![CDATA[
+<%@ page import="
+	javax.naming.*,
+	javax.jcr.*,
+	org.jboss.security.config.IDTrustConfiguration
+	" %>
+<%!
+
+static {
+	// Initialize IDTrust
+	String configFile = "security/jaas.conf.xml";
+	IDTrustConfiguration idtrustConfig = new IDTrustConfiguration();
+	try {
+	    idtrustConfig.config(configFile);
+	} catch (Exception ex) {
+	    throw new IllegalStateException(ex);
+	}
+}
+%>
+<%
+Session sess = null;
+try {
+	InitialContext initCtx = new InitialContext();
+	Context envCtx = (Context) initCtx.lookup("java:comp/env");
+	Repository repo = (Repository) envCtx.lookup("jcr/local");
+	sess = repo.login(new SimpleCredentials("readwrite", "readwrite".toCharArray()));
+
+	// Do something interesting with the Session ...
+	out.println(sess.getRootNode().getPrimaryNodeType().getName());
+} catch (Exception ex) {
+	ex.printStackTrace();
+} finally {
+	if (sess != null) sess.logout();
+}
+%>
+]]></programlisting>			
+			<para>
+				Since this uses a servlet container, there is no JAAS implementation configured, so note the 
+				loading of IDTrust to create the JAAS realm.  (To make this work in Tomcat, the security
+				folder that contains the <code>jaas.conf.xml</code>, <code>users.properties</code>, and
+				<code>roles.properties</code> needs to be moved into the <code>%CATALINA_HOME%</code> directory.
+				Moving the security folder into the <code>conf</code> directory did not allow those files
+				to be visible by the JSP page.)
+			</para>
+			<note>
+				<para>
+				If you use an application server such as <ulink url="http://www.jboss.com/products/platforms/application/">JBoss EAP</ulink>,
+				you could just configure the JAAS realm as part of the server configuration and be done with it.
+			  </para>
+			</note>
 		</sect2>
 	</sect1>
+	<sect1 id="using_dna_via_maven">
+		<title>Using JBoss DNA via Maven</title>
+		<para>
+			JBoss DNA is a Maven-based project. If your application is using Maven, it is very easy to add a dependency on 
+			JBoss DNA's JCR library (plus any extensions), and Maven will ensure your application has access to all 
+			of the JBoss DNA artifacts and all 3rd-party libraries upon which DNA depends. 
+			Simply add a dependency in your application's POM:
+		</para>
+<programlisting role="XML"><![CDATA[<dependency>
+  <groupId>org.jboss.dna</groupId>
+  <artifactId>dna-jcr</artifactId>
+  <version>0.7</version>
+</dependency>
+]]></programlisting>
+			<para>
+				plus dependencies for each optional extension (sequencers, connectors, MIME type detectors, etc.):
+			</para>
+<programlisting role="XML"><![CDATA[<dependency>
+  <groupId>org.jboss.dna</groupId>
+  <artifactId>dna-connector-store-jpa</artifactId>
+  <version>0.7</version>
+</dependency>
+...
+<dependency>
+  <groupId>org.jboss.dna</groupId>
+  <artifactId>dna-sequencer-java</artifactId>
+  <version>0.7</version>
+</dependency>
+]]></programlisting>
+		<para>
+			Then, continue by defining a &JcrConfiguration; and building the engine, as discussed <link linkend="jcr-engine">earlier</link>.
+			This is very straightforward, and this is exactly what the <link linkend="downloading_and_running">JBoss DNA examples</link> do.
+		</para>
+		<note>
+			<para>
+				The JBoss DNA community has solicited input on how we can make it easier to consume and use JBoss DNA in applications
+				that do not use Maven. Check out the <ulink url="http://community.jboss.org/thread/146589">discussion thread</ulink>,
+				and please add any suggestions or opinions!
+			</para>
+		</note>
+	</sect1>
 	<sect1 id="using_dna_whats_next">
 		<title>What's next</title>
 		<para>

Modified: trunk/docs/reference/src/main/docbook/en-US/content/core/connector.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/core/connector.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/core/connector.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -64,22 +64,47 @@
 				<title>JBoss DNA's JCR implementation delegates to a connector</title>
 				<graphic align="center" scale="100" fileref="dnajcr-and-connector.png"/>
 			</figure>
-			That single connector could use an in-memory repository, a JBoss Cache instance (including those that are clustered and replicated), 
-			or a federated repository where content from multiple sources is unified.
-			<figure id="dna-connectors-0.2">
-				<title>JBoss DNA can put JCR on top of multiple kinds of systems</title>
-				<graphic align="center" scale="100" fileref="dna-connectors-0.2.png"/>
-			</figure>
+				That single repository connector could access:
+		</para>
+ 		<itemizedlist>
+			<listitem>
+				<para>a transient, in-memory repository</para>
+			</listitem>
+			<listitem>
+				<para>an Infinispan data grid that acts as an extremely scalable, highly-available store for repository content</para>
+			</listitem>
+			<listitem>
+				<para>a JBoss Cache instance that acts as a clustered and replicated store for repository content</para>
+			</listitem>
+			<listitem>
+				<para>a JDBC database used as a store for repository content</para>
+			</listitem>
+			<listitem>
+				<para>a repository that accesses existing JDBC databases to project the schema structure as read-only repository content</para>
+			</listitem>
+			<listitem>
+				<para>a repository that accesses a file systems to present the files and directory structure as (updatable) repository content</para>
+			</listitem>
+			<listitem>
+				<para>a repository that accesses an SVN repository to present the files and directory structure as (updatable) repository content</para>
+			</listitem>
+			<listitem>
+				<para>a federated repository that presents a unified, updatable view of the content in multiple other systems (which are accessed via connectors)</para>
+			</listitem>
+		</itemizedlist>
+		<figure id="dna-connectors">
+			<title>JBoss DNA can put JCR on top of multiple kinds of systems</title>
+			<graphic align="center" scale="100" fileref="dna-connectors.png"/>
+		</figure>
+		<para>
 			Really, the federated connector gives us all kinds of	possibilities, since we can use that connector on top of lots of connectors 
 			to other individual sources.  This simple connector architecture is fundamentally what makes JBoss DNA so powerful and flexible.
 			Along with a good library of connectors, which is what we're planning to create.
 		</para>
 		<para>
-			For instance, we want to build a connector to <ulink url="&JIRA-39;">other JCR repositories</ulink>, and another that accesses
-			the <ulink url="&JIRA-34;">local file system</ulink>.  We've already started on a <ulink url="&JIRA-36;">Subversion connector</ulink>, 
-			which will allow JCR to access the files in a SVN repository (and perhaps push changes into SVN through a commit).  
-			And of course we want to create a connector that accesses <ulink url="&JIRA-199;">data</ulink>
-			and <ulink url="&JIRA-37;">metadata</ulink> from relational databases.  For more information, check out our
+			For instance, we want to build a connector to <ulink url="&JIRA;-39">other JCR repositories</ulink>, and
+			another to access <ulink url="&JIRA;-199">existing databases</ulink> so that some or all of the existing data (in whatever structure)
+	    can be accessed through JCR.  For more information, check out our
 			<ulink url="&JIRA;?report=com.atlassian.jira.plugin.system.project:roadmap-panel">roadmap</ulink>.
 			Of course, if we don't have a connector to suit your needs, you can <link linkend="custom-connectors">write your own</link>.
 			<figure id="dna-connectors-future">
@@ -248,7 +273,7 @@
 <dependency>
   <groupId>org.jboss.dna</groupId>
   <artifactId>dna-graph</artifactId>
-  <version>0.6</version>
+  <version>0.7</version>
 </dependency>
 	 ]]></programlisting>
 			<para>
@@ -264,14 +289,14 @@
 <dependency>
   <groupId>org.jboss.dna</groupId>
   <artifactId>dna-graph</artifactId>
-  <version>0.6</version>
+  <version>0.7</version>
   <type>test-jar</type>
   <scope>test</scope>
 </dependency>
 <dependency>
   <groupId>org.jboss.dna</groupId>
   <artifactId>dna-common</artifactId>
-  <version>0.6</version>
+  <version>0.7</version>
   <type>test-jar</type>
   <scope>test</scope>
 </dependency>

Modified: trunk/docs/reference/src/main/docbook/en-US/content/core/sequencing.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/core/sequencing.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/core/sequencing.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -314,7 +314,7 @@
 <dependency>
   <groupId>org.jboss.dna</groupId>
   <artifactId>dna-graph</artifactId>
-  <version>0.6</version>
+  <version>0.7</version>
 </dependency>
 	 ]]></programlisting>
 			<para>These are minimum dependencies required for compiling a sequencer.  Of course, you'll have to add
@@ -325,14 +325,14 @@
 <dependency>
   <groupId>org.jboss.dna</groupId>
   <artifactId>dna-graph</artifactId>
-  <version>0.6</version>
+  <version>0.7</version>
   <type>test-jar</type>
   <scope>test</scope>
 </dependency>
 <dependency>
   <groupId>org.jboss.dna</groupId>
   <artifactId>dna-common</artifactId>
-  <version>0.6</version>
+  <version>0.7</version>
   <type>test-jar</type>
   <scope>test</scope>
 </dependency>
@@ -370,7 +370,7 @@
 <dependency>
   <groupId>org.jboss.dna</groupId>
   <artifactId>dna-jcr</artifactId>
-  <version>0.6</version>
+  <version>0.7</version>
   <scope>test</scope>
 </dependency>
 <!-- Java Content Repository API -->

Modified: trunk/docs/reference/src/main/docbook/en-US/content/developers/testing.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/developers/testing.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/developers/testing.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -138,15 +138,18 @@
 			behavior.
 	  </para>
 	  <para>
-		  JBoss DNA has not yet passed enough of the TCK tests to publish the results.  We still have to implement
-		  queries, which is a required feature of Level 1 repositories.  However, suffice to say that JBoss DNA has passed
-		  many of the individual tests that make up the Level 1 and Level 2 tests, and it is a major objective of the next
-		  release to pass the remaining Level 1 and Level 2 tests (along with some other optional features).
-    </para>
+		  JBoss DNA has implemented all of the JCR Level 1 and Level 2 features, along with the optional locking and observation
+		  features. The only optional feature not implemented is versioning, and that will be coming soon.
+		</para>
 		<para>
-			JBoss DNA also frequently runs the JCR unit tests from the Apache Jackrabbit project.  (Those these tests are not
+			The JBoss DNA project also frequently runs the JCR TCK unit tests from the reference implementation.  (Those these tests are not
 			the official TCK, they apparently are used within the official TCK.)  These unit tests are set up in the
 			<code>dna-jcr-tck</code> project.
 		</para>
+		<para>
+		  The 0.7 release passes 96% of the JCR TCK tests, and all of the failures are because of a handful of known issues.
+		  Fortunately, most of these are either less-frequently-used features of JCR or issues that can be worked around.
+		  The JBoss DNA project plans to focus on resolving all the remaining JCR TCK failures, and will publish the results.
+		</para>
   </sect1>
 </chapter>

Modified: trunk/docs/reference/src/main/docbook/en-US/content/developers/tools.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/developers/tools.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/developers/tools.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -38,8 +38,65 @@
 		and compile preferences to ensure no warnings or errors.
   </para>
 	<para>
-		The rest of this chapter talks in more detail about these different tools and how to set them up.
+		The rest of this chapter talks in more detail about these different tools and how to set them up. But first, we briefly describe
+		our approach to development.
 	</para>
+  <sect1 id="methodology">
+    <title>Development methodology</title>
+    <para>
+			Rather than use a single formal development methodology, the JBoss DNA project incorporates those techniques, activities, and 
+			processes that are practical and work for the project. In fact, the committers are given a lot of freedom for how they develop 
+			the components and features they work on.
+		</para>
+		<para>
+			Nevertheless, we do encourage familiarity with several major techniques, including:
+			<itemizedlist>
+				<listitem>
+					<para>
+						<emphasis role="strong"><ulink url="&Wikipedia;Agile_software_development">Agile software development</ulink></emphasis>
+					  includes those software methodologies (e.g., Scrum) that promote development iterations and open collaboration.  While the
+						JBoss DNA project doesn't follow these closely, we do emphasize the importance of always having running software
+						and using running software as a measure of progress.  The JBoss DNA project also wants to move to more frequent
+						releases (on the order of 4-6 weeks)
+					</para>
+				</listitem>
+				<listitem>
+					<para>
+						<emphasis role="strong"><ulink url="&Wikipedia;Test-driven_development">Test-driven development (TDD)</ulink></emphasis>
+						techniques encourage first writing test cases for new features and functionality, then changing the code to add the
+						new features and functionality, and finally the code is refactored to clean-up and address any duplication or inconsistencies.
+					</para>
+				</listitem>
+				<listitem>
+					<para>
+						<emphasis role="strong"><ulink url="http://behaviour-driven.org/">Behavior-driven development (BDD)</ulink></emphasis>
+						is an evolution of TDD, where developers specify the desired behaviors first (rather than writing "tests").
+						In reality, this BDD adopts the language of the user so that tests are written using words that are meaningful
+						to users.  With recent test frameworks (like JUnit 4.4), we're able to write our unit tests to express
+						the desired behavior.  For example, a test class for sequencer implementation might have a test method
+						<code>shouldNotThrowAnErrorWhenStreamIsNull()</code>, which is very easy to understand the intent.
+						The result appears to be a larger number of finer-grained test methods, but which are more easily understood
+						and easier to write.  In fact, many advocates of BDD argue that one of the biggest challenges of TDD is knowing what
+						tests to write in the beginning, whereas with BDD the shift in focus and terminology make it easier for more
+						developers to enumerate the tests they need.
+					</para>
+				</listitem>
+				<listitem>
+					<para>
+						<emphasis role="strong"><ulink url="&Wikipedia;Lean_software_development">Lean software development</ulink></emphasis>
+						is an adaptation of <ulink url="&Wikipedia;Lean_manufacturing">lean manufacturing techniques</ulink>,
+						where emphasis is placed on eliminating waste (e.g., defects, unnecessary complexity, unnecessary code/functionality/features), 
+						delivering as fast as possible, deferring irrevocable decisions as much as possible,
+						continuous learning (continuously adapting and improving the process), empowering the team (or community, in our case),
+						and several other guidelines.  Lean software development can be thought of as an evolution of agile techniques
+						in the same way that behavior-driven development is an evolution of test-driven development.  Lean techniques
+						help the developer to recognize and understand how and why features, bugs, and even their processes impact the development
+						of software.
+					</para>
+				</listitem>
+			</itemizedlist>
+    </para>
+  </sect1>
 	<sect1 id="jdk">
 		<title>JDK</title>
 		<para>

Modified: trunk/docs/reference/src/main/docbook/en-US/content/introduction.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/introduction.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/introduction.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -221,62 +221,6 @@
 			the issues appropriately.
     </para>
   </sect1>
-  <sect1 id="methodology">
-    <title>Development methodology</title>
-    <para>
-			Rather than use a single formal development methodology, the JBoss DNA project incorporates those techniques, activities, and 
-			processes that are practical and work for the project. In fact, the committers are given a lot of freedom for how they develop 
-			the components and features they work on.
-		</para>
-		<para>
-			Nevertheless, we do encourage familiarity with several major techniques, including:
-			<itemizedlist>
-				<listitem>
-					<para>
-						<emphasis role="strong"><ulink url="&Wikipedia;Agile_software_development">Agile software development</ulink></emphasis>
-					  includes those software methodologies (e.g., Scrum) that promote development iterations and open collaboration.  While the
-						JBoss DNA project doesn't follow these closely, we do emphasize the importance of always having running software
-						and using running software as a measure of progress.  The JBoss DNA project also wants to move to more frequent
-						releases (on the order of 4-6 weeks)
-					</para>
-				</listitem>
-				<listitem>
-					<para>
-						<emphasis role="strong"><ulink url="&Wikipedia;Test-driven_development">Test-driven development (TDD)</ulink></emphasis>
-						techniques encourage first writing test cases for new features and functionality, then changing the code to add the
-						new features and functionality, and finally the code is refactored to clean-up and address any duplication or inconsistencies.
-					</para>
-				</listitem>
-				<listitem>
-					<para>
-						<emphasis role="strong"><ulink url="http://behaviour-driven.org/">Behavior-driven development (BDD)</ulink></emphasis>
-						is an evolution of TDD, where developers specify the desired behaviors first (rather than writing "tests").
-						In reality, this BDD adopts the language of the user so that tests are written using words that are meaningful
-						to users.  With recent test frameworks (like JUnit 4.4), we're able to write our unit tests to express
-						the desired behavior.  For example, a test class for sequencer implementation might have a test method
-						<code>shouldNotThrowAnErrorWhenStreamIsNull()</code>, which is very easy to understand the intent.
-						The result appears to be a larger number of finer-grained test methods, but which are more easily understood
-						and easier to write.  In fact, many advocates of BDD argue that one of the biggest challenges of TDD is knowing what
-						tests to write in the beginning, whereas with BDD the shift in focus and terminology make it easier for more
-						developers to enumerate the tests they need.
-					</para>
-				</listitem>
-				<listitem>
-					<para>
-						<emphasis role="strong"><ulink url="&Wikipedia;Lean_software_development">Lean software development</ulink></emphasis>
-						is an adaptation of <ulink url="&Wikipedia;Lean_manufacturing">lean manufacturing techniques</ulink>,
-						where emphasis is placed on eliminating waste (e.g., defects, unnecessary complexity, unnecessary code/functionality/features), 
-						delivering as fast as possible, deferring irrevocable decisions as much as possible,
-						continuous learning (continuously adapting and improving the process), empowering the team (or community, in our case),
-						and several other guidelines.  Lean software development can be thought of as an evolution of agile techniques
-						in the same way that behavior-driven development is an evolution of test-driven development.  Lean techniques
-						help the developer to recognize and understand how and why features, bugs, and even their processes impact the development
-						of software.
-					</para>
-				</listitem>
-			</itemizedlist>
-    </para>
-  </sect1>
   <sect1 id="modules">
     <title>JBoss DNA modules</title>
     <para>
@@ -288,11 +232,9 @@
             contains JBoss DNA's implementation of the JCR API. If you're using JBoss DNA as a JCR repository, this is the
  						top-level dependency that you'll want to use.  The module defines all required dependencies, except for
  						the repository connector(s) and any sequencer implementations needed by your configuration.
-						As we'll see later on, using JBoss DNA as a JCR repository is easy: simply create a configuration, start the JCR engine,
-						get the JCR &Repository; object for your repository, and then use the JCR API.
-						This module also contains the Jackrabbit JCR API unit tests that verify the behavior of the JBoss DNA implementation.
-						As DNA does not fully implement the JCR 1.0.1 specification, there are a series of tests that are currently commented 
-            out in this module.  The <code>dna-jcr-tck</code> module contains all of these tests.
+						As we'll see later on, using JBoss DNA as a JCR repository is easy: simply create a <link linkend="configuration">configuration</link>, 
+						start JBoss DNA's <link linkend="jcr_engine">JCR engine</link>,	get the JCR &Repository; object for your repository, and then use the JCR API.
+						This module also uses the JCR unit tests from the reference implementation to verify the behavior of the JBoss DNA implementation.
           </para>
         </listitem>
         <listitem>
@@ -304,21 +246,21 @@
         </listitem>
         <listitem>
           <para>
+            <emphasis role="strong">dna-cnd</emphasis>
+            provides a self-contained utility for parsing CND (Compact Node Definition) files and transforming
+						the node definitions into a graph notation compatible with JBoss DNA's JCR implementation.
+          </para>
+        </listitem>        
+        <listitem>
+          <para>
             <emphasis role="strong">dna-graph</emphasis>
             defines the Application Programming Interface (API) for JBoss DNA's low-level graph model,
-						including a DSL-like API for working with graph content.  This module also defines the
+						including a fluent-style API for working with graph content.  This module also defines the
  						APIs necessary to implement custom connectors, sequencers, and MIME type detectors.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-cnd</emphasis>
-            provides a self-contained utility for parsing CND (Compact Node Definition) files and transforming
-						the node definitions into a graph notation compatible with JBoss DNA's JCR implementation.
-          </para>
-        </listitem>        
-        <listitem>
-          <para>
             <emphasis role="strong">dna-common</emphasis>
             is a small low-level library of common utilities and frameworks, including logging, progress monitoring,
             internationalization/localization, text translators, component management, and class loader factories.
@@ -329,14 +271,6 @@
       <itemizedlist>
         <listitem>
           <para>
-            <emphasis role="strong">dna-jcr-tck</emphasis>
-            provides a separate testing project that executes all Jackrabbit JCR TCK tests on a nightly basis to track implementation
-            progress against the JCR 1.0 specification.  This module will likely be retired when the <code>dna-jcr</code> implementation
-            is complete.
-          </para>
-        </listitem>
-        <listitem>
-          <para>
             <emphasis role="strong">dna-integration-tests</emphasis>
             provides a home for all of the integration tests that involve more components that just unit tests. Integration
             tests are often more complicated, take longer, and involve testing the integration and functionality of multiple
@@ -345,87 +279,87 @@
           </para>
         </listitem>
       </itemizedlist>
-      The following modules are optional extensions that may be used selectively and as needed (and are located in the source
-      under the
-      <code>extensions/</code>
-      directory):
+      The following modules are optional extensions that may be used selectively and as needed
+ 			(and are located in the source under the <code>extensions/</code> directory):
       <itemizedlist>
         <listitem>
           <para>
-            <emphasis role="strong">dna-classloader-maven</emphasis>
-            is a small library that provides a
-            <code>ClassLoaderFactory</code>
-            implementation that can create
-            <code>java.lang.ClassLoader</code>
-            instances capable of loading classes given a Maven Repository and a list of Maven coordinates. The Maven Repository
-            can be managed within a JCR repository.
+            <emphasis role="strong">dna-connector-infinispan</emphasis>
+            is the preferred DNA repository connector for persistently storing content.
+            <ulink url="http://infinispan.org">Infinispan</ulink> is an extremely scalable, highly available data grid platform
+ 						that distributes the data across the nodes in the grid.
+            This connector makes it possible for repository content to be stored in a very efficient, fast,
+            highly-concurrent (essentially lock- and synchronization-free), and reliable manner, 
+            even when the content size grows to massive sizes. This connector is capable of storing any kind of content, and
+						dictates how the content is stored on the data grid.  Therefore, this connector cannot be used to access the content
+						of existing data grids created by/for other applications.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-common-jdbc</emphasis>
-            contains several helpful utility classes for interacting with JDBC connections.
+            <emphasis role="strong">dna-connector-jbosscache</emphasis>
+            is a DNA repository connector that stores content within a
+            <ulink url="http://www.jboss.org/jbosscache/">JBoss Cache</ulink>
+            instance. JBoss Cache is a powerful cache implementation that can serve as a distributed cache and that can persist
+            information. The cache instance can be found via JNDI or created and managed by the connector.
+						This connector is capable of storing any kind of content, and dictates how the content is stored in the cache.
+						Therefore, this connector cannot be used to access the content
+						of existing cache instances created by/for other applications.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-connector-federation</emphasis>
-            is a DNA repository connector that federates, integrates and caches information from multiple sources (via other
-            repository connectors).
+            <emphasis role="strong">dna-connector-jdbc-metadata</emphasis>
+            is a DNA repository connector that provides read-only access to metadata and schema information from relational databases 
+						through a JDBC connection.  This connector provides an optional and configurable caching facility to prevent frequent
+						requests to the database.
           </para>
-        </listitem>
+        </listitem>        
         <listitem>
           <para>
-            <emphasis role="strong">dna-connector-filesystem</emphasis>
-            is a DNA repository connector that provides read-only access to file systems, allowing their structure and data to be 
-            viewed as repository content.
+            <emphasis role="strong">dna-connector-store-jpa</emphasis>
+            is a DNA repository connector that stores content in a JDBC database, using the Java Persistence API (JPA) and the
+						very highly-regarded and widely-used <ulink url="http://www.hibernate.org">Hibernate</ulink> implementation.
+						This connector is capable of storing any kind of content, and dictates the schema in which it stores the content.
+						Therefore, this connector cannot be used to access the data in existing created by/for other applications.
           </para>
         </listitem>
-        <!--listitem>
-          <para>
-            <emphasis role="strong">dna-connector-jdbc-metadata</emphasis>
-            is a prototype DNA repository connector that provides read-only access to metadata from relational databases through a JDBC 
-            connection.
-                        <emphasis>This is still under development.</emphasis>
-          </para>
-        </listitem-->        
         <listitem>
           <para>
-            <emphasis role="strong">dna-connector-jbosscache</emphasis>
-            is a DNA repository connector that manages content within a
-            <ulink url="http://www.jboss.org/jbosscache/">JBoss Cache</ulink>
-            instance. JBoss Cache is a powerful cache implementation that can serve as a distributed cache and that can persist
-            information. The cache instance can be found via JNDI or created and managed by the connector.
+            <emphasis role="strong">dna-connector-filesystem</emphasis>
+            is a DNA repository connector that accesses the files and folders on (a part of) the local file system, providing that
+  					content in the form of <code>nt:file</code> and <code>nt:folder</code> nodes. This connector <emphasis>does</emphasis>
+						support updating the file system when changes are made to the <code>nt:file</code> and <code>nt:folder</code> nodes.
+						However, this connector does not support storing other kinds of nodes.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-connector-infinispan</emphasis>
-            is a DNA repository connector that stores content in a deployed instance of <ulink url="http://infinispan.org">Infinispan</ulink>.
-            Infinispan is an extremely scalable, highly available data grid platform that distributes the data across the nodes 
-            in the grid.  This connector makes it possible for repository content to be stored in a very efficient, fast,
-            higly-concurrent (essentially lock- and synchronization-free) and reliable manner, 
-            even when the content size grows to massive sizes.
+            <emphasis role="strong">dna-connector-svn</emphasis>
+            is a DNA repository connector that accesses the content of an existing Subversion repository, providing that content in
+						the form of <code>nt:file</code> and <code>nt:folder</code> nodes. This connector <emphasis>does</emphasis>
+						support updating the SVN repository when changes are made to the <code>nt:file</code> and <code>nt:folder</code> nodes.
+						However, this connector does not support storing other kinds of nodes.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-connector-store-jpa</emphasis>
-            is a DNA sequencer that provides for persistent storage and access of DNA content in a relational database.  This connector
-            is based on JPA technology.
+            <emphasis role="strong">dna-sequencer-cnd</emphasis>
+            is a DNA sequencer that extracts JCR node definitions from JCR Compact Node Definition (CND) files.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-connector-svn</emphasis>
-            is a prototype DNA sequencer that obtains content from a Subversion repository, providing that content in
-						the form of <code>nt:file</code> and <code>nt:folder</code> nodes.
+            <emphasis role="strong">dna-sequencer-ddl</emphasis>
+            is a DNA sequencer that extracts the structure and content from DDL files.
+            <emphasis>This is still under development and includes support for the basic DDL statements in
+							in the Oracle, PostgreSQL, Derby, and standard DDL dialects.</emphasis>
           </para>
         </listitem>
         <listitem>
           <para>
             <emphasis role="strong">dna-sequencer-zip</emphasis>
-            is a DNA sequencer that extracts from ZIP archives the files (with content) and folders.
+            is a DNA sequencer that extracts the files (with content) and directories from ZIP archives.
           </para>
         </listitem>
         <listitem>
@@ -436,22 +370,23 @@
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-sequencer-images</emphasis>
-            is a DNA sequencer that extracts the image metadata (e.g., size, date, etc.) from PNG, JPEG, GIF, BMP, PCS, IFF,
-            RAS, PBM, PGM, and PPM image files.
+            <emphasis role="strong">dna-sequencer-classfile</emphasis>
+            is a DNA sequencer that extracts the package, class/type, member, documentation, annotations, and other information
+            from Java class files.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-sequencer-mp3</emphasis>
-            is a DNA sequencer that extracts metadata (e.g., author, album name, etc.) from MP3 audio files.
+            <emphasis role="strong">dna-sequencer-java</emphasis>
+            is a DNA sequencer that extracts the package, class/type, member, documentation, annotations, and other information
+            from Java source files.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-sequencer-java</emphasis>
-            is a DNA sequencer that extracts the package, class/type, member, documentation, annotations, and other information
-            from Java source files.
+            <emphasis role="strong">dna-sequencer-jbpm-jpdl</emphasis>
+            is a prototype DNA sequencer that extracts process definition metadata from jBPM process definition language (jPDL) files.
+						<emphasis>This is still under development.</emphasis>
           </para>
         </listitem>
         <listitem>
@@ -465,38 +400,47 @@
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-sequencer-cnd</emphasis>
-            is a DNA sequencer that extracts JCR node definitions from JCR Compact Node Definition (CND) files.
+            <emphasis role="strong">dna-sequencer-images</emphasis>
+            is a DNA sequencer that extracts the image metadata (e.g., size, date, etc.) from PNG, JPEG, GIF, BMP, PCS, IFF,
+            RAS, PBM, PGM, and PPM image files.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-sequencer-jbpm-jpdl</emphasis>
-            is a prototype DNA sequencer that extracts process definition metadata from jBPM process definition language (jPDL) files.
-						<emphasis>This is still under development.</emphasis>
+            <emphasis role="strong">dna-sequencer-mp3</emphasis>
+            is a DNA sequencer that extracts metadata (e.g., author, album name, etc.) from MP3 audio files.
           </para>
         </listitem>
         <listitem>
           <para>
-            <emphasis role="strong">dna-sequencer-java</emphasis>
-            is a DNA sequencer that extracts the structure (methods, fields) from Java source files.
+            <emphasis role="strong">dna-sequencer-text</emphasis>
+            is a DNA sequencer that extracts data from text streams. There are separate sequencers for character-delimited sequencing 
+						and fixed width sequencing, but both treat the incoming text stream as a series of rows separated by line-terminators
+						with each row consisting of one or more columns. 
           </para>
         </listitem>  
         <listitem>
           <para>
-            <emphasis role="strong">dna-sequencer-ddl</emphasis>
-            is a DNA sequencer that extracts the structure and content from DDL files.
-                <emphasis>This is still under development and only includes a limited number of dialects and basic DDL statements.</emphasis>
+            <emphasis role="strong">dna-search-lucene</emphasis> is an implementation of the &SearchEngine; interface that
+						uses the <ulink url="http://lucene.apache.org/java/">Lucene</ulink> library. This module is one of the few
+						extensions that is used directly by the <code>dna-jcr</code> module.
           </para>
-        </listitem>      
+        </listitem>
         <listitem>
           <para>
             <emphasis role="strong">dna-mimetype-detector-aperture</emphasis>
-            is a DNA MIME type detector that uses the
+            is a &MimeTypeDetector; implementation that uses the
             <ulink url="http://aperture.sourceforge.net/">Aperture</ulink>
-            library to determine the best MIME type from the filename and file contents.
+            library to determine the best MIME type given the name and contents of a file.
           </para>
         </listitem>
+        <listitem>
+          <para>
+            <emphasis role="strong">dna-classloader-maven</emphasis> is a small library that provides a
+            &ClassLoaderFactory; implementation that can create &ClassLoader; instances capable of loading classes given 
+						a Maven Repository and a list of Maven coordinates. The Maven Repository can be managed within a JCR repository.
+          </para>
+        </listitem>
       </itemizedlist>
       The following modules make up the various web application projects (and are located in the source
       under the
@@ -522,7 +466,7 @@
         <listitem>
           <para>
             <emphasis role="strong">dna-web-jcr-rest-client</emphasis>
-            is an API that uses POJOs to access the REST web service. This API eliminates the need for applications to know how
+            is a library that uses POJOs to access the REST web service. This module eliminates the need for applications to know how
             to create HTTP request URLs and payloads, and how to parse the JSON responses. It can be used to publish (upload) 
             and unpublish (delete) files from DNA repositories. 
           </para>
@@ -555,21 +499,80 @@
           </para>
         </listitem>
       </itemizedlist>
-      Finally, there is a module that represents the whole JBoss DNA project:
+      Another module provides some utility functionality:
       <itemizedlist>
         <listitem>
           <para>
-            <emphasis role="strong">dna</emphasis>
-            is the parent project that aggregates all of the other projects and that contains some asset files to create the
-            necessary Maven artifacts during a build.
+            <emphasis role="strong">dna-jpa-ddl-gen</emphasis> provides a standalone utility that can generate the DDL
+						for the database schema used by the JPA connector. Because it uses Hibernate, it can generate DDL for any
+						of the databases that the connector can use.
           </para>
         </listitem>
       </itemizedlist>
+      There is another module that runs the full suite of JCR TCK tests, and which at the moment still contains some failures.
+      <itemizedlist>
+        <listitem>
+          <para>
+            <emphasis role="strong">dna-jcr-tck</emphasis> provides a separate testing project that executes all reference implementation's
+ 						JCR TCK tests on a nightly basis to track implementation progress against the JCR 1.0 specification. 
+						This module will likely be retired when the JBoss DNA JCR implementation is complete, since <code>dna-jcr</code> and
+						<code>dna-integration-tests</code> will be running the full suite of JCR TCK unit tests.
+          </para>
+        </listitem>
+      </itemizedlist>
+      Finally, there is a Maven parent <code>pom.xml</code> file that aggregates all of the other projects, provides common
+      defaults for Maven plugins and dependency versions used throughout the modules, and definition of various asset files
+      to help build the necessary Maven artifacts during a build.
+    </para>
+  	<para>
       Each of these modules is a Maven project with a group ID of
       <code>org.jboss.dna</code>
       . All of these projects correspond to artifacts in the
       <ulink url="&JBossMaven;">JBoss Maven 2 Repository</ulink>
       .
     </para>
+	</sect1>
+  <sect1 id="whats_new">
+    <title>What's new?</title>
+	  <para>
+			With version 0.7, JBoss DNA introduces support for JCR <link linkend="jcr-query-and-search">query and search</link> 
+			with a number of query languages, including the <link linkend="jcr-xpath-query-language">JCR XPath language</link> 
+			(required by the 1.0 specification), the <link linkend="jcr-sql2-query-language">JCR-SQL2 dialect</link>
+			defined by the JCR 2.0 specification, and a <link linkend="fulltext-search-query-language">full-text search language</link>.  
+			This release also adds support for JCR locking and observation.
+		</para>
+		<para>This means that <emphasis role="strong">JBoss DNA now implements all of the JCR Level 1 and Level 2 features, 
+			along with the optional locking and observation features</emphasis>. 
+			The only optional feature not implemented is versioning, and that will be coming soon.
+		  This version passes more than 95% of the JCR TCK tests, and all of the failures are because of a handful of known issues.
+		  Fortunately, most of these are either less-frequently-used features of JCR or issues that can be worked around.
+		</para>
+		<para>
+			This release also introduces a number of new and improved connectors.  Both the <link linkend="file-system-connector">file system connector</link>
+			and <link linkend="subversion-connector">SVN connector</link> were reworked to support reads and updates, and they 
+			both offer a preview of an optional caching system.  The <link linkend="jdbc-storage-connector">JPA storage connector</link>
+			was dramatically improved and is significantly faster, more capable, and more efficient.
+			The new <link linkend="jdbc-metadata-connector">JDBC metadata connector</link> is a technology preview of a connector
+			that provides read-only access to the schema information of relational databases through JDBC.
+		</para>
+		<para>
+			JBoss DNA 0.7 includes a number of new and improved sequencers. The new <link linkend="text-sequencer">text sequencer</link>
+			is able to extract structured data from comma-separated or fixed-width text files. The new <link linkend="ddl-file-sequencer">DDL sequencer</link>
+			is capable of parsing a number of DDL dialects to extract the more important DDL statements. The <link linkend="cnd-sequencer">CND sequencer</link>
+			was rewritten and dramatically simplified to perform better, fix a number of known issues, and eliminate a dependency on a third-party library.
+			There is also a new <link linkend="java-class-sequencer">Java class file sequencer</link> that operates on Java class
+			files and produces output that is very similar to the <link linkend="java-source-sequencer">Java source file sequencer</link>,
+			and that can be used in conjunction with the <link linkend="zip-file-sequencer">ZIP file sequencer</link> to extract the Java metadata
+			from JARs, WARs, and EAR files.
+		</para>
+		<para>
+		  This release also brings numerous bug fixes and improvements, and upgrades all third-party dependencies to the latest
+		  versions available at the time of release. The build system now supports 
+			<ulink url="http://jbossdna.blogspot.com/2009/09/running-tests-against-different-dbmses.html">running all of the tests against a variety
+		  of databases</ulink>, making it very easy to test against DBMSes that JBoss DNA doesn't directly test against.
+			A new DDL generation utility was also introduced that produces the DDL for the database used by the JPA connector.
+			And JCR repositories now support the use of <link linkend="jcr-guess-access">anonymous users</link>, and this is 
+			enabled by default but can easily be changed for production purposes.
+		</para>
   </sect1>
 </chapter>

Modified: trunk/docs/reference/src/main/docbook/en-US/content/jcr/configuration.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/jcr/configuration.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/jcr/configuration.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -167,7 +167,7 @@
 				Here is the configuration file that is used in the repository example, though it has been simplified a bit and most comments 
 				have been removed for clarity):
 			</para>
-    	<programlisting role="JAVA"><![CDATA[
+    	<programlisting role="XML"><![CDATA[
 <?xml version="1.0" encoding="UTF-8"?>
 <configuration xmlns="http://www.jboss.org/dna/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0">
 	  <!-- 
@@ -365,6 +365,208 @@
 			</sect3>
 		</sect2>
 	</sect1>
+	<sect1 id="dna_and_jndi">
+		<title>Deploying JBoss DNA via JNDI</title>
+		<para>
+			Sometimes your applications can simply define a &JcrConfiguration; and instantiate the &JcrEngine; instance directly.
+			This is very straightforward, and this is what the <link linkend="downloading_and_running">JBoss DNA examples</link> do.
+		</para>
+		<para>
+			Web applications are a different story. Often, you may not want your web application to contain the code that initializes
+			a JBoss DNA engine.  Or, you may want the same &JcrEngine; instance to be reused in multiple web applications deployed 
+			to the same web/application server. In these cases, it is possible to configure the web/app server's JNDI instance to
+			instantiate the &JcrEngine;, meaning the web applications need only use the standard JNDI and JCR APIs.
+		</para>
+		<sect2 id="dna_and_jndi_application">
+			<title>Example application using JCR and JNDI</title>
+			<para>
+				Here's an example of how such a web application would obtain a JCR &Repository; instance, use it to create a &JcrSession;,
+				and then close the session when completed.  
+			</para>
+    	<programlisting role="JAVA"><![CDATA[Session session = null;
+
+try {
+  // Look up the JCR Repository object ...
+	InitialContext initCtx = new InitialContext();
+	Context envCtx = (Context) initCtx.lookup("java:comp/env");
+	Repository repo = (Repository) envCtx.lookup("jcr/local");		// name in JNDI is defined by configuration
+
+	// Obtain a JCR Session using simple authentication
+	// (or use anonymous authentication if desired)
+	session = repo.login(new SimpleCredentials("username", "password".toCharArray()));
+
+	// Use the JCR Session to do something interesting
+
+} catch (Exception ex) {
+	ex.printStackTrace();
+} finally {
+	if (session != null) session.logout();
+}]]></programlisting>
+			<para>
+				Note that the location of the &Repository; instance in JNDI depends upon the configuration. In this example, we used
+				"<code>jcr/local</code>", but the only requirement is that it match the location where it was placed in JNDI.
+			</para>
+			<para>
+				We showed how web applications can use an existing &Repository; instance. In the next section, we describe how to configure
+				the web server so that the &Repository; instance is available in JNDI.
+			</para>
+		</sect2>
+		<sect2 id="dna_and_jndi_configuring">
+			<title>Configuring JCR and JNDI</title>
+			<para>
+				Each kind of web server or application server is different, but all servlet containers do provide a way of configuring
+				objects and placing them into JNDI.  JBoss DNA provides a &JndiRepositoryFactory; class that implements &ObjectFactory;
+				and that can be used in the server's configuration. The &JndiRepositoryFactory; requires two properties:
+				<itemizedlist>
+					<listitem>
+						<para>
+							<emphasis role="strong"><code>configFile</code></emphasis> is the path to the 
+							<link linkend="loading_from_file">configuration file</link> resource, which must be available on the classpath
+						</para>
+					</listitem>
+					<listitem>
+						<para>
+							<emphasis role="strong"><code>repositoryName</code></emphasis> is the name of a JCR repository that exists
+							in the &JcrConfiguration; and that will be made available by this JNDI entry
+						</para>
+					</listitem>
+				</itemizedlist>
+			</para>
+			<para>
+				Here's an example of a fragment of the <code>conf/context.xml</code> for Tomcat:
+			</para>
+<programlisting role="XML"><![CDATA[<Resource name="jcr/local" 
+          auth="Container"
+          type="javax.jcr.Repository"
+          factory="org.jboss.dna.jcr.JndiRepositoryFactory"
+          configFile="/resource/path/to/configuration.xml"
+          repositoryName="Test Repository Source" />]]></programlisting>
+			<para>
+				Note that it is possible to have multiple <code>Resource</code> entries. The &JndiRepositoryFactory; ensures
+				that only one &JcrEngine; is instantiated, but that a &Repository; instance is registered for each entry.
+			</para>
+			<para>
+				Before the server can start, however, all of the JBoss DNA jars need to be placed on the classpath for the server.
+				JAAS also needs to be configured, and this can be done using the application server's configuration or in your
+				web application if you're using a simple servlet container. For more details, see the &ReferenceGuide;.
+			</para>
+			<note>
+				<para>
+					The JBoss DNA community has solicited input on how we can make it easier to consume and use JBoss DNA in applications
+					that do not use Maven. Check out the <ulink url="http://community.jboss.org/thread/146589">discussion thread</ulink>,
+					and please add any suggestions or opinions!
+				</para>
+			</note>
+			<para>
+				Then, your web application needs to reference the <code>Resource</code> and state its requirements in its 
+				<code>web.xml</code>:
+			</para>
+<programlisting role="XML"><![CDATA[<resource-env-ref>
+   <description>Repository</description>
+   <resource-env-ref-name>jcr/local</resource-env-ref-name>
+   <resource-env-ref-type>javax.jcr.Repository</resource-env-ref-type>
+</resource-env-ref>]]></programlisting>
+			<para>
+				Note that the value of <code>resource-env-ref-name</code> matches the value of the name attribute on the 
+				<code>&lt;Resource></code> tag in the <code>context.xml</code> described above.  This is a must.
+			</para>
+			<para>
+				At this point, your web application can perform the lookup of the &Repository; object, create and use a &Session;,
+				and then close the &Session;.  Here's an example of a JSP page that does this:
+			</para>
+<programlisting role="JAVA"><![CDATA[
+<%@ page import="
+	javax.naming.*,
+	javax.jcr.*,
+	org.jboss.security.config.IDTrustConfiguration
+	" %>
+<%!
+
+static {
+	// Initialize IDTrust
+	String configFile = "security/jaas.conf.xml";
+	IDTrustConfiguration idtrustConfig = new IDTrustConfiguration();
+	try {
+	    idtrustConfig.config(configFile);
+	} catch (Exception ex) {
+	    throw new IllegalStateException(ex);
+	}
+}
+%>
+<%
+Session sess = null;
+try {
+	InitialContext initCtx = new InitialContext();
+	Context envCtx = (Context) initCtx.lookup("java:comp/env");
+	Repository repo = (Repository) envCtx.lookup("jcr/local");
+	sess = repo.login(new SimpleCredentials("readwrite", "readwrite".toCharArray()));
+
+	// Do something interesting with the Session ...
+	out.println(sess.getRootNode().getPrimaryNodeType().getName());
+} catch (Exception ex) {
+	ex.printStackTrace();
+} finally {
+	if (sess != null) sess.logout();
+}
+%>
+]]></programlisting>			
+			<para>
+				Since this uses a servlet container, there is no JAAS implementation configured, so note the 
+				loading of IDTrust to create the JAAS realm.  (To make this work in Tomcat, the security
+				folder that contains the <code>jaas.conf.xml</code>, <code>users.properties</code>, and
+				<code>roles.properties</code> needs to be moved into the <code>%CATALINA_HOME%</code> directory.
+				Moving the security folder into the <code>conf</code> directory did not allow those files
+				to be visible by the JSP page.)
+			</para>
+			<note>
+				<para>
+				If you use an application server such as <ulink url="http://www.jboss.com/products/platforms/application/">JBoss EAP</ulink>,
+				you could just configure the JAAS realm as part of the server configuration and be done with it.
+			  </para>
+			</note>
+		</sect2>
+	</sect1>
+	<sect1 id="using_dna_via_maven">
+		<title>Using JBoss DNA via Maven</title>
+		<para>
+			JBoss DNA is a Maven-based project. If your application is using Maven, it is very easy to add a dependency on 
+			JBoss DNA's JCR library (plus any extensions), and Maven will ensure your application has access to all 
+			of the JBoss DNA artifacts and all 3rd-party libraries upon which DNA depends. 
+			Simply add a dependency in your application's POM:
+		</para>
+<programlisting role="XML"><![CDATA[<dependency>
+  <groupId>org.jboss.dna</groupId>
+  <artifactId>dna-jcr</artifactId>
+  <version>0.7</version>
+</dependency>
+]]></programlisting>
+			<para>
+				plus dependencies for each optional extension (sequencers, connectors, MIME type detectors, etc.):
+			</para>
+<programlisting role="XML"><![CDATA[<dependency>
+  <groupId>org.jboss.dna</groupId>
+  <artifactId>dna-connector-store-jpa</artifactId>
+  <version>0.7</version>
+</dependency>
+...
+<dependency>
+  <groupId>org.jboss.dna</groupId>
+  <artifactId>dna-sequencer-java</artifactId>
+  <version>0.7</version>
+</dependency>
+]]></programlisting>
+		<para>
+			Then, continue by defining a &JcrConfiguration; and building the engine, as discussed <link linkend="jcr-engine">earlier</link>.
+			This is very straightforward, and this is exactly what the <link linkend="downloading_and_running">JBoss DNA examples</link> do.
+		</para>
+		<note>
+			<para>
+				The JBoss DNA community has solicited input on how we can make it easier to consume and use JBoss DNA in applications
+				that do not use Maven. Check out the <ulink url="http://community.jboss.org/thread/146589">discussion thread</ulink>,
+				and please add any suggestions or opinions!
+			</para>
+		</note>
+	</sect1>
 	<sect1 id="using_dna_whats_next">
 		<title>What's next</title>
 		<para>

Added: trunk/docs/reference/src/main/docbook/en-US/content/jcr/query_and_search.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/jcr/query_and_search.xml	                        (rev 0)
+++ trunk/docs/reference/src/main/docbook/en-US/content/jcr/query_and_search.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ JBoss DNA (http://www.jboss.org/dna)
+  ~
+  ~ See the COPYRIGHT.txt file distributed with this work for information
+  ~ regarding copyright ownership.  Some portions may be licensed
+  ~ to Red Hat, Inc. under one or more contributor license agreements.
+  ~ See the AUTHORS.txt file in the distribution for a full listing of 
+  ~ individual contributors.
+  ~
+  ~ JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
+  ~ is licensed to you under the terms of the GNU Lesser General Public License as
+  ~ published by the Free Software Foundation; either version 2.1 of
+  ~ the License, or (at your option) any later version.
+  ~
+  ~ JBoss DNA is distributed in the hope that it will be useful,
+  ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+  ~ or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
+  ~ for more details.
+  ~
+  ~ You should have received a copy of the GNU Lesser General Public License
+  ~ along with this distribution; if not, write to:
+  ~ Free Software Foundation, Inc.
+  ~ 51 Franklin Street, Fifth Floor
+  ~ Boston, MA  02110-1301  USA
+  -->
+<!DOCTYPE preface PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"	[
+<!ENTITY % CustomDTD SYSTEM "../../custom.dtd">
+%CustomDTD;
+]>
+<chapter id="jcr-query-and-search">
+  <title>Querying and Searching using JCR</title>
+  <para>
+	</para>
+  <sect1 id="jcr-query-api">	
+    <title>JCR Query API</title>
+	  <para>
+		</para>
+	</sect1>
+  <sect1 id="jcr-xpath-query-language">	
+    <title>JCR XPath Query Language</title>
+	  <para>
+		</para>
+	</sect1>
+  <sect1 id="jcr-sql2-query-language">	
+    <title>JCR-SQL2 Query Language</title>
+	  <para>
+		  The JCR-SQL2 query language is defined by the <ulink url="&JSR283;">JCR 2.0 specification</ulink> as a way to express
+		  queries using strings that are similar to SQL. JBoss DNA includes full support for this query language, and even
+		  adds several extensions to make it even more powerful.
+		</para>
+	</sect1>
+  <sect1 id="fulltext-search-query-language">	
+    <title>Full-Text Search Language</title>
+	  <para>
+		  There are times when a formal structured query language is overkill, and the easiest way to find the right content
+		  is to perform a search, like you would with a search engine such as Google or Yahoo! 
+		  This is where JBoss DNA's <emphasis role="strong">full-text search language</emphasis> comes in, because it allows
+		  you to use the JCR query API but with a far simpler, Google-style search grammar.
+		</para>
+		<para>
+			This query language is actually defined by the <ulink url="&JSR283;">JCR 2.0 specification</ulink> as the full-text 
+			search expression grammar used in the second parameter of the <code>CONTAINS(...)</code> function of the JCR-SQL2 language.
+			We just pulled it out and made it available as a first-class query language.
+		</para>
+		<para>
+			This language allows a JCR client to construct a query to find nodes with property values that match
+			the supplied terms. Nodes that "best" match the terms are returned before nodes that have a lesser match.
+			Of course, JBoss DNA uses a complex system to analyze the node content and the query terms, and may perform
+			a number of optimizations, such as (but not limited to) eliminating stop words (e.g., "the", "a", "and", etc.), treating terms
+			independent of case, and converting words to base forms using a process called <emphasis>stemming</emphasis> (e.g., "running"
+			into "run", "customers" into "customer").
+		</para>
+		<para>
+			Search terms can also include phrases by simply wrapping the phrase with double-quotes.  For example, 
+			the search term '<code>table "customer invoice"</code>' would rank higher those nodes with properties containing
+			the phrase "customer invoice" than nodes with properties containing just "customer" or "invoice".
+		</para>
+		<para>
+			Term in the query are implicitly AND-ed together, meaning that the matches occur when a node has property values
+			that match <emphasis>all</emphasis> of the terms. However, it is also possible to put an "OR" in between two terms
+			where either of those terms may occur.
+		</para>
+		<para>
+			It is also possible to specify that terms should <emphasis>not</emphasis> appear in the results. This is called
+			a <emphasis>negative term</emphasis>, and it reduces the rank of any node whose property values contain the
+			the value. To specify a negative term, simply prefix the term with a hyphen ('-').
+		</para>
+		<sect2 id='fulltext-grammar'>
+			<title>Grammar</title>
+			<para>
+				The grammar for this full-text search language is specified in Section 6.7.19 of the 
+				<ulink url="&JSR283;">JCR 2.0 specification</ulink>, but it is also included here as a convenience:
+			</para>
+<programlisting><![CDATA[
+
+FulltextSearch ::= Disjunct {Space 'OR' Space Disjunct}
+
+Disjunct ::= Term {Space Term}
+
+Term ::= ['-'] SimpleTerm
+
+SimpleTerm ::= Word | '"' Word {Space Word} '"'
+
+Word ::= NonSpaceChar {NonSpaceChar}
+
+Space ::= SpaceChar {SpaceChar}
+
+NonSpaceChar ::= Char - SpaceChar /* Any Char except SpaceChar */
+
+SpaceChar ::= ' '
+
+Char ::= /* Any character */
+
+]]></programlisting>
+			<para>
+			  As you can see, this is a pretty simple and straightforward query language. But this language makes it extremely
+			  easy to find all the nodes in the repository that match a set of terms.
+ 		 	</para>
+		 	<para>
+			  When using this query language, the &QueryResult; always contains the "jcr:path" and "jcr:score" columns.
+ 		 	</para>
+		</sect2>
+	</sect1>
+</chapter>


Property changes on: trunk/docs/reference/src/main/docbook/en-US/content/jcr/query_and_search.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Modified: trunk/docs/reference/src/main/docbook/en-US/content/jcr/rest_service.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/jcr/rest_service.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/jcr/rest_service.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -271,7 +271,7 @@
 			The DNA REST server is deployed as a WAR and configured mostly through its web configuration file (web.xml).  
 			Here is an example web configuration that is used for integration testing of the DNA REST server along with
 			an explanation of its parts.
-<programlisting role="xml"><![CDATA[
+<programlisting role="XML"><![CDATA[
 <?xml version="1.0"?>
 <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
                          "http://java.sun.com/dtd/web-app_2_3.dtd">
@@ -283,7 +283,7 @@
 		</para>
 		<para>
 			The next stanza configures the <link linkend="jcr_rest_spi">repository provider</link>.
-<programlisting role="xml"><![CDATA[
+<programlisting role="XML"><![CDATA[
   <!--
     This parameter provides the fully-qualified name of a class that implements
     the o.j.d.web.jcr.rest.spi.RepositoryProvider interface.  It is required
@@ -301,7 +301,7 @@
 
 		<para>
 			Next we configure the DNA &JcrEngine; itself.
-<programlisting role="xml"><![CDATA[
+<programlisting role="XML"><![CDATA[
   <!--
     This parameter, specific to the DnaJcrRepositoryProvider implementation, specifies
     the name of the configuration file to initialize the repository or repositories.
@@ -320,7 +320,7 @@
 
 		<para>
 			This is followed by a bit of RESTEasy and JAX-RS boilerplate.
-<programlisting role="xml"><![CDATA[
+<programlisting role="XML"><![CDATA[
   <!--
     This parameter defines the JAX-RS application class, which is really just a metadata class
     that lets the JAX-RS engine (RESTEasy in this case) know which classes implement pieces
@@ -361,7 +361,7 @@
 		
 		<para>
 			Finally, security must be configured for the REST server.
-<programlisting role="xml"><![CDATA[
+<programlisting role="XML"><![CDATA[
   <!-- 
     The JBoss DNA REST implementation leverages the HTTP credentials to for authentication and authorization
     within the JCR repository.  It makes no sense to try to log into the JCR repository without credentials,
@@ -418,7 +418,7 @@
 	  <para>
 	  		If you are using Maven to build your projects, the WAR can be built from a POM.  Here is a portion of the 
 	  		POM used to build the JBoss DNA REST Server integration subproject.
-<programlisting role='xml'>	<![CDATA[
+<programlisting role='XML'><![CDATA[
 <project xmlns="http://maven.apache.org/POM/4.0.0" 
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
@@ -426,7 +426,7 @@
 	<parent>
 		<artifactId>dna</artifactId>
 		<groupId>org.jboss.dna</groupId>
-		<version>0.6</version>
+		<version>0.7</version>
 		<relativePath>../..</relativePath>
 	</parent>
 	<artifactId>dna-web-jcr-rest-war</artifactId>
@@ -438,7 +438,7 @@
 		<dependency>
 			<groupId>org.jboss.dna</groupId>
 			<artifactId>dna-web-jcr-rest</artifactId>
-			<version>0.6</version>
+			<version>0.7</version>
 		</dependency>
 
 		<dependency>

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/compact_node_types.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/compact_node_types.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/compact_node_types.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -38,7 +38,7 @@
   
   <para>
   	This sequencer can be added to the repository configuration like so:
-<programlisting>
+<programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("CND Sequencer")
@@ -47,7 +47,6 @@
       .setDescription("Sequences CND files to extract the node type definitions")
       .sequencingFrom("//(*.cnd[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/nodeTypes/$1");
-
-</programlisting>  	 
+]]></programlisting>  	 
   </para>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/ddl.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/ddl.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/ddl.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -31,24 +31,33 @@
 <chapter id="ddl-file-sequencer">
   <title>DDL File Sequencer</title>
     <para>
-        The DDL file sequencer is included in JBoss DNA and is capable of parsing the more important DDL statements from several 
-        different dialects, and constructing a graph structure that is largely the same for all dialects (though some dialects will 
-        result in dialect-specific properties and maybe nodes). The sequencer attempts to detect the dialect by running multiple 
-        parsers and finding the one with the "best fit".</para>
+        The DDL file sequencer included in JBoss DNA is capable of parsing the more important DDL statements from SQL-92,
+				Oracle, Derby, and PostgreSQL, and constructing a graph structure containing a structured representation of these statements.
+				The resulting graph structure is largely the same for all dialects, though some dialects have non-standard additions
+				to their grammar, and thus require dialect-specific additions to the graph structure.
+		</para>
+		<para>
+			  The sequencer is designed to behave as smart as possible with as little configuration. Thus, the sequencer
+			  automatically determines the dialect used by a given DDL stream. This can be tricky, of course, since most dialects
+			  are very similar and the distinguishing features of a dialect may only be apparent in some of the statements.
+		</para>
+		<para>
+			To get around this, the sequencer uses a "best fit" algorithm: run the DDL stream through the parser for each of
+			the dialects, and determine which parser was able to successfully read the greatest number of statements and tokens.
+		</para>
     <para>
         One very interesting capability of this sequencer is that, although only a subset of the (more common) DDL statements 
         are supported, the sequencer is still extremely functional since it does still add all statements into the output graph, 
         just without much detail other than just the statement text and the position in the DDL file. Thus, if a DDL file 
-        contains statements the sequencer understands and statements that the sequencer does not understand, the graph will 
-        still contain all statements and those statements understood by the sequencer will have their full detail. 
+        contains statements the sequencer understands and statements the sequencer does not understand, the graph will 
+        still contain all statements, where those statements understood by the sequencer will have full detail. 
         Since the underlying parsers are able to operate upon a single statement, it is possible to go back later 
         (after the parsers have been enhanced to support additional DDL statements) and re-parse only those incomplete statements 
         in the graph.
     </para>
     <para>
-        Initially the following ddl dialects are included with this sequencer: Oracle, Derby, Postgres and MySql.</para>
-    <para>
-        Each specific dialect extends a basic parser framework implementing the SQL 92 spec and includes
+        At this time, the sequencer supports SQL-92 standard DDL as well as dialects from Oracle, Derby, and PostgreSQL.
+        It supports:
         <itemizedlist>
             <listitem>
                 <para>Detailed parsing of CREATE SCHEMA, CREATE TABLE and ALTER TABLE.</para>
@@ -59,36 +68,68 @@
             <listitem>
                 <para>General parsing of remaining schema definition statements (i.e. CREATE VIEW, CREATE DOMAIN, etc.</para>
             </listitem>
-            <listitem>
-                <para>Does NOT perform detailed parsing of SQL (i.e. SELECT, INSERT, UPDATE, etc....) statements.</para>
-            </listitem>
         </itemizedlist>
+        Note that the sequencer does <emphasis>not</emphasis> perform detailed parsing of SQL (i.e. SELECT, INSERT, UPDATE, etc....) statements.
     </para>
+		<caution>
+			<para>
+			The DDL sequencer is being included as a Technology Preview.  It is fully functional for the dialects listed above, and may indeed
+			work on certain DDL files that use other dialects. But we would like to have feedback from users, test against more DDL examples,
+			support additional dialects, and support more kinds of DDL statements. As such, the output format and node types 
+			associated with the &DefaultClassFileRecorder; may change in future versions.
+			</para>
+		</caution>
     <sect1>
         <title>Example</title>
 	    <para>Sequencing results in graph nodes basically representing the BNF structure of each DDL statement. Below is an example DDL
 	        schema definition statement containing table and view definition statements.
 	    </para>
-	    <programlisting>
+	    <programlisting><![CDATA[
 CREATE SCHEMA hollywood
 	  CREATE TABLE films (title varchar(255), release date, producerName varchar(255))
 	  CREATE VIEW winners AS SELECT title, release FROM films WHERE producerName IS NOT NULL;
-	    </programlisting>
-	    <para>The resulting graph structure, shown below contains the raw statement expression, pertinent table, column and key
-	        reference information as well as critical integer position values (line number, column number and character index) to
-	        tie the statement back to the original DDL file.
+]]></programlisting>
+	    <para>
+				The resulting graph structure contains the raw statement expression, pertinent table, column and key
+	      reference information and position of the statement in the text stream (e.g., line number, column number and character index)
+	      so the statement can be tied back to the original DDL:
 	    </para>
-	    <programlisting>
-	<![CDATA[
-<name = "statements" primaryType = "nt:unstructured" uuid = "ee3db6e6-fa59-46db-bd3f-c555b4fa4a50" parserId = "POSTGRES">
-      <name = "hollywood" startLineNumber = "1" primaryType = "nt:unstructured" uuid = "3e084a7d-7da8-4068-9b03-b1aed9ac9c7a" startColumnNumber = "1" mixinTypes = "ns001:createSchemaStatement" expression = "CREATE SCHEMA hollywood" startCharIndex = "0">
-            <name = "films" startLineNumber = "2" primaryType = "nt:unstructured" uuid = "b622cdcb-69fa-4aa2-8510-f35c0a8ddcbe" startColumnNumber = "5" mixinTypes = "ns001:createTableStatement" expression = "CREATE TABLE films (title varchar(255), release date, producerName varchar(255))" startCharIndex = "28">
-            <name = "title" datatypeName = "VARCHAR" datatypeLength = "255" primaryType = "nt:unstructured" uuid = "d7e962bb-cd37-4df4-ab53-ab78fd72c153" mixinTypes = "ns001:columnDefinition">
-            <name = "release" datatypeName = "DATE" primaryType = "nt:unstructured" uuid = "83aa7c21-82f7-416e-8c23-5c308a1c4257" mixinTypes = "ns001:columnDefinition">
-            <name = "producerName" datatypeName = "VARCHAR" datatypeLength = "255" primaryType = "nt:unstructured" uuid = "a51ed903-4d2c-4cd9-83e2-a76884b923aa" mixinTypes = "ns001:columnDefinition">
-      <name = "winners" startLineNumber = "3" primaryType = "nt:unstructured" uuid = "9eeef501-ad7e-4e25-9891-b86485e48dc1" startColumnNumber = "5" mixinTypes = "ns001:createViewStatement" expression = "CREATE VIEW winners AS SELECT title, release FROM films WHERE producerName IS NOT NULL;" queryExpression = " SELECT title, release FROM films WHERE producerName IS NOT NULL" startCharIndex = "113">
-	]]>
-	    </programlisting>
+	    <programlisting role="XML"><![CDATA[<nt:unstructured jcr:name="statements" ddl:parserId="POSTGRES">
+  <nt:unstructured jcr:name="hollywood" jcr:mixinTypes="ddl:createSchemaStatement" 
+	                 ddl:startLineNumber="1"
+                   ddl:startColumnNumber="1"
+                   ddl:expression="CREATE SCHEMA hollywood"
+                   ddl:startCharIndex="0">
+    <nt:unstructured jcr:name="films" jcr:mixinTypes="ddl:createTableStatement"
+                   ddl:startLineNumber="2"
+                   ddl:startColumnNumber="5"
+                   ddl:expression="CREATE TABLE films (title varchar(255), release date, producerName varchar(255))"
+                   ddl:startCharIndex="28"/>
+    <nt:unstructured jcr:name="title" jcr:mixinTypes="ddl:columnDefinition"
+                   ddl:datatypeName="VARCHAR"
+                   ddl:datatypeLength="255"/>
+    <nt:unstructured jcr:name="release" jcr:mixinTypes="ddl:columnDefinition"
+                   ddl:datatypeName="DATE"/>
+    <nt:unstructured jcr:name="producerName" jcr:mixinTypes="ddl:columnDefinition"
+                   ddl:datatypeName="VARCHAR"
+                   ddl:datatypeLength="255"/>
+  <nt:unstructured jcr:name="winners" jcr:mixinTypes="ddl:createViewStatement"
+                   ddl:startLineNumber="3"
+                   ddl:startColumnNumber="5"
+                   ddl:expression="CREATE VIEW winners AS SELECT title, release FROM films WHERE producerName IS NOT NULL;"
+                   ddl:queryExpression="SELECT title, release FROM films WHERE producerName IS NOT NULL"
+                   ddl:startCharIndex="113"/>
+</nt:unstructured>
+]]></programlisting>
+			<para>
+				Note that all nodes are of type <code>nt:unstructured</code> while the type of statement is identified using
+				mixins. Also, each of the nodes representing a statement contain: a <code>ddl:expression</code> property with
+				the exact statement as it appeared in the original DDL stream; a <code>ddl:startLineNumber</code> and
+				<code>ddl:startColumnNumber</code> property defining the position in the original DDL stream of the first character
+				in the expression; and a <code>ddl:startCharIndex</code> property that defines the integral index of the first
+				character in the expression as found in the DDL stream.  All of these properties make sure the statement can
+				be traced back to its location in the original DDL.
+			</para> 
     </sect1>
     <para>
     </para>
@@ -96,7 +137,7 @@
         To use this sequencer, simply include the <code>dna-sequencer-ddl</code> JAR
         in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
     </para>
-   <programlisting>
+   <programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("DDL Sequencer")
@@ -105,5 +146,5 @@
       .setDescription("Sequences DDL files to extract individual statements and accompanying statement properties and values")
       .sequencingFrom("//(*.(ddl)[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/ddls/$1"); 
-    </programlisting>
+]]></programlisting>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/image.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/image.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/image.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -95,7 +95,7 @@
 			To use this sequencer, simply include the <code>dna-sequencer-images</code> JAR
 			in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
      </para>
-   	<programlisting>
+   	<programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 config.sequencer("Image Sequencer")
       .usingClass("org.jboss.dna.sequencer.image.ImageMetadataSequencer")
@@ -103,6 +103,5 @@
       .setDescription("Sequences image files to extract the characteristics of the image")
       .sequencingFrom("//(*.(jpg|jpeg|gif|bmp|pcx|png|iff|ras|pbm|pgm|ppm|psd)[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/images/$1");
-
-</programlisting>
+]]></programlisting>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_class.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_class.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_class.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -80,28 +80,44 @@
 		</tgroup>
 	</table>
 	<para>
-		The default class file recorder creates a subgraph rooted at the output location that takes the following form (with primary types in parentheses):  
+		The default class file recorder creates a subgraph rooted at the output location that takes the following form:  
 	</para>
-	<programlisting>
-&lt;graph root&gt;
-  + &lt;package name 1&gt; (nt:unstructured)
-  	.
-  	.
-  	.
-    + &lt;package name N&gt;(nt:unstructured)
-       + &lt;class name&gt; (class:class)
-         + class:annotations (class:annotations)
-         | + &lt;annotation name&gt; - one per annotation (class:annotation)
-         + class:constructors (class:constructors)
-         | + &lt;constructor parameters&gt; - one per constructor (class:constructor)
-         |   + &lt;annotation name&gt; - one per annotation (class:annotation)
-         + class:methods (class:methods)
-         | + &lt;method name (parameters)&gt; - one per method (class:method)
-         |   + &lt;annotation name&gt; - one per annotation (class:annotation)
-         + class:fields (class:fields)
-           + &lt;field name&gt; - one per field (class:field)
-             + &lt;annotation name&gt; - one per annotation (class:annotation)
-	</programlisting>
+	<programlisting role="XML"><![CDATA[
+<nt:unstructured jcr:name="packageName1">
+	...
+    <nt:unstructured jcr:name="packageNameN">
+	    <class:class jcr:name="ClassName">
+		    <class:annotations jcr:name="class:annotations">
+			    <class:annotation jcr:name="AnnotationName1"/>
+			    ...
+			    <class:annotation jcr:name="AnnotationNameN"/>
+		    </class:annotations>
+		    <class:constructors jcr:name="class:constructors">
+			    <class:constructor jcr:name="constructor parameters">
+				    <class:annotation jcr:name="AnnotationName1"/>
+				    ...
+				    <class:annotation jcr:name="AnnotationNameN"/>
+			    </class:constructor>
+		    </class:constructors>
+		    <class:methods jcr:name="class:methods">
+			    <class:method jcr:name="methodName(parameters)">
+				    <class:annotation jcr:name="AnnotationName1"/>
+				    ...
+				    <class:annotation jcr:name="AnnotationNameN"/>
+			    </class:method>
+		    </class:methods>
+		    <class:fields jcr:name="class:field">
+			    <class:field jcr:name="fieldName">
+				    <class:annotation jcr:name="AnnotationName1"/>
+				    ...
+				    <class:annotation jcr:name="AnnotationNameN"/>
+			    </class:field>
+		    </class:fields>
+		  </class:class>
+    </nt:unstructured>
+	...
+</nt:unstructured>
+]]></programlisting>
 	<para>
 		The compact node definitions for the class:* types is provided below.  <emphasis>Please note that these definitions may change in a future release.</emphasis>
 	</para>
@@ -177,7 +193,7 @@
         To use this sequencer, simply include the <code>dna-sequencer-classfile</code> JAR
         in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
     </para>
-   	<programlisting>
+   	<programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("Java Class Sequencer")
@@ -185,6 +201,6 @@
       .setDescription("Sequences Java class files to extract the structure of the classes")
       .sequencingFrom("//*.class[*]/jcr:content[@jcr:data]")
       .andOutputtingTo("/classes");
-    </programlisting>
+]]></programlisting>
 
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_source.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_source.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/java_source.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -44,7 +44,7 @@
 		To use this sequencer, simply include the <code>dna-sequencer-java</code> JAR (plus all of the JARs that it is dependent upon)
 		in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
     </para>
-  <programlisting>
+  <programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("Java Sequencer")
@@ -53,5 +53,5 @@
       .setDescription("Sequences java files to extract the characteristics of the Java source")
       .sequencingFrom("//(*.(java)[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/java/$1");	
-</programlisting>
+]]></programlisting>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/microsoft_office.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/microsoft_office.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/microsoft_office.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -42,7 +42,7 @@
 	<ulink url="http://poi.apache.org/">POI</ulink> JARs
 	in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
    </para>
-  <programlisting>
+  <programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("Microsoft Office Document Sequencer")
@@ -51,5 +51,5 @@
       .setDescription("Sequences MS Office documents, including spreadsheets and presentations")
       .sequencingFrom("//(*.(*.(doc|docx|ppt|pps|xls)[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/msoffice/$1");	
-</programlisting>
+]]></programlisting>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/mp3.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/mp3.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/mp3.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -41,7 +41,7 @@
 					To use this sequencer, simply include the <code>dna-sequencer-mp3</code> JAR and the <ulink url="http://www.jthink.net/jaudiotagger/">JAudioTagger</ulink>
 					library in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
 	      </para>
-		    <programlisting>
+		    <programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("MP3 Sequencer")
@@ -50,5 +50,5 @@
       .setDescription("Sequences MP3 files to extract the ID3 tags of the audio file")
       .sequencingFrom("//(*.mp3[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/mp3s/$1");	
-	</programlisting>
+]]></programlisting>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/text.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/text.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/text.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -131,7 +131,7 @@
 	        To use this sequencer, simply include the <code>dna-sequencer-text</code> JAR
 	        in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
 	    </para>
-	   	<programlisting>
+	   	<programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("Delimited Text Sequencer")
@@ -141,7 +141,7 @@
       .sequencingFrom("//(*.(txt)[*])/jcr:content[@jcr:data]")
       .setProperty("splitPattern", "|")
       .andOutputtingTo("/txt/$1"); 
-	    </programlisting>
+]]></programlisting>
 	</sect1>
 	<sect1>
         <title>Fixed Width Text Sequencer</title>
@@ -177,7 +177,7 @@
 	        To use this sequencer, simply include the <code>dna-sequencer-text</code> JAR
 	        in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
 	    </para>
-	   	<programlisting>
+	   	<programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("Fixed Width Text Sequencer")
@@ -187,6 +187,6 @@
       .sequencingFrom("//(*.(txt)[*])/jcr:content[@jcr:data]")
       .setProperty("columnStartPositions", "3,6,15")
       .andOutputtingTo("/txt/$1"); 
-	    </programlisting>
+]]></programlisting>
 	</sect1>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/xml.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/xml.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/xml.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -34,7 +34,7 @@
     This sequencer stores the structure and data of an XML file into the repository.  DTD, entity, comments, 
     and other content are maintained by the sequencer in the output structure.
   </para>
-  <programlisting>
+  <programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("XML Sequencer")
@@ -43,5 +43,5 @@
       .setDescription("Sequences XML documents and maps their data into the repository")
       .sequencingFrom("//(*.xml[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/xml/$1");	
-</programlisting>  
+]]></programlisting>  
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/content/sequencers/zip.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/content/sequencers/zip.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/content/sequencers/zip.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -39,7 +39,7 @@
 		To use this sequencer, simply include the <code>dna-sequencer-zip</code> JAR
 		in your application and configure the &JcrConfiguration; to use this sequencer using something similar to:
     </para>
-   <programlisting>
+   <programlisting role="JAVA"><![CDATA[
 JcrConfiguration config = ...
 
 config.sequencer("ZIP Sequencer")
@@ -48,5 +48,5 @@
       .setDescription("Sequences compressed files to extract the internal file and folder structure")
       .sequencingFrom("//(*.(zip|gz|jar|war|ear)[*])/jcr:content[@jcr:data]")
       .andOutputtingTo("/zips/$1");	
-	</programlisting>
+]]></programlisting>
 </chapter>
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/custom.dtd
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/custom.dtd	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/custom.dtd	2010-01-09 21:31:34 UTC (rev 1574)
@@ -1,5 +1,5 @@
-<!ENTITY versionNumber "0.6">
-<!ENTITY copyrightYears "2008-2009">
+<!ENTITY versionNumber "0.7">
+<!ENTITY copyrightYears "2008-2010">
 <!ENTITY copyrightHolder "Red Hat, Inc.">
 
 <!-- Frequently used URLs -->
@@ -7,14 +7,14 @@
 <!ENTITY Home       					"http://www.jboss.org/dna/">
 <!ENTITY Downloads  					"&Home;downloads.html">
 <!ENTITY Community  					"&Home;community.html">
-<!ENTITY DocHome    					"http://www.jboss.org/file-access/default/members/dna/freezone/">
-<!ENTITY API        					"&DocHome;docs/&versionNumber;/apidocs/org/jboss/dna/">
+<!ENTITY DocHome    					"http://docs.jboss.org/jbossdna">
+<!ENTITY API        					"&DocHome;/&versionNumber;/api/org/jboss/dna/">
 <!ENTITY JIRA       					"http://jira.jboss.org/jira/browse/DNA">
 <!ENTITY Roadmap       				"&JIRA;?report=com.atlassian.jira.plugin.system.project:roadmap-panel">
 <!ENTITY Subversion  					"http://anonsvn.jboss.org/repos/dna/">
 <!ENTITY Fisheye							"http://fisheye.jboss.org/browse/DNA/">
 <!ENTITY SecureSubversion  		"https://svn.jboss.org/repos/dna/">
-<!ENTITY Forums     					"http://www.jboss.com/index.html?module=bb&amp;op=viewforum&amp;f=272">
+<!ENTITY Forums     					"http://community.jboss.org/en/dna">
 <!ENTITY JSR170  							"http://www.jcp.org/en/jsr/detail?id=170">
 <!ENTITY JSR283  							"http://www.jcp.org/en/jsr/detail?id=283">
 <!ENTITY JSR203  							"http://www.jcp.org/en/jsr/detail?id=203">
@@ -24,10 +24,10 @@
 <!ENTITY Git									"http://git-scm.com/">
 
 <!ENTITY Java									"http://java.sun.com/j2se/1.5.0/docs/api/">
-<!ENTITY JavaEE                                 "http://java.sun.com/javaee/5/docs/api/">
+<!ENTITY JavaEE               "http://java.sun.com/javaee/5/docs/api/">
 
-<!ENTITY GettingStarted           		"<ulink url='&DocHome;docs/&versionNumber;/manuals/gettingstarted/html/index.html'>Getting Started</ulink>">
-<!ENTITY ReferenceGuide           		"<ulink url='&DocHome;docs/&versionNumber;/manuals/reference/html/index.html'>Getting Started</ulink>">
+<!ENTITY GettingStarted           		"<ulink url='&DocHome;/&versionNumber;/manuals/gettingstarted/html/index.html'>Getting Started</ulink>">
+<!ENTITY ReferenceGuide           		"<ulink url='&DocHome;/&versionNumber;/manuals/reference/html/index.html'>Reference Guide</ulink>">
 
 <!ENTITY CND			      							"<ulink url='http://jackrabbit.apache.org/node-type-notation.html'>Compact Node Definition</ulink>">
 
@@ -35,7 +35,7 @@
 
 <!ENTITY String							      		"<ulink url='&Java;java/lang/String.html'><interface>String</interface></ulink>">
 <!ENTITY File  							      		"<ulink url='&Java;java/io/File.html'><classname>File</classname></ulink>">
-<!ENTITY BufferedReader					      		"<ulink url='&Java;java/io/BufferedReader.html'><classname>BufferedReader</classname></ulink>">
+<!ENTITY BufferedReader					      "<ulink url='&Java;java/io/BufferedReader.html'><classname>BufferedReader</classname></ulink>">
 <!ENTITY URL  							      		"<ulink url='&Java;java/net/URL.html'><classname>URL</classname></ulink>">
 <!ENTITY URI  							      		"<ulink url='&Java;java/net/URL.html'><classname>URI</classname></ulink>">
 <!ENTITY InputStream				      		"<ulink url='&Java;java/io/InputStream.html'><interface>InputStream</interface></ulink>">
@@ -51,18 +51,18 @@
 <!ENTITY TimeUnit						      		"<ulink url='&Java;java/util/concurrent/TimeUnit.html'><interface>TimeUnit</interface></ulink>">
 <!ENTITY UUID						      				"<ulink url='&Java;java/util/UUID.html'><classname>UUID</classname></ulink>">
 <!ENTITY DataSource			      				"<ulink url='&Java;javax/sql/DataSource.html'><classname>DataSource</classname></ulink>">
-<!ENTITY DatabaseMetaData			      "<ulink url='&Java;java/sql/DatabaseMetaData.html'><classname>DatabaseMetaData</classname></ulink>">
+<!ENTITY DatabaseMetaData			      	"<ulink url='&Java;java/sql/DatabaseMetaData.html'><classname>DatabaseMetaData</classname></ulink>">
 <!ENTITY HttpServletRequest			      "<ulink url='&JavaEE;javax/servlet/http/HttpServletRequest.html'><classname>HttpServletRequest</classname></ulink>">
 <!ENTITY Serializable							    "<ulink url='&Java;java/io/Serializable.html'><interface>Serializable</interface></ulink>">
 <!ENTITY Iterator									    "<ulink url='&Java;java/util/Iterator.html'><interface>Iterator</interface></ulink>">
-<!ENTITY Iterable								    "<ulink url='&Java;java/util/Iterable.html'><interface>Iterable</interface></ulink>">
+<!ENTITY Iterable								    	"<ulink url='&Java;java/util/Iterable.html'><interface>Iterable</interface></ulink>">
 <!ENTITY Set											    "<ulink url='&Java;java/util/Set.html'><interface>Set</interface></ulink>">
 <!ENTITY Map											    "<ulink url='&Java;java/util/Map.html'><interface>Map</interface></ulink>">
 <!ENTITY List											    "<ulink url='&Java;java/util/List.html'><interface>List</interface></ulink>">
 <!ENTITY BigDecimal								    "<ulink url='&Java;java/math/BigDecimal.html'><classname>BigDecimal</classname></ulink>">
 <!ENTITY Calendar								    	"<ulink url='&Java;java/util/Calendar.html'><classname>Calendar</classname></ulink>">
 <!ENTITY Date											    "<ulink url='&Java;java/util/Date.html'><classname>Date</classname></ulink>">
-<!ENTITY EntityManagerFactory						      		"<ulink url='&Java;javax/persistence/EntityManagerFactory.html'><classname>EntityManagerFactory</classname></ulink>">
+<!ENTITY EntityManagerFactory					"<ulink url='&Java;javax/persistence/EntityManagerFactory.html'><classname>EntityManagerFactory</classname></ulink>">
 
 
 <!-- Types in JCR API -->
@@ -73,6 +73,11 @@
 <!ENTITY SimpleCredentials					  "<interface>SimpleCredentials</interface>">
 <!ENTITY LoginException						  	"<interface>LoginException</interface>">
 <!ENTITY AccessDeniedException				"<interface>AccessDeniedException</interface>">
+<!ENTITY QueryManager									"<interface>QueryManager</interface>">
+<!ENTITY Query												"<interface>Query</interface>">
+<!ENTITY QueryResult									"<interface>QueryResult</interface>">
+<!ENTITY NodeIterator									"<interface>NodeIterator</interface>">
+<!ENTITY RowIterator									"<interface>RowIterator</interface>">
 
 <!-- Types in dna-common -->
 
@@ -102,6 +107,7 @@
 <!ENTITY SecurityContext		       		"<ulink url='&API;graph/SecurityContext.html'><interface>SecurityContext</interface></ulink>">
 <!ENTITY JaasSecurityContext		      "<ulink url='&API;graph/JaasSecurityContext.html'><classname>JaasSecurityContext</classname></ulink>">
 <!ENTITY ServletSecurityContext		   	"<ulink url='&API;graph/ServletSecurityContext.html'><interface>ServletSecurityContext</interface></ulink>">
+<!ENTITY MimeTypeDetector				      "<ulink url='&API;graph/mimetype/MimeTypeDetector.html'><interface>MimeTypeDetector</interface></ulink>">
 <!ENTITY Readable						       		"<ulink url='&API;graph/property/Readable.html'><interface>Readable</interface></ulink>">
 <!ENTITY Name								       		"<ulink url='&API;graph/property/Name.html'><interface>Name</interface></ulink>">
 <!ENTITY Path								       		"<ulink url='&API;graph/property/Path.html'><interface>Path</interface></ulink>">
@@ -109,7 +115,7 @@
 <!ENTITY Property						       		"<ulink url='&API;graph/property/Property.html'><interface>Property</interface></ulink>">
 <!ENTITY DateTime						       		"<ulink url='&API;graph/property/DateTime.html'><interface>DateTime</interface></ulink>">
 <!ENTITY Binary							       		"<ulink url='&API;graph/property/Binary.html'><interface>Binary</interface></ulink>">
-<!ENTITY Reference							       		"<ulink url='&API;graph/property/Reference'><interface>Reference</interface></ulink>">
+<!ENTITY Reference							      "<ulink url='&API;graph/property/Reference'><interface>Reference</interface></ulink>">
 <!ENTITY ValueFactory		       				"<ulink url='&API;graph/property/ValueFactory.html'><interface>ValueFactory</interface></ulink>">
 <!ENTITY ValueFactories       				"<ulink url='&API;graph/property/ValueFactories.html'><interface>ValueFactories</interface></ulink>">
 <!ENTITY ValueFormatException  				"<ulink url='&API;graph/property/ValueFormatException.html'><classname>ValueFormatException</classname></ulink>">
@@ -151,8 +157,8 @@
 <!ENTITY UnsupportedRequestException	"<ulink url='&API;graph/request/UnsupportedRequestException.html'><classname>UnsupportedRequestException</classname></ulink>">
 <!ENTITY RequestProcessor	       			"<ulink url='&API;graph/request/processor/RequestProcessor.html'><classname>RequestProcessor</classname></ulink>">
 <!ENTITY StreamSequencer		    			"<ulink url='&API;graph/sequencer/StreamSequencer.html'><interface>StreamSequencer</interface></ulink>">
-<!ENTITY StreamSequencerContext			"<ulink url='&API;graph/sequencer/StreamSequencerContext.html'><interface>StreamSequencerContext</interface></ulink>">
-<!ENTITY Sequencer		    			"<ulink url='&API;repository/sequencer/Sequencer.html'><interface>Sequencer</interface></ulink>">
+<!ENTITY StreamSequencerContext				"<ulink url='&API;graph/sequencer/StreamSequencerContext.html'><interface>StreamSequencerContext</interface></ulink>">
+<!ENTITY Sequencer		    						"<ulink url='&API;repository/sequencer/Sequencer.html'><interface>Sequencer</interface></ulink>">
 <!ENTITY SequencerOutput		    			"<ulink url='&API;graph/sequencer/SequencerOutput.html'><interface>SequencerOutput</interface></ulink>">
 <!ENTITY SequencerContext		    			"<ulink url='&API;graph/sequencer/SequencerContext.html'><interface>SequencerContext</interface></ulink>">
 <!ENTITY MimeTypeDetector					  	"<ulink url='&API;graph/mimetype/MimeTypeDetector.html'><interface>MimeTypeDetector</interface></ulink>">
@@ -164,6 +170,7 @@
 <!ENTITY NetChangeObserver						"<ulink url='&API;graph/observer/NetChangeObserver.html'><classname>NetChangeObserver</classname></ulink>">
 <!ENTITY ChangeObservers							"<ulink url='&API;graph/observer/ChangeObservers.html'><classname>ChangeObservers</classname></ulink>">
 <!ENTITY Changes											"<ulink url='&API;graph/observer/Changes.html'><classname>Changes</classname></ulink>">
+<!ENTITY SearchEngine									"<ulink url='&API;graph/search/SearchEngine.html'><interface>SearchEngine</interface></ulink>">
 
 <!-- Types in dna-repository -->
 
@@ -188,6 +195,7 @@
 <!ENTITY JcrConfiguration		       		"<ulink url='&API;jcr/JcrConfiguration.html'><classname>JcrConfiguration</classname></ulink>">
 <!ENTITY JcrRepository			       		"<ulink url='&API;jcr/JcrRepository.html'><classname>JcrRepository</classname></ulink>">
 <!ENTITY JcrSession					       		"<ulink url='&API;jcr/JcrSession.html'><classname>JcrSession</classname></ulink>">
+<!ENTITY JndiRepositoryFactory			  "<ulink url='&API;jcr/JcrRepository.html'><classname>JndiRepositoryFactory</classname></ulink>">
 <!ENTITY SecurityContextCredentials   "<ulink url='&API;jcr/SecurityContextCredentials.html'><classname>SecurityContextCredentials</classname></ulink>">
 <!ENTITY JcrNodeTypeManager       		"<ulink url='&API;jcr/JcrNodeTypeManager.html'><classname>JcrNodeTypeManager</classname></ulink>">
 <!ENTITY NodeTypeTemplate          		"<ulink url='&API;jcr/nodetype/NodeTypeTemplate.html'><interface>NodeTypeTemplate</interface></ulink>">
@@ -199,11 +207,11 @@
 
 <!-- Types in extensions/ -->
 
-<!ENTITY FileSystemSource  				"<ulink url='&API;connector/filesystem/FileSystemSource.html'><classname>FileSystemSource</classname></ulink>">
+<!ENTITY FileSystemSource  						"<ulink url='&API;connector/filesystem/FileSystemSource.html'><classname>FileSystemSource</classname></ulink>">
 <!ENTITY CustomPropertiesFactory  		"<ulink url='&API;connector/filesystem/CustomPropertiesFactory'><classname>CustomPropertiesFactory</classname></ulink>">
 <!ENTITY JpaSource  									"<ulink url='&API;connector/store/jpa/JpaSource.html'><classname>JpaSource</classname></ulink>">
-<!ENTITY JdbcMetadataSource  			"<ulink url='&API;connector/meta/jdbc/JdbcMetadataSource.html'><classname>JdbcMetadataSource</classname></ulink>">
-<!ENTITY MetadataCollector  			"<ulink url='&API;connector/meta/jdbc/MetadataCollector'><classname>MetadataCollector</classname></ulink>">
+<!ENTITY JdbcMetadataSource  					"<ulink url='&API;connector/meta/jdbc/JdbcMetadataSource.html'><classname>JdbcMetadataSource</classname></ulink>">
+<!ENTITY MetadataCollector  					"<ulink url='&API;connector/meta/jdbc/MetadataCollector'><classname>MetadataCollector</classname></ulink>">
 <!ENTITY SVNRepositorySource  				"<ulink url='&API;connector/svn/SVNRepositorySource.html'><classname>SVNRepositorySource</classname></ulink>">
 <!ENTITY JBossCacheRepository			  	"<ulink url='&API;connector/jbosscache/JBossCacheRepository.html'><classname>JBossCacheRepository</classname></ulink>">
 <!ENTITY JBossCacheSource  						"<ulink url='&API;connector/jbosscache/JBossCacheSource.html'><classname>JBossCacheSource</classname></ulink>">
@@ -216,12 +224,12 @@
 <!ENTITY RepositoryProvider	  				"<ulink url='&API;web/jcr/rest/spi/RepositoryProvider.html'><classname>RepositoryProvider</classname></ulink>">
 
 <!ENTITY JavaMetadataSequencer		  	"<ulink url='&API;sequencer/java/JavaMetadataSequencer.html'><classname>JavaMetadataSequencer</classname></ulink>">
-<!ENTITY ClassFileSequencer		  		"<ulink url='&API;sequencer/classfile/ClassFileSequencer.html'><classname>ClassFileSequencer</classname></ulink>">
-<!ENTITY ClassFileRecorder		  		"<ulink url='&API;sequencer/classfile/ClassFileRecorder.html'><classname>ClassFileRecorder</classname></ulink>">
+<!ENTITY ClassFileSequencer		  			"<ulink url='&API;sequencer/classfile/ClassFileSequencer.html'><classname>ClassFileSequencer</classname></ulink>">
+<!ENTITY ClassFileRecorder		  			"<ulink url='&API;sequencer/classfile/ClassFileRecorder.html'><classname>ClassFileRecorder</classname></ulink>">
 <!ENTITY DefaultClassFileRecorder		  "<ulink url='&API;sequencer/classfile/DefaultClassFileRecorder.html'><classname>DefaultClassFileRecorder</classname></ulink>">
 
 <!ENTITY AbstractTextSequencer		  	"<ulink url='&API;sequencer/text/AbstractTextSequencer.html'><classname>AbstractTextSequencer</classname></ulink>">
 <!ENTITY DelimitedTextSequencer		  	"<ulink url='&API;sequencer/text/DelimitedTextSequencer'><classname>DelimitedTextSequencer</classname></ulink>">
-<!ENTITY FixedWidthTextSequencer		"<ulink url='&API;sequencer/text/FixedWidthTextSequencer'><classname>FixedWidthTextSequencer</classname></ulink>">
-<!ENTITY RowFactory		  				"<ulink url='&API;sequencer/text/RowFactory'><classname>RowFactory</classname></ulink>">
+<!ENTITY FixedWidthTextSequencer			"<ulink url='&API;sequencer/text/FixedWidthTextSequencer'><classname>FixedWidthTextSequencer</classname></ulink>">
+<!ENTITY RowFactory		  							"<ulink url='&API;sequencer/text/RowFactory'><classname>RowFactory</classname></ulink>">
 

Deleted: trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors-0.2.png
===================================================================
(Binary files differ)

Modified: trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors-future.png
===================================================================
(Binary files differ)

Added: trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors.png
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors.png	                        (rev 0)
+++ trunk/docs/reference/src/main/docbook/en-US/images/dna-connectors.png	2010-01-09 21:31:34 UTC (rev 1574)
@@ -0,0 +1,597 @@
+‰PNG
+
+
+Ûÿ—Lä6
+¿ÌA
+@)(Õà2¨M ´ƒNЀ0¦Á3ð¼ŸÀð‚ ,D€H;D†„!IHRƒt cȲƒ\ OÈ
+…¢¡D(
+Ê‚r¡¨º5@­Pԍ@“Ð3è5´m"Z3‚!ŒA¨"ô{„ˆG¤!Ž#Š•ˆZÄuÄ]Ä
+*êú",$ì œ&Ü,¼ B1‰9'2*ŠU¥ˆŠö‰®‹Iˆí;.vG쓸€¸£øñ6ñw¼v­o%É’v’‡%oJ~r’Ê’º+µ&-.í!'Ý/ýCFQ&Pæ¬Ì˜,­¬¾l¬lì9.9;¹£rrëòròþòåòOˆ
+f
+)
+­
++ŠŠ>ŠeŠãJD%3¥CJíJ_•唃”Ï+Ï«pª8ªœRy ŠQ5PMVmSý¢&¯ªV£¶¤.¨î©~F}ZƒMÃA#Wã¡&¦¥æQÍ>-Œ–‘VšV—6¤­§}Pû®öOd;:?uuuêvè=}½Cz=úh}SýLý‚Á.ƒƒQCVCgÃÓ†sFüF£KFïŒåŒ©Æ­Æ[&z&&¦ô¦ö¦%¦sf‚ffõf_Ì5ÍSÍû,è--N[,XJXî·lµVfV§¬&­ù¬¬­7wìÊÞ5nC¶ñ·i´ùnkl{Òvj·Ðî°Ýmv(;»R»—öòö‰öýÌžW6Ms睤œœúö0ïñÞÓ°ç§³•s©ók5—Ã.ã®B®T×î½L{}ö6¹!ÝìÝι­¹¹¸/y¨zõ˜Þ'µ/y߈§€'ճϋÃ+Äë®7É›âÝæCðñô¹æ‹óuóm¤ )®”z?”Ÿ‹_½?ÊßÕ¿!
+bERŻʽ•ª4ªjÎqžË:·YT=sÞê|û™å.º¸v‰riò²ÅåöÙšªZ–ÚÌÚïW¯,^uºú N·®¹^¬þLcц­ÆýËMîM£ÍæÍw¯©\»z]èúé¤G[ –ø–•ÖÀÖçm®moZÞì¹¥s«¥]®½æ¶Ðí³w8îäÝ¥¿{´Õq°c³3¦s¥+´ëu·_÷BϾžÙ{.÷&zí{õíêì·è¿ßô~ï€ñ@ÏÃ]ƒƒCúCÃÃ]
+vô>2}ÔÿØâñàè®Ñ‘1û±‰qçñ™	‰…'”'¯'C'W¦¢§6§Î g2gégóžr<=;'4W3/?ßòLçÙ½çVÏG\ƒW_$¼D¼<¶Ä´T¶,¼\ÿJíU×k«×o<ß¼yývû]Ö{Ö÷•¤>´~4ú8òÉíÓë•èUÄêÉÏÜŸkÖT×î}±ÿòükø×Ÿß²×¹Ök6Ô7îoºl¾ú·…Û*ù!þãæOËŸ³Ûac¿±ÀßXào,ð7øüþÆóóóóóóóÿó^‘^¿b$|Døù°z
+ªû¡ü´¡ìa£#©™õG玳
+GŸ¨<9‘å
+åYçGTöÏ–¼.ýxzãþ,[9…X¥T•Ê9Ãj«óŽö]ô»x9°&¼6îÊÁ«quñõ‡R›’›¯Q¯Gßk	h¥´yÜt¼eÕn|[ëŽÂ]ÑÎNº.D×f÷jÏ‹{c½}}wúëï—
+27<ìúÐ|DùÇ£oçF;Ç*Ç3'Ÿ˜OJMÑO­NÍ´Ì=žsšW}ÆölóùÌÂÍÅ8_嶤³L~…zµøzøMãÛüw	ï½>X}TùD^!¬|]]ü<¶Öý¥íkí·òõœÌ̓ߣ·"~þôÙ6ÛÞþ5ÿ8˜‡º0ß”ÀK˜-ò€ª¡U„	¢
+‰B†"ŸÂ¬Ì#´#zeÆ6ã\ð(|#­
+
+f¬·Øâؾ²Ç°opäœ\\…Üdîs<<mdòï^Þ·|Iü$þË:#‚!´P…°–ð”Hœ(£h£Ø±-ñÓÆ«’§¥Œ¤¾H_’qE˶ËQå¥å—*áÙ&+½P®R	QUQƒÔ†Ô‹5|4å´ðZÚ7uòtƒõÌõ¥Ðo
+GŒî_1)3Í0‹4§Z¤[æXUZ·í´™±ýhGc/á`ãétbÏuçYWÄ^7O÷"QO´—ºw¤Oá§îŸð8ˆ78 ¤3Œ)< â~$wÔê|Œaì¥xº„د““SRo¤‰¥æ:ræ(wVq6çñÚ“ª§:rózö~->VÊzüLR¹@ÅêCÕbç_^,ºl[óóJw]BƒzãvóÐõœÿ6…[Pû“;Mù]zl{õû¥Ø™‡¾?Üz´=†œÀN¦Yg%çtŸy,$¼È[j5ñý^þcèJÉçé¯ìë»7«·&Í¿h€ÐÐ^¨Cx!ڐLÈä
+”ºÉ
+­÷ˆäŠ:‹I‰m‹Jœ—L”Ú%-)ƒ–™–m“+–UpRTVbWÚV~a_W;«~X#TÓQËL[CGR—S¯Òÿ`ðÊpÞhÙxÆdÞô‘Ùˆù‹EË—V»06¬¶Ü»ìŒìýÒ«œÚöÌ»@®B{­ÝÝ<Þx²{Yx§ú<¤üüL	‡„tÿš»¾HލêTŒvlE<*!äÀl’Iò­ÙÔÊ4†ô¤Œ­#‰™ëYÇޏ?‰8u8›—^ÀTx¾X¡äÖiã²á³žå?+ÎÉT\ð¸¸}ùr­ò•ÙºC
+ô-Íû®ý¸q¢U¥íá-ïöÍ;Ç;„:¯w[õ<ìuëûr?v`}0~hã¡ûȓǎ£]ã‚éO^LNWͬ=Õ˜;8ßý»`ºH}QùrxiãÛké7ÊoµÞ¾7ÿ`ýÑð“â
+ãʇÕŸÏ­Qü²G”u¦õÎ
+÷õÍÜï¬ß‹·8·r¶6~xý¸ÿSþçƒmÊÎüÿ®ÁÚy
+óÞeóÖñ‹4±ƒ1ܲ ì`vûEPmþ‘''î‚1–çS¢ŒÿØ©ò²€kÐ
+Z¥uW¬•bù¹µôÕÊ϶´åWmiµ¥nEPT\YDDö}²ïû:“	ÿsÞ›;™IÞ›ÌL&!ËÜ|&o»÷¾{¿ïÜsÏ=÷Üs]®Q€38p"àDÀ‰€'Nœ8衸öÐr9‹åDÀ‰€'Nœ8p"àD at BÀÍVšu:hëëÀŠYñã<dEmoRÖºÀÃ×®®®pqq1ûq}Ä=>oÖ¡©¾×ZZ¤×µ޽W_¸j4FM±4=ï\›	W¢×>«áêv]quÒiç©–ÛtS]-Zôz˜·óÞÇGÝ<½àæá)Â¼”ƒ8vE[綬§>Hô=2ì}¸¹º¹ÃÃÛG‹q2ÅŒovvÌkk$ìLéN`H(Jåé
+ÿܽ¼¡q÷0ÃÉCÆïz]ctMM½žNCW
+<IV’ί³¬d•ÀšŸzW}‡ÂçÐXS%¼Oü#ð½ƒB9|âo˜Žà˜x‰q0á3Á»¹ÉhŽ®sá¥TdØ‹·±ºÒÑÙ_¿ü;¯€ D‰„)Ó?¨[q-ɸ„ôý»‘Ÿz
+U„k²za\Ç%#~ò4„
+Ö-¸]¾@tº‡èô,áYqýèÊÑo6¡ÓøÉ7!4ap—áYWQ†K{¾F.* ”Þѵ¹nù¹‘ðš8Ñc&!vüi°ª¡+æ¡Ì?íå¡Ú†z\úîäœ<ŠÊ¼«’°zÝ*êà³À¨Ñã©=ß‘ûÆÎôh/v\\¦5Æ/ïì	Ô–î®ÊuÉΝ#aƒ‡#fÜD§Œ7bÆ…é,ÝÙZ!|fþYÇ¢äÊE476ÚšEŽïB4é…#Ç"ñÆ™ð”Ú´i;gší­Z€®T‡Uõ•8ðî›$¨žµ&¯^'jìd$ßq¼|}%¦áîî.}
+‘VP‰j¸c@€ä	 cì.;)ºzßTy!)È:]3Z\\¡qŒâS*³ŽFó$¤û&3«ƒ`ùlÓ²ëŸÿ‹š¦1†~‚k3ÑTùÕø
+J’,¥a‹Î«3¸²]å·ÿz™WÙFXÑOpÕ“­TðWâ£`†Ñ\›©óÜõÏ—PM8cè'xJtJƒI¿ÄᝦӓŸ}€ôï¿5Bèq1õvd⬁‡žÍ)AN}3B‚àÓMK`uÕyøà\
+†
+€u>Í¤q eἌ̝¼bàêáe¬¿)MŠsãC“Ö¬²°Úún\ßÊ+—
+éǸ6‘Ï£3Ö&؋륽ߐÐÖF؏pm,-Bæþo†ëšF¬ÈÉ2'í~„g1âÌC{;…ge~Rwn1ǐD༌³Ø^¤Gx¿ÄCÃiÝÍþ=û°ä³K4øï¦@m­¶I^Ü™Ÿ¶‹ÞÉ€£¸ÏØù¥ÄC¹½×Ó‚ÒF²ëm],úi[cV–°€yè?¸q½svoCqa¡DUUUýóHK|²ðbªÄcÍðë!m—˜¼îº®ïÖý\ùö+›éÎ/+/Ž~ð°fÜ,ô#¬¹ÞÅǾGþ•t‰VYVâþœܾ;Ó§›ajrÑ:1Üd†qq÷“(†SmëéôÖQI¸9DèS‡!Ég;–_(Äü!CàE¹¨8ç‹àŠäØ`øRšÒò
+è½½PKSÃ5Àà¸X¯Ö#+'çËá	ñ¡R ™îçáRY=ÜÂ0eP¸t?$"7Û)•â
+­°
+…!Ö[Ô‰3ÊOÛÀxÒâʬ\0	¡ñHM˱;þßLüB»ŒÒõ\Ï–º"Á—¦¯	GǺê2\môDr„¼ºP Tqæ(Üb!((HºÕY\¹<¿c³È¾õØ	\õMµÈªüZjˆfj<
+Wöráë¶‚eÙíx:¾ýÛ‚gÅÙcp‹b7žÛö…êtìˆÁ‰øa²Lÿü±fÅxaá¦\”è†!ÀÐÕWàXV<¼‘=
+QJì?l at 4aã
+K¸°<z9ÅdÁÂRêÃŒ¸U <Ìõzo'ž(½žÒ¤6 &:ÜÐñ#F}-òÏCXòX47Ë
+²ÿ7Õªõ?ç¶}&gbúߪ¶Û}t§o×w+óBsü¬§»ú¬Ë(¼š‰(Yó'úKtg
+—5ç¼`º$ãbû¨½k{û„?ý
+3¼2  @¢U·­¶¯ã;¯y`
+Ó·ãù‹U¨"­Yè`Z²šTóÑÕbÅg[°xãnü™0¬ÜºûJ
+vQ
+Åxaónd¶$qí®Õ× (3eee’–µ¶¶Ö8Òe&"ǵ&ðÈWGƒµÐ›q]“_‹ËÇvã…cÜùqÐbÿ;ñRNƒ|iú¿©Å´Š¿-®<*³×ÒÌË=,ØŽ+1îš|,ÿxžÝD4×\‡U[¶â/§Ø<F^ËÓñôÆ]HoÒ£²ð ^xo7.])Ó«ž4˜çñôÇ»qI¯A½ÿc­ÖÓ»[éÕ&\i at TLÂAgqe
+6ïÀâ÷¶`Õž"\>ne[§œ+.§¢´´TÒÀÔÔÔHZVÖ²"@IËšMÞ
++7}‰·.R/f†[!jª³ðÒg'A
+v)]=‡—¶æBÛ®&:¸šŽââbISÈZÖºº:©ÿaÜx®Ôÿ°«´"¤Ô‚zÛí^º+1ë»Õy¡9~¶Ñ]™ºSÂN
+3µûé”õ6¬íîw¨®Ú‚lI}Óª•˜VíéÓÕ0çûBÍ)ÅaRž©?„ž¬ûøì	eí@%rÊä¨K¦GÉ`.V.Æâ‡À$Íbl,þüö*ƒ›?Å™Š?ÜO
+:	Ñø«Nåaâø¬º
+hÀúg1köX8ˆ5ÐC絯ž+Æ[I¦ôj®u´JõZ`ˆÝ¸v
+ÚƒgWµÛð´—NkJŠT§nÀ…ýÛñBš¬aÍ)£?…Óç"VÓŒo÷–Î_4°£1â;¢‹‹•X“ÈtÑž&³FzcÿVeZZªL“dX*½Ó+ ¿œçÏFáéqþøhÍ^Eš\;Å‹t°À´™sðÄð`jë¾Øde[×V–KkS¹‹¶Î«‰¹½›jY™þ*ó²¥²µýg/nëÆºJe¿óö;q,i=G@#õ1§ËâP¢‚Ûÿ¥4c7`ñÄ‘Ôghpã€Hœl!34%Ü&DÑ‚Òoq|àD¼5gˆ48)Ô‹·žÃÜÄQf¸A_	؁“eZŒpÅùSYÒ·Vâ’×êj$AŸµTÌEßc©ÿ©ÈËQõ`‰²xu¸én
+MÞcÝDZÓ£b>"ñ<)ØÐÖÙN5ñP曢­óâ+¥¶Îvþ–‚}¸qž´`–‹.é,®¡1H˜à…Tº¥X_½&N½S¦j‘[\‚ýG÷ãÙ¼)xc’RéhóRXך°}C­¤¬1ƸÁƍ6eáO¬„ŽÇpYX7Æ5œ¸B—M('V;???	Gî{Úö?ÝYðók¹‘ËÐýt'ún•ï @øÙ@wl–c-݉×X{dìõä‘@-ôN¬¹%Ø×ï0õd2éj"+±Íµ=²’¦â¾‘b˜àE#•ŽÍÄ€Zƒƒb‰ñÒ·óò–4«™5z“z²ÅÛº%zWÚº8¾ë2r}CvïÉÄÑað÷ñ§¬ÎâÛYoZš“ŽMt'ÑW‹wÞû›
+uˆ¥Ñê-¤]e¦£rÊ(µ|üFR®˜5%›vCNÂJ.…Ìy„Àöü+ÚYËÆ?Æ‹…~ƒ+1hÈDÚ‘æ0>ÌŠÀ¬Xõ€–ðcL…Mw`lë¸ZCƒŒyWâ*rNà
+$á´¢àŠd®MŸn ÷Óï}BW?OÄìÑÑÔ˜i&Ϭ@ÜZ¨š€œýiÈhàòiq"•6.	Ã
+#&Î@1€B¾J­Aüh¬Û³±wÝ­œ­Ò&7•Ä<8Qk4h0@ö¶w&PDL¥1“àŸ`Ì,¸1ðÏÚÀ˜^»¦Þ@ú
+®^!Ѹ'ô6…Æ ÃtºFŒãÉÌWz®†)Óÿ|öþ#U ‹HF„›*é’g`Âzr´ú \åÐdü9–Ô(Lòmé5ønüpî\¦øO­6‡ØÑS±ˆíYùÝmèÕZ\[HÔ\%:e[=•`/ÚŒg·kñ´—N[,tf<xoXõ—‡Ü`ê´Ù˜»v'ž¾LB‡¡ñúpü•K—mi2ŒˆK–<"Th’Þ#xÓa at L°o?–|ªÁj4©¯”l1My¿µ2Mµå¡B`mËC…ð*U´Í?»q#»QŽíÅÂcr¦³¦Ï&ÛTèTêë…AdpË×~(' ÿ?¿k2õd4ÁŠLq[sï8,ñ–¿—%=£ËLÂhU;Ü@Bð
+Ó¢±}?pƒ0S0¤2?´â&úæ—Œ™øñt«ièLß=©[éΤï¶Ä»‰îL1´æÜΜ¾#>Ù#±îD¿ÃuÖjup1‘•ÄÀJЪ#Ì0ø=Æ­Y™Y0#9°öMä‘–Ìî@~R+š®ÁÛÓ^’3jZH@»–<Ï'ÑÔFÙ@ñŠIÐëšP­#Ã\wr—âÞ:EÂ÷+há
+ßö”mPM’I§:jÀ®dûÈOÕòi—¦œVâ~œ‹?ÿb:-thû´õúb“ªüÉèèhÄÇÇ#""!!!*ïŽl3®GÈgÛUòíhw踲‘×úÕ_Â÷®»ð“u‰5h Ì/LÂ2&&qqqÒyhh¨„+OY‹ë‰O7 cï×vÃJŽôÚÐ+K/aÑW¬¹w0´
+Zx°­­q.µ4£¢‘*GBD€§<Ù¦d¦ôJ9¡ºž:!w{›w>æÉ¬Ã5“&!Š}íÃUÐéэï"ëÀnó×Ûrå@<»ªý[K§ô)Km¤SxåЖËûW¿bjmâ^CuY¹º#ÀS¦‹ŽhR•–¬ IîTZ\È~\¢qÇÒ$9¾ÀY· ©}3Å€vÃÓ†l÷ÆôWYRŒ­¿_Ò[.ÛãÆþüö9Ì_x!¬ž„<_wS¦¯^ß:2k òs}M“ŠdŽQûë¾æ
+?jû
+ÊUcE.ÿ+ê¦cí¢yGd¡è[­7˜'rÿøñq&×uÜÿ0n‚O2ݥ܋cëß6¾Çö“öøu%Ýu%/,%%ôEweº”Ì,Ú
+üÖàÅtʈ­ú-ÈnÓþÐw°f6¸Áƒv·cZ}zxx¸$+±)›¶Zµ3ƒîGdÐÑÈAijxÔx ˜‡&¡9ŸF¸±zÒ¨z°jòÀpªq÷D°Bçûaô³ÜIXA-ñœ§w9ˆU'óhuæ‹Â*§i!m3ñc^bR†i¬Ö|-Ÿ1®üשУq%!¯ò*^Ùxl=GãuÂ*cÀ();‡k§P%³öôʝ?Êx
+Ð…èµ=ý©Ò™«Ѿ%Á“ì³Mè•m†|„I•lÁõZ'鵫ڿ½x:¾ýwv²¥Ó×gºkK–iR•–¬ IîHL¸¨Ci’$/‰gŠö.Ú:óÑvâv.(àF¼úi¯›S/…¶¬ŠÄ—U2Ç­ãøÐW㣭4Iýá⇘`®ü™82v,0ñO)t¾n¦».其Н˜îI|²³¤Ú‡°f¨Zh™Û´ U>Ú#+Y€]zdÖ»:D°j÷F
+Æßs†y)¯†l½Ko‡‚èAX5
+£iSkcÂÀKØÐyÛ£µytV^mÿžž„+	bž˜}Ët,ˆ¨êuÁ´Œ£`¾m1åkk‚ÏʸÖä'â¸ûGã¿ïrµh."âvõ±;qßÁÑuêoxZK¿¶àÜ×0äºÁKà%޶àÒa\²Ï\~Çl„·Jä&é².ž5rFM3z­éè]my¤ÀLMÓw~}‘î§Î`%§µ®2ý>÷f¬y`jJ«|.pÇŽêoÍs3Õš¶Çq¡iŒpZ²Ò‚Ò´Ô@+‹"´¢J€ËDkeF]­'áJz
+ï LÒºòÙb•
+m½gâJuñ º,Ö ÛÚ„«¡T=
+×^‹g¢Ó^‹!Ѥ Ç¶<³íu—4*šÕL;öˆ@;à%е¹(?Ó„Ý‚½°·ÒÀL¯v¦ï´æ¼·b-ê&°nK›m¯E|{Žv¬×u%
+vž–\ý°ÏÉESGáÑ´`äºrYB;
+¹“Ý—£Ôâct]¸v
+¶N\‹«Ïñ´Bë_WY€ÏŸ–<Ⱦ>ÇÐ"Ð(³-:;|OEбkC›Á¦Õq/—8Ú“sOÆ
+äA§‘¼âx™¬Ã°§ŽJi”4ªíãu¤õëÉm—|Uô`ºkuGwú'ÖŒŠu´Ú~ÊÏM–’(G0¿{
+gŽïÀ‹$¬ÆOŸŽ?Ý3‹‡h°f˼s¥Õ¥¿yšn¼j©Ä×~ƒó({KÑæjý;¸Z•-1¸Ú‚VÇqxvŒQÇ1ª‹/ቍ{±Ý{þûž9X6w®îß‹§¿J7õMßqF]CÝï|‚¯¤­³÷GðÑžŸF^BÞÉ0óíځYëû{xÛ¥=•îZ1´ö¬ÿaíXZUÇÙ¨a5¾Ð M_‹•Ç*ñ༻ð£(y1JBX(þäVFBlx|©ë‘•“óeðŽÀ„øPÉp½®²%®´R¬¦—+šD»¥Œà…ZdÔ 0È9y(ÔºÓ®!qˆõ”½èê+p,«
+ÞHŠ€ÞBwÚŒŒ«9H«hDHè
+ýäÖ]Æ÷x`TÜ@„èJq…ɪ°
+1/ejÚÖ™þëj‘®æ¢®¸E[ècj®¨ôK$¨_<µ˾¹€‘A8±÷ÖxàÖᡨQÀmÂ0lÚŸjÚ¤@ç…ÁúlüZáF»VÿøZêïgy`ÆøhªÌs¦k]e—ZÔÿÜÄnWÌ#¹ÿq5øEgº+Ï½Š‚sÇÎm¨¯ã¶ëŠŠn¡;·ö}wK(¦£˜fiGwuúk(qQ¦;áJ­£¾»
+„Ò%Ó)¯€ÏØ÷
+š%'ïícu	Öúÿkµ*m¼{°f²É¥¢+mÍÊíši•¢O·VVjdû;F
+kûGíïh<È÷T¨'±Ÿ¶ACv;dƒR™‰U´‡åsÌE
+»¶>
+ÔÑÞäLÚÝI¯rY˜Þï#zWQÇt
+„f¹vÏžÔþ¯'ž5´mg4ÂiS“¶Á‹}®¶ÔbëÖ³˜5û,ä$0q^Ä÷Îã­$fV
+49!œ\*ó×xÚ€ôKv5÷øHÉ{ÇÍÑ>xzËeÜ5x¾ÙšŠi3çâ‰áÄ_[bá¹fJ‚ïÂÏCSÑ|óDk
+X¿ÑRYº&;ƒÛÚ)´½)!×¾Í*¸M&Árm.³øá$7ÆÆ’?×8TÜ2ZÆá—3£ñüÙ(<=έ٫ø
+EY¦ÍœC¸[穦-ØsÝQÛí.º»#<L¡ï.‡ÑgO¤»ƒµj¿C¦(WÏ)¶ñ¾ˆµM«¶‘wÉU´úÅR"Ýy?ÚñÆÜƒ{
+†uÓ-î&4Ø„¾¹ƒ²$‘óê ¬rMœ¸2
+ŽÁ•zp¢µAFZ§Í"@ôÇâbwÓ«TŒ±ÚŽã‘”sìž=©ý_O<½|ië+ ýPdb2~,Úp  ‚vÉÔð~J˜&¦í]¤Õ 1‰¨Ð¤¾´ˆÂY¼üI޼¿}Y%]G –v¦á÷L5,–¥˜~üAºÓÞ†CÇ[pëå8ªeéFšìndÈ£Øf©žj¸é¤
+@€Uë7J[Ž#”úŠ?¦I«‚m5J[‰sÐ[ÂM”%œ·yî¾ÐQۍ»Ö-tW£e÷–
+}7Ñ7‰žFwö|¡®ÂZ•†I»©ÔÆû"Ö6	¬áb€ýÇp©~ˆ¬A5|ÍÚFpž0¬¼Ç‹îèH
+ƒËfTS'ïN}¿˜"M‚™_gÈsgÏÁí<ˆ±`W_‹Rg}É4¹
+W&% B»u|ÝI¯Y›:w¥êÞc§ðä¢ö”ö=ñôð$q±»sª1œg”D¨-À›÷cÑ=·JwdÑG~¨áòz’ù/ç±D“
+øê[¨›K˜ˆ_O&9vlnD>mÍjÜç^‚ßCöþWÉ£=íä'ã³EDfe¡u›¾¿S¸ª¤Òf•éRî´ßw'†P/©w½†²Šøø¹â4gg„Gà6°Êß°ƒ²;úÐQÛ]µ0Vz¥r™Gw´ÞE±ïŽ~ڍÀöº³ãCt)Ö
+4¬ÖÆû"Ö­ÔaŇñ
+£½â)ÞÊu'q±º‰„H²Í̹„öcÂÌ8„ûøÓÓ³ø6GöPš“ŽMt'ÑŸì‚E¿L
+Éí‹ÆÇaž:ìþl7¶Tè!¶S±WzO3ΜގUÛË$¡–
+ìëH}áncYŠ×m·œ¸v
+ÔŽÆÕb)û½:Ï~Ùþ5AøÉ´hìßµ_åT’$²ç®-ÁúõûI{:cÃüA˰=-_ò o(Á&⯳Fò‚?ÛãHÓÎY$"{ ÒÏùG±rk±4û5+X—V ½§¢8/Ò÷å´µ(‡œ²ZèÝ}V)ÓÎüëfܼüƒ%ÍjfÁ¾ð¨/ÄŠ­{iápf%¨áÆýœµš„›óŽÚn°¿µ%ºSí»
+åìqtg(—-‡îÄšË¥ÖÆû"Ö6iXió9Üù³9Àw;°âƒ‹Æo8wæ-¸Ÿì 44mÿ—ÙÉx~ëIPå÷̽Éd¯ÅÓ)~&os#CØWyJŸÜÆãœFLš6s×îÄÓ¤Á•ÂЉx}8k%ðë¹£ñ¬ñ=X|_í÷܈xbÍ+ׇåo¶X9Þò߉k×|	ûq•ìéIp0Òµ‹dםôªX³‚u×…ýxö¤ö½ñL5Ï5Ÿ$Áq;>Ÿnèxüeú0ÉÎô‡sgàòú½x°~&vôT,b{ÖrЬH“²u
+Ž%ã¾ÃŠuލçFœ\ƒÉÓoÁéu»ðÄYùѬ™³1†¶Nu{¶#6ønØTQ—.:ڍ›¾R¥ÍªãÏp<sÇx,ÙB[©ê3wö\Œ'õЏ¹ %&Ø·K>Õà
+µoh¡,]›![Ëm—#Ùô­
+tÈv›è޼](öÝDñ=”î
+¬Õú@µ÷A¬]hÕ›ä߁WjµZ|÷-äŸ:ÒáÇilj‚–fM4$yú¶q”¬×5¡ZGÓO´Â> Í³3náªÈ‹«;xQ‚IÐëI›JöÞÞ´bÒxÿt4뮑…áΔ%•VÊ–ÑNááሉ‰A||<¢¢¢j\éÊ+5-ëÑÿƒìÃû,E•žõ\/6´ ˆ¶re\£iç1Æuà@r©Cv¢¼º½2X‹ë‰Ï>@æw;¸-Èó°WA§Ç>zWîqâI\":-´‘N™‡æœ=‰ƒkþÑ!†zñ¯fbV
+¼§è«ëµÐ»¸#ØÛœïu˜±BñëÚø™ñJލG]C34´êÜËÀ3ù®ŽúW˜ò·¿,UäiáÄ5š!“Úx\\œÔæùšÛ:¯zçïì–©‚¼+lÿóüz‹¡;qõ1M×àíiŽnÜŽZ\4†MìǍ»åíäQ'88‘‘‘ˆ•~ì–Œù¤ðàFk>80ݥ܋¼c;~h©é.ºSî»GwÅ$œœwñS¤;Æ”û¦;[߆†ìøß¥h¨0±ÏQɨ?`ÍUßWC² ÍæpŸÎ´Êíœe%¦Uá- £>]B³ÛFNèâ"x0Ìb)\x‘['µ)*»'‚-Ëq
+9ªÝrA€·X€`G£ñ gæ÷@pçaŸ!tª,„‰À…mÏŵx—Ò±5ŽuÀö\	ÉvX2vãVÌ”•ï‰8Ö¡J6Õý€^;ƒ«ÀSqó'N<[iØáfÈôžÚ¹Æø—*ŸÔ À§sS˪ÃûîDÿÊkÒ5ð5ú¶nÍÆ„ÕÖ`Y¸}šÒ–À‡ï‰¿G:·²óéNÜH’G°a=p+|¦Œ»JjEÎ~Üø
+>ŠkqϤôOà*®--µ]®WwНrßÍŠ¦Vô:[c!ð¸™>³„UÛg"}Ûûj×ýkóv.ðx‰k5œ¬½oX­MПâ1ÈLèÌ„àâØŸppt]•påw8±íÒN\;‡_ÛÔvãi0Úæ×/¯IÖru‘y(óRÖ2®Î¶Þ150^ütØq
+k‡ïçÔÛc̸ïvÒ]×M­²Æ_ø·íŠ6n&°ò|‡G#(`$m‹ÜBî9èG«®Ñ¯¥¥uw"Ùˆ ëA¸žo`,<²kàV#«LôâCp¹lù×gÈ
+„Ý‘‰72Nâǘ2|l<"œtÇÈ6´(Ü-³Éˆ›ècÔ°k‹¥¥kÎ?xz2¼j¤v-ÉIl
+Âýù5™Vé#YÜ·ÍRþ½éS၃¹h"s"OƒbiU˜ª0VJ´joÍVÎ䚆€ÖèAf8´›Žý8J»hö¾¯W¥ó*ѽ‘ˆßÄÖÅ|ÓóŽ*vðd\y¾HCv½š~Š)ãäY¡ƒ{Ý5	Wf L;/[pe<¸J³ZO¶¿úÎáêÄS“þ{U’·‘šÛñ$9¬Å•|LÑÑ•X'‰LáÆ|ûÓI‹ñPòÏÍ<T´kÓ¶ÎXð}‰бŕ\(TܺÑ	ÿúc`<ÄA¦¶Cq4Æ1;éNF¤žìµÝÉŸ¦Ý)âg¦å‹f=yIÒÓÚ
+<î’Ç^L«ý^]ȾۓÓ+ãÍÂ*ã˃>ŠŸV'ÿ™I¢ýˆ,KK®qÓÐ –i1ؼWóOË„ìá!k
+˜Û‹½éÌKÓw®4ä$ÓÃCž³W'žæ´ ã)·[ðtâØŠ#cÁóPÆP«|¿­¶Ë‰[+n|Æx±
+Ó(/ª0`ze¬‰—Q`åL…¶«¯jo}4®´Ú“˜ÿĨA0Yk±râÚ}ÆÕƒ¶ù¸rAØN\Ûãeíföâê¤Óö(»ÚA§ü
+¬¥áöoì{w\È~•y§¼„Ð%j*°búss„
+ÆlE’>EØñ‘qÄÍŒD<ë'®íØÙƒ«OÇàÉ4ì(æÜ¾D½ïË¡L¦<”ñ1ýq­ýõ¾v]‰…’D`ÇGA[â(Þ.ӝ¸r5º3ÅÑV¤˜N%ìû¾	ºÕÐð€Š5¬b€ Ž|Ÿ±ý’ÕZˆh4¸à <˜Ã8ƒ„€NGû7Ë?ÆFüø!®5Aà*¹5	úAÆTøýd%ß…†Q¯DƒV`àĵ=HÍäÓÓ^\x*ái;2ƒ¶–7´c߻ˤ¸½ët:	¦OÑæMqô×÷°¿FMä;—ñØ1Ž3q¹Ët'®œGîG,Ñ][ü¬EŒéTJ듌1}2ÞŒãÃ*ùÇtÉ?>wD0Ó°JZ'‡9âÝ=>½¾MM2á3ãàŸ­¡µa8Ø5K¸Ê« v§££W'¬F¨dz•[qmÅÓ	¨
+¡•…UqO:éä?£ÀjÌÇ1‚°1»Þ|ÂŒBGÛfñ‚ÏùC0ÁÚGðŽV_‘
+Ÿä`Ö£Óà™z_\¨¢-Oh•­Ü‘8ffŽ
+ã…ô=*°›šæfy ÀÄ.ðG›
+ëxXmz}OŠÌkY…p ðG«Êê ‘°Uïêá‘Ø¥ŸÃèÔu5mï>WNáÓÃeð¤½ë›¤¼¹½¢ö)µwŽûñæËôT<§-4#ñÃ[†#ĸÁO2Ä;¯ì„´;k\
+~ýèLÜ2*Ä¥•³`~É»0	*ø'Ó$ÿøº[ƒ¶Û7D	½”qóä—Ïl
+NÄý“öß3•Çöã FàÂ_eKàv̸ñQà$Ž6µi[^ÚA\mQ:6nOh
+‚MÚz„Œš†©×.`/aöà8
+¶¿4)aíE‘®+ì2Rî†]ùþþ”7Ó§þmYl‘DÛ&ޤU£I
+ìx`ev•fÚÞ+2OcóÖ\øF„!&šÛ{	µ÷7±äƒ‹ ÝªÁq7l݇&zžH<!&ÂÖ~€«N¡Aª`NlZ%$¬&.z¯¾ü,îŽþi^?\. èô‘iJêÐTh’_ ѝɱÓ/µ”AK޾çéâëwòãîç
+?ZOe¬®•ÛN}þi¬½Zo)§.&„Un׌‘èøù\`fVˆ®"<“—èëËðñÖL€°óeìèçççÒŠè›QKÛCCWïˆöÒk„òÄ$ƒn:¦(öòBKÅTÄÞR‚>þŒ1rÓjWªÂë3üoïáGÖVñà"˜™G Z²á DÒŒœŠÏkШNDLÙ¼_.ûŠãxUÙ™8x*:Ÿ
+(jFCö1<òÌ;H«oF¥tRë zßõdE€)v=WGÔ¸ûòpâê8¬©õÛG§Ý éµlÕ¥CS°(ØyV€
+”W4 ¡®UÕå8øÝ	`Ò$–söe1·„U‘ßàÛaã»S*1M
+ºç||T¼»»Ž>ô¢ÊŠèÉT¡ø%ÿ´¤¶à–<wЁ¥iAêæuxœ¹õUøê¥Õ˜ÿÇà ã«.3~‘)n¦ç¦…`z햐݄r-õìi“
+ùÞÄS{‹Í‹@&ëæ¯ÄÒW® ²ä
+–=÷w¼²§È<N]	œ8{qnzìÔk»	êN•±›LÛ¾N´o~ au\æŽ*äõʇqC€.޶–ɁßLåÕ¬؍ÇÝmöü©hoš«)ǧ/íÆœgãé)l“5	ƒüÿˆÛ³ðx²GÂ
+¸ÿžiÇŒ|µZ]Q¾Oó@fùÛw!w`[‘‡=Øv“…ìÁG§8Š¢Ú‚«³õÔè¨Ðþù©%<-=3ɹ‹NÉo4)¯üÝ
+*UaùÓ1×ý’ÑÍ‹Úqœ¯A;kÅ
+Þò×ô¦ýç9SºTÂIéžý/VOIþô*6˜D™¿âyü˜8qèñ¹¾4
+K×gbéë¿Ãa¤ß¹3ÿóÈj|—=wÆ9‚ò[”ã!:}Ža	KÏ”s·÷.£³
+=²Ó$ƒH¬|÷I¸¹'˜h¥åǹGöàc­Û8të¶ÑxäOGðÐô;e
+´InŽ8e>&0á£éygóyu6Ÿ¾’^`-pîJ|Ö¾c­ÙՁv4jØrm6Ön˜
+?ŽÓÒ€S_}ŠK÷a»cIO˜@Ó5RpE(-ÀÀ·eþÑDŒÆûxìCԁ¥à©§bF¤Ù¡(ß7dà<8p"Ш¶wõ—ÓÌ«!$âå5c8	 ¬‰-»tÿé]ìœô†Ö´Æ±¥#M‹§f5"1),ØõÅÀ6¼÷ý÷bÜ›ä-iVA{øRmóÚ×V[#Û±¾üôI£‰,:Lh2Õmóƒþ¸Þ³°ú©ð'Sêh 'û?¢±,Ȭ•Ân¼ø\ªü<»ˆ®QMæ­])°*Åy« `ƒÀÚŒ›÷¢yòtL`íȲg¶íÅ‘ÊPüøþ±7Qœ:ŒOÖbê¼iC1ú
+òčt
+ÉΟ¶LôŽÂo×<}C%ÒÏ^Š¿®Fî/Áφ*ßÿÅX'÷¶`%í6Ò
+âu_b+i —ßåO÷êñ3Z1¬FíÚ‹xo¿¼ª¸¯vîŽúÒ%ÔÞ¿(ˆÀÏn‹EÚ¶ý8]I.ã„G¿`ÜxÓ8$Ó@‰ƒU+ܵUØûå.üý#žÚFß:?»w
+†÷%^b©½KÕ6ÿGžÞ8,x(ˆîËÒ—§—hIk5*	sH;VOÂVdR°v.TLÄøàÖl²¾ÿK×Ä`íÆ¾+°²èGšd3¡\^ŒÖŠ…|&¦KW.A)`õ=JrËái´Ðl› \{!ˆfÚ¬áyz
+Œ&݁ÿ~l8×·¦䐋†hpûb°äEáî	VzœàÑwÎbò£3£Öùع‘lй½»¢·÷YJª:(Z·~®ÔØ2²lA>RnþüsÏf
+ u8¸~v|³yõ×o%¡(Mo:2›<p&V· çr6]yÂSúŠÄMÏ—"³¨
+y¥È¥VëV.iM`Ù¶}ñí%ÔR
+}u6Ö¯ÉÄœ9q(ܼü;Þ‘Q˜|ëxÌ£çÕÔ¡eªÜ§Ç½0XG»ÚâËxãàÁ9ñðÖk¥Ã©4bUq/¥[‹\]†Ík‹%ºÍ?ºŸ¨G$­n‰&iéü6,]üg|š&ký:\á®-Â돼Jª¿yñxuÅO1ºj'ž{b
+ÎTwkµºüeÛ{vò©½ç’Ö*ãòE¼þÄûÔÞgc&
+fåPÜ¼rñ¯6Ï¥‚I#–˜„ùt¾ü‰íH-ª£…QÍÈ¥AÅbâSž+»VÃ{zãÁbË6VÈ;"JÒ¬f”WH2§¨¸‚¥/½b­
+]§1·þw	M'kjoD…ù"çЗXþÒÕ>„%/
+VWZß„=ߤJÞ¬Nc!bîîõxàÑ’÷j轺ϲMABy±€¾®ó‰ñ4âäÙ<èü£0cJœâˆ‹[Jaë‰<ÌM¤ih
+úÒ«X˲–YP^‰Y›—KºxVä!­P¡F` ¶è½ŽÆô	1
+X32NÃéì:FÇc
+ÝçU®rY]1À§
+ÇÓ€!£c(i'›‘•–CKc+æÍŠÔã.<0ù±ÛðÆïßǽÉ…›OS[	4
+Ë’P8„ç2–:aúl¬úÍT²rÅÏÿž~óI†åpû=ø5Ù³zþ)¦ÐýØ$?ˆ›ŽUcB0P復þïˆvkpî/ˆ$-5i¤c
++†‘F¦ý‘uæ2ò/E
+Cô$,ݱ‹ú÷ŒË*^¸€ÚŠ<ž‡/ŒJŒƒ§z"õY•Hˆ';t0•ÊA9
+Å—ú%O¤(ÄГبПЬáÉSlèS™C1¼\=aМ«ºÌd|'ÊØ]Gc»´å…Úâ,]¶’DbÎí‘Ø±u¶Þ¿«îiOɺúHÌ{x6¯?‡ÜŸ$"†>hΩ34}=SÎ7¼V^‰ÉÆíó̗¶àå‘·aÝ裂ôÌ.<·–
+¦¶©ûеÁ‹‚ŸÁ«ðÞdšS›y
+ó—~Ž„[§#¥jÞøW$–½¾ˆ?:ìzí/ø'=çÜž‚¾Iò
+.™“©¦ñ+6ödQU£üð§§Û÷'¿Z†GÛ3Øy"Iãó}Ö$œéPfêX¾ãœ»3ØÇÝ¥Ñi$–¿õ¤dÿôãÁä×î‹Ô’ÀêMî.¤Éê<Hû¡«)Bäˆ;qÞÆ‘+s3T‡CkÒ0ÿ™û‘oX-­ÄÍ#6êü7>;šòžˆ2Z¡9Á pޝXƒÅ§Šñ_‰¹$¬ÂXÌ„ÿ}t5ögŽ7ø#–®Z†#]qÄ}/VÈ#u
+.0aÌÆÄhû`èÎeö.êXBèg{`Ô¿}22r	V0–Q»ß>‡ÞsG…vµ÷LÁ¯ÿߨóÑʼDè3‹©Ndÿ窑ƺsH˜|ú¦0`~2/Ü-Mׄ’àÏACZÑ«¤¹½à&Ü}[ðƒÁøtW…äú†ÇÉ÷‘Mð#lûûÃAh º<–=s|ò“ûñ·‡’%>¹x}æZxŸô²¾úÏן|TР6’`U_áNÊ$D¶j $ëìêDü^s´»½[WCo__ÅÙ1ëR÷“XÒ7è'uí‚jz…tA¾=/KV±*yQx™o|ŽÑ‹žÄÿJ3@³²†<õì-Ä'7U°Ú*O-ºu(î}æé?µø^%Íæ;å~i擏㙙QÐ]TìO<"‡ã·O&ᩯ†à¹{†@Ÿ-o$¤ÏKí@fj-©|çß̝ùfvJj4cýˆ¸h [>ò” xùÝä²ù„bú‚H,>Pˆ;"ȝMçŧ†’[Z‰©§þ+ad˜	CMÄÈXaíj
+È…ÛŒåW¸d³)¯ïd[¥ÙH‰”«š<“49Ë. äÑ8¤~r†ìµ~)¹Û0Åyèó¨Ñ.Mʰš‰“³˜ŽRâ*xww–—ÚoŒþÕ
+Xó¯·1o­¼
+¤¥ëšh›ZjI«’)«Ú
+÷g¥\ÊvÑ©-* ó¡ 4á–Þé|æDÀ‰€‡"ÀLOÁ‹‚k¾">vÍ›X̆ä4;Å|?.Õ“ø:Ãò”Gxyî¡ « 3å4µwÆI`¤
+å˜ðˆTïOš›iA6¹w“NÑ¢å{d&EùNN{=ÿÛ)°R‘
+,¾oüàõŘ(ÝÐ ˆ4¬ô\§wGÂø©ÀâcØâA½Ñ­ÓȐõR"È9(­ÄÔ§s"žÒ‘íâ8}£$hÈ]U*©|Ít[ê0ISfHê7h8fâ5ìú>
+(΂ñ¤5s†þ…€"í‚H”А\¸(=à{ÍN™N×§£(§
+@î÷Û°ìM;­ø%~„Âíkðº<Â’_bñ}r”žüŸ7¤x€0XµîAÉÆÚ͍զ´óŒ±Ð®Æ3>)8yY4
+J¶Á²ÀJŠVÅî×0€T5gä –4­#þ:lY¼~›ç9V3pNœt#
+^$¥0ï™Çq÷0^û„¦Šr“ÞÙWŸFe3ÌLs)ÛôCJiü$q•âú‰ûη]° 3©õ‘íòèÞ潆Þ‚¨Hþ¶jEÙ—`ä`28ƒµŸgbÁÌ8z“^@ŽÎ®ÄtâQÆnl;U.Õ äÔ1É)ôHinѼVš0Ì}8þµ…삽Ävµµ-È8¼ÿóÀrÌãßsŸb×9¹Þ­q¬?+8¾·?½õoêÃ1õ•xmÑJ¬OkB™šÜ>wUV–>}HoøÞWéÒ`ª<í¤4ûàŽfZä…‘qH¦…VÞu…øf=ë-ŽÌz€Þ¡Ü&Ӑ‘WGM½
+'¿#¦|Cë––g‹‹QP*¯^Oý~/ÿ×qší˜…ÁF˵îÞ˜xß=äY`^ú %´ËŽ–°<ðÁ'R›_vcd¯Á‰ùÔëkváHž¡73”œÝz}¸æK|iàgêj¡]¬´&ƒ
+ïŧµyv…ÃûÂ÷¢ ¯.—k>”ùâoâímDæÐZ]­a÷+«ôˆ%—Ïâ•?ú•?~Ší§Šl¦-ûè²@¨^PÜ0Ø|´šà@„û5bû²w±)O  J·_Kí½w¤už´ƒzš¶/²ÜŸ°ÔD6Ä­©l’™Z“]÷3›4¬lNjìRYæ4
+m¯
+Ïä4Œ”?n\„×úb|<õJt‹»4i8aa%fÅðçL}ÒžÁÏLÇS/­2î^2ÿ·‹‘à
+r/JjwóÄC¦Œh×}·nªÍ£ôЫœØ´ZÚ|Þ¢‡°p°/ŠÎžÄËZ…4ã.V¶½žlY6`œ`[ºÞÛjڍ3où э«dÃjqU1
+‚5Ðßf0£ïÿ)
+㥳µzu˜³èdK톆æIHXóæ?°…RÐÂÄŸ¤ ký;øtÄBËïë-ÀûFÓêàDÚ¸b%þ)•9/ÿj µÀÙ¶nÂã[Ee"q­N`¦,lj:\á>ÿ÷‡&üã÷á1²–C–¾ü\¯Z½]WšN®ýÒpÑo&?${Páºäœ¦÷7g0:f"îk¨žÒA_„ç~Ž_¯{ÒDÐWŠh~¯¾(kuƒaÉ/$»ÂyjÍH|²qb/Y$S…
+‹ÞÄÇ“faùŠðªÎÃú¿}½~7ÑDoŽ…òU3v<Jþ®_~&GPÊQûÈÝÚÌcxŒ~ÎYp?V>Œ²´cxù¥7‘ûÛ%øÅ}oÛI—}Êvò†\/7Üøó_`Þ·ñÈ>Óš~ÖÍ#…jV‘IÙbù…]ñ
+µ4d´jÖODŽPéOF?;F§
+P‡Oÿ¸kÉtdô¢ÇiF””O{×64Órê$þùÒ	Ìþ흘5–Ýø‘K4•¶_N~™O^©Bp|¼Ò¾Ä[ºbÕ<Ê›]¯µMƒJ|ùÚ*¬9š‚e/ßBü Ê.Ø:¬"**±÷p1ÂÂÂÀm<..N¢M¾æ¶îççZ,ÇÝPEy	|ûVÇ™*ÄÐæOæ VnxÃ
+t¦Í<Œ{—žÀ_Þx
+•YW°‡rÛóídÒŽlŠø—’)Šä2ñ5<öÌn¤e¦cŲWq×#ÇÚC8³ã#<õâþ^Ã/=½y:è¾8œ‰v}HWÉ÷,ÇgKSàZxË–}ƒyEÁ±=„g*™9•·ÇïhAºTïGŠØeå3¯b1õ=©6a	ùj}`ñÛ8™‡’kÊžFc‰¤$£´V9cÉ“B;a•Ÿ¨§á§Æ`¡?ѐý¶Â*§ëXf2æÞ#NLÔ==¢<]\7臥#f`ÜXYsÑÅ/thön$Ð NI“äF~ÞøU¤ÍòŸŽkn!sòá6¬{~ù¡9²gãÈ·í³S$¯)~ob}z%F»7‘Û°ŸÛ°±d¡EÐ¥?ãøåJܤ)ûÅ]úúïÈÑ8kîL&máj|—=wÆõJñÀ¡ßªÌÈi%íÄ4À²Þª¬œ‘ú Ôö²JÜð ÙÔ¿ü¹ÚKB>ªÉiâí7`dÔIì‘8*®mö5aó/çâø¾íX¸„¶pÔÔá¢bہ£¯Âa2´h>¤
+乞&E~Qø¨™+¨¸ÌéQ_„ÍÂ~;ýëçXò‘¡dä»û7ÍÄŒ¡1Xv+Ú¹3ç]"™«,½o†d¦3sø iÖ#jÂ<·º_Ý‹£[°]Rp´wG´q««Ø›Å£HÐ"ŽxçÎþÈK0ïé(lœF
+”…”bab¦ÿ¿)؉¿¿ò.ÖbðFßESÍ£'’˹Õ8rµÜRjpú2W!÷L!…´¹4ÃÏsMè2ª"O©ô#Ö¸¬ü%¹tö6ŠŸ¬_Þìg«+bF‘Sø^ú©›jj”KÞX…Ô¬F$&E"åÆ(|ñï7±ŒŒ»åÀ¶0Z¤ÈÄè9s.¼’ï!LO2¶±Û°Ö}ÃÝÉ ‹\Yr5fÈØyè7†ê­ÔÖQåœÏ‚@½’ئ~ñü4
+'hkÔù/ßߌCröZË®m8R3/,Ðø*·}š¶dáô‡ÆQ|1ìvÚÞ™Ò~DÊü‚ò4q…ãmÁeŽ”Mù3aVmœŠÚêåÓnˆß|‹¿/û;Ü__†w†!aÞxj:ðòâT²#_0?úA7Kk5tìSQ[­êZ¨nEKB")8ð¸ÔßÇ0:
+0¸&’žô†þ˜ñÐݘqÿ(¯¨FnF6¾²
+‹¯j°ñwãqÑÌòc%øq,ðF6y7™Nv~Êø‘}%¦KKýˆ5.+Y©ëX%8ÿ~&°öîo™DÂçÚ-¸P1QÚ°AÔ&ëûϱtMÖ¾UC†óá¾_-Äêÿ
+Þ5•ô4cRâh¡€iÇx1’'šÉ;vÔ
+´
+}/R+Hh­+ÂûϽWÉ@!°·³®Æ²uÞr"àD Ü¡³•Dl^»›ÌÆ!îåK®m¤ñg=êjµhPkûîÒ&*o|s	µ”oCÞe|MV,[©¦‘d¶i”]áXv™CÑz@ˆ9†„Ç-Øø}¨üzF3ŸÇa*[(¹‘ƒ‚;ƼxdÑGÈÓ„ yÂXüèG¤ û}YÄ¢™¦«´PÒþ
+õV™SˆÙ“n¹!š”ü{^ùš\¬Ñ‚ Z¿ ­+§­ªÉƒ	i£½¨?ˆŠydký÷5Ç1ïÁ$Éë‚*~&téìGzÒwîýeqjX{Õ7Ä}kþ½K¦©üóÈ%ÐÏfFÒÔ‰MÚ‚e‹–KµšB¶p£q¯ï* Á3ð›[×bé”k<é6¬¾1M»¨ó2ÌbñwyÝicÁÕ˜œó¿'C€„BOI at JO-†Z0¥­	‰×6úR² ä-l?ÀÊwïViû3ð·çŠO¿ù’±HijãÞqÃUÒàoSRZ]áü?u—9w³6¸¸¼ú«2,ù×j|ü¯ÖÍæIÌ0ìrØÎaâXšÒÞ‰ç.7&xjŝdËï†ÁÓ“°æÍ7‘ý<îVqG„ìèŒI[ygë­^ræŠñ÷/ÁSµ°â™•­eŽ›€åÏŽ“]‚‘P?}A
+ª€é#e7WÞjø¹7˜Ðå£xñÅÛðØŸ^ÃdžœçÑ7™Lë"²èÚ´ï1<6¸m8ÅsLœW=Ë­Uû=Í­•)<ì.ˆwՐg?3^-dÃÕ@†?†ûZ-Y°Ò
+AY™Îéôdmå§°JÑ4ã9i*:ãj̘ÉI_ukeRÅërÚÝZ] ôÒ®vke[1Õ\ې6Œýäöm¡í³Ë›ê&Z‰LÌŒÕÓ˜¹Â±à2ÇR=ºË­•±¿bý4¹:#¦+£ÕܲÍkaèM«·ýL°Ñ’+ ^]-¨áo|³COºÛ­•(¼ä†Ž<,hØíR€	ArsUþ>[4ÜÌí’2~¦tI‰» eV:ö\·VJ¥íÝ÷ºÓ­•sÓKi…Ý)ë6dFm¬ùš3e;œÎ¦@‚oˆi6%vFv"àDÀ1È®mÚçåJª¸k¡í³Ë›`cD‘€ŽêiZ…5Š&¹ÌiMÏ.ØzdPäWìÎðS¼üyšäÛ6¡MÑýXPU¨Œ	«­A
+ÿÖ}áLêWÚvÚR¬{™4¤çÉŒuÕ`3a•묌Ÿ)]R$ÅïÒsÖ¡;0m‘Ýù^络8p"àDÀ‰@7 лÝv@–_AÞNÆÌ¹cÄ"Å`^a9ó©®AÀ)°v
+®Î\8p"àD G лÝ^wÙeÚá9ẗÆY€~Œ€ÓK@?þøÎª;p"àDÀ‰€'Nz
+«Ko(w·”Ñ… p¡¦?~qÛkk
+Ãy9ƒ@ÀSÆ“ƒ]¸Â	¬Õ6´j®N4šLæ4i
+ž"ŽI.ýûÔ€!ƒÀظºÊ]Ÿ‹Ÿ
+¼.¦G>×ÛôÜ<—þ{%0á£%º³!‘¯­éúj|î3Ó×µíµ#êï4	°€"¹››+­˜ÔHÏ@¾…dÎG  ãJ«oMpÄÝARçc¸º0½:qµ
+Œ&wâ5;d
+¬ÄPë,7¥j€
+£5‚o©Ú@ûàÀ>ŒƒçP-«CN-ÿ¯6€WˆüÁ€lR`Œ¸¥ãZ¢Íà¡}ûö޶À1cc
+µ 5H¯q¼zÂÑÎâ5N§ÅYÿ¯>ýŒœüœ0s0x+ÏðTúºõ÷Úè<ãÁýÀC­¯›ÐEœ	­Ö>žù‘ÇÆ¿
+*ƒ	eÍ4P{6,´¾Mò‚ícØàcÌB…‰ZšH*deQ†e^ý“€ÆÆ+»–±i0œAcàÕpjL™gKIýâxõ°d8ÛY¼F>£©ÿוNÁ#ýÛú2Ïð
+Óp11mŠÉisâÊ„í‡Ä£?ø"šh|xƒ	àœ^-_C_››GÒp„ŽÀ?h|N¼w–'è®9ñŒæ¸FBw䩝ò=
+>-8¤_ƒpáç¡„ùÁpEƒ?«Oäå¾)ÇŸæä‘´<
+;Óÿ¡iëï0sëë6ˆ5j|Ôxiu<Ôo´hB>TßÒñFýý9ÄW‡;âj¢;?í‘¶1!Öè®®¸ý.àvgèôŽ;îßüæ7µº B`Å\ ~Ù¨õàƒ†»é¦›ä°Ã“ßþö·Î޼®í
+—ÞO§Ö¿¹îÌxî=þ°V"y©U )‰Ü_1î™YG€À®õ­“á•üÆt¿õ-³>ùâx­ÖjÏÓRð§ÓªßÚú½]«ÆVÿDzcÞÖÏíZ}®†‰Eš4úƒG‚/þ]oPƒÑ]k£8ÝUbÈpf×ʘ¿£L~;K§ìîÿá‡ä…^pЬšj†K«=öØ#¬l4xð`Y¹r¥«š_?8PN:é$ùÇ?þ!·Þz«?ªÁî
+Çvm°‚}…X}ñuî,þ¼;{oBÝƍùí£Úµ)ëÇkã`»%âÕèÓ®ƒ¹ð¥¶$|þì¾Å
+ë84|Ùµá1¾ÄXÇ›µÊðfWoìkKÁ_¤x2üÚ5Ò|˜½ õ|üñǝi\mùrrrœÀ¿„qH
+`_úòË/ËÿøÇ:·)
++…rDkMv¬¤áøÖóÏ?_î½÷^c¢ÆK
+:ˆædŽ*ïٰaÃÜ/f°EÅNeÕªUÁá€Ûf_,ôéÓ'¿‰›6mœ8øñÊÙÒÙÙÙ¿F€–°8Ò‘~Xÿç~Ȑ!2räHnãP_|ñEwT$Éü8„&O;í´rïÚQsçÎu'_æyÏ=÷ŒÈG&iwE(,,”…›îÇ':îµ×^Á¸]í¦¬¬Ì-¿÷èÑCžyæA³‰Ø¾}û:£	Ílm€†•Cjƒk®¹F8l€+f±
+N`~f‹v°8ìÄ´ü€Öڏk\ü>2€W˜²bkr;âO¿¯Š,”A+.0Fj¿î¾ûî;$‚;wî¼Cx< áL£ ?–LãP;è§¡cã÷®>ÙDóì1Ûá8Ö|°NBâ–-[ŒÄ”
+VAýuðŸlŠ3•ð}VŒ'L˜à6EáÄ?RˆÔÀÊ£Ï×¶ñÊÒþþ÷¿wÁü¦DmרXC™öqØ9`cä·Ïþç+}×͍0зoß*ÈÊʪò¨XBD3`Ê‚_Á8Ô
+~mª¸‰JdøƒöLKŸ|F†3*” †?Ƙ]}²IßóoFC Ç;ÀäÉ“«÷~Vwߘ+3Nݪç‚êêÛXáQ%°ÒHc¶h㚁†ûì0pjŒÄ¯Ih¸·ìz%Ù26øD“mÂÖ®‡‰†i14Àe\`¨?>ýÚ.–dÙ‡Ú1Àò(0
+ÜE2±JòñÇÇmüëù½»ÙqË“M\Á±Ë~ãÆUÜlÖ%˜ÜvÛmrÌ1Ç8Í%®­"Ìø E”wl¸p»Æï•W^qî¨j*‹|°dÉ’ÌÖªË÷ÛßþÖ½Íp¨©[uyš:<*V˜­g]S#¥¥¾YÚ«84,˜ĵ1
+‡S6³Å'U;‡O´]ø{ŒOúë†GÌ'˜0ÕeCLÝÞвSg©
+?øõž­FH={¶›,Gª™¬©]¬³fͪ)Yµqx•ƒè×,ß㍦6@ËÍÆ«H…OêKÙwÞy§<ù䓵ß,ñ­ôÃÔÍX³T3þÒ†Â
+
++†Ä¸oX·nsÁÂÎë#FÔÙWYS!-þž–‰YÊj®¼±ö%üB8Û¶m›þòÕVk›sßÂñ…ºàæ˜÷öíÎ6˜¥¹ôô6ºÆ/C”¤*E(£5œÔµ¾àÁüqÏ&p˜—·5ˆCâ؏Ã6mÚ*^“ÝÀi鮆úâ<ž¾åa`Íš5ÂN~h»yúHñ¦5²6¯Äõ«”ôéÙ§§à	Ò	˜šÖú±{Êàž~É5Êò×JnIGéÖÞbICßµ´Ü[–—0ö
+‚»6mÒÝd“‰}Ô~à±¹
+¥ÎÐ!BB$†íãǏ¯ö” ·×^{ÍM®ÈsFÓ…+h÷¸ãŽ«v§1³^œ4#ÀY^î9û™wŸxâ‰î”'£ÿ`ÄàˆvÁôæÏŸ/ë7l”Tðqÿ#n¯îÕLHJÐå±p at YååÊôUð*,,rZƒõë7Ê—_~%Ó§¤$2t£À
+ùL˜*”þ )ýÌÌΪHé#YY}-#”×h.ô{#ØóC g²¹téY¹rµÒÏf)*.Õ6{‚{Rb²öc]>ÁùJåî~»â7Á	†Œhÿ²²vwý¼7µðoZª®óøfUÝö«Î½P&à{"ËNÿPò¥\¾úˆüßë9’=æ¹ú¼2éæGdYz+Yº¡¯Üòàod`ÑwòÀÍ÷ÊWyrÌwÊ/G%Ëî¼K^údµìwÙ-rùiU±Zžúó5rwÞjÙ瞃åµ;ïÓômåðKo”s†Ê“=-ó+úËÐÔ~ÉÏ¥OяòØ¿VÈ>ÆÉÏÏ>;XWè˜ñ‰ñþY °â)
+ú‹rÉZÕ|ÃC9d´³‡d²dy»½
+Y>ôb3Ò—_ÍÑþ*ÒW5ï}Ôl„I9fšDý¾i6\˜`HÁL”V­Z£&UëõeéªÖ¸àƧ†lWhYLb¦OŸî&/ŒSV¯E/Ü ¸Z~="S
+×*¿¼*Wþ~W©~Ú'òÛ«ÇH«m¥2ø˜ýåå»—Ê__<GZ~!wü»@º¿ò¼Œyë)Ù'­Hž»ü6I?î0)Õq¢9
+xN›¦8Ü ?ûÙ)ª™éØÀ_®á‹SRpÐ7ßœ¢Úb]¾í—-G!muÒ‚€Z Ñú¼Û·³ÑÍ+eìÝTØéÕ»§äo+æÏÓåÓÉjš²§ôYj¶~ïåˆîÿôÓùóPÞý¦Ö[d?]ÝÄ&?QÇ!&›ðAã…um‰á¾jý̘L øFÍ}ôºà gŽåçÉu}_méá·€}XËJtu3­$*on×µ§tX0_’:–.§ž{’|óç»dsÒÙ6ãßòIÎQÒñƒ‡dEæ=rôyòæ´ù7W’î„U´Åù‹ÐŠÝ¼Ó~V=\Åjøg¸ô_¹·gøðßÿþw7†X1¬2Þ@“o½õ–›T~øá®n–&ÜõÂ/”ûî»Ï™n†*_Â¥oì°fXù
+Àa‰štèØYN8þxyïý©º"ðªÃ¡õ•¦ªK¤ï¡ÎüXj~ÿýt’¸Å	<:vråkÖÏ"-/ÒtÞ{=6UMF¨p¼Gÿ=äóŸ«à:IŽ=ö7éD+Í@;Àã¥}ö*{ì¯ü<ÙÑ^™N–x¯	°Ð¦dØ¡3QZ¹rM£N”x7`c›µ¯ÛèßËø.=3©äºGó¥´Ó(yâê©2éÑç¤Çø+äg}u%LúÈò™ÿ•œÎ¿“GNï/酏Ț×>5Ijb¢Â)¦q(kLPelôÿl3W`'
+`ñþzγÛþ«S,1)øs½çž{ä׿þµS‚‘@9‚"w`ÁÈ*áÕÂö7Þ莘ee°¹¡ÙzG/2à£A]ªZ,:?o~.p¸AãØ’mš8fcÌ` T:¿J°eϐ«È«tÝ!̳•ÑÕ'øúÓ[9Ì×÷Ê
+ÈçÏknJ¶lÞâÞC^èÞV6mö4²˜ÊİÜ4mÚtg‹Ö%³é…U?®¶+ÓNMK—<Píï¾W»Ì
+þ訽gðfç2K”½zöÒ¾å¹ÉiŽ
+W(“Rä`µÏþá‡e¥n¸‰V€1Á›9s–®ðü¤æ #¥Úù¢1D³Ú
+]®L‰ô–—¥f¯€åóçÅ&X´x‘ÓùóRl\–âb	è·……ÎÖ²\MHš°±ëЩƒûÆ+V®hîêDô~£….]:K’ºÿñ÷©ˆ
+hàD­í;¶×}”^7{}ªkš&úâ¼y?¨Ýí~’¦+ìêop‚~bŠsø¾jÕj'@›&¬9êÉ;™0Oú¡óÑS'Kž…M%?¤Œ†Jä-99U…þñNX±|UC]§rl¬³LUžÛ“§^;_RcG§b
+ÇxŠ?W´’R°Dºù)ùRme¿øìMùÍØ³äýÕÅn<
+7óÆMâÂÅÛx› Ê¼¤ |Ü|Õd)ŒÙoõäù¦›n
+Ê”Æ—º!T3®ñl½ÙŒU0ÖÝ|óÍNËZSº¦ˆk6•Æa£‚RqcÅ.yH8`ö.î¡…ýƒÐq_eeeUi¿¡í
+ð¼¥Ãiª#rÒX9¤ñ?“ÏÅ©ÇÒX¼]A7÷€_ ¦ŸúSz—Xÿ¡AÇœƒY~J£
+¨óرc]µ°œ«†õ¹ëÀÈ$‚oCýÃÙí0‘bw?À2nØÐâÁ´8ƒ­)KBáÎbÆf³	40~\ ÕÝ8b“!ôÎ,¸ª«÷ª¨þG{RSÓT³©¦Q °‚¬¤„$XÛª&ܳ—jjålÒT;ìõ»æüxJlŹêª)\{úŒ·¾[îº,Ú<ª!¡5£]†tÒ¾¾jÕʨœ°[]¹Â¯Ø±ß»O/j	š—îøž2;&JýUm²{Æ7ÿWõ9ɍÙT†~jÊ
+VãR’UXÔŒ'û”s匉§ÈÙüVîøu™¿VMW|&Ð
+W
+ì¶FŽ‹K7r¥š¸x€%@Ú.µөû5ž8܇XhýÏ”gÏ¡Wâ
Ÿ'äù´!rÝEºbñR¹p¬È;ÿ~Gþërèà.2ëžWåé{Ÿ~W~,½Ö¯•ä÷”%_ÎR£ü¾Ò­XM$z¥É’…›dä„Þ²6g£œÐO¶.ÿIg#¥Ÿä‰L%E+rd‰«L/™0¡—ÛŒ™%¿p€æ”_m@;1eãHsöq`‹Ïü;ï¼³¶¬
+ߤ+Â(ö4#GŽtNòý­ðÞ¬
+}ü
+óHÃбßðÃ5ôžg‡ÃÕÓâüWîÃ=›x{,Ø„…I'æ1ßl*¨Äh¿‘
+THâ,}³ôÏÒ)ÚUl±ÙdÕ€pvÚ1›çãpv1îIŒYŽ?ÞiézØ•
+BQgÃØé†bMÃöžhºÚ®VvÓÓˆËOŒ6؆"m°ôþöX~W†±ã
+K"•_ãE°–¨tè~ªQEÐB³V:\µrµäæKb«FZÃÖ³¡é³ü0ÉT³hvåëA>¥:Y¦”þë"c8«{Ðø¯¼€¾›¤WÆŸdp&)O€žÙ;ÁfÍÕzÄm
+Í©Þ`ãïrcbÆP¹ïÁ9rÒÈ3uA{™²p_™üìé¸ GƝ}œ7pl‡ôORͳšï°«{Ð6¾Ú³]¿Ñ·HÓa¿ä	•›Ý _V ‘uHƒzdè™ô¡?{¬ó%ìÝ\­[ýüϼð_C  Î~ÈnO>ù¤;¦º°|æŠÑÚØ˜×ïU4‚3zý§!\¢!Y/˜âp©À2„ÒXì(ؐ„
++f06©Lš4É	³þ´h*Ù¥M™•ÀÀÂLJØÌöÅðaWÚÈ=Wÿ=íƒ8â-=ÏÁ´n€¯dµ®ii¹Ú;`Ä»•iW#J+ÛŸÇoñ\ym¤<ža~0AüìFãÄ_tÐßdÚ´iÎérm§¬Ñ6&W¸¤_àêÃ?tyisM
+®šÊ—ÅÅÞqÍ&XV¦&”U¦“ø-ÛÞK>¾ƒbm"PA¿Qd„âÑá
+ã­JécII‰nЧ͖<"´1!ðÊ«œÊ‡¥jVÀµ¸X5¶* –3
+òTÀÔþwå…äß¡|^e£?Ž{{viôpŽÕäZ‡Ã–a•1`=öjU)+ôN¨¿{c>?ýã°+÷ð\Þg`u°úÐH eàÎΟž|<òˆ;r=4¼)WO\`ÅÍÂ*‚)®ð'É`L6=hQm999nQø¦d6#™7ož3ð2eа3ÙÆÅI§<#Ø"´r*Æ9çœã:—+<Šÿ
+ÞÓ‘¼Ðòq‡vµ{—IÿÞ¼Bô¿×?-Ú].Þo`åAÌÜóüiìÞâíÙ¿~ÂM(ç¨h:¹Œºr|,'Ô\±2°Tíy˜egg»¸ÐàØñXg%/aÐ9B(^/ÌÏ]h^xã7ÜêqäECÈä>q¼úÔc	(–€A)wý:í·kg}¡cú¯G[Ð@»=à
+}õž4kõ” 4b,¬¶•ã<VҨˡù*Ër!Žyç«Æ†ú Õ‰ 
+œtÆæú	ƒVU!Ц£IõüSÃ+¯í;â­u®nš*VºD’2ê­bTqŠF>@ðè­~SpȪX4xa"
+Yà	€'!ä§¥&«Í³î°vGƒ¡MËéÑii¹
+³Zž›Æ;º#3
+ݧ‚²Òb-[…60»Ý㏕4¬AZ§PRµ·DÛ•þFÿ„'úûB«¸07ARü¥àDÒÂâüh°Y-ÀŸW®§©_JSðJ&Î®$)âLã2ê¿*ã–6𕶺ö†ö…Ô6Ò>½’o¸ƒ(’ÚJ‡oŒ ôdã]uÕ*Û¸DfÍÉ‘„Ì=ä€ý¤µ¶ÕcÚhã5«®È3”͆\”;ykVªÌ·©”Œ.Ò·§gÓkï·+e
+:oÀ 
+ÜvU{hª ¡û‰¼–ÎO³*Z®›9iZ#XÒº²a
+öìÏ––0/­wµ4\ÉG:⃠·<[™¦mdâM€p‰°Jý̦Á‘	ZS\¯a«N+Œ«5„UÌ]0>‡fi``sM^6	¿¯áÐ6¦2äá½L\ȋƦ…–öÄOô刅Û7˜Swú}FF['tÖTóJšñhÇOBެU@¦Cƒ+&Ha!}d‡w@Û:ø~£>nóò¶(î-Ã%4[
+£vè¦X¶ûW‰
+çØS›—”ÊÈè»yÊX]UòpGõèYL'üƒO÷›pä¥óðÁÑÈøŸE …6Á_…š­àEÄlÖ€¹h‹²h7mÚ¨·Æ(¡Dae
+°¶†»ZXh:dž*dR"¾}AŽúÅò‡¿-©³ï’áÏœ(³ÿ:Q2ï²2mœeܺwïЬæË;×þL~•Ëh%?}ñ€¬:øùËiƒƒ&>”aßÀ¥â,žg€4¼¯lÝ\™[2J¶¼ÿ¤}‘ì°J°qÛK]ùŸrÐŽã‹¥ãäÉ“ƒB+köþù•é®AVlQ™ÑöéÓÇ-å3‘#à¶Çt´Ohšè Ì&,-Ÿ<´¬¸¢l4uœ„ö­+gÀ“–Ýç¬
+±
+V†åçÙïé?Â,Îòµrë…!(õÔ?me%À£]ú³%nkweÂæ»£Ó²zè¡ÁÙ!&öÓÔšBëÉá~`PÄ€´œÓ˜Kú01O+~€FÑÞB@
+LL^±×tê‚
+ŠŒ ´?Zνðt€æô¤=äôæHÁi%çÕGäÿ^Ï‘ì1§ÈÕç
+I7?"ËÒ[ÉÒ
+}å–#‹¾“n¾W¾Êːc®¸S~¹W®<tû¿äÓÕùrªú…=®µ®0T,‘—¯¹[æ-é'ŸÛIþvË}š¾­~érÎÐByò¡§e~EšZ Ã/ù¹ô)úQû×
+¹ðò˝´ÇÜ	­ð\”?|ïpʝ`[à¦AVfh€9£5Bpƒ!á
+¦Š†žåW:šÕIWvv¶.Mà¦-
+qv©‡>Nµrß«‰ÎÛ*èÔ	æ ×ï(Œ–"ø‡	@$ÀÒ5Ú@pø“
+û‹u‡oºß~Ãt0U¿U$¥DCorwÀûë„g“Ó´®X±Jq8ع£—9
+_]¤i¡ÚZQ 8LTbC»B'U?êdáùCFëÊØ´¨Ç!})]ͯ\¹JÍjKVÖîÊ_w4©ýʁ.ìx36«­T ­.Mh&营ãeËVéæ+V_ÚjŸhÐ!6ô•
+ò91é†WÍž=KûÍPåkx¯A£\3åT‡Æ6·ARkÊj­+ã¼7'g‰¬]³Z•^]jÍSß{î¹§[á2ž_ßràÕØTâ«Dò·µ•¾)6n'Êþ'#…óŸ—£Ž‘Ÿ¹C~xöZyî«aÒnÊó2à®iÒjÕ·ŽWš\ ‚$·y[¼MÇ…Ö­ä»W^‘㟞.é+§ÈY¯gɬg~#_ݾ¯<÷õS2ãµ¹}ÑãÒköò³§¾‘k×Þ/ýnú·ÜØ…\×ãùô¯òæ ŸËëj'ï|´FJ»,‘œŠ}ä„/“ñ§Œ•Ï8G²®yB®Ì^.·ø‡ü4ódùø™T¹iÆÏdë3¿’éN—7N‘µ}NY=dõà¾ûîs|—ñeLcûoÐÞd)3S€ ìgªw„T>	ó§e`GxeI Ì䔇fŠ|¤ÅÎ
+‰´&¹ÌQúÏ:‰	BTBg@§ý&ü¹û
+àœ™_8ð¿×Þ
+-§»Óq¼MXáòEsÚ*VR<p¤ôêÕÓmd{ãÅ*„g)#ë§BWG'¤ƒ_?-†kK‡eº{¾°è÷b™M$ý>_Z„,l?ÓՏ¨g”ç 
+‚•h³vc#~J¯ØSâs4))Ñ	j»)>|˜tâð
+¬Ø$qt©ã%ÄXWúŒ­1N1X±b¹ÓÜ£}Å-Pr2îñð9Ú&ˆCúZ~þ6µMôœ{»	~q‘Òg‰j¥Ñ‰
+!íܲë Á¥‹ò^ŽÑe_
+Mé3íÏÒ1—ö¶iߟ·AV
+F…ÐY
+ÅÉ?0…%T¼˜à†}T„VZ´4t拍Yµh¶0§“ø…ª1cÆ8̓¿qÑzo3¨'máG»<à…Ù½¥±g®†Wò;Â'þ¶k‰Áp‹çêÿ¹A^ÃìJ~»'÷ö³ºØ;¬ÿ³ÿž|€µÛâšó
+® Ü¡áÙ©[×n*$8·TÐ0Ëö,†tL‡bÓÖÇ,ƒ©açNNøÅ§+‚'Ú¯„fu-e௘¼$•{H©rmÅa‡¢: R@„&
+=ö+¿:Îá%Ü*ôv¬üv?O“ª"ªì¡“Ñ¥:1Ø¥¿NR¥$v‘Ñc»¹“þö9R.ÐÄ~)y‡«[ÏK%MË'yBz9ñâkädÍÌ7Ù¾}79ñ’kåýn(i¦O_æúóýP6ҐÍà3
+œÔãÞEŸ§À0x‡ôþhyu4\ùéÌÑg×̘Á䈒ôD}ƒ†Ñ¦ªÐÔÖi­õ4&µGMS,‚~²:{‡¿²BP®‡ Qu¼\óù¢V…÷‡~ÇèÅaÕïëçÙlLeEªW¯Þžð®“ÊJÜè½·úQ G"“œ$jÛÓT0eŒn@«÷Áœþ 'G“:awÐd…æs¨J,á|°º`.}PGƒ˜êh›*û§G..0ö[^W@˜Á²‚¢=»¤m†ÉS¯
+•ˆOßir¿S²ê€*ü¨ò=½ø¶–‡«ÿG>§EsµU+¦/°6óìÉUeêâµ_qEÁ`a<Û:`bÄ~3»Ã§¹½¯ÁV*Aá,_!D>ñÄ157K:~4šW¿Ì”™
+œwÞy.íÿû_g>Àkèòkuå4w¸	A|ÿ·0ÿÕÃ
+ºª`®-¯}TgFàó€ ii¸òsā+ؽ¥q‘¾š3øä}&¯\Wv *´žaH€µ;XHÜ`FB§Eð\°`£]fv¤Ì8«:24ÍÒ#æ‹/v“-LbØ0`"\~f´'œpBÐß+Ë(
+¼m5õpåEC´‡oÙ+–;›_ûæþº9:Q
+k§
+Œv%=íç­ZDòftæH­’éÞÏ÷2v(ç)¯X©Geb‡@ióªU+T8èá&âôŸP at P2çáÕ;LÀÒRy±¯DkŠC—/ø/+à
+mà°W¯>Vt”^+œÐ‰ i~wi³á|°<Ÿ¤f˜``ñ†cÃ+e°<VÊÓIß
+אpx´0v+#€i÷ô++ÀpbW\Á!CÓl]}`E+ځ136ãÑéÇ~
+|uì Ïׄ;ÊPüª©ËÚµëÜæ5{_4^Ù§
+~UÀph×*‘ú Â–b\¾Q—LìÏ@xVŽš*êžá?L6;wîâ6¥y4S•ׇVº&üApØýVi¹=Ø5´@}¶‰ÒLÝWÀ29}:š¡.JŠšÚY+t^ƒ‚\ù"¹å¤§å¬wŸ•QÝZËÒ·n”ËžÜK^ýõPY·àKY¸­0j°´.Ø*yšoËÒ%’5TtI‘M«Ô×xÉY¶M=/ñü{SÌμq§HVOU7Yû«Œì˜"Û–¾"‡þö
+™1ù4IÙ¤›í–UHß½Õ_mkÝ·>O6¬]!’¹—ìÕ;C¿K‰,šõ…ä¶é+#÷î©‚d™¬ÿ•,ÚÚNö1 at zŽ8^Ò:ëäûžûeé3öi'9ÚÆµi}dø^jšS°E6«½rîŠ
+’Þ‘Í|¤UñfY³%Iºvò\{±‰©²{œN:é$ߺqMجgˆ1;3ckÁ̙ݞlŒaéÔc^¥(M€–•´
+! {¥7ÎUlªÂÍÌè F´à/¸™Ä8^}ˆ·Y*iìG¸åµ«+-Æñø!$–ÞF~³{Koï­.œ|Äٹá6É”M`‚g]éug„N{g}„ÝhÂuA‹rä‘GÈØ±‡È«¯¾&o¾9E7lä9SÃQ¤u†Ä•ð"JsOR»ppøí7_ëaïêF›þÊàNÔ¥]Ìn¢{Ðó7’>ƒG€qãÆ:Ûê7ÞøŸÚsaÖ mT¾Q×Á+@P
+£Û©S§:­)Æ<üÚUǨϬüHÛ³gOçe Z—¡ùؽ°ƒK
+iÈùùSFB[ú\¸2gB¶ ͬ}\KGZî	÷‡¹Bôï,ν[¶*Ïš†g½\¦VÁáî"ØÐ
+KF»ön'v„š<f
+õÔ£ÂrëOEξ.K«w´~Œ­(÷àO(-\`¥à—_~ÙÙŽñ2´j,}³\?iÒ$çÖª6[SìØÉFa¹A‡ÍVê샙³ÜpèÀo¼á>(êyl©ù/¼ 'Ÿ|rTÚ!Ps;ÍM`…€h3?3NæÞÂ	Ã'+@¸µ]]„ï_PShJ–@ß÷¦$ç™æh_ÝûyÖA{€«û[KG˜¥³+é)Ks8­8Ï´7Zï€}ƒîªXŽDÀÆîSûFäeá™ÃT×fð
+-3©oìPfÒņ-ÊŠU€À#¸ciú¦]ï¼C®pö­}úôrK=¸b"Î+Þ+íèÄl›în‡\
+!«'àÊÙÜé¤v“ºƒÏ`tÈÁ£¥½n&`ãËñ$¨ú¿78Dh…Ÿw˜Òâþž7Š9_¹ezx*~?»wßMùk{‡kp€VÌ“N=æ«OUpè4§Äp…'ómr×­už\ˆëÓ§·œxÂñÒE'ÐyyÛd]î:oâæ±
+Ü}‘fÐac™ØJ…`-'_锉ҲåËÔ‡hŠ~+NyëåVÆè±Ò—é›Ð“ML{fÏþB&Ož¬ÀnC4Uà
+úb²	T‡¿
+U¤”ê$¨º‰8±‰RžŽÕht—믝N29æXçŽl›öqú:¼qW†Ö}†Èæß•¿Ø[ú$”ˆOï•#>+·*r±ïßžV$[%SZ'¤È}‰ŠõOû‚[IMv4\XR¤ôêѺÇ'T!æÆå§Û•³/ø¹JÖ°	}å®)ëd{†ÈÐýPY­«úf½GºïÞZþ3=ÏåÉ[¿E:ti/Å[b-£½º"“AiR–ÐW}ñaÉXù²ìwÐKòÊ-Z	ýtå­ÔI‚º%Tå\‰¦oƒÆ|OüoW·p]]™CŽ› ¹â
+‘ý) ü
+évðA
+0FêM›Mèãêg˜NØ”¼Îléì™4~°p[´ôÆp¸ºŸv®Ï•ŸÅ[¸¼ž²-]•´Ê
+ep06æ¹:Ú°UqæÇs”ú²ÎTz.r
+PøÛÕÀÆ_ã%c¨Ü÷à9iä™rì±íeÊÂ}eò³Êóäȸ³¯“ó.Mãïs’~”ïR+%9#]É×·½±9YÒ”Ž“<¼zaê•L5úk×UŠ>-Ýþü)úÅÝòç¹ÝdƦÑò‰é2ïïgÈïŠÏ–ùO´–¿.<PŠ×>/§]p­ÎûB¿ï%é\<Iœñ¬\±ÿ69õÖK¥õöY‚˜™‘±PÆÞò£¼4!Gνø&Ù3oŽŒ¹íŸÒZ:Ø®üHì=RXx•]?R’'¬3ºØJy‡I|ƒ
+¬hQ—.]ê„Q(‚ëüúbOŒ¨a¶h³ÐB…ü±28eëŒA&ð’–<,WÀ¬qqŁˆ
+øÓô§e¦ˆ›V´°ìŠ‹&À©5Ú%„tà!(ˆB3!"ì™8€pã™ûp`ù-Ξíjåqõ‡qϏ:Ù•4–ή”‹FÕÒ¹ç
+Ô­7‚r,
+¬,à-h§ÖA†„A`ãX:÷òÏâôÈP
+~\x›†°K-Qš²ÔÜxt½jõš`¿¶|îªäœF@µ¸"Èmٲɭ`ôîÝǵ÷ÐÚäÕ«Ö8›ïÔTogph…
+„{¶‡êä>ר-¯wp
+€t
+ÀïÏœË3~üMTyÎR—©?Ý3ܹž\w~æ«Úñ;eŽe®ÓÈ‘IBL€ñV0ç+˸~Lâ9ŒÏ-Ü6}´Pb¿/Beݶþæ(Úb8±Êyð¼=vl2ß^3Žé¼xRú_Õ÷DwÏ"ŒèàAØxqÖ•Sç#â«òÅÐTÌ»Cf&DKƒã«é0%\xºŠ?·/¹
+Å]¹+Å=÷Ýî\¯¬<y³cŽæy’c‘íÓA—ÝÙs2GT	'<Ãþð;Þv`9*Þ6WˆUNƒï•-f§t*&¾HfãÔùqXÞfe×U~aÙ÷é#«çb™*&NøÇœi¥NÜñ•¨4P.œr¯4åÊï”ð|¯vJšìÇa”4”ðÊ{õ•ïùÇaÔáÔ~JxuzJx^}ó6%eLœõ7ÇecÇœ®‡ÒFE?§ÎÇv܆X¶4’cS×G3c¡ÄåÝþEr, ŽËñ:H¦‡Ód§”/RÜþèÇßy>É¡½ôÒË‚ØbnŒr8£'å¥êû|ÃV‰†Rš<á)íK	ÑÝ•ûO55I~ºàu§?¼çÿ®»îDEÅ«´U:Џ7SÝY¶½ûœËŽ!s½CAÌrŒ»¯­ @ˆf9pàuͺ•u_¼èïÐ}.½‚ú£i>øLpÏˆiÊ"<RÜïøÇü^«sû"0¿q
+iü¢…)WC:4¥ Ö¡þüć²Ú‰@h¥E1·?._v<^qÿýèC‡ØíèLzw.½²Øä7áø1ÝqŽÄÿxLeœ;õ_j‡]5En{ŸðB‰ðËÈ ÇkÀñ|ÀŽ1ÌE}Vïó8þ?Vœ¾€[HV>õFù<Mø·ã¹¿¥XðúËÆ}…Ã)4BøªßñOqp~95bPЧ§„ß«=‰•¼rãçíГö““áL<2£PáÃÑ¿c9À÷Ž¿‡q$¯Èvr<ù3Á“:çÅÄÆ¡C‡„	/ÞòWTXqX&by[•e»7ZžWÓÿŽ;îÀž={Àœ¼±ÉcÅ6xü¡xS>¢<(?<?óÇçέ„áz¨ŸÃ
+'¸ ¦¨ºòŽ=ԍŠý•¼ø^ù)åá°Š_ð
+¡‚‚ÓbùN…ÓÍÏýÅ)Z&¸]
+
+µvÜvøÇ.v¼ÝÏ¢\7Åq6åÊ[³‘âò{vÌ!å¶§ŽË}ãƒ>ix\þÊv¯R>%Ïþ~å:²(ÅiZhnß¾‹?(E1Ñzɇ'º¢
+"
+·Šóà!ÿøpËò
+ɨŸ<0J}ß}ï]aO^P>4…UNd*“_Õ†âÏÕSû«««ˆ
+¨ß+÷|Uß+e`?õ} µ5Eû€â÷ÑGŠm
+™™ê¬ûÍ=ËÔò,sìy± ´I…`=ñþ	QÖ´´4At«Î[6¼mÏí‘I)2¬—œ“'OŠà¬8<’+¬¬
+ ===Ð69.oA*í–9ïÉ)«²b™Ñòò?g}³…¡Ï?'™IÞ
+›º¬¢Ò»D/¹oð⎷½Ž¾cCÃߎãNZ²á€þÎÝR×MÁífó‚åµ×*Å	w–¡æÝª¢à8óŒÞc¹?«3‰rÏú0c(xïÝxû+¦“âv^x(Lƒ(Q¯º7·fVÜyçb±òƯN5û¼`ê1VêšÐ˜«|µwÔ{
+Ïø±õ¯o	yØû\$ä÷£Æé'/?>üÙÒrüãÒp¯X¤+ýµ§ý0¤:´3@ôØ1ÖÜWy¡t°¦ñ46?Høñ­8µA¤Þ®33ï"¹óïÀÁ™¿Á–}MŒ£¿{)oÑîÂÙwßÄÆçÊá’Žåþ¾ÔTª\°þñ5è~²ÿzïüÿ¿4ÁyÊŠ÷†=ã|ÃOîGaa)ΛŒoÿl5¦_÷6žùÙsxÏ=œž‚¼°ÏzNAg\„#ÖãÕ“d.ÌGÞ7†aWÉüퟷbMþýí\ùKËô…ª_÷4¹H¹T?&R˜½ýÑG‰Áãéùcí
+Ü·”º¿þÕJý6Vp­®'†‡Ì1Tjßý•EJ¼t‹Õù7¤"FbŽj–gõVM'I|¨†ÄF“*ÅÅB6žÛ —¯?;.—óË_ž,Ú׫¯VúÍÊ&‹Ã|Jñ•kOꪭ„áns¾<îr?®?^/Æ‹)S¦bÙ²ïŠEˆòm»IF{Ý
+L°òxÌ}„rJ»ü`obïø²ÆÊç4®Š‰£½øï5»°è7¿Âô>üxÍQd'¾‚W“Và¿~1ÿµ²÷<2¿}Ɓ‚Ý›pë_óñÊ
+ópâG+qóó;°ü6fþ°_±ÿâ~ô;¬x,Ì^|Ïp+FLéo?Š/>…Íÿºÿ(}®¯ÜóSvüÿ™ƒÑ12 Kˆ®à9™é"Þ­ìU«‚s•˜#ÀÜ"Þe–	ËžrxRÓëõ‚0e¢€‰U&
+eðS®áuŠæ¯§ŸŠŸú9äžNƒ²cbTñW_Õ÷, Ï߉9Œ<™~ó›ßì÷Ü怲虬RJ혐üÆ7¾!N¼«ý•{æHð·bn*/µcnÏ}÷Ý'µ¿rÏ‹6àÅ‹´¨‹ºÜC„î@w¬çò‘G&Œ\´ÛrDÔ“v$%±.Çq˜bÄærÇÓ„Eú.iâg§LPŸ~Êê­Xä…ÅbX
+¢O!ˆ/¢¸ý"(ŸfÏÉÉ¡þü6‡Eßä¬)S&‹y‰#&ÐvÊ^øÒ¹ÊÆpǸr[eLù½›Uv{3ì'íâd<^à]%e!¿¿?óŽääÉ_ÚJ~ÿû]ÔOo¢C”:j©N;ã§à¦\Õõâ…Rq¶)7ÈÀ+e‘Äs6ÿX$ŠJ̬ùh>`µ<ïqqæßkîÊ! ´ÿäŒtÔ;ƒ!º‘´.‚óõfì´G=¦ã‡´Î“¾@cLm>¿'Y“HÏplî¹ó8-0ÈßwîF2õ£3	_‚Ôqg0§_ÙŽ“ÚðÿŒwÿ=sN̝ØXõøgð¼w±qtöÔ
+ȾŸw‡à+Ó†¡æ#7t?ýÒnˆ,Æ£ncW„`e˜yÒfEþ—ã˜ËÀ¿ž8> Å¿ê˜¨gLÀ°8„rš| Õ‡&,²1P¾¼b®*cÎ
+/¬˜ íJ”„'>VKÅzƒy{Ÿf¼zå…ëtíj+‹9»‹/²Ú¼¨cŽ,/²¸¼#0˜k`.5ÿ˜ÝØØ$ˆ|©‹2k94ŽÕßÄáy½àÀ²~G^UŸ'nó?iâóñp¸]‚SHsàõq±â Õ´i_[—¼CÁßc°:˜9ó.ñ“Iv±3À\D–s¥Y×v¬Nˆ1ä¶÷•0aú9©jbó«H-ìcB"æúëhñ0’ú†Ün*‘þÝ£`«qûÛ	Aä³¾eöçñ‰95<>qe! ˜
+s²y’¼î:RŠOyxÙ΋&Öpþü§p}Ü
+'é­={ÖIįDývÝ	Bk0`¨,6çÍ›'°cë}UUûˆ[=FŒQãdzá…QÔgÃAì”…#Übƒ9ÕÊb“‰Ô3´»Äc&u7ßœ¼¼"==}P}ATúïݍ:=¿/OywŽ:gY‡ùóþÒO±·ñ^|õô>´.û:†¶W¢vø»¶“q‡Ï?¿
+sìÆŸßx‰×•C_};Þº¿ÇŽÚqwF<þ{ÏaèsnÄ®g?ÅCûbQþŽ|†„Óÿ©ÑB
+Šû£æúÌñà‰‰¹p¼šíïŽ)üY”u®jNC '°øoõ0qÊ[ˆíD”2—ž9/
+'K6'Ä7†‘"üáÆ“œ:›öëZ¬¨'ù†0¼³!ã÷©P»tá‚—0üDp at xra1Ê/ÂøÇ‹¦ÊE½”ïÆc©Ýnlj$ÊóaäÄÔõ±¤ø~«cå÷LìËêE{ô«NüŒ®Ÿ]`ì°A
+žùp„IE²ª¯Ë/ÈL`ú#ذrâ®
+']JŸËæd"Ô´ªô-Çð«ÿ½«¶š¹¡ ¿dòó#MظêL|²‹§fÕZ‡õ?ہÌ5EÈlÞ…gv;±üÙu˜®éhÆ–ŸnBê“0?CéÔÁèڝ†@$.‰Ã;én›¥‹÷Ö¢°°ñtŸ~SÒG‹”Oïø‘©·³­—®–¡aÛýdmcÚ{§4W=ž”Ö.߈ªPså¬^»«W¯öÿÖb{eMIš}ñʍkQÑøI×`xš°eùd./Ç©æJ¬^_Ñe[áÔê¢
+t“j×y^#oϝx›V½Kä•ï¿\ˆ
+¯žCú”)˜2%8°
+³'%bcÍ)†÷ôÛ(Ü´Þô)ÈÌÌÄ”ôx”¯2 åÛÛááíǰ<>ˆUʪja­µ@æ)ÌHÉÆþ–Á(ã²a+Ùô&³Û§ßþ6mªÅ„ÑÂñ¦øãÈ] CÖZ¹Ív‹!•볐EÄj¦ÑL6ãkaZzrçNÂòò¦Áb;õq'×òXé¿®å1scZTý¹±b#6V4^.ªfÍ(LÖaÕ™,Xj­¨6?£«– íþ-hKˆ÷7aÉ5!sMSÕn=‰	É	dºÓ‚­[‘õ³òàxê=‡Ý›6ÁÖ¦,I/ª@Zàk²<pYÎW_BöŒ’7Š[²V[%‡³Q2•š$;¿ð¹$«¥L*))‘ÊÌÕ’Ýí¡]õµ’µÑ.ÙªL’±Ä(™kT|®FÉ\j¤8äo•ý}žfÉjk–䨒äuX¥2£Q2–™¥z§\Ÿ«^ª®­—µR©±D2šª%7§ên”Jlß!‡Ò³òÈ7n+c¯—j©‚6£îuRqi©TJ¸äÐ3¤¼²ú\Å^*»GÚDXüâ°«Ëô¼6O“ÍIÍÅ$åä›ä¶%–·^ã‰ò^ó"`3ê%茄§[2ê!鍶àK=,:j¯ùR#ùºmFº7H6¥£“Ÿ×ßÖ­ÔÖkK(-êÇ6ѱ•dR}ãÐt•wƒã*㢗Ïà¸+IÎZn¿J¬®n1ôQûæ°ÅÕÎp¬%üŠ¥®{JH”õà¶Jª7ùRqq±TTT$ÿŒUR«ª?[‹§IøÅáU·+TZo})µ	TÛ©?’µE‡¥€Þ$k 1Ê}ùQ"[©<…´7¯UÒûÛê*¶–ì Dà’8¬ÔðÎK«}àñMüÎsÿ6;)É“°$÷/pÓšª<7	Yþmím°¬›´™Û§ääÞ<dMJƒîÿ˜ÑðÖ¯`˜‘‚]MÄ.ìh“&a]U3Úې•‚Õtb;²t/Џ­uÛŸ’…âºf4üÁ€©ÉÙ¨hn‡÷ä^Ìž1)“òp¸á-¬X23×× Ýù¶ñnvâ·¯ÖWzJ¹â5v¨(u¬øë&Úu5~²l–-[Ž5Ïì€9¨ý{[ f-ÇöcËÆØ¼e޵ùÌ-
+5ؾy³ß?È“æHp ÝLâÈxGkjŽ4àTÓlß²[Êkd®ç^?ôÕ(IhlòXýý;i˵u5Gpª¥•»¶ÈµÊÅLø:…ùº_üŃºÊ]ØLørš­ŒMÅ=R‡æSÇPÎyíªÄ© ìho!
 i@ÅvJsóTR™äWÑóHpw[ցƒ‚Æaþ“ÅtÝ„#¼] ÜI8­ð´¶ ¥¥	{vl£9ñ»¸9Áƒw¶€®øIL“%üáÇ£Èë†ù{SýÏׯEâ˜ìÇP¢¶í;á¯|4ú},JQ„ÜYcB€š¾òÙ†_	eç6äå`x ¾M#%ŒÏ>‡5kÖ`ݺuòvV†«ûóÐQ˜Æ†ph:R-ÔOË+ëä¾ís-\âÇQ5mذa;êšáiï@Üô•|VdS×bèaÆ«où·7ZhÞ=@?v—ÏÚ1”ÀTlÀS³ŸASpйàëqOÕÐ.éÆÊPÚ„E'h ’é¢h®ãC”,§0r˜vÙ¾–ÌŸ®¦9¾	›WË;°Ñ¢vò'Úkãòõb×¶Ó»~àqÙk§:ÄÆ"‘<sJ­dkvuz>]€*ç~¬[³›_ >ˆm7Þ§6;”¶
+F¸öïÀó;^ƒ­åˆŽ·±•ÒX÷t!Ö¬ÛGU)¦\O­<vùE,‘ÈÍqSptË3xþeÌy6~w”¥0:XG±åù¨/ˁ­ümx3bw)­­uF¼¸n¾ŸÈ  ƒÆê>B³ÇƒÖÖV´4ÕàUš“fL`Ì€S•둬›‹ƒâÐvp)tÉ´ÍJÀsl’§ÎÆá¶¯ØQw
+r7 ÈôÒ|h;ûq™Ø;ÚP¶µ\ˆõ$x_‡¹"£;¯`çdÝì¯Ëè¿=›ÏÄ\3M:ÂñÔø.¸¡›s»5/¶¶³ç“z7Œ9À’I<=ÉÞO>–J³™ˆFÅŽƒ”ԁ:dþŠýt°qÒº#øx_€»Æ³?6ív·ÅAΏs%ߐ̃C!&%rÎ8…f0Z5=· y¦FlYÌ*ž@æèX^xogZè9k×­!ú•˜}ûf|êòÀnì‘Ê Èb`ݨ4󩍬¦æ1µ˜4ëV¢t·;‰AW¾f:êÞ¥zÅ!Æ¿
+lyt
+ðìƒÈLú¹èÐÄŠÖHÄsyw1¸K
+°fe6ðØ}Øø›&œ1(Xìxf>µß̓'1¯Ú
+7¢s
+L8òÌbÑïF-ò˜ÞE~®Ñ2'¥§#Œ÷cœ¤àßÿ"µ¯sܤô¨v¾†;è‘“qÚŠIsçbÛ"YÎÕqŽx†¹Ö¦:œ@:²3°ƒjÓSe@|â6†nÜ~Ö†žÿÑÓŒšwÜøê¬i è¥ãzÎM£Ñ2èŠj]X}ƒ¼¸WÈ}~ÛÑü2f?u
+mH!NÝçVÀ~øÈú!±‹pÌß¿c‡2_ë‚ê`†š,
+ñ
+ÃxŒœn 	V`AÊjÔ4µ ƒTþ5ê1	J¿…÷Òm`
+J«ñâ2ѹ‰“ȭ܆¥Yü^³„öoËjbû1.ãQØ«ÀR­“øDÚúڐÉÔ-Œ:QrÎÍ%à›/”ÀV¸
+¨Ë蓜Æé
+Ño(äÙçõJ=È:$NzpT˪k¨IIü+²°" VsT¢¼ÓåK6—Œ³×n‘Õ¹øãéòË„êšpè
+„º hþý	‹ž—Å#ýz©ðê~?]I@]•›UYùŸå{V½Dj”¯MàfTt(	u,²*1m“„i›$VkUobÕ.ò7᫾ÈBmܯBGåŸg¬Åv“
+ZCøãè¤|¿²âC£æ×óúöŸn—SrPVº~ï–Ì+ú¿ÃáT©ÕëÝúEj^—äpØ%Gôð²ŠÉ߈¶Åƒãóe¥ÖÏ#ûûd ?«Š«î϶M÷HÓŠ­â­½*tÌÍ7ÙT±®¡[ÑÔ©¿u?}_CÀôNUÅüÃêüÔôŽ»V¨ÿ*kô’ª:n‡as?S›¾‡æ’M4¿‘þ?
+/ÏOê{+«4¥F‡Cj´Û%;©µXj¥…ºÀ) PÔ§Šß;ÕêÕTè$¿æ—<ÑO
+Öá#ð}nyB¤(dŠæ?à
+QjbWŸ¶åBœxVÄ0…p{Èkåaüü"Ñ2`vŠ"{Íé®$z 6:0¬[0I¥5ƒÎ±ë8ÿÌÿôُ`F?1y=„	`¹tÚ_
+
+^E€©>‰³³1F[ö*´Zbƒ:ÔÖ|†¥Rc‘”2¾‹_ûv2ÄâêˆAÒ˜‘!ZÿdòNUŸ`—áN|öÿƒe“T‡.>Û^‹¡¬½¥–†€†€†€†€†€†€†À @ ½Æí§°lÅœâöjÖ¬ç+›ÿúñóøòÿÚ€ù_êÔöÕNË[CàšE€túm)zÍ
+N"t´±Ÿ€kÚ ]ßA?èrê¹Z+µù¯AÃ@ªPéÀÛˆ9¬Î‹™aûþ¦K®@SÅz¬¯¸ôø—œq?ˆØÞTŽÕk+:¤-•Âûз—õb:4¥ž•-4NŸ=ùÚ°{Ã&xoLÇ”ô)ôKBù
+Òâ—£NÖqµ(
+ÛîGbâ¶n0o#K:d0j*ƒàÅe`ˆf&Í„-ÌèJ(*>œxj>èl,4Ø zêh9†ÍËÉãâL¬ÞLzz»Ä(zå™°bs­š»|:>û­¤*‘­mMLÄs6!yù	k)\sD_ ‡C¡2ÿÕÚp'cÇ!¶ù-z÷nÊþ&*мBâ‘‚áš“7eþúê>¸†ß‚ÝŽs‡_ÁoŸCªþAÌŸæ?ŒÑlØEÄ÷4¡|׫ø€f9Ý<Ù1N%QÊŠ÷à³Ã‘vóm˜!s&(Î~2õ2mÞ¬"c؁ÊõYX at V‘òfüßÛÇâƒ}¿Å’¹“p8`v5ätûÐÖPNÂÖ`ÝÂnƒ¾
+/TÚvo¤’Ä"ò¡oàh”¬„7«s‘þ;k£Ò-•LÕ“Þ·Ú¤3þöØUÙBÒ¾Új]ª²ØŒ¤ëtÚºHmŠI¨cÑKEÅERŽŽú¶Î(9́1ÀÀzjÕò³¡@*.ò÷Û²z¡KÎ©Êý¸ À¯?8_CL´8¾F‰,>JºNKÖIœoæží“ª‹©\ô.¿¨@è4„¾D
+íAªJôÕm·J’Ý̪h åKyò8kinŠsäúèE4–EÆÚMm·Ô cüã­‘u5Fù>¬É†àPž#Šücj™Ðqë²–Š²èò
+¤|‘®N2Û#Œù}…_X>Þz.ŸNªUéåó
+“:éÍ¥*Ò9é¼óJ¶ê*Éæô
+ÕAæR#}FIû܍U™˜‘rJLR£¢ÇÚa•ÊŒFÉXf–ê);î¯Õµõ¤Ó²Z*¥wæZ»äó:¨ßSzF“T¦=0¬È}ÿ¨šOYU’T'Eîn©„û¬èOER‘¿í•
+]Ôn‰L«
+¬‹JŠå6¢+z<£µk1…ÿÅa©QÑU­3H¦úSQÓq‹ï&çïŠr×r»%ç´ˆçRe—}Ü_¡ç›ú™Ézԍ<ÕöR»ªçñFÑ¿{`/—¡Çùúö\+”˜pB9­ÍhJhå&ä;‡'šX—¤ø±¾:ŠÃ<qHRcOJ4ñˆÃ%Ó;Væ^/Ç¢À$BfÃ(\žÔèéY|1QꍂÊaáø¤KŒÆQVêPvÎÓ_¹ñ»%#uJ½‘ãâD]Ä)XlR*ìæA4ÚäE¯h¢'ôÝò¥¢|ú~t_Bƒ€œ&ùëóhR”'Byñm0æ:Ðî|Ž*]p¡j7Üÿ/8CÂU-ä„©² c…ÏÜ_Ô¨¼m/]•-,õ«ÿHý( œZUš ž@§Tš_ Uù©BW5÷G½ÐíW_JmˆWÑZ‰€Í'ƒ|Ï®–têŠÉ°B ŸúpËã@	)ôF‰ã³Ë‹9“áì¨*•ŒdT#à/
+fÜ”IËp±u¿ÌðE°ÞCž­)°Õ]‰ÌÁäÊðÀÈÏn+q¬(Œü#Ž_Øä°$
+-‚<
+TKþ\C5N;ÆÝ»n·¶Z:„¹ºGpÄF&ßd¥q™1¬@}m,[
+6Èä*ÞLY¸G%µ;¬Õf¤Ôb錔7w`Ö÷	½M$)jjÖï„¡t!nJ½´ÈÁ’IñÔï3ñÜ»Ã1/;•jà­¦
+²·Ûq&“+tÈ̤q03ʏàc¥[„¯úUÆ{Ôˆa2cû±Mvÿ|ªØ­Ö7<ŸÉU	þ¥¶#ÚTíÐ'O¶¾®ÛN0
+¾SæÜHé(!ã¡Ff-DÈ¿ÛµÏS^+˜¢×¸Œ…(Ým¤²ñ"ŸpìyP§´ëžÙÚaÆÎÜpüoäîԁ¸ÙØòüxëË(Ž›Z'Qâ4
+‘˜‘[0-΃OF Ê¹ëÖ¬Ãæ
+hÎۍ’bw)íë¨ëæÃ%½®Êp5À¿t‚5¬´‚¼‰‰ÔŒdÐ/õ",1›œ	˜-8…$d¤ŽE=	É,XðFXÑ㐝“Ûª8ÒÂÄT+^Þ’Kâ‘ Á«Šš {
+—®€ÍPŠ»ü„ÎŽ÷</¤/ˆ®ìãAŽPœ—IŒ&ú%ÏeFÓû8Óz–®‹¡œgK.‚¢Å9K]ÒM±nϺ™þ²‹Îdaæ	;N¢¥×UDä¾þÓ6¬CÛB‰…ýk›‡äðôb;YŽ+÷ËÛua©Q0$£_^L°úi[ZÞTŠð¶‹¹@–Ÿ¤úK¼}haá‹ǧ­p!.o[ñá­jÿV¿8TT¬ˆ/Èå«-ay#C¯	/‡Õú
+>Ú¥"O¾TÝè”|>¯TO‡‚3R“·¨t²ì É£˜
+xK–êI»ˆ²Œ&Ûf™.›Ýâ­!2À'(ÞÁr_â«
+ÏÊþõ¯ºíðœ@;ÌR£Ã!5Úítˆ¯V²Ð!AYü¢@hõôÏD‹ÃdÑ!v~Ùj‰v»$Úí"åójñ¬héuU9ƒ¾ýÛsÖ>(—×å$aa>c|iÎåtH‡³ÛøÕE4èæ™©û<ç#¹Þ"1q'•üÒj£OD4ãHeþÓžbB2”ˆS×]->"f³`‰ˆE¶ôòˆƒÐ‘X€aäð	mqzž]‘ü·²@P-id‰Z¶`ùҝOr9’KÑRá¥S|“œN¶ûoéÁ-9)\0˜[Õ/ÃÒPªßEìvÉÏ+ýW"`xlp2{ßOyLtÒD#;Ÿÿp%?)¨KN*¬9¤×í¢4ü{=ŽÏí$í’£ˆ>JÇ!9]Jy”´úÃÕ'YËB‰mçŠT‹“ÎDZîYOåEN(aX%¬Â7ý‘`ö™:õ
+™øf¹]ØéÜv¸ÛÒ\M–Sé¸þ´£·`æ^êÿÊÜ-`hùN^H³Aø›ù¬&X–÷3Rh&·Ðùq°ÌaDzåþ^kd9VY†5Zœp‚µ+&‹ú<E´ôœ]”áj ߯Ö+€·^*`®
+dÊiâ+žçÊÀ-&2AÈ'úDÄA8žëb&œNƒY £{ÃD³ÓdL{/ŠƒNs–Y˜;#;±zíá)ZÙüIi
+
+®㕟q¡t@øhDO´EŽš°b‚¡ÿë]r)ïˆÃÌœUÖØqÕ©Ñ*ÿz>9Hœ¼ØQŸFÙa¦ºÚTÙ£ÉO°
+¦Hv¥™"kéžh»]¼«q—»Ë2ôýÇè¹iVBkÀ;2N°ÿå7€/߉9Ó¥â¾VZú­u›‘”µ
+†‚̉ߏU…f”Z]X6}d?+©V
+kÊ×>†%Ì´¡bÅþåÓ¯…J_F;Ð\wçF}ÓS#È”^Fʵ
+û_ûŸMÀ7æO¾øtúŒöÖ’íAÒ˜‘ê£Pü“É?(U-×Gy'´¶hmi%Yô‘ÉÆAÚÉŠâGöq;ÚÛÑ0•-=Å?RBóº²O×Áze±ÔR× ÐBÖàþòÆ;ø;z¿ã¡GÉÂÐÕøEÓn4®1®¢çû°Zu¯14‚õûàZu5444444½¦Ö*zÅ;àiõâÍEF G¶¯%=€ËQ'Ô[DuI¾l+Øs­"¯ázIm&j$
+ϨÐ\dÓ{óòÕ¨l*aºÅÐòÔÐÐè+®<ÁÚaÃ̤™°iãjäoÚ~¹¤6Øô}ÜÜË»Æ
+ÛîGbâ6•’çÈE”¾®½ûY5<{ÏËMÍÛ†—·n‚í\P·òå&©Å×ÐÐèÏ\÷4¹Þ*`Gk^ÙmŸ«­8;_¾	¨Û[sÙÛýõ阜1ñ_hG]åNìØ³Aê—ɏ
+ÐÑÚ€7mmˆý伴׉)Ó&Àyl?^Úý'©ÿ_H¸	7%)Öi<”ÆŸðçƒÇñÏ‘ÃÐöÁG¸nÌXJ›ä‰OÕ‘«
+:q
+ÃÇ¥bô°p1åÞªmï¤Ó|¸ù¥â»+Á-_‹¡Ÿ6¡|ûN¼²ÿ<ñã0é&¡ž­$Yßö9þñ?/ãÍŒÄ-©²¿\
+Æã%˜öXðÎ?þ‰Œ[Rïi®?AåßnÄ×fÑ· ðä×9mŠ[ó¤ÎãϦý6åÜHÆêöþ¦× éÌgHŸ‚‡Êk›–c5dãá
+öÆ
+üô…¿aæÝ_Æ?=´ã}Y-»òìÊÞ¯^¯)&ð5
+eôºœ©¸H¶{›¿ç
+©8G6 3Iõ¤ŒX‘Z)TTR,+ן²maYõòʤ÷̲M뜢b©À¯?Ô"Œ¸IŸ¨œF~À¾®NpYeåѺ¼²c.‡1³‚~ë¼UŸÔʘò¥’â<¡~‹L¬‰ÒÛJ‚vÙóÊêCjD–Ü„~¶â’"ü2©•ì³âj1’•“âo6â€ð´{h{˜5/Ú-²žCE5§­ªOXo¡üó‹
+„’xèK®¢bñ0\»hw®!M)ʃ†g`zÕ;R?æÑKéw9ÅRžPË—'Õ{‚Æù~ÛäùR=«rŠf\Õ×
+yyñu;æ±®`êÏBɾS6Bj.h,÷CacN¯V\KLC at CàŠ"à%ƒ+9ù&ÉCz^YeY‘µ?êRî‚^ÓÃ곛§è7uT•JF¡ðÖFYV Ô[/”cdEˆ‰¨²Ê +¸
+êG­'+%Šå²1\Láä4t’bqÉ-,œ°EÙr+;–O23a[ÔtÉuñ!|A|„å	²ˆ¤¨øv‘Ó¬¥VòššK4@}‰¿žD˜—Ilª¾”ô×éŒÂ¨@Ô´[åo Æ‘™¥4VùÍØ¸ª™Heë:ÂÂKY‘]"«ÄÂâYàÛ+V°„Òlú®~g¡åí£'®]µ;
+×~
+Ïu©Á¢ôc">ÙÂT ßc€ŸoU‹±³À,[g“ÜLdÊ–•ê˘aPX0’mrzΓ‰Èåñ6ß§±Œ‰Ñ|©Qè+uIÅôNŒ±´ØÍ/0ù‘HR-)2—¦—Z7-ž†€†€‚€‹,YYí’ÕR*™ªåþëuX¥2£Q2–™¥z§ÌdóÑœ[kk”­©¤¤D2UÕt{sZN[•d,.–JŒe’ÍGø×WK¥^ö[òyš%«­™YUÂJaN‰IjtÉï"§ã–¬ÕV2äÔ(™Jˤª}U’,7*ÎÕX+UÕ²Aƒ¾u½ÆŽI½F²×¸dR< ÊÄsïǼìTÚ£—e¬|dãÖwžm×–à.EjÂ-X at l@Y¼•mëcn†lì=íîEH®}šÒB¿4l¥·üÆçã4~
+»u
+1–<Ø’™K-ldÐb%^ýòX~wîECéÙ€Z×d+çkIH™û¨{b<v,(Dž©[gP˜'9šâ¼ð:ÞδÐs>Ö®£´±³oߌO]¤~(vùÓ°¸FÝ\Øù"Or`õÔÈéø6$ƒÈÐÎ+v,›Ž–šT¬›]††ÿœ)­oc½3}÷N²O]¯qX=ǃää‡p‚8
+1ZããTiã›è"Ò4»¦‘Òa
+›nú);¯cn_„âÍî­÷àÔáÝô†vÃ;o÷’ÿv½'à”H$@¢â~ÆZ„ôÕ™+–ƒ¬%9ßzËSÃ(rª²mݲh+;«QöaõyRž8DE²”À^UHCgàÃ>$çÉI~“å»éçr\½WÏ^NIÈ{ÊØùQq L©CŽT-š‘k‰žäÈ"ÛRÇTχ¬¨˜ÞFY®:Æ•dS#¥íµ	¹6c@Þ4ºíaÉIøê”²É‡4òͲ‹ú›0þù&[/u‘É…à½Ýi¸öW
+ÏuéÁ¢õcŸ£Zȝ)ãZ^i­äï·!ß'Š]ð°8¡c®|€eXÝt@ƒ þqTGò¬ò!Z~§9
+
+ËCÀªžË©OŸæK’uØ%»Ý.Õ×VI–Z;ëa:'HI3=­pÊ*6—6eJå3*¥’Ó唜N—äh´Jfc‘èÃù»ä±m¢ûMtèÊ-•Ð^̝!"2WŠ”Ž[Œ'òù"¥¶|(TWP*-–s•aöÚ¡+¥R.§ƒ@wH® –ôÊ'y½²€/‡ó¹ôq’ÓôS⫯^>S¢ì|’ÛM‰ºYØ,ÿ;-ô!d-J8'•ÁéRâɾé/cèp8‡zRvÆ”»#x𨼒
+z©giû(œSr)߇NÙ{½©ÖT&U7*¸:¥"jì!“˜—:
+•ۭΰ'…ï£0=mwêâh¸ªÑ½×ðÅ£7ž¢µ7Z~Š>y1}‹ÇOM^!CqOé£%.Á!ÀrࣧÉhá44B!X©wš˜Ñ—CÄ&sÛÓM_Z8ˆn¬uðÉ"4ñÐt§TLD§ŽFòÒGZ=hF"©–5ÊüŒ?‡H+‡üÃ	V>Äéë")ÁªŒg¢¹ú*­]{`e̯¨#Ž-¯H Ï—Œ´‚`N€¾¸ZL¯(蜸O²äË\—‚£”/ÔëäKÆìϰf áÚ»_VówñÔRÓÐèM:íêEÙˆò¼ËŒ9S½Ì0òÚ-‚HUv]tùe‚x
+÷‡®@ÌÑ‚`ÆVVAIÚƒ˜ÙTK‹Ù(éHa»1rýRï°æ”]Ú"¸@ÂiPá”ëhmƾª7qúÜY\Ÿzž?ESjÝ'_Ѓcûòr;ÉÁ¤añ÷b¼¬Ô¡Or¼™h¸öî·Õðì]<µÔ44®,hiqÒyæŒ)ŸéñÔmFbîP¸þ
+ü?ûúÓ³{%.
\ No newline at end of file

Modified: trunk/docs/reference/src/main/docbook/en-US/master.xml
===================================================================
--- trunk/docs/reference/src/main/docbook/en-US/master.xml	2010-01-09 21:30:51 UTC (rev 1573)
+++ trunk/docs/reference/src/main/docbook/en-US/master.xml	2010-01-09 21:31:34 UTC (rev 1574)
@@ -97,6 +97,7 @@
 		</partintro>
 	  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="content/jcr/configuration.xml"/>
   	<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="content/jcr/jcr.xml"/>
+  	<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="content/jcr/query_and_search.xml"/>
   	<!-- xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="content/jcr/deploying_dna_jcr.xml"/ -->
   	<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="content/jcr/rest_service.xml"/>
   </part>



More information about the dna-commits mailing list