You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2018/02/13 13:48:28 UTC

[01/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Repository: isis-site
Updated Branches:
  refs/heads/asf-site ba59f850d -> f27adae8d


http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/ixn/ixn-1.2.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/ixn/ixn-1.2.xsd b/content/versions/SNAPSHOT/schema/ixn/ixn-1.2.xsd
new file mode 100644
index 0000000..21d375b
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/ixn/ixn-1.2.xsd
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/ixn"
+           elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns="http://isis.apache.org/schema/ixn"
+           xmlns:cmd="http://isis.apache.org/schema/cmd"
+           xmlns:com="http://isis.apache.org/schema/common"
+>
+
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+    <xs:import namespace="http://isis.apache.org/schema/cmd" schemaLocation="../cmd/cmd-1.3.xsd"/>
+
+    <xs:element name="interactionDto">
+        <xs:annotation>
+            <xs:documentation>Represents v1.2 of this schema, adding in 'logicalMemberIdentifier'.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="majorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The major version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="2">
+                    <xs:annotation>
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="transactionId" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>Unique identifier of the interaction which this member was interacted with (action invoked/property edited); can be used to locate the corresponding Command object (which may have been persisted).
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="execution" type="memberExecutionDto"/>
+            </xs:sequence>
+        </xs:complexType>
+
+    </xs:element>
+
+    <xs:complexType name="memberExecutionDto" abstract="true">
+        <xs:annotation>
+            <xs:documentation>Represents either an action invocation or a property edit.  Is subclassed by both.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="sequence" type="xs:int">
+                <xs:annotation>
+                    <xs:documentation>Unique sequence number of an individual member interaction within the overall interaction.  There could be many such member interactions (within a single transaction) for two reasons: either a single top-level interaction could call sub-interactions (by virtue of WrapperFactory), or there may be a bulk action interaction against many targets.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="target" type="com:oidDto">
+                <xs:annotation>
+                    <xs:documentation>For target domain object being interacted with.  For regular actions/properties, represents the entity or view model upon which the action is to be invoked/property edited.  For mixin actions/properties, is the object being mixed-into (the constructor arg to the mixin).  For contributed actions/properties, is the domain service (the contributee object will be one of the action arguments within the payload).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="logicalMemberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Logical formal identifier (object type, as per @DomainObject(objectType=), and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="memberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Formal identifier (class name and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="user" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>The name of the user that invoked this action.  Note that this isn't necessarily the user that initiated the original command; the SudoService may be being used to temporarily switch the effective user.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="title" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>User-friendly title of the 'target' object.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="metrics" type="metricsDto">
+                <xs:annotation>
+                    <xs:documentation>Profiling metrics capturng the this time/number of objects affected as a result of performing this member interaction (invoke the action, or edit the property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="threw" type="exceptionDto" minOccurs="0" maxOccurs="1">
+                <xs:annotation>
+                    <xs:documentation>Captures any exception thrown by an action.  Either the 'returned' or the 'threw' element will be populated.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="childExecutions" minOccurs="0" maxOccurs="1">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="execution" type="memberExecutionDto" minOccurs="0" maxOccurs="unbounded">
+                            <xs:annotation>
+                                <xs:documentation>Capture interactions with other members from this interaction, using the WrapperFactory service.  Typically this will be actions invoking other actions, but it is also possible for an action to perform a property edit, and - much rarer - for a property edit to invoke an action.  Whatever; these interactions nest together into a call/stack, more generally into a graph.
+                                </xs:documentation>
+                            </xs:annotation>
+                        </xs:element>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:sequence>
+        <xs:attribute  name="interactionType" type="com:interactionType">
+            <xs:annotation>
+                <xs:documentation>Indicates whether this is an intention to invoke an action, or edit a property.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="actionInvocationDto">
+        <xs:complexContent>
+            <xs:extension base="memberExecutionDto">
+                <xs:sequence>
+                    <xs:element name="parameters" type="cmd:paramsDto">
+                        <xs:annotation>
+                            <xs:documentation>The list of parameter/argument values for this action invocation.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                    <xs:element name="returned" type="com:valueWithTypeDto" minOccurs="0" maxOccurs="1">
+                        <xs:annotation>
+                            <xs:documentation>The value returned by this action (including the type of that returned value).  Either the 'returned' or the 'threw' element (from 'memberExecutionDto') will be populated.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="propertyEditDto">
+        <xs:complexContent>
+            <xs:extension base="memberExecutionDto">
+                <xs:sequence>
+                    <xs:element name="newValue" type="com:valueWithTypeDto"/>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="metricsDto">
+        <xs:sequence>
+            <xs:element name="timings" type="com:periodDto">
+                <xs:annotation>
+                    <xs:documentation>The time taken to perform the member interaction (invoke the action, or edit the property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="objectCounts" type="objectCountsDto">
+                <xs:annotation>
+                    <xs:documentation>How many objets were affected by the member interaction.
+                    </xs:documentation>
+                </xs:annotation>
+
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="objectCountsDto">
+        <xs:sequence>
+            <xs:element name="loaded" type="com:differenceDto">
+                <xs:annotation>
+                    <xs:documentation>The number of objects loaded.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="dirtied" type="com:differenceDto">
+                <xs:annotation>
+                    <xs:documentation>The number of objects dirtied (ie updated).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+
+    </xs:complexType>
+
+    <xs:complexType name="exceptionDto">
+        <xs:annotation>
+            <xs:documentation>Captures any exception thrown by an action invocation.  Use as the xsd:type of the 'threw' element.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="message" type="xs:string"/>
+            <xs:element name="stackTrace" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>A formatted stack trace.  (A future version of the 'exceptionDto' element might refine this to more easily parseable stack trace elements).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="causedBy" type="exceptionDto" minOccurs="0" maxOccurs="1"/>
+        </xs:sequence>
+    </xs:complexType>
+
+</xs:schema>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/ixn/ixn-1.3.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/ixn/ixn-1.3.xsd b/content/versions/SNAPSHOT/schema/ixn/ixn-1.3.xsd
new file mode 100644
index 0000000..63380a8
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/ixn/ixn-1.3.xsd
@@ -0,0 +1,221 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/ixn"
+           elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns="http://isis.apache.org/schema/ixn"
+           xmlns:cmd="http://isis.apache.org/schema/cmd"
+           xmlns:com="http://isis.apache.org/schema/common"
+>
+
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+    <xs:import namespace="http://isis.apache.org/schema/cmd" schemaLocation="../cmd/cmd-1.4.xsd"/>
+
+    <xs:element name="interactionDto">
+        <xs:annotation>
+            <xs:documentation>Represents v1.3 of this schema (as per majorVersion.minorVersion @default attribute, below); just updates to use cmd v1.4 schema.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="majorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The major version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="3">
+                    <xs:annotation>
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="transactionId" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>Unique identifier of the interaction which this member was interacted with (action invoked/property edited); can be used to locate the corresponding Command object (which may have been persisted).
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="execution" type="memberExecutionDto"/>
+            </xs:sequence>
+        </xs:complexType>
+
+    </xs:element>
+
+    <xs:complexType name="memberExecutionDto" abstract="true">
+        <xs:annotation>
+            <xs:documentation>Represents either an action invocation or a property edit.  Is subclassed by both.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="sequence" type="xs:int">
+                <xs:annotation>
+                    <xs:documentation>Unique sequence number of an individual member interaction within the overall interaction.  There could be many such member interactions (within a single transaction) for two reasons: either a single top-level interaction could call sub-interactions (by virtue of WrapperFactory), or there may be a bulk action interaction against many targets.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="target" type="com:oidDto">
+                <xs:annotation>
+                    <xs:documentation>For target domain object being interacted with.  For regular actions/properties, represents the entity or view model upon which the action is to be invoked/property edited.  For mixin actions/properties, is the object being mixed-into (the constructor arg to the mixin).  For contributed actions/properties, is the domain service (the contributee object will be one of the action arguments within the payload).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="logicalMemberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Logical formal identifier (object type, as per @DomainObject(objectType=), and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="memberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Formal identifier (class name and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="user" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>The name of the user that invoked this action.  Note that this isn't necessarily the user that initiated the original command; the SudoService may be being used to temporarily switch the effective user.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="title" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>User-friendly title of the 'target' object.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="metrics" type="metricsDto">
+                <xs:annotation>
+                    <xs:documentation>Profiling metrics capturng the this time/number of objects affected as a result of performing this member interaction (invoke the action, or edit the property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="threw" type="exceptionDto" minOccurs="0" maxOccurs="1">
+                <xs:annotation>
+                    <xs:documentation>Captures any exception thrown by an action.  Either the 'returned' or the 'threw' element will be populated.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="childExecutions" minOccurs="0" maxOccurs="1">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="execution" type="memberExecutionDto" minOccurs="0" maxOccurs="unbounded">
+                            <xs:annotation>
+                                <xs:documentation>Capture interactions with other members from this interaction, using the WrapperFactory service.  Typically this will be actions invoking other actions, but it is also possible for an action to perform a property edit, and - much rarer - for a property edit to invoke an action.  Whatever; these interactions nest together into a call/stack, more generally into a graph.
+                                </xs:documentation>
+                            </xs:annotation>
+                        </xs:element>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:sequence>
+        <xs:attribute  name="interactionType" type="com:interactionType">
+            <xs:annotation>
+                <xs:documentation>Indicates whether this is an intention to invoke an action, or edit a property.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="actionInvocationDto">
+        <xs:complexContent>
+            <xs:extension base="memberExecutionDto">
+                <xs:sequence>
+                    <xs:element name="parameters" type="cmd:paramsDto">
+                        <xs:annotation>
+                            <xs:documentation>The list of parameter/argument values for this action invocation.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                    <xs:element name="returned" type="com:valueWithTypeDto" minOccurs="0" maxOccurs="1">
+                        <xs:annotation>
+                            <xs:documentation>The value returned by this action (including the type of that returned value).  Either the 'returned' or the 'threw' element (from 'memberExecutionDto') will be populated.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="propertyEditDto">
+        <xs:complexContent>
+            <xs:extension base="memberExecutionDto">
+                <xs:sequence>
+                    <xs:element name="newValue" type="com:valueWithTypeDto"/>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="metricsDto">
+        <xs:sequence>
+            <xs:element name="timings" type="com:periodDto">
+                <xs:annotation>
+                    <xs:documentation>The time taken to perform the member interaction (invoke the action, or edit the property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="objectCounts" type="objectCountsDto">
+                <xs:annotation>
+                    <xs:documentation>How many objets were affected by the member interaction.
+                    </xs:documentation>
+                </xs:annotation>
+
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="objectCountsDto">
+        <xs:sequence>
+            <xs:element name="loaded" type="com:differenceDto">
+                <xs:annotation>
+                    <xs:documentation>The number of objects loaded.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="dirtied" type="com:differenceDto">
+                <xs:annotation>
+                    <xs:documentation>The number of objects dirtied (ie updated).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+
+    </xs:complexType>
+
+    <xs:complexType name="exceptionDto">
+        <xs:annotation>
+            <xs:documentation>Captures any exception thrown by an action invocation.  Use as the xsd:type of the 'threw' element.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="message" type="xs:string"/>
+            <xs:element name="stackTrace" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>A formatted stack trace.  (A future version of the 'exceptionDto' element might refine this to more easily parseable stack trace elements).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="causedBy" type="exceptionDto" minOccurs="0" maxOccurs="1"/>
+        </xs:sequence>
+    </xs:complexType>
+
+</xs:schema>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/ixn/ixn.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/ixn/ixn.xsd b/content/versions/SNAPSHOT/schema/ixn/ixn.xsd
index dc7908f..63380a8 100644
--- a/content/versions/SNAPSHOT/schema/ixn/ixn.xsd
+++ b/content/versions/SNAPSHOT/schema/ixn/ixn.xsd
@@ -25,12 +25,12 @@
            xmlns:com="http://isis.apache.org/schema/common"
 >
 
-    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.0.xsd"/>
-    <xs:import namespace="http://isis.apache.org/schema/cmd" schemaLocation="../cmd/cmd-1.0.xsd"/>
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+    <xs:import namespace="http://isis.apache.org/schema/cmd" schemaLocation="../cmd/cmd-1.4.xsd"/>
 
     <xs:element name="interactionDto">
         <xs:annotation>
-            <xs:documentation>Represents v1.0 of this schema, replacing and generalizing the earlier 'actionInvocationMemento'.
+            <xs:documentation>Represents v1.3 of this schema (as per majorVersion.minorVersion @default attribute, below); just updates to use cmd v1.4 schema.
             </xs:documentation>
         </xs:annotation>
         <xs:complexType>
@@ -41,7 +41,7 @@
                         </xs:documentation>
                     </xs:annotation>
                 </xs:element>
-                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="0">
+                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="3">
                     <xs:annotation>
                         <xs:documentation>The minor version of the schema that an XML instance was created using.
                         </xs:documentation>
@@ -77,6 +77,12 @@
                     </xs:documentation>
                 </xs:annotation>
             </xs:element>
+            <xs:element name="logicalMemberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Logical formal identifier (object type, as per @DomainObject(objectType=), and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
             <xs:element name="memberIdentifier" type="xs:string">
                 <xs:annotation>
                     <xs:documentation>Formal identifier (class name and member name) of the member being interacted with (action or property).

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..ed3fcef
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one 
+    or more contributor license agreements. See the NOTICE file 
+    distributed with this work for additional information 
+    regarding copyright ownership. The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the 
+    "License"); you may not use this file except in compliance 
+    with the License. You may obtain a copy of the License at 
+    
+        http://www.apache.org/licenses/LICENSE-2.0 
+        
+    Unless required by applicable law or agreed to in writing, 
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
+    KIND, either express or implied. See the License for the 
+    specific language governing permissions and limitations 
+    under the License. 
+--><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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.apache.isis</groupId>
+    <artifactId>isis-site</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+
+    <packaging>pom</packaging>
+
+    <name>Apache Isis Site</name>
+    <description>
+        Convenience aggregator POM to allow site to be loaded easily into an IDE
+    </description>
+
+</project>


[16/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/dg/dg.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/dg/dg.pdf b/content/versions/SNAPSHOT/guides/dg/dg.pdf
index aa7c384..49f9350 100644
--- a/content/versions/SNAPSHOT/guides/dg/dg.pdf
+++ b/content/versions/SNAPSHOT/guides/dg/dg.pdf
@@ -4,16 +4,16 @@
 << /Title (Developers' Guide)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108225806+00'00')
-/ModDate (D:20180108225806+00'00')
+/CreationDate (D:20180213130926+00'00')
+/ModDate (D:20180213130926+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 16 0 R
-/Outlines 855 0 R
-/PageLabels 932 0 R
+/Outlines 854 0 R
+/PageLabels 931 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -23,7 +23,7 @@ endobj
 3 0 obj
 << /Type /Pages
 /Count 102
-/Kids [7 0 R 10 0 R 12 0 R 14 0 R 36 0 R 47 0 R 54 0 R 61 0 R 68 0 R 74 0 R 80 0 R 88 0 R 93 0 R 102 0 R 108 0 R 114 0 R 119 0 R 124 0 R 129 0 R 134 0 R 140 0 R 146 0 R 151 0 R 157 0 R 162 0 R 167 0 R 177 0 R 182 0 R 190 0 R 195 0 R 199 0 R 203 0 R 208 0 R 215 0 R 219 0 R 227 0 R 231 0 R 235 0 R 241 0 R 248 0 R 255 0 R 272 0 R 279 0 R 285 0 R 291 0 R 296 0 R 301 0 R 312 0 R 320 0 R 325 0 R 334 0 R 354 0 R 365 0 R 377 0 R 392 0 R 397 0 R 409 0 R 414 0 R 423 0 R 425 0 R 437 0 R 449 0 R 455 0 R 473 0 R 481 0 R 489 0 R 495 0 R 504 0 R 513 0 R 522 0 R 530 0 R 535 0 R 538 0 R 548 0 R 552 0 R 562 0 R 566 0 R 581 0 R 585 0 R 589 0 R 593 0 R 595 0 R 599 0 R 601 0 R 607 0 R 609 0 R 614 0 R 622 0 R 626 0 R 634 0 R 638 0 R 642 0 R 647 0 R 650 0 R 653 0 R 656 0 R 660 0 R 664 0 R 668 0 R 675 0 R 684 0 R 699 0 R]
+/Kids [7 0 R 10 0 R 12 0 R 14 0 R 36 0 R 47 0 R 54 0 R 61 0 R 68 0 R 74 0 R 80 0 R 88 0 R 93 0 R 102 0 R 108 0 R 114 0 R 119 0 R 124 0 R 129 0 R 134 0 R 140 0 R 146 0 R 151 0 R 157 0 R 162 0 R 167 0 R 177 0 R 182 0 R 190 0 R 195 0 R 199 0 R 203 0 R 208 0 R 215 0 R 219 0 R 227 0 R 231 0 R 235 0 R 241 0 R 248 0 R 255 0 R 272 0 R 279 0 R 285 0 R 291 0 R 296 0 R 301 0 R 312 0 R 320 0 R 325 0 R 334 0 R 354 0 R 365 0 R 377 0 R 392 0 R 397 0 R 409 0 R 414 0 R 423 0 R 425 0 R 437 0 R 449 0 R 455 0 R 473 0 R 481 0 R 489 0 R 495 0 R 504 0 R 513 0 R 522 0 R 530 0 R 535 0 R 538 0 R 548 0 R 552 0 R 562 0 R 566 0 R 581 0 R 585 0 R 589 0 R 593 0 R 595 0 R 599 0 R 601 0 R 606 0 R 608 0 R 613 0 R 621 0 R 625 0 R 633 0 R 637 0 R 641 0 R 646 0 R 649 0 R 652 0 R 655 0 R 659 0 R 663 0 R 667 0 R 674 0 R 683 0 R 698 0 R]
 >>
 endobj
 4 0 obj
@@ -80,11 +80,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAH+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 934 0 R
+/FontDescriptor 933 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 936 0 R
-/ToUnicode 935 0 R
+/Widths 935 0 R
+/ToUnicode 934 0 R
 >>
 endobj
 9 0 obj
@@ -1639,7 +1639,7 @@ endobj
 /F1.0 8 0 R
 >>
 >>
-/Annots [703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R 731 0 R 732 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 738 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 770 0 R 771 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R]
+/Annots [702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R 731 0 R 732 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 738 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 770 0 R 771 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R]
 >>
 endobj
 11 0 obj
@@ -3136,7 +3136,7 @@ endobj
 /F5.0 58 0 R
 >>
 >>
-/Annots [779 0 R 780 0 R 781 0 R 782 0 R 783 0 R 784 0 R 785 0 R 786 0 R 787 0 R 788 0 R 789 0 R 790 0 R 791 0 R 792 0 R 793 0 R 794 0 R 795 0 R 796 0 R 797 0 R 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 805 0 R 806 0 R 807 0 R 808 0 R 809 0 R 810 0 R 811 0 R 812 0 R 813 0 R 814 0 R 815 0 R 816 0 R 817 0 R 818 0 R 819 0 R 820 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R]
+/Annots [778 0 R 779 0 R 780 0 R 781 0 R 782 0 R 783 0 R 784 0 R 785 0 R 786 0 R 787 0 R 788 0 R 789 0 R 790 0 R 791 0 R 792 0 R 793 0 R 794 0 R 795 0 R 796 0 R 797 0 R 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 805 0 R 806 0 R 807 0 R 808 0 R 809 0 R 810 0 R 811 0 R 812 0 R 813 0 R 814 0 R 815 0 R 816 0 R 817 0 R 818 0 R 819 0 R 820 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R]
 >>
 endobj
 13 0 obj
@@ -3821,7 +3821,7 @@ endobj
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R]
@@ -3836,18 +3836,18 @@ endobj
 >>
 endobj
 17 0 obj
-<< /Kids [173 0 R 568 0 R 395 0 R 266 0 R 174 0 R 451 0 R 336 0 R 682 0 R 527 0 R 486 0 R 678 0 R]
+<< /Kids [173 0 R 568 0 R 395 0 R 266 0 R 174 0 R 451 0 R 336 0 R 681 0 R 527 0 R 486 0 R 677 0 R]
 >>
 endobj
 18 0 obj
 << /Type /Font
 /BaseFont /AAAAAI+NotoSerif-Bold
 /Subtype /TrueType
-/FontDescriptor 938 0 R
+/FontDescriptor 937 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 940 0 R
-/ToUnicode 939 0 R
+/Widths 939 0 R
+/ToUnicode 938 0 R
 >>
 endobj
 19 0 obj
@@ -4347,7 +4347,7 @@ endobj
 /F4.0 45 0 R
 >>
 /XObject << /I1 43 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [42 0 R 44 0 R]
@@ -4363,11 +4363,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAJ+FontAwesome
 /Subtype /TrueType
-/FontDescriptor 942 0 R
+/FontDescriptor 941 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 944 0 R
-/ToUnicode 943 0 R
+/Widths 943 0 R
+/ToUnicode 942 0 R
 >>
 endobj
 40 0 obj
@@ -4476,11 +4476,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAK+NotoSerif-Italic
 /Subtype /TrueType
-/FontDescriptor 946 0 R
+/FontDescriptor 945 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 948 0 R
-/ToUnicode 947 0 R
+/Widths 947 0 R
+/ToUnicode 946 0 R
 >>
 endobj
 46 0 obj
@@ -4576,7 +4576,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I2 48 0 R
 /I3 50 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -4937,7 +4937,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I4 52 0 R
 /I5 56 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -5052,11 +5052,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAL+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 950 0 R
+/FontDescriptor 949 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 952 0 R
-/ToUnicode 951 0 R
+/Widths 951 0 R
+/ToUnicode 950 0 R
 >>
 endobj
 59 0 obj
@@ -5232,7 +5232,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I6 59 0 R
 /I7 63 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -5722,7 +5722,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I8 66 0 R
 /I9 70 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -5991,7 +5991,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I10 72 0 R
 /I11 76 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -6319,7 +6319,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I12 78 0 R
 /I13 83 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F2.0 18 0 R
@@ -6882,7 +6882,7 @@ endobj
 /Contents 87 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I14 86 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -7648,7 +7648,7 @@ endobj
 /Contents 92 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I15 91 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -8016,7 +8016,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I16 100 0 R
 /I17 104 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -8520,7 +8520,7 @@ endobj
 /F4.0 45 0 R
 >>
 /XObject << /I18 110 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [111 0 R]
@@ -8948,7 +8948,7 @@ endobj
 /Contents 113 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I19 112 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F2.0 18 0 R
@@ -9286,7 +9286,7 @@ endobj
 /Contents 118 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I20 117 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F2.0 18 0 R
@@ -9724,7 +9724,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I21 122 0 R
 /I22 126 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -10208,7 +10208,7 @@ endobj
 /F5.0 58 0 R
 >>
 /XObject << /I23 130 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [131 0 R]
@@ -10951,7 +10951,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I24 132 0 R
 /I25 136 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -11503,7 +11503,7 @@ endobj
 /Contents 139 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I26 138 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F2.0 18 0 R
@@ -12095,7 +12095,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I27 144 0 R
 /I28 148 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -12352,7 +12352,7 @@ endobj
 /F4.0 45 0 R
 >>
 /XObject << /I29 153 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [154 0 R]
@@ -12786,7 +12786,7 @@ endobj
 /Contents 156 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I30 155 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -13105,7 +13105,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I31 160 0 R
 /I32 164 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F4.0 45 0 R
 /F1.0 8 0 R
@@ -14645,7 +14645,7 @@ endobj
 /F2.0 18 0 R
 /F4.0 45 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [170 0 R 171 0 R]
@@ -14684,12 +14684,12 @@ endobj
 endobj
 173 0 obj
 << /Limits [(__dg) (__dg_building-isis_configure-maven-toolchains-plugin)]
-/Names [(__dg) 15 0 R (__dg_asciidoc-syntax_headings) 559 0 R (__dg_asciidoc_admonitions) 596 0 R (__dg_asciidoc_bulleted-lists) 563 0 R (__dg_asciidoc_child-documents) 604 0 R (__dg_asciidoc_ditaa) 616 0 R (__dg_asciidoc_graphviz) 619 0 R (__dg_asciidoc_images) 602 0 R (__dg_asciidoc_links-and-xrefs) 567 0 R (__dg_asciidoc_metadata) 610 0 R (__dg_asciidoc_numbered-lists) 564 0 R (__dg_asciidoc_paragraphs) 560 0 R (__dg_asciidoc_source-code) 597 0 R (__dg_asciidoc_tables) 579 0 R (__dg_asciidoc_uml) 611 0 R (__dg_building-isis_building-all-of-apache-isis) 412 0 R (__dg_building-isis_checking-for-use-of-internal-jdk-apis) 420 0 R (__dg_building-isis_checking-for-vulnerabilities) 416 0 R (__dg_building-isis_configure-maven-toolchains-plugin) 406 0 R]
+/Names [(__dg) 15 0 R (__dg_asciidoc-syntax_headings) 559 0 R (__dg_asciidoc_admonitions) 596 0 R (__dg_asciidoc_bulleted-lists) 563 0 R (__dg_asciidoc_child-documents) 603 0 R (__dg_asciidoc_ditaa) 615 0 R (__dg_asciidoc_graphviz) 618 0 R (__dg_asciidoc_images) 602 0 R (__dg_asciidoc_links-and-xrefs) 567 0 R (__dg_asciidoc_metadata) 609 0 R (__dg_asciidoc_numbered-lists) 564 0 R (__dg_asciidoc_paragraphs) 560 0 R (__dg_asciidoc_source-code) 597 0 R (__dg_asciidoc_tables) 579 0 R (__dg_asciidoc_uml) 610 0 R (__dg_building-isis_building-all-of-apache-isis) 412 0 R (__dg_building-isis_checking-for-use-of-internal-jdk-apis) 420 0 R (__dg_building-isis_checking-for-vulnerabilities) 416 0 R (__dg_building-isis_configure-maven-toolchains-plugin) 406 0 R]
 >>
 endobj
 174 0 obj
 << /Limits [(__dg_ide_intellij_other-settings-compiler) (_dg_asciidoc_instant-rebuild)]
-/Names [(__dg_ide_intellij_other-settings-compiler) 99 0 R (__dg_ide_intellij_other-settings-maven) 109 0 R (__dg_ide_intellij_running) 142 0 R (__dg_ide_intellij_running_integ-tests) 159 0 R (__dg_ide_intellij_running_the-app) 143 0 R (__dg_ide_intellij_running_unit-tests) 152 0 R (__dg_ide_intellij_troubleshooting) 205 0 R (_dg_agilej) 700 0 R (_dg_asciidoc) 426 0 R (_dg_asciidoc-syntax) 553 0 R (_dg_asciidoc-templates) 627 0 R (_dg_asciidoc_build-and-review) 441 0 R (_dg_asciidoc_instant-rebuild) 442 0 R]
+/Names [(__dg_ide_intellij_other-settings-compiler) 99 0 R (__dg_ide_intellij_other-settings-maven) 109 0 R (__dg_ide_intellij_running) 142 0 R (__dg_ide_intellij_running_integ-tests) 159 0 R (__dg_ide_intellij_running_the-app) 143 0 R (__dg_ide_intellij_running_unit-tests) 152 0 R (__dg_ide_intellij_troubleshooting) 205 0 R (_dg_agilej) 699 0 R (_dg_asciidoc) 426 0 R (_dg_asciidoc-syntax) 553 0 R (_dg_asciidoc-templates) 626 0 R (_dg_asciidoc_build-and-review) 441 0 R (_dg_asciidoc_instant-rebuild) 442 0 R]
 >>
 endobj
 175 0 obj
@@ -15674,7 +15674,7 @@ endobj
 /F5.0 58 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
@@ -15989,7 +15989,7 @@ endobj
 /F4.0 45 0 R
 >>
 /XObject << /I33 186 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [184 0 R 185 0 R 187 0 R]
@@ -16281,7 +16281,7 @@ endobj
 /F5.0 58 0 R
 >>
 /XObject << /I34 191 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [192 0 R]
@@ -16522,7 +16522,7 @@ endobj
 /Contents 194 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I35 193 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -16826,7 +16826,7 @@ endobj
 /Contents 198 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I36 197 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -17349,7 +17349,7 @@ endobj
 /Contents 202 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I37 201 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -18045,7 +18045,7 @@ endobj
 /Contents 207 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I38 206 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F2.0 18 0 R
@@ -20175,7 +20175,7 @@ endobj
 /F4.0 45 0 R
 /F6.0 216 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
@@ -20184,11 +20184,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAM+mplus-1p-regular
 /Subtype /TrueType
-/FontDescriptor 954 0 R
+/FontDescriptor 953 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 956 0 R
-/ToUnicode 955 0 R
+/Widths 955 0 R
+/ToUnicode 954 0 R
 >>
 endobj
 217 0 obj
@@ -20606,7 +20606,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I39 217 0 R
 /I40 221 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F5.0 58 0 R
@@ -22268,7 +22268,7 @@ endobj
 /F5.0 58 0 R
 /F3.1 39 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
@@ -22550,7 +22550,7 @@ endobj
 /Contents 230 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I41 228 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F5.0 58 0 R
@@ -23283,7 +23283,7 @@ endobj
 /Contents 234 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I42 233 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -23445,7 +23445,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I43 242 0 R
 /I44 244 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F5.0 58 0 R
@@ -24048,7 +24048,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I45 246 0 R
 /I46 250 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F2.0 18 0 R
@@ -25003,7 +25003,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [257 0 R 258 0 R 259 0 R 261 0 R 262 0 R 263 0 R 264 0 R 267 0 R 268 0 R 269 0 R]
@@ -25104,7 +25104,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
+/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
 >>
 /Subtype /Link
 /Rect [71.99161538461539 316.76000000000033 181.54923076923077 331.0400000000003]
@@ -25511,7 +25511,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I47 270 0 R
 /I48 274 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F5.0 58 0 R
@@ -25940,7 +25940,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I49 277 0 R
 /I50 281 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -26348,7 +26348,7 @@ endobj
 /Contents 284 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I51 283 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F2.0 18 0 R
@@ -26642,7 +26642,7 @@ endobj
 /Contents 290 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I52 289 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 /F2.0 18 0 R
@@ -26875,7 +26875,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I53 294 0 R
 /I54 298 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -27411,7 +27411,7 @@ endobj
 >>
 /XObject << /I55 306 0 R
 /I56 308 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [303 0 R 304 0 R 305 0 R 307 0 R 309 0 R]
@@ -27854,7 +27854,7 @@ endobj
 >>
 /XObject << /I57 313 0 R
 /I58 316 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [314 0 R 317 0 R]
@@ -28386,7 +28386,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I59 318 0 R
 /I60 322 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -29116,7 +29116,7 @@ endobj
 /F5.0 58 0 R
 /F3.1 39 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [328 0 R 331 0 R 332 0 R]
@@ -30033,7 +30033,7 @@ endobj
 /F1.1 349 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 350 0 R 351 0 R]
@@ -30044,7 +30044,7 @@ endobj
 endobj
 336 0 obj
 << /Limits [(_dg_ide_intellij) (column-alignment)]
-/Names [(_dg_ide_intellij) 38 0 R (_dg_project-lombok) 685 0 R (_dg_working-with-many-repos) 539 0 R (_ugfun_i18n) 681 0 R (adding-new-files) 510 0 R (admonitions-callouts) 630 0 R (advanced) 329 0 R (backing-up-a-local-branch) 518 0 R (bash-functions) 549 0 R (code-_repos-txt-code) 546 0 R (column-alignment) 586 0 R]
+/Names [(_dg_ide_intellij) 38 0 R (_dg_project-lombok) 684 0 R (_dg_working-with-many-repos) 539 0 R (_ugfun_i18n) 680 0 R (adding-new-files) 510 0 R (admonitions-callouts) 629 0 R (advanced) 329 0 R (backing-up-a-local-branch) 518 0 R (bash-functions) 549 0 R (code-_repos-txt-code) 546 0 R (column-alignment) 586 0 R]
 >>
 endobj
 337 0 obj
@@ -30175,18 +30175,18 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAN+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 958 0 R
+/FontDescriptor 957 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 960 0 R
-/ToUnicode 959 0 R
+/Widths 959 0 R
+/ToUnicode 958 0 R
 >>
 endobj
 350 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (ugfun.pdf#_ugfun_getting-started_helloworld-archetype)
+/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_helloworld-archetype)
 >>
 /Subtype /Link
 /Rect [94.14922005208334 244.68000000000038 151.69910481770833 258.9600000000004]
@@ -30197,7 +30197,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
+/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
 >>
 /Subtype /Link
 /Rect [177.47982486979166 244.68000000000038 232.02732486979167 258.9600000000004]
@@ -31408,7 +31408,7 @@ endobj
 /F3.1 39 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 362 0 R 363 0 R]
@@ -31418,11 +31418,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAO+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 962 0 R
+/FontDescriptor 961 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 964 0 R
-/ToUnicode 963 0 R
+/Widths 963 0 R
+/ToUnicode 962 0 R
 >>
 endobj
 356 0 obj
@@ -32335,7 +32335,7 @@ endobj
 /F2.0 18 0 R
 /F4.0 45 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [366 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R]
@@ -32889,7 +32889,7 @@ endobj
 /F5.0 58 0 R
 >>
 /XObject << /I61 382 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [381 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 390 0 R]
@@ -33894,7 +33894,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [393 0 R]
@@ -34652,7 +34652,7 @@ endobj
 /F4.0 45 0 R
 /F3.1 39 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [399 0 R 400 0 R 401 0 R 402 0 R 404 0 R 405 0 R 407 0 R]
@@ -34662,11 +34662,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAP+mplus1mn-italic
 /Subtype /TrueType
-/FontDescriptor 966 0 R
+/FontDescriptor 965 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 968 0 R
-/ToUnicode 967 0 R
+/Widths 967 0 R
+/ToUnicode 966 0 R
 >>
 endobj
 399 0 obj
@@ -35818,7 +35818,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [411 0 R]
@@ -36670,7 +36670,7 @@ endobj
 /F2.0 18 0 R
 /F3.1 39 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [415 0 R 417 0 R 418 0 R 419 0 R 421 0 R]
@@ -36834,7 +36834,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
@@ -37562,7 +37562,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 434 0 R]
@@ -38378,7 +38378,7 @@ endobj
 /F5.0 58 0 R
 /F3.1 39 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [439 0 R 440 0 R 444 0 R 445 0 R 446 0 R]
@@ -38767,7 +38767,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [452 0 R 453 0 R]
@@ -39728,7 +39728,7 @@ endobj
 /F6.0 216 0 R
 >>
 /XObject << /I62 469 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [457 0 R 458 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 468 0 R 470 0 R 471 0 R]
@@ -40429,7 +40429,7 @@ endobj
 /F2.0 18 0 R
 >>
 /XObject << /I63 474 0 R
-/Stamp1 854 0 R
+/Stamp1 853 0 R
 >>
 >>
 /Annots [475 0 R 476 0 R 477 0 R 478 0 R]
@@ -41352,7 +41352,7 @@ endobj
 /F1.0 8 0 R
 /F6.0 216 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [483 0 R 487 0 R]
@@ -42223,7 +42223,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [492 0 R]
@@ -43061,7 +43061,7 @@ endobj
 /F5.0 58 0 R
 /F6.0 216 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [497 0 R 498 0 R 501 0 R 502 0 R]
@@ -43724,7 +43724,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [506 0 R 507 0 R 508 0 R]
@@ -44384,7 +44384,7 @@ endobj
 /F2.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [516 0 R 517 0 R 519 0 R]
@@ -45070,7 +45070,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [524 0 R 525 0 R]
@@ -45106,7 +45106,7 @@ endobj
 endobj
 527 0 obj
 << /Limits [(if-your-pull-request-is-rejected) (other-guides)]
-/Names [(if-your-pull-request-is-rejected) 500 0 R (ignoring-files) 523 0 R (images) 670 0 R (instant-rebuild) 447 0 R (intentions-and-code-completion) 179 0 R (make-file-changes-and-commit) 491 0 R (meta-inf-persistence-xml) 352 0 R (misc) 679 0 R (modifying-existing-files) 509 0 R (more-advanced-use-cases) 526 0 R (one-time-setup) 443 0 R (other-domain-projects) 327 0 R (other-guides) 19 0 R]
+/Names [(if-your-pull-request-is-rejected) 500 0 R (ignoring-files) 523 0 R (images) 669 0 R (instant-rebuild) 447 0 R (intentions-and-code-completion) 179 0 R (make-file-changes-and-commit) 491 0 R (meta-inf-persistence-xml) 352 0 R (misc) 678 0 R (modifying-existing-files) 509 0 R (more-advanced-use-cases) 526 0 R (one-time-setup) 443 0 R (other-domain-projects) 327 0 R (other-guides) 19 0 R]
 >>
 endobj
 528 0 obj
@@ -45963,7 +45963,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [531 0 R]
@@ -46099,7 +46099,7 @@ endobj
 /Font << /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [536 0 R]
@@ -46668,7 +46668,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [540 0 R 541 0 R 542 0 R 544 0 R 545 0 R]
@@ -47539,7 +47539,7 @@ endobj
 /F2.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [550 0 R]
@@ -48566,7 +48566,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [554 0 R 555 0 R 556 0 R 557 0 R 558 0 R]
@@ -49424,7 +49424,7 @@ endobj
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
@@ -50821,7 +50821,7 @@ endobj
 /F5.0 58 0 R
 /F4.0 45 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R]
@@ -51650,7 +51650,7 @@ endobj
 /F5.0 58 0 R
 /F4.0 45 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [583 0 R]
@@ -52514,7 +52514,7 @@ endobj
 /F4.0 45 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [587 0 R]
@@ -53249,7 +53249,7 @@ endobj
 /F5.0 58 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 /Annots [591 0 R]
@@ -54060,7 +54060,7 @@ endobj
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
@@ -55099,7 +55099,7 @@ endobj
 /F5.0 58 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
@@ -56141,13 +56141,13 @@ endobj
 /F1.0 8 0 R
 /F5.1 355 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
 endobj
 600 0 obj
-<< /Length 12645
+<< /Length 12475
 >>
 stream
 q
@@ -56561,29 +56561,7 @@ ET
 BT
 48.239999999999995 384.58600000000007 Td
 /F1.0 10.5 Tf
-<77696c6c2072656e6465722061733a> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-48.239999999999995 356.8060000000001 Td
-/F1.0 10.5 Tf
-<5b7673636f64655d> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-48.239999999999995 329.0260000000001 Td
-/F1.0 10.5 Tf
-[<746f206d616b> 20.01953125 <652074686520696d61676520636c69636b61626c652c2061646420696e2074686520>] TJ
+[<54> 29.78515625 <6f206d616b> 20.01953125 <652074686520696d61676520636c69636b61626c652c2061646420696e2074686520>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -56592,7 +56570,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-245.27229492187502 329.0260000000001 Td
+247.68955078125003 384.58600000000007 Td
 /F5.0 10.5 Tf
 <6c696e6b> Tj
 ET
@@ -56603,7 +56581,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-266.272294921875 329.0260000000001 Td
+268.68955078125003 384.58600000000007 Td
 /F1.0 10.5 Tf
 <206174747269627574653a> Tj
 ET
@@ -56612,28 +56590,28 @@ ET
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 313.210 m
-543.040 313.210 l
-545.249 313.210 547.040 311.419 547.040 309.210 c
-547.040 280.470 l
-547.040 278.261 545.249 276.470 543.040 276.470 c
-52.240 276.470 l
-50.031 276.470 48.240 278.261 48.240 280.470 c
-48.240 309.210 l
-48.240 311.419 50.031 313.210 52.240 313.210 c
+52.240 368.770 m
+543.040 368.770 l
+545.249 368.770 547.040 366.979 547.040 364.770 c
+547.040 336.030 l
+547.040 333.821 545.249 332.030 543.040 332.030 c
+52.240 332.030 l
+50.031 332.030 48.240 333.821 48.240 336.030 c
+48.240 364.770 l
+48.240 366.979 50.031 368.770 52.240 368.770 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 313.210 m
-543.040 313.210 l
-545.249 313.210 547.040 311.419 547.040 309.210 c
-547.040 280.470 l
-547.040 278.261 545.249 276.470 543.040 276.470 c
-52.240 276.470 l
-50.031 276.470 48.240 278.261 48.240 280.470 c
-48.240 309.210 l
-48.240 311.419 50.031 313.210 52.240 313.210 c
+52.240 368.770 m
+543.040 368.770 l
+545.249 368.770 547.040 366.979 547.040 364.770 c
+547.040 336.030 l
+547.040 333.821 545.249 332.030 543.040 332.030 c
+52.240 332.030 l
+50.031 332.030 48.240 333.821 48.240 336.030 c
+48.240 364.770 l
+48.240 366.979 50.031 368.770 52.240 368.770 c
 h
 S
 Q
@@ -56641,7 +56619,7 @@ Q
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 290.3850000000001 Td
+59.239999999999995 345.9450000000001 Td
 /F5.0 11 Tf
 <696d6167653a5f696d616765732f7673636f64652e706e675b6c696e6b3d225f696d616765732f7673636f64652e706e67225d> Tj
 ET
@@ -56651,56 +56629,31 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-BT
-48.239999999999995 252.50600000000014 Td
-/F1.0 10.5 Tf
-<77696c6c2072656e6465722061733a> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
+1.652 Tw
 
 BT
-48.239999999999995 224.72600000000014 Td
+48.239999999999995 308.0660000000001 Td
 /F1.0 10.5 Tf
-<5b7673636f64655d> Tj
+<4974d57320616c736f20706f737369626c6520746f207370656369667920746865207769647468207573696e6720> Tj
 ET
 
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-48.239999999999995 196.94600000000014 Td
-/F1.0 10.5 Tf
-[<746f206d616b> 20.01953125 <652074686520696d61676520636c69636b61626c652c2061646420696e2074686520>] TJ
-ET
 
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+1.652 Tw
+
 BT
-245.27229492187502 196.94600000000014 Td
+275.86466666666666 308.0660000000001 Td
 /F5.0 10.5 Tf
-<6c696e6b> Tj
+<7363616c65647769647468> Tj
 ET
 
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-266.272294921875 196.94600000000014 Td
-/F1.0 10.5 Tf
-<206174747269627574653a> Tj
-ET
 
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
@@ -56709,9 +56662,9 @@ ET
 1.652 Tw
 
 BT
-48.239999999999995 169.16600000000014 Td
+333.61466666666666 308.0660000000001 Td
 /F1.0 10.5 Tf
-<4974d57320616c736f20706f737369626c6520746f207370656369667920746865207769647468207573696e6720> Tj
+<2028666f72205044462f48544d4c29206f7220> Tj
 ET
 
 
@@ -56724,9 +56677,9 @@ ET
 1.652 Tw
 
 BT
-275.86466666666666 169.16600000000014 Td
+438.55449999999996 308.0660000000001 Td
 /F5.0 10.5 Tf
-<7363616c65647769647468> Tj
+<7769647468> Tj
 ET
 
 
@@ -56739,9 +56692,9 @@ ET
 1.652 Tw
 
 BT
-333.61466666666666 169.16600000000014 Td
+464.80449999999996 308.0660000000001 Td
 /F1.0 10.5 Tf
-<2028666f72205044462f48544d4c29206f7220> Tj
+<20616e6420> Tj
 ET
 
 
@@ -56754,9 +56707,9 @@ ET
 1.652 Tw
 
 BT
-438.55449999999996 169.16600000000014 Td
+492.6571666666666 308.0660000000001 Td
 /F5.0 10.5 Tf
-<7769647468> Tj
+<686569676874> Tj
 ET
 
 
@@ -56769,52 +56722,71 @@ ET
 1.652 Tw
 
 BT
-464.80449999999996 169.16600000000014 Td
+524.1571666666666 308.0660000000001 Td
 /F1.0 10.5 Tf
-<20616e6420> Tj
+<2028666f72> Tj
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-1.652 Tw
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-492.6571666666666 169.16600000000014 Td
-/F5.0 10.5 Tf
-<686569676874> Tj
+48.239999999999995 292.28600000000006 Td
+/F1.0 10.5 Tf
+<48544d4c206f6e6c79292e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.652 Tw
-
 BT
-524.1571666666666 169.16600000000014 Td
+48.239999999999995 264.5060000000001 Td
 /F1.0 10.5 Tf
-<2028666f72> Tj
+[<46> 40.0390625 <6f72206578616d706c653a>] TJ
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+q
+0.961 0.961 0.961 scn
+52.240 248.690 m
+543.040 248.690 l
+545.249 248.690 547.040 246.899 547.040 244.690 c
+547.040 215.950 l
+547.040 213.741 545.249 211.950 543.040 211.950 c
+52.240 211.950 l
+50.031 211.950 48.240 213.741 48.240 215.950 c
+48.240 244.690 l
+48.240 246.899 50.031 248.690 52.240 248.690 c
+h
+f
+0.800 0.800 0.800 SCN
+0.75 w
+52.240 248.690 m
+543.040 248.690 l
+545.249 248.690 547.040 246.899 547.040 244.690 c
+547.040 215.950 l
+547.040 213.741 545.249 211.950 543.040 211.950 c
+52.240 211.950 l
+50.031 211.950 48.240 213.741 48.240 215.950 c
+48.240 244.690 l
+48.240 246.899 50.031 248.690 52.240 248.690 c
+h
+S
+Q
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 153.38600000000014 Td
-/F1.0 10.5 Tf
-<48544d4c206f6e6c79292e> Tj
+59.239999999999995 225.86500000000004 Td
+/F5.0 11 Tf
+<696d6167653a5f696d616765732f7673636f64652e706e675b6c696e6b3d225f696d616765732f7673636f64652e706e67222c77696474683d223830307078225d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -56823,7 +56795,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 113.54600000000012 Td
+48.239999999999995 175.92600000000004 Td
 /F2.0 18 Tf
 <392e31302e204368696c6420446f63756d656e7473> Tj
 ET
@@ -56834,7 +56806,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 85.52600000000012 Td
+48.239999999999995 147.90600000000003 Td
 /F1.0 10.5 Tf
 <5573652074686520> Tj
 ET
@@ -56845,7 +56817,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-87.5205 85.52600000000012 Td
+87.5205 147.90600000000003 Td
 /F5.0 10.5 Tf
 <696e636c7564653a> Tj
 ET
@@ -56856,7 +56828,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-129.5205 85.52600000000012 Td
+129.5205 147.90600000000003 Td
 /F1.0 10.5 Tf
 <206d6163726f20746f20627265616b207570206120646f63756d656e7420696e746f206d756c7469706c652073656374696f6e732e> Tj
 ET
@@ -56867,9 +56839,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 57.74600000000012 Td
+48.239999999999995 120.12600000000003 Td
 /F1.0 10.5 Tf
-[<46> 40.0390625 <6f72206578616d706c652c2074686520>] TJ
+[<46> 40.0390625 <6f72206578616d706c652c207468697320>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -56878,9 +56850,9 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-134.57058984374999 57.74600000000012 Td
+137.03808984375002 120.12600000000003 Td
 /F1.0 10.5 Tf
-<636f6e6365707473> Tj
+<646576656c6f7065727327206775696465> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -56889,7 +56861,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-178.21908984375 57.74600000000012 Td
+224.57658984375 120.12600000000003 Td
 /F1.0 10.5 Tf
 [<20646f63756d656e742069732062726f6b> 20.01953125 <656e20696e746f207365766572> 20.01953125 <616c2066696c65733a>] TJ
 ET
@@ -56931,42 +56903,28 @@ endobj
 /F5.1 355 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [603 0 R 605 0 R]
+/Annots [604 0 R]
 >>
 endobj
 602 0 obj
 [601 0 R /XYZ 0 513.1500000000001 null]
 endobj
 603 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (_images/vscode.png)
->>
-/Subtype /Link
-/Rect [48.239999999999995 221.66000000000014 89.8725 235.94000000000014]
-/Type /Annot
->>
+[601 0 R /XYZ 0 199.95000000000005 null]
 endobj
 604 0 obj
-[601 0 R /XYZ 0 137.57000000000014 null]
-endobj
-605 0 obj
 << /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (../../setting-up/concepts/concepts.pdf)
->>
+/Dest ()
 /Subtype /Link
-/Rect [134.57058984374999 54.68000000000012 178.21908984375 68.96000000000012]
+/Rect [137.03808984375002 117.06000000000003 224.57658984375 131.34000000000003]
 /Type /Annot
 >>
 endobj
-606 0 obj
-<< /Length 10795
+605 0 obj
+<< /Length 10828
 >>
 stream
 q
@@ -56976,10 +56934,10 @@ q
 52.240 805.890 m
 543.040 805.890 l
 545.249 805.890 547.040 804.099 547.040 801.890 c
-547.040 728.930 l
-547.040 726.721 545.249 724.930 543.040 724.930 c
-52.240 724.930 l
-50.031 724.930 48.240 726.721 48.240 728.930 c
+547.040 714.190 l
+547.040 711.981 545.249 710.190 543.040 710.190 c
+52.240 710.190 l
+50.031 710.190 48.240 711.981 48.240 714.190 c
 48.240 801.890 l
 48.240 804.099 50.031 805.890 52.240 805.890 c
 h
@@ -56990,10 +56948,10 @@ f
 52.240 805.890 m
 543.040 805.890 l
 545.249 805.890 547.040 804.099 547.040 801.890 c
-547.040 728.930 l
-547.040 726.721 545.249 724.930 543.040 724.930 c
-52.240 724.930 l
-50.031 724.930 48.240 726.721 48.240 728.930 c
+547.040 714.190 l
+547.040 711.981 545.249 710.190 543.040 710.190 c
+52.240 710.190 l
+50.031 710.190 48.240 711.981 48.240 714.190 c
 48.240 801.890 l
 48.240 804.099 50.031 805.890 52.240 805.890 c
 h
@@ -57007,7 +56965,7 @@ Q
 BT
 59.24 783.0649999999999 Td
 /F5.0 11 Tf
-<636f6e63657074732e61646f63> Tj
+<64672e61646f63> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57018,7 +56976,7 @@ ET
 BT
 59.24 768.3249999999999 Td
 /F5.0 11 Tf
-<5f636f6e63657074735f7768792d612d6e65772d706c6174666f726d2e61646f63> Tj
+<5f64675f6964652e61646f63> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57029,7 +56987,7 @@ ET
 BT
 59.24 753.585 Td
 /F5.0 11 Tf
-<5f636f6e63657074735f63692d61732d612d736572766963652e61646f63> Tj
+<5f64675f68696e74732d616e642d746970732e61646f63> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57040,7 +56998,18 @@ ET
 BT
 59.24 738.845 Td
 /F5.0 11 Tf
-<5f636f6e63657074735f6769742d696e74726f2e61646f63> Tj
+<5f64675f6275696c64696e672d697369732e61646f63> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 724.105 Td
+/F5.0 11 Tf
+<2e2e2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57049,7 +57018,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 700.9659999999999 Td
+48.24 686.2259999999999 Td
 /F1.0 10.5 Tf
 <616e6420736f206f6e2e> Tj
 ET
@@ -57060,7 +57029,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 673.1859999999999 Td
+48.24 658.4459999999999 Td
 /F1.0 10.5 Tf
 <54686573652061726520696e636c75646564207573696e673a> Tj
 ET
@@ -57069,28 +57038,28 @@ ET
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 657.370 m
-543.040 657.370 l
-545.249 657.370 547.040 655.579 547.040 653.370 c
-547.040 595.150 l
-547.040 592.941 545.249 591.150 543.040 591.150 c
-52.240 591.150 l
-50.031 591.150 48.240 592.941 48.240 595.150 c
-48.240 653.370 l
-48.240 655.579 50.031 657.370 52.240 657.370 c
+52.240 642.630 m
+543.040 642.630 l
+545.249 642.630 547.040 640.839 547.040 638.630 c
+547.040 565.670 l
+547.040 563.461 545.249 561.670 543.040 561.670 c
+52.240 561.670 l
+50.031 561.670 48.240 563.461 48.240 565.670 c
+48.240 638.630 l
+48.240 640.839 50.031 642.630 52.240 642.630 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 657.370 m
-543.040 657.370 l
-545.249 657.370 547.040 655.579 547.040 653.370 c
-547.040 595.150 l
-547.040 592.941 545.249 591.150 543.040 591.150 c
-52.240 591.150 l
-50.031 591.150 48.240 592.941 48.240 595.150 c
-48.240 653.370 l
-48.240 655.579 50.031 657.370 52.240 657.370 c
+52.240 642.630 m
+543.040 642.630 l
+545.249 642.630 547.040 640.839 547.040 638.630 c
+547.040 565.670 l
+547.040 563.461 545.249 561.670 543.040 561.670 c
+52.240 561.670 l
+50.031 561.670 48.240 563.461 48.240 565.670 c
+48.240 638.630 l
+48.240 640.839 50.031 642.630 52.240 642.630 c
 h
 S
 Q
@@ -57098,9 +57067,9 @@ Q
 0.200 0.200 0.200 SCN
 
 BT
-59.24 634.545 Td
+59.24 619.805 Td
 /F5.0 11 Tf
-<696e636c7564653a3a5f636f6e63657074735f7768792d612d6e65772d706c6174666f726d2e61646f635b6c6576656c6f66667365743d2b315d> Tj
+<696e636c7564653a3a5f64675f6964652e61646f635b6c6576656c6f66667365743d2b315d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57109,9 +57078,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 619.805 Td
+59.24 605.0649999999999 Td
 /F5.0 11 Tf
-<696e636c7564653a3a5f636f6e63657074735f63692d61732d612d736572766963652e61646f635b6c6576656c6f66667365743d2b315d> Tj
+<696e636c7564653a3a5f64675f68696e74732d616e642d746970732e61646f635b6c6576656c6f66667365743d2b315d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57120,9 +57089,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 605.065 Td
+59.24 590.325 Td
 /F5.0 11 Tf
-<696e636c7564653a3a5f636f6e63657074735f6769742d696e74726f2e61646f635b6c6576656c6f66667365743d2b315d> Tj
+<696e636c7564653a3a5f64675f6275696c64696e672d697369732e61646f635b6c6576656c6f66667365743d2b315d> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 575.585 Td
+/F5.0 11 Tf
+<2e2e2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57133,7 +57113,7 @@ ET
 1.047 Tw
 
 BT
-48.24 567.1859999999999 Td
+48.24 537.7059999999999 Td
 /F1.0 10.5 Tf
 <54686520> Tj
 ET
@@ -57148,7 +57128,7 @@ ET
 1.047 Tw
 
 BT
-70.70716666666667 567.1859999999999 Td
+70.70716666666667 537.7059999999999 Td
 /F5.0 10.5 Tf
 <6c6576656c6f66667365743d2b31> Tj
 ET
@@ -57163,7 +57143,7 @@ ET
 1.047 Tw
 
 BT
-144.20716666666667 567.1859999999999 Td
+144.20716666666667 537.7059999999999 Td
 /F1.0 10.5 Tf
 <206d65616e732074686174206561636820696e636c756465642066696c65d5732068656164696e67206c6576656c7320617265206175746f6d61746963616c6c792061646a75737465642e20546865> Tj
 ET
@@ -57176,7 +57156,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 551.406 Td
+48.24 521.9259999999999 Td
 /F1.0 10.5 Tf
 <6e657420656666656374206973207468617420616c6c20646f63756d656e74732063616e20616e642073686f756c64207573652068656164696e67203120617320746865697220746f702d6c6576656c2e> Tj
 ET
@@ -57189,7 +57169,7 @@ ET
 1.651 Tw
 
 BT
-48.24 523.626 Td
+48.24 494.146 Td
 /F1.0 10.5 Tf
 [<4368696c6420646f63756d656e74732073686f756c64206861766520275f27206173207072656669782e205468697320656e737572657320746861742074686579206172652069676e6f7265642062> 20.01953125 <7920746865206275696c643b206f6e6c79>] TJ
 ET
@@ -57202,7 +57182,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 507.846 Td
+48.24 478.366 Td
 /F1.0 10.5 Tf
 <2e68746d6c20616e64205044462066696c657320617265206372656174656420666f722074686520746f702d6c6576656c20706172656e7420646f63756d656e74732e> Tj
 ET
@@ -57215,7 +57195,7 @@ ET
 4.718 Tw
 
 BT
-48.24 480.06600000000003 Td
+48.24 450.586 Td
 /F1.0 10.5 Tf
 [<5468652043492f646f63756d656e746174696f6e20706c6174666f726d20616c736f20737570706f727473207468652022496d70726f7665207468697320646f632220627574746f6e2c20616c6c6f77696e6720616e> 20.01953125 <79>] TJ
 ET
@@ -57230,7 +57210,7 @@ ET
 1.154 Tw
 
 BT
-48.24 464.28600000000006 Td
+48.24 434.80600000000004 Td
 /F1.0 10.5 Tf
 [<646f63756d656e7420746f2062652065646974656420766961207468652054465320706f7274616c3b20766572792075736566756c20666f7220736d616c6c2066697865732e2054> 29.78515625 <6f206d616b> 20.01953125 <65207468697320776f726b2c2069742072656c696573>] TJ
 ET
@@ -57243,7 +57223,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 448.50600000000003 Td
+48.24 419.026 Td
 /F1.0 10.5 Tf
 <75706f6e2074686520666f6c6c6f77696e67206e616d696e6720636f6e76656e74696f6e733a> Tj
 ET
@@ -57256,7 +57236,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-56.88050000000001 420.72600000000006 Td
+56.88050000000001 391.24600000000004 Td
 /F1.0 10.5 Tf
 <a5> Tj
 ET
@@ -57269,7 +57249,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-66.24000000000001 420.72600000000006 Td
+66.24000000000001 391.24600000000004 Td
 /F1.0 10.5 Tf
 <657665727920646f63756d656e742073686f756c64206861766520616e20696420616e63686f7220666f7220697473206c6576656c2068656164696e6720636f72726573706f6e64696e6720746f206974732066696c65206e616d65> Tj
 ET
@@ -57282,7 +57262,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-56.88050000000001 398.9460000000001 Td
+56.88050000000001 369.46600000000007 Td
 /F1.0 10.5 Tf
 <a5> Tj
 ET
@@ -57295,7 +57275,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-66.24000000000001 398.9460000000001 Td
+66.24000000000001 369.46600000000007 Td
 /F1.0 10.5 Tf
 [<6576657279206368696c6420646f63756d656e74d573206e616d652073686f756c6420626520616e20275f20666f6c6c6f7765642062> 20.01953125 <7920746865206e616d65206f662069747320706172656e742e>] TJ
 ET
@@ -57306,7 +57286,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 371.1660000000001 Td
+48.24000000000001 341.6860000000001 Td
 /F1.0 10.5 Tf
 [<46> 40.0390625 <6f72206578616d706c652c20>] TJ
 ET
@@ -57317,9 +57297,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-115.88058984375002 371.1660000000001 Td
+115.88058984375002 341.6860000000001 Td
 /F5.0 10.5 Tf
-<636f6e63657074732e61646f63> Tj
+<64672e61646f63> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57328,7 +57308,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-184.13058984375002 371.1660000000001 Td
+152.63058984375002 341.6860000000001 Td
 /F1.0 10.5 Tf
 <2069733a> Tj
 ET
@@ -57337,28 +57317,28 @@ ET
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 355.350 m
-543.040 355.350 l
-545.249 355.350 547.040 353.559 547.040 351.350 c
-547.040 293.130 l
-547.040 290.921 545.249 289.130 543.040 289.130 c
-52.240 289.130 l
-50.031 289.130 48.240 290.921 48.240 293.130 c
-48.240 351.350 l
-48.240 353.559 50.031 355.350 52.240 355.350 c
+52.240 325.870 m
+543.040 325.870 l
+545.249 325.870 547.040 324.079 547.040 321.870 c
+547.040 263.650 l
+547.040 261.441 545.249 259.650 543.040 259.650 c
+52.240 259.650 l
+50.031 259.650 48.240 261.441 48.240 263.650 c
+48.240 321.870 l
+48.240 324.079 50.031 325.870 52.240 325.870 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 355.350 m
-543.040 355.350 l
-545.249 355.350 547.040 353.559 547.040 351.350 c
-547.040 293.130 l
-547.040 290.921 545.249 289.130 543.040 289.130 c
-52.240 289.130 l
-50.031 289.130 48.240 290.921 48.240 293.130 c
-48.240 351.350 l
-48.240 353.559 50.031 355.350 52.240 355.350 c
+52.240 325.870 m
+543.040 325.870 l
+545.249 325.870 547.040 324.079 547.040 321.870 c
+547.040 263.650 l
+547.040 261.441 545.249 259.650 543.040 259.650 c
+52.240 259.650 l
+50.031 259.650 48.240 261.441 48.240 263.650 c
+48.240 321.870 l
+48.240 324.079 50.031 325.870 52.240 325.870 c
 h
 S
 Q
@@ -57366,9 +57346,9 @@ Q
 0.200 0.200 0.200 SCN
 
 BT
-59.24000000000001 332.52500000000015 Td
+59.24000000000001 303.0450000000001 Td
 /F5.0 11 Tf
-<5b5b636f6e63657074735d5d> Tj
+<5b5b64675d5d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57377,9 +57357,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24000000000001 317.78500000000014 Td
+59.24000000000001 288.3050000000001 Td
 /F5.0 11 Tf
-<3d20436f6e6365707473> Tj
+<3d20446576656c6f7065727327204775696465> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57388,7 +57368,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24000000000001 303.04500000000013 Td
+59.24000000000001 273.5650000000001 Td
 /F5.0 11 Tf
 <2e2e2e> Tj
 ET
@@ -57399,7 +57379,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 265.1660000000001 Td
+48.24000000000001 235.6860000000001 Td
 /F1.0 10.5 Tf
 <7768696c6520697473206368696c6420646f63756d656e7420> Tj
 ET
@@ -57410,9 +57390,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-173.99850000000004 265.1660000000001 Td
+173.99850000000004 235.6860000000001 Td
 /F5.0 10.5 Tf
-<5f636f6e63657074735f7768792d612d6e65772d706c6174666f726d2e61646f63> Tj
+<5f64675f6964652e61646f63> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57421,7 +57401,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-347.24850000000004 265.1660000000001 Td
+236.99850000000004 235.6860000000001 Td
 /F1.0 10.5 Tf
 <2073746172747320776974683a> Tj
 ET
@@ -57430,28 +57410,28 @@ ET
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 249.350 m
-543.040 249.350 l
-545.249 249.350 547.040 247.559 547.040 245.350 c
-547.040 187.130 l
-547.040 184.921 545.249 183.130 543.040 183.130 c
-52.240 183.130 l
-50.031 183.130 48.240 184.921 48.240 187.130 c
-48.240 245.350 l
-48.240 247.559 50.031 249.350 52.240 249.350 c
+52.240 219.870 m
+543.040 219.870 l
+545.249 219.870 547.040 218.079 547.040 215.870 c
+547.040 157.650 l
+547.040 155.441 545.249 153.650 543.040 153.650 c
+52.240 153.650 l
+50.031 153.650 48.240 155.441 48.240 157.650 c
+48.240 215.870 l
+48.240 218.079 50.031 219.870 52.240 219.870 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 249.350 m
-543.040 249.350 l
-545.249 249.350 547.040 247.559 547.040 245.350 c
-547.040 187.130 l
-547.040 184.921 545.249 183.130 543.040 183.130 c
-52.240 183.130 l
-50.031 183.130 48.240 184.921 48.240 187.130 c
-48.240 245.350 l
-48.240 247.559 50.031 249.350 52.240 249.350 c
+52.240 219.870 m
+543.040 219.870 l
+545.249 219.870 547.040 218.079 547.040 215.870 c
+547.040 157.650 l
+547.040 155.441 545.249 153.650 543.040 153.650 c
+52.240 153.650 l
+50.031 153.650 48.240 155.441 48.240 157.650 c
+48.240 215.870 l
+48.240 218.079 50.031 219.870 52.240 219.870 c
 h
 S
 Q
@@ -57459,9 +57439,9 @@ Q
 0.200 0.200 0.200 SCN
 
 BT
-59.24000000000001 226.52500000000012 Td
+59.24000000000001 197.04500000000007 Td
 /F5.0 11 Tf
-<5b5b5f636f6e63657074735f7768792d612d6e65772d706c6174666f726d5d5d> Tj
+<5b5b5f64675f6964655d5d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57470,9 +57450,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24000000000001 211.78500000000014 Td
+59.24000000000001 182.3050000000001 Td
 /F5.0 11 Tf
-<3d205768792061206e657720706c6174666f726d3f> Tj
+<3d205573696e6720616e20494445> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -57481,7 +57461,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24000000000001 197.04500000000013 Td
+59.24000000000001 167.56500000000008 Td
 /F5.0 11 Tf
 <2e2e2e> Tj
 ET
@@ -57492,7 +57472,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 159.16600000000014 Td
+48.24000000000001 129.6860000000001 Td
 /F1.0 10.5 Tf
 [<496e2067656e6572> 20.01953125 <616c2c2077652075736520275f2720746f207365706172> 20.01953125 <617465206f757420746865206c6f676963616c2068696572> 20.01953125 <61726368> 20.01953125 <793a>] TJ
 ET
@@ -57523,21 +57503,21 @@ Q
 
 endstream
 endobj
-607 0 obj
+606 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 606 0 R
+/Contents 605 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
 >>
 endobj
-608 0 obj
+607 0 obj
 << /Length 10902
 >>
 stream
@@ -58163,29 +58143,29 @@ Q
 
 endstream
 endobj
-609 0 obj
+608 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 608 0 R
+/Contents 607 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F5.0 58 0 R
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [612 0 R]
+/Annots [611 0 R]
 >>
 endobj
+609 0 obj
+[608 0 R /XYZ 0 562.7099999999999 null]
+endobj
 610 0 obj
-[609 0 R /XYZ 0 562.7099999999999 null]
+[608 0 R /XYZ 0 315.80999999999995 null]
 endobj
 611 0 obj
-[609 0 R /XYZ 0 315.80999999999995 null]
-endobj
-612 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -58196,7 +58176,7 @@ endobj
 /Type /Annot
 >>
 endobj
-613 0 obj
+612 0 obj
 << /Length 5676
 >>
 stream
@@ -58517,25 +58497,25 @@ Q
 
 endstream
 endobj
-614 0 obj
+613 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 613 0 R
+/Contents 612 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/XObject << /I64 615 0 R
-/I65 618 0 R
-/Stamp1 854 0 R
+/XObject << /I64 614 0 R
+/I65 617 0 R
+/Stamp1 853 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
 >>
-/Annots [617 0 R 620 0 R]
+/Annots [616 0 R 619 0 R]
 >>
 endobj
-615 0 obj
+614 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 193
@@ -58598,10 +58578,10 @@ Jx
 �d���i�*j���E�;{����1�"K���h4�𣳺J)P[�E�.j]qq���1�"K�4N���t��[)P[�E�.j]ii���1�"Kh�љ��^QQ�	�@m�Q��u7nܰ�1�Sb��N�	�����n^
 endstream
 endobj
-616 0 obj
-[614 0 R /XYZ 0 649.14 null]
+615 0 obj
+[613 0 R /XYZ 0 649.14 null]
 endobj
-617 0 obj
+616 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -58612,7 +58592,7 @@ endobj
 /Type /Annot
 >>
 endobj
-618 0 obj
+617 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 182
@@ -58762,10 +58742,10 @@ UH1
 	!����P�\�
 endstream
 endobj
-619 0 obj
-[614 0 R /XYZ 0 166.34000000000015 null]
+618 0 obj
+[613 0 R /XYZ 0 166.34000000000015 null]
 endobj
-620 0 obj
+619 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -58776,7 +58756,7 @@ endobj
 /Type /Annot
 >>
 endobj
-621 0 obj
+620 0 obj
 << /Length 6242
 >>
 stream
@@ -59144,30 +59124,30 @@ Q
 
 endstream
 endobj
-622 0 obj
+621 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 621 0 R
+/Contents 620 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F5.0 58 0 R
 /F1.0 8 0 R
 /F3.1 39 0 R
 >>
-/XObject << /I66 623 0 R
-/Stamp1 854 0 R
+/XObject << /I66 622 0 R
+/Stamp1 853 0 R
 >>
 >>
 >>
 endobj
-623 0 obj
+622 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 301
 /Width 269
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
-/SMask 624 0 R
+/SMask 623 0 R
 /Length 14343
 /Filter [/FlateDecode]
 /DecodeParms [<< /Predictor 15
@@ -59239,7 +59219,7 @@ a
 T'N@܅ؚ5k���x�Y�ј��\TTt��>�
 ��9��^����ܹs�������/��:�߿��.\���d&�w����?@u2���mmm���P����ɻ����ٳ���Y�f������.^��G�R|}��'O��W���+�o�O+W��;w�ӟ2z{{
�N�C�����gϞ�;w�= QF��(��l׮]���ihh���H��iӦ	�Bh��Ǐ(`6����Px��III���+V�����w������ׯ!���>�H�H�����%�6��5�N(���y<�22T'��P�P(#�?3�Ґ
 endstream
 endobj
-624 0 obj
+623 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 301
@@ -59259,7 +59239,7 @@ stream
 x���AR�0ABq���[X�N -�O@
_�c�������y�'���F}����F��)�5�RʙRf��F�Qj��F�Qj��F�Qj���Fx�0�(�7ʾ��F�Qj��F9aÕ�P��(5J�R��(5J�R��(5ʝ�R��(�F�Q�}��A(�چ}��(+��F�QVJ��2�FY)e6J��R�l��(5�J)�Qj��Rf��(+��F�QVJ��R��(�F��2e6�l�e��e���(�Qf��(+��F�QVJ��R���2�FY)e6�l�e���F�7�l��F�Qj�3��(5J��͟��F�����R¾Qj��F�Q�7��=�F�Q���wV��^��������F�Qj���8}�����r�1�(5J�qz纉3��('�Pc��ΛxֶN�>n�L)g�:�����Rj��F�Qj��F�Qj��F�Qj�����}ѡF�Xj��Rf��(5J�R��(5J�R��(5J�R��(5J�R��(5J�R��(5J�R���� ��w{J��\C�Rc�^�7����E�o��F�Qj��F�Qj
 ��F�Qj���=���K<�(5J�R���O��8a��F�Qj���^��z#��Qj��F�Qj��F�Q�-��>Öϰe-�Qf���C�qz�����Tz�>�2��8�s�ęR�����v�2e��E����F�Qj�]4�)�Lj��F�QΔp–�F��j����{
 endstream
 endobj
-625 0 obj
+624 0 obj
 << /Length 23340
 >>
 stream
@@ -60853,26 +60833,26 @@ Q
 
 endstream
 endobj
-626 0 obj
+625 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 625 0 R
+/Contents 624 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [628 0 R 629 0 R]
+/Annots [627 0 R 628 0 R]
 >>
 endobj
-627 0 obj
-[626 0 R /XYZ 0 841.89 null]
+626 0 obj
+[625 0 R /XYZ 0 841.89 null]
 endobj
-628 0 obj
+627 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -60883,7 +60863,7 @@ endobj
 /Type /Annot
 >>
 endobj
-629 0 obj
+628 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -60894,16 +60874,16 @@ endobj
 /Type /Annot
 >>
 endobj
+629 0 obj
+[625 0 R /XYZ 0 693.8300000000002 null]
+endobj
 630 0 obj
-[626 0 R /XYZ 0 693.8300000000002 null]
+[625 0 R /XYZ 0 511.0700000000003 null]
 endobj
 631 0 obj
-[626 0 R /XYZ 0 511.0700000000003 null]
+[625 0 R /XYZ 0 347.09000000000026 null]
 endobj
 632 0 obj
-[626 0 R /XYZ 0 347.09000000000026 null]
-endobj
-633 0 obj
 << /Length 10584
 >>
 stream
@@ -61750,23 +61730,23 @@ Q
 
 endstream
 endobj
-634 0 obj
+633 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 633 0 R
+/Contents 632 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [635 0 R 636 0 R]
+/Annots [634 0 R 635 0 R]
 >>
 endobj
-635 0 obj
+634 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -61777,7 +61757,7 @@ endobj
 /Type /Annot
 >>
 endobj
-636 0 obj
+635 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -61788,7 +61768,7 @@ endobj
 /Type /Annot
 >>
 endobj
-637 0 obj
+636 0 obj
 << /Length 11419
 >>
 stream
@@ -62694,23 +62674,23 @@ Q
 
 endstream
 endobj
-638 0 obj
+637 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 637 0 R
+/Contents 636 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [639 0 R 640 0 R]
+/Annots [638 0 R 639 0 R]
 >>
 endobj
-639 0 obj
+638 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -62721,7 +62701,7 @@ endobj
 /Type /Annot
 >>
 endobj
-640 0 obj
+639 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -62732,7 +62712,7 @@ endobj
 /Type /Annot
 >>
 endobj
-641 0 obj
+640 0 obj
 << /Length 11919
 >>
 stream
@@ -63647,23 +63627,23 @@ Q
 
 endstream
 endobj
-642 0 obj
+641 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 641 0 R
+/Contents 640 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [643 0 R 644 0 R 645 0 R]
+/Annots [642 0 R 643 0 R 644 0 R]
 >>
 endobj
-643 0 obj
+642 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63674,7 +63654,7 @@ endobj
 /Type /Annot
 >>
 endobj
-644 0 obj
+643 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63685,7 +63665,7 @@ endobj
 /Type /Annot
 >>
 endobj
-645 0 obj
+644 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63696,7 +63676,7 @@ endobj
 /Type /Annot
 >>
 endobj
-646 0 obj
+645 0 obj
 << /Length 6426
 >>
 stream
@@ -64196,23 +64176,23 @@ Q
 
 endstream
 endobj
-647 0 obj
+646 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 646 0 R
+/Contents 645 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [648 0 R]
+/Annots [647 0 R]
 >>
 endobj
-648 0 obj
+647 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -64223,7 +64203,7 @@ endobj
 /Type /Annot
 >>
 endobj
-649 0 obj
+648 0 obj
 << /Length 7901
 >>
 stream
@@ -64841,23 +64821,23 @@ Q
 
 endstream
 endobj
-650 0 obj
+649 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 649 0 R
+/Contents 648 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [651 0 R]
+/Annots [650 0 R]
 >>
 endobj
-651 0 obj
+650 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -64868,7 +64848,7 @@ endobj
 /Type /Annot
 >>
 endobj
-652 0 obj
+651 0 obj
 << /Length 7487
 >>
 stream
@@ -65441,23 +65421,23 @@ Q
 
 endstream
 endobj
-653 0 obj
+652 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 652 0 R
+/Contents 651 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [654 0 R]
+/Annots [653 0 R]
 >>
 endobj
-654 0 obj
+653 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -65468,7 +65448,7 @@ endobj
 /Type /Annot
 >>
 endobj
-655 0 obj
+654 0 obj
 << /Length 11850
 >>
 stream
@@ -66391,23 +66371,23 @@ Q
 
 endstream
 endobj
-656 0 obj
+655 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 655 0 R
+/Contents 654 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [657 0 R 658 0 R]
+/Annots [656 0 R 657 0 R]
 >>
 endobj
-657 0 obj
+656 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -66418,7 +66398,7 @@ endobj
 /Type /Annot
 >>
 endobj
-658 0 obj
+657 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -66429,7 +66409,7 @@ endobj
 /Type /Annot
 >>
 endobj
-659 0 obj
+658 0 obj
 << /Length 11438
 >>
 stream
@@ -67306,23 +67286,23 @@ Q
 
 endstream
 endobj
-660 0 obj
+659 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 659 0 R
+/Contents 658 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [661 0 R 662 0 R]
+/Annots [660 0 R 661 0 R]
 >>
 endobj
-661 0 obj
+660 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67333,7 +67313,7 @@ endobj
 /Type /Annot
 >>
 endobj
-662 0 obj
+661 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67344,7 +67324,7 @@ endobj
 /Type /Annot
 >>
 endobj
-663 0 obj
+662 0 obj
 << /Length 11910
 >>
 stream
@@ -68244,23 +68224,23 @@ Q
 
 endstream
 endobj
-664 0 obj
+663 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 663 0 R
+/Contents 662 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [665 0 R 666 0 R]
+/Annots [664 0 R 665 0 R]
 >>
 endobj
-665 0 obj
+664 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -68271,7 +68251,7 @@ endobj
 /Type /Annot
 >>
 endobj
-666 0 obj
+665 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -68282,7 +68262,7 @@ endobj
 /Type /Annot
 >>
 endobj
-667 0 obj
+666 0 obj
 << /Length 28848
 >>
 stream
@@ -70325,37 +70305,37 @@ Q
 
 endstream
 endobj
-668 0 obj
+667 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 667 0 R
+/Contents 666 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 >>
-/XObject << /I67 671 0 R
-/Stamp1 854 0 R
+/XObject << /I67 670 0 R
+/Stamp1 853 0 R
 >>
 >>
-/Annots [673 0 R]
+/Annots [672 0 R]
 >>
 endobj
+668 0 obj
+[667 0 R /XYZ 0 841.89 null]
+endobj
 669 0 obj
-[668 0 R /XYZ 0 841.89 null]
+[667 0 R /XYZ 0 454.79999999999995 null]
 endobj
 670 0 obj
-[668 0 R /XYZ 0 454.79999999999995 null]
-endobj
-671 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 932
 /Width 1680
 /BitsPerComponent 8
 /ColorSpace /DeviceRGB
-/SMask 672 0 R
+/SMask 671 0 R
 /Length 212318
 /Filter [/FlateDecode]
 /DecodeParms [<< /Predictor 15
@@ -71088,7 +71068,7 @@ E
 M�̎Ag0-8�m�;�	���C�XZZ��~���v2��R��ū���I`����Y�J)i�K*�@ۙ3 s�0�[���ɯ�����~���v�'���w�DM�1a`gc�u���>����x1�Þ)�S*����NѪ-ߊ�oS���L��Z2�7C��������*��$��HIGZ�'e���	;3���� �0#��;3���� �0#��;3���� �0#��;3���� �0#�����>�
 endstream
 endobj
-672 0 obj
+671 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 932
@@ -71108,7 +71088,7 @@ stream
 x���A0!����=�{���(	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$
 	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@�
 �H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�
 !� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H
 	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B AH$	�!� $�@��H	B ����.
 endstream
 endobj
-673 0 obj
+672 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -71119,7 +71099,7 @@ endobj
 /Type /Annot
 >>
 endobj
-674 0 obj
+673 0 obj
 << /Length 29054
 >>
 stream
@@ -73145,38 +73125,38 @@ Q
 
 endstream
 endobj
-675 0 obj
+674 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 674 0 R
+/Contents 673 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F5.0 58 0 R
 /F1.0 8 0 R
 /F6.0 216 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [680 0 R]
+/Annots [679 0 R]
 >>
 endobj
+675 0 obj
+[674 0 R /XYZ 0 747.33 null]
+endobj
 676 0 obj
-[675 0 R /XYZ 0 747.33 null]
+[674 0 R /XYZ 0 546.8310000000001 null]
 endobj
 677 0 obj
-[675 0 R /XYZ 0 546.8310000000001 null]
-endobj
-678 0 obj
 << /Limits [(setting-up-your-fork-clone) (youtube-screencasts)]
-/Names [(setting-up-your-fork-clone) 467 0 R (source-code) 669 0 R (switch-between-tools-editors) 172 0 R (tables) 677 0 R (todo-notes) 631 0 R (update-the-classpath) 302 0 R (update-your-master-branch) 485 0 R (where-to-find-the-docs) 433 0 R (workaround-if-the-enhancer-fails) 315 0 R (xref-to-guides) 632 0 R (youtube-screencasts) 676 0 R]
+/Names [(setting-up-your-fork-clone) 467 0 R (source-code) 668 0 R (switch-between-tools-editors) 172 0 R (tables) 676 0 R (todo-notes) 630 0 R (update-the-classpath) 302 0 R (update-your-master-branch) 485 0 R (where-to-find-the-docs) 433 0 R (workaround-if-the-enhancer-fails) 315 0 R (xref-to-guides) 631 0 R (youtube-screencasts) 675 0 R]
 >>
 endobj
-679 0 obj
-[675 0 R /XYZ 0 448.19100000000014 null]
+678 0 obj
+[674 0 R /XYZ 0 448.19100000000014 null]
 endobj
-680 0 obj
+679 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -73187,15 +73167,15 @@ endobj
 /Type /Annot
 >>
 endobj
-681 0 obj
-[675 0 R /XYZ 182.9455716 222.98400000000007 null]
+680 0 obj
+[674 0 R /XYZ 182.9455716 222.98400000000007 null]
 endobj
-682 0 obj
+681 0 obj
 << /Limits [(column-attributes) (if-your-pull-request-is-accepted)]
-/Names [(column-attributes) 582 0 R (column-row-spanning) 590 0 R (commit-messages) 479 0 R (common-workflows) 515 0 R (create-a-topic-branch) 490 0 R (creating-the-patch-file) 482 0 R (deleting-files) 511 0 R (future-thoughts) 695 0 R (if-accidentally-push-to-remote) 528 0 R (if-you-ve-accidentally-worked-on-code-master-code-branch) 532 0 R (if-you-ve-forgotten-to-prefix-your-commits-but-not-pushed) 533 0 R (if-your-pull-request-is-accepted) 499 0 R]
+/Names [(column-attributes) 582 0 R (column-row-spanning) 590 0 R (commit-messages) 479 0 R (common-workflows) 515 0 R (create-a-topic-branch) 490 0 R (creating-the-patch-file) 482 0 R (deleting-files) 511 0 R (future-thoughts) 694 0 R (if-accidentally-push-to-remote) 528 0 R (if-you-ve-accidentally-worked-on-code-master-code-branch) 532 0 R (if-you-ve-forgotten-to-prefix-your-commits-but-not-pushed) 533 0 R (if-your-pull-request-is-accepted) 499 0 R]
 >>
 endobj
-683 0 obj
+682 0 obj
 << /Length 18204
 >>
 stream
@@ -74386,26 +74366,26 @@ Q
 
 endstream
 endobj
-684 0 obj
+683 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 683 0 R
+/Contents 682 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 696 0 R 697 0 R]
+/Annots [685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 695 0 R 696 0 R]
 >>
 endobj
-685 0 obj
-[684 0 R /XYZ 0 841.89 null]
+684 0 obj
+[683 0 R /XYZ 0 841.89 null]
 endobj
-686 0 obj
+685 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74416,7 +74396,7 @@ endobj
 /Type /Annot
 >>
 endobj
-687 0 obj
+686 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74427,7 +74407,7 @@ endobj
 /Type /Annot
 >>
 endobj
-688 0 obj
+687 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74438,7 +74418,7 @@ endobj
 /Type /Annot
 >>
 endobj
-689 0 obj
+688 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74449,7 +74429,7 @@ endobj
 /Type /Annot
 >>
 endobj
-690 0 obj
+689 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74460,7 +74440,7 @@ endobj
 /Type /Annot
 >>
 endobj
-691 0 obj
+690 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74471,7 +74451,7 @@ endobj
 /Type /Annot
 >>
 endobj
-692 0 obj
+691 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74482,7 +74462,7 @@ endobj
 /Type /Annot
 >>
 endobj
-693 0 obj
+692 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74493,7 +74473,7 @@ endobj
 /Type /Annot
 >>
 endobj
-694 0 obj
+693 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74504,10 +74484,10 @@ endobj
 /Type /Annot
 >>
 endobj
-695 0 obj
-[684 0 R /XYZ 0 287.37 null]
+694 0 obj
+[683 0 R /XYZ 0 287.37 null]
 endobj
-696 0 obj
+695 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74518,7 +74498,7 @@ endobj
 /Type /Annot
 >>
 endobj
-697 0 obj
+696 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -74529,7 +74509,7 @@ endobj
 /Type /Annot
 >>
 endobj
-698 0 obj
+697 0 obj
 << /Length 11290
 >>
 stream
@@ -75117,27 +75097,27 @@ Q
 
 endstream
 endobj
-699 0 obj
+698 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 698 0 R
+/Contents 697 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F3.1 39 0 R
 /F1.0 8 0 R
 /F5.0 58 0 R
 >>
-/XObject << /Stamp1 854 0 R
+/XObject << /Stamp1 853 0 R
 >>
 >>
-/Annots [701 0 R 702 0 R]
+/Annots [700 0 R 701 0 R]
 >>
 endobj
-700 0 obj
-[699 0 R /XYZ 0 841.89 null]
+699 0 obj
+[698 0 R /XYZ 0 841.89 null]
 endobj
-701 0 obj
+700 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -75148,7 +75128,7 @@ endobj
 /Type /Annot
 >>
 endobj
-702 0 obj
+701 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -75159,7 +75139,7 @@ endobj
 /Type /Annot
 >>
 endobj
-703 0 obj
+702 0 obj
 << /Border [0 0 0]
 /Dest (__dg)
 /Subtype /Link
@@ -75167,7 +75147,7 @@ endobj
 /Type /Annot
 >>
 endobj
-704 0 obj
+703 0 obj
 << /Border [0 0 0]
 /Dest (__dg)
 /Subtype /Link
@@ -75175,7 +75155,7 @@ endobj
 /Type /Annot
 >>
 endobj
-705 0 obj
+704 0 obj
 << /Border [0 0 0]
 /Dest (other-guides)
 /Subtype /Link
@@ -75183,7 +75163,7 @@ endobj
 /Type /Annot
 >>
 endobj
-706 0 obj
+705 0 obj
 << /Border [0 0 0]
 /Dest (other-guides)
 /Subtype /Link
@@ -75191,7 +75171,7 @@ endobj
 /Type /Annot
 >>
 endobj
-707 0 obj
+706 0 obj
 << /Border [0 0 0]
 /Dest (_dg_ide)
 /Subtype /Link
@@ -75199,7 +75179,7 @@ endobj
 /Type /Annot
 >>
 endobj
-708 0 obj
+707 0 obj
 << /Border [0 0 0]
 /Dest (_dg_ide)
 /Subtype /Link
@@ -75207,7 +75187,7 @@ endobj
 /Type /Annot
 >>
 endobj
-709 0 obj
+708 0 obj
 << /Border [0 0 0]
 /Dest (_dg_ide_intellij)
 /Subtype /Link
@@ -75215,7 +75195,7 @@ endobj
 /Type /Annot
 >>
 endobj
-710 0 obj
+709 0 obj
 << /Border [0 0 0]
 /Dest (_dg_ide_intellij)
 /Subtype /Link
@@ -75223,7 +75203,7 @@ endobj
 /Type /Annot
 >>
 endobj
-711 0 obj
+710 0 obj
 << /Border [0 0 0]
 /Dest (_dg_ide_eclipse)
 /Subtype /Link
@@ -75231,7 +75211,7 @@ endobj
 /Type /Annot
 >>
 endobj
-712 0 obj
+711 0 obj
 << /Border [0 0 0]
 /Dest (_dg_ide_eclipse)
 /Subtype /Link
@@ -75239,7 +75219,7 @@ endobj
 /Type /Annot
 >>
 endobj
-713 0 obj
+712 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips)
 /Subtype /Link
@@ -75247,7 +75227,7 @@ endobj
 /Type /Annot
 >>
 endobj
-714 0 obj
+713 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips)
 /Subtype /Link
@@ -75255,7 +75235,7 @@ endobj
 /Type /Annot
 >>
 endobj
-715 0 obj
+714 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_datanucleus-enhancer)
 /Subtype /Link
@@ -75263,7 +75243,7 @@ endobj
 /Type /Annot
 >>
 endobj
-716 0 obj
+715 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_datanucleus-enhancer)
 /Subtype /Link
@@ -75271,7 +75251,7 @@ endobj
 /Type /Annot
 >>
 endobj
-717 0 obj
+716 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_enabling-logging)
 /Subtype /Link
@@ -75279,7 +75259,7 @@ endobj
 /Type /Annot
 >>
 endobj
-718 0 obj
+717 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_enabling-logging)
 /Subtype /Link
@@ -75287,7 +75267,7 @@ endobj
 /Type /Annot
 >>
 endobj
-719 0 obj
+718 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_enhance-only)
 /Subtype /Link
@@ -75295,7 +75275,7 @@ endobj
 /Type /Annot
 >>
 endobj
-720 0 obj
+719 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_enhance-only)
 /Subtype /Link
@@ -75303,7 +75283,7 @@ endobj
 /Type /Annot
 >>
 endobj
-721 0 obj
+720 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_how-run-fixtures-on-app-startup)
 /Subtype /Link
@@ -75311,7 +75291,7 @@ endobj
 /Type /Annot
 >>
 endobj
-722 0 obj
+721 0 obj
 << /Border [0 0 0]
 /Dest (_dg_hints-and-tips_how-run-fixtures-on-app-startup)
 /Subtype /Link
@@ -75319,7 +75299,7 @@ endobj
 /Type /Annot
 >>
 endobj
-723 0 obj
+722 0 obj
 << /Border [0 0 0]
 /Dest (_dg_building-isis)
 /Subtype /Link
@@ -75327,7 +75307,7 @@ endobj
 /Type /Annot
 >>
 endobj
-724 0 obj
+723 0 obj
 << /Border [0 0 0]
 /Dest (_dg_building-isis)
 /Subtype /Link
@@ -75335,7 +75315,7 @@ endobj
 /Type /Annot
 >>
 endobj
-725 0 obj
+724 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_git)
 /Subtype /Link
@@ -75343,7 +75323,7 @@ endobj
 /Type /Annot
 >>
 endobj
-726 0 obj
+725 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_git)
 /Subtype /Link
@@ -75351,7 +75331,7 @@ endobj
 /Type /Annot
 >>
 endobj
-727 0 obj
+726 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_installing-java)
 /Subtype /Link
@@ -75359,7 +75339,7 @@ endobj
 /Type /Annot
 >>
 endobj
-728 0 obj
+727 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_installing-java)
 /Subtype /Link
@@ -75367,7 +75347,7 @@ endobj
 /Type /Annot
 >>
 endobj
-729 0 obj
+728 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_installing-maven)
 /Subtype /Link
@@ -75375,7 +75355,7 @@ endobj
 /Type /Annot
 >>
 endobj
-730 0 obj
+729 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_installing-maven)
 /Subtype /Link
@@ -75383,7 +75363,7 @@ endobj
 /Type /Annot
 >>
 endobj
-731 0 obj
+730 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_building-all-of-apache-isis)
 /Subtype /Link
@@ -75391,7 +75371,7 @@ endobj
 /Type /Annot
 >>
 endobj
-732 0 obj
+731 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_building-all-of-apache-isis)
 /Subtype /Link
@@ -75399,7 +75379,7 @@ endobj
 /Type /Annot
 >>
 endobj
-733 0 obj
+732 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_checking-for-vulnerabilities)
 /Subtype /Link
@@ -75407,7 +75387,7 @@ endobj
 /Type /Annot
 >>
 endobj
-734 0 obj
+733 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_checking-for-vulnerabilities)
 /Subtype /Link
@@ -75415,7 +75395,7 @@ endobj
 /Type /Annot
 >>
 endobj
-735 0 obj
+734 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_checking-for-use-of-internal-jdk-apis)
 /Subtype /Link
@@ -75423,7 +75403,7 @@ endobj
 /Type /Annot
 >>
 endobj
-736 0 obj
+735 0 obj
 << /Border [0 0 0]
 /Dest (__dg_building-isis_checking-for-use-of-internal-jdk-apis)
 /Subtype /Link
@@ -75431,7 +75411,7 @@ endobj
 /Type /Annot
 >>
 endobj
-737 0 obj
+736 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc)
 /Subtype /Link
@@ -75439,7 +75419,7 @@ endobj
 /Type /Annot
 >>
 endobj
-738 0 obj
+737 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc)
 /Subtype /Link
@@ -75447,7 +75427,7 @@ endobj
 /Type /Annot
 >>
 endobj
-739 0 obj
+738 0 obj
 << /Border [0 0 0]
 /Dest (where-to-find-the-docs)
 /Subtype /Link
@@ -75455,7 +75435,7 @@ endobj
 /Type /Annot
 >>
 endobj
-740 0 obj
+739 0 obj
 << /Border [0 0 0]
 /Dest (where-to-find-the-docs)
 /Subtype /Link
@@ -75463,7 +75443,7 @@ endobj
 /Type /Annot
 >>
 endobj
-741 0 obj
+740 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_naming-conventions)
 /Subtype /Link
@@ -75471,7 +75451,7 @@ endobj
 /Type /Annot
 >>
 endobj
-742 0 obj
+741 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_naming-conventions)
 /Subtype /Link
@@ -75479,7 +75459,7 @@ endobj
 /Type /Annot
 >>
 endobj
-743 0 obj
+742 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_writing-the-docs)
 /Subtype /Link
@@ -75487,7 +75467,7 @@ endobj
 /Type /Annot
 >>
 endobj
-744 0 obj
+743 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_writing-the-docs)
 /Subtype /Link
@@ -75495,7 +75475,7 @@ endobj
 /Type /Annot
 >>
 endobj
-745 0 obj
+744 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_build-and-review)
 /Subtype /Link
@@ -75503,7 +75483,7 @@ endobj
 /Type /Annot
 >>
 endobj
-746 0 obj
+745 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_build-and-review)
 /Subtype /Link
@@ -75511,7 +75491,7 @@ endobj
 /Type /Annot
 >>
 endobj
-747 0 obj
+746 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_instant-rebuild)
 /Subtype /Link
@@ -75519,7 +75499,7 @@ endobj
 /Type /Annot
 >>
 endobj
-748 0 obj
+747 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_instant-rebuild)
 /Subtype /Link
@@ -75527,7 +75507,7 @@ endobj
 /Type /Annot
 >>
 endobj
-749 0 obj
+748 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_publish-procedure)
 /Subtype /Link
@@ -75535,7 +75515,7 @@ endobj
 /Type /Annot
 >>
 endobj
-750 0 obj
+749 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc_publish-procedure)
 /Subtype /Link
@@ -75543,7 +75523,7 @@ endobj
 /Type /Annot
 >>
 endobj
-751 0 obj
+750 0 obj
 << /Border [0 0 0]
 /Dest (_dg_contributing)
 /Subtype /Link
@@ -75551,7 +75531,7 @@ endobj
 /Type /Annot
 >>
 endobj
-752 0 obj
+751 0 obj
 << /Border [0 0 0]
 /Dest (_dg_contributing)
 /Subtype /Link
@@ -75559,7 +75539,7 @@ endobj
 /Type /Annot
 >>
 endobj
-753 0 obj
+752 0 obj
 << /Border [0 0 0]
 /Dest (recommended-workflow-github)
 /Subtype /Link
@@ -75567,7 +75547,7 @@ endobj
 /Type /Annot
 >>
 endobj
-754 0 obj
+753 0 obj
 << /Border [0 0 0]
 /Dest (recommended-workflow-github)
 /Subtype /Link
@@ -75575,7 +75555,7 @@ endobj
 /Type /Annot
 >>
 endobj
-755 0 obj
+754 0 obj
 << /Border [0 0 0]
 /Dest (setting-up-your-fork-clone)
 /Subtype /Link
@@ -75583,7 +75563,7 @@ endobj
 /Type /Annot
 >>
 endobj
-756 0 obj
+755 0 obj
 << /Border [0 0 0]
 /Dest (setting-up-your-fork-clone)
 /Subtype /Link
@@ -75591,7 +75571,7 @@ endobj
 /Type /Annot
 >>
 endobj
-757 0 obj
+756 0 obj
 << /Border [0 0 0]
 /Dest (commit-messages)
 /Subtype /Link
@@ -75599,7 +75579,7 @@ endobj
 /Type /Annot
 >>
 endobj
-758 0 obj
+757 0 obj
 << /Border [0 0 0]
 /Dest (commit-messages)
 /Subtype /Link
@@ -75607,7 +75587,7 @@ endobj
 /Type /Annot
 >>
 endobj
-759 0 obj
+758 0 obj
 << /Border [0 0 0]
 /Dest (creating-the-patch-file)
 /Subtype /Link
@@ -75615,7 +75595,7 @@ endobj
 /Type /Annot
 >>
 endobj
-760 0 obj
+759 0 obj
 << /Border [0 0 0]
 /Dest (creating-the-patch-file)
 /Subtype /Link
@@ -75623,7 +75603,7 @@ endobj
 /Type /Annot
 >>
 endobj
-761 0 obj
+760 0 obj
 << /Border [0 0 0]
 /Dest (sample-contribution-workflow)
 /Subtype /Link
@@ -75631,7 +75611,7 @@ endobj
 /Type /Annot
 >>
 endobj
-762 0 obj
+761 0 obj
 << /Border [0 0 0]
 /Dest (sample-contribution-workflow)
 /Subtype /Link
@@ -75639,7 +75619,7 @@ endobj
 /Type /Annot
 >>
 endobj
-763 0 obj
+762 0 obj
 << /Border [0 0 0]
 /Dest (if-your-pull-request-is-accepted)
 /Subtype /Link
@@ -75647,7 +75627,7 @@ endobj
 /Type /Annot
 >>
 endobj
-764 0 obj
+763 0 obj
 << /Border [0 0 0]
 /Dest (if-your-pull-request-is-accepted)
 /Subtype /Link
@@ -75655,7 +75635,7 @@ endobj
 /Type /Annot
 >>
 endobj
-765 0 obj
+764 0 obj
 << /Border [0 0 0]
 /Dest (_dg_git-cookbook)
 /Subtype /Link
@@ -75663,7 +75643,7 @@ endobj
 /Type /Annot
 >>
 endobj
-766 0 obj
+765 0 obj
 << /Border [0 0 0]
 /Dest (_dg_git-cookbook)
 /Subtype /Link
@@ -75671,7 +75651,7 @@ endobj
 /Type /Annot
 >>
 endobj
-767 0 obj
+766 0 obj
 << /Border [0 0 0]
 /Dest (modifying-existing-files)
 /Subtype /Link
@@ -75679,7 +75659,7 @@ endobj
 /Type /Annot
 >>
 endobj
-768 0 obj
+767 0 obj
 << /Border [0 0 0]
 /Dest (modifying-existing-files)
 /Subtype /Link
@@ -75687,7 +75667,7 @@ endobj
 /Type /Annot
 >>
 endobj
-769 0 obj
+768 0 obj
 << /Border [0 0 0]
 /Dest (adding-new-files)
 /Subtype /Link
@@ -75695,7 +75675,7 @@ endobj
 /Type /Annot
 >>
 endobj
-770 0 obj
+769 0 obj
 << /Border [0 0 0]
 /Dest (adding-new-files)
 /Subtype /Link
@@ -75703,7 +75683,7 @@ endobj
 /Type /Annot
 >>
 endobj
-771 0 obj
+770 0 obj
 << /Border [0 0 0]
 /Dest (deleting-files)
 /Subtype /Link
@@ -75711,7 +75691,7 @@ endobj
 /Type /Annot
 >>
 endobj
-772 0 obj
+771 0 obj
 << /Border [0 0 0]
 /Dest (deleting-files)
 /Subtype /Link
@@ -75719,7 +75699,7 @@ endobj
 /Type /Annot
 >>
 endobj
-773 0 obj
+772 0 obj
 << /Border [0 0 0]
 /Dest (renaming-or-moving-files)
 /Subtype /Link
@@ -75727,7 +75707,7 @@ endobj
 /Type /Annot
 >>
 endobj
-774 0 obj
+773 0 obj
 << /Border [0 0 0]
 /Dest (renaming-or-moving-files)
 /Subtype /Link
@@ -75735,7 +75715,7 @@ endobj
 /Type /Annot
 >>
 endobj
-775 0 obj
+774 0 obj
 << /Border [0 0 0]
 /Dest (common-workflows)
 /Subtype /Link
@@ -75743,7 +75723,7 @@ endobj
 /Type /Annot
 >>
 endobj
-776 0 obj
+775 0 obj
 << /Border [0 0 0]
 /Dest (common-workflows)
 /Subtype /Link
@@ -75751,7 +75731,7 @@ endobj
 /Type /Annot
 >>
 endobj
-777 0 obj
+776 0 obj
 << /Border [0 0 0]
 /Dest (backing-up-a-local-branch)
 /Subtype /Link
@@ -75759,7 +75739,7 @@ endobj
 /Type /Annot
 >>
 endobj
-778 0 obj
+777 0 obj
 << /Border [0 0 0]
 /Dest (backing-up-a-local-branch)
 /Subtype /Link
@@ -75767,7 +75747,7 @@ endobj
 /Type /Annot
 >>
 endobj
-779 0 obj
+778 0 obj
 << /Border [0 0 0]
 /Dest (quick-change-stashing-changes)
 /Subtype /Link
@@ -75775,7 +75755,7 @@ endobj
 /Type /Annot
 >>
 endobj
-780 0 obj
+779 0 obj
 << /Border [0 0 0]
 /Dest (quick-change-stashing-changes)
 /Subtype /Link
@@ -75783,7 +75763,7 @@ endobj
 /Type /Annot
 >>
 endobj
-781 0 obj
+780 0 obj
 << /Border [0 0 0]
 /Dest (ignoring-files)
 /Subtype /Link
@@ -75791,7 +75771,7 @@ endobj
 /Type /Annot
 >>
 endobj
-782 0 obj
+781 0 obj
 << /Border [0 0 0]
 /Dest (ignoring-files)
 /Subtype /Link
@@ -75799,7 +75779,7 @@ endobj
 /Type /Annot
 >>
 endobj
-783 0 obj
+782 0 obj
 << /Border [0 0 0]
 /Dest (more-advanced-use-cases)
 /Subtype /Link
@@ -75807,7 +75787,7 @@ endobj
 /Type /Annot
 >>
 endobj
-784 0 obj
+783 0 obj
 << /Border [0 0 0]
 /Dest (more-advanced-use-cases)
 /Subtype /Link
@@ -75815,7 +75795,7 @@ endobj
 /Type /Annot
 >>
 endobj
-785 0 obj
+784 0 obj
 << /Border [0 0 0]
 /Dest (if-you-ve-accidentally-worked-on-code-master-code-branch)
 /Subtype /Link
@@ -75823,7 +75803,7 @@ endobj
 /Type /Annot
 >>
 endobj
-786 0 obj
+785 0 obj
 << /Border [0 0 0]
 /Dest (if-you-ve-accidentally-worked-on-code-master-code-branch)
 /Subtype /Link
@@ -75831,7 +75811,7 @@ endobj
 /Type /Annot
 >>
 endobj
-787 0 obj
+786 0 obj
 << /Border [0 0 0]
 /Dest (if-you-ve-accidentally-worked-on-code-master-code-branch)
 /Subtype /Link
@@ -75839,7 +75819,7 @@ endobj
 /Type /Annot
 >>
 endobj
-788 0 obj
+787 0 obj
 << /Border [0 0 0]
 /Dest (if-you-ve-accidentally-worked-on-code-master-code-branch)
 /Subtype /Link
@@ -75847,7 +75827,7 @@ endobj
 /Type /Annot
 >>
 endobj
-789 0 obj
+788 0 obj
 << /Border [0 0 0]
 /Dest (if-you-ve-forgotten-to-prefix-your-commits-but-not-pushed)
 /Subtype /Link
@@ -75855,7 +75835,7 @@ endobj
 /Type /Annot
 >>
 endobj
-790 0 obj
+789 0 obj
 << /Border [0 0 0]
 /Dest (if-you-ve-forgotten-to-prefix-your-commits-but-not-pushed)
 /Subtype /Link
@@ -75863,7 +75843,7 @@ endobj
 /Type /Annot
 >>
 endobj
-791 0 obj
+790 0 obj
 << /Border [0 0 0]
 /Dest (_dg_working-with-many-repos)
 /Subtype /Link
@@ -75871,7 +75851,7 @@ endobj
 /Type /Annot
 >>
 endobj
-792 0 obj
+791 0 obj
 << /Border [0 0 0]
 /Dest (_dg_working-with-many-repos)
 /Subtype /Link
@@ -75879,7 +75859,7 @@ endobj
 /Type /Annot
 >>
 endobj
-793 0 obj
+792 0 obj
 << /Border [0 0 0]
 /Dest (prerequisites)
 /Subtype /Link
@@ -75887,7 +75867,7 @@ endobj
 /Type /Annot
 >>
 endobj
-794 0 obj
+793 0 obj
 << /Border [0 0 0]
 /Dest (prerequisites)
 /Subtype /Link
@@ -75895,7 +75875,7 @@ endobj
 /Type /Annot
 >>
 endobj
-795 0 obj
+794 0 obj
 << /Border [0 0 0]
 /Dest (code-_repos-txt-code)
 /Subtype /Link
@@ -75903,7 +75883,7 @@ endobj
 /Type /Annot
 >>
 endobj
-796 0 obj
+795 0 obj
 << /Border [0 0 0]
 /Dest (code-_repos-txt-code)
 /Subtype /Link
@@ -75911,7 +75891,7 @@ endobj
 /Type /Annot
 >>
 endobj
-797 0 obj
+796 0 obj
 << /Border [0 0 0]
 /Dest (code-_repos-txt-code)
 /Subtype /Link
@@ -75919,7 +75899,7 @@ endobj
 /Type /Annot
 >>
 endobj
-798 0 obj
+797 0 obj
 << /Border [0 0 0]
 /Dest (bash-functions)
 /Subtype /Link
@@ -75927,7 +75907,7 @@ endobj
 /Type /Annot
 >>
 endobj
-799 0 obj
+798 0 obj
 << /Border [0 0 0]
 /Dest (bash-functions)
 /Subtype /Link
@@ -75935,7 +75915,7 @@ endobj
 /Type /Annot
 >>
 endobj
-800 0 obj
+799 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc-syntax)
 /Subtype /Link
@@ -75943,7 +75923,7 @@ endobj
 /Type /Annot
 >>
 endobj
-801 0 obj
+800 0 obj
 << /Border [0 0 0]
 /Dest (_dg_asciidoc-syntax)
 /Subtype /Link
@@ -75951,7 +75931,7 @@ endobj
 /Type /Annot
 >>
 endobj
-802 0 obj
+801 0 obj
 << /Border [0 0 0]
 /Dest (__dg_asciidoc-syntax_headings)
 /Subtype /Link
@@ -75959,7 +75939,7 @@ endobj
 /Type /Annot
 >>
 endobj
-803 0 obj
+802 0 obj
 << /Border [0 0 0]
 /Dest (__dg_asciidoc-syntax_headings)
 /Subtype /Link
@@ -75967,7 +75947,7 @@ endobj
 /Type /Annot
 >>
 endobj
-804 0 obj
+803 0 obj
 << /Border [0 0 0]
 /Dest (__dg_asciidoc_paragraphs)
 /Subtype /Link
@@ -75975,7 +75955,7 @@ endobj
 /Type /Annot
 >>
 endobj
-805 0 obj
+804 0 obj
 << /Border [0 0 0]
 /Dest (__dg_asciidoc_paragraphs)
 /Subtype /Link
@@ -75983,7 +75963,7 @@ endobj
 /Type /Annot
 >>
 endobj
-806 0 obj
+805 0 obj
 << /Border [0 0 0]
 /Dest (__dg_asciidoc_bulleted-lists)
 /Subtype /Link
@@ -75991,7 +75971,7 @@ endobj
 /Type /Annot
 >>
 endobj
-807 0 obj
+806 0 obj
 << /Border [0 0 0]
 /Dest (__dg_asciidoc_bulleted-lists)
 /Subtype /Link
@@ -75999,7 +75979,7 @@ endobj
 /Type /Annot
 >>
 endobj
-808 0 obj
+807 0 obj
 << /Border [0 0 0]
 /Dest (__dg_asciidoc_numbered-lists)
 /Subtype /Link
@@ -76007,7 +75987,7 @

<TRUNCATED>

[06/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugfun/ugfun.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugfun/ugfun.pdf b/content/versions/SNAPSHOT/guides/ugfun/ugfun.pdf
index f9b6c0c..d755ff2 100644
--- a/content/versions/SNAPSHOT/guides/ugfun/ugfun.pdf
+++ b/content/versions/SNAPSHOT/guides/ugfun/ugfun.pdf
@@ -4,8 +4,8 @@
 << /Title (Fundamentals)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108230947+00'00')
-/ModDate (D:20180108230947+00'00')
+/CreationDate (D:20180213131158+00'00')
+/ModDate (D:20180213131158+00'00')
 >>
 endobj
 2 0 obj
@@ -35723,7 +35723,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Property_domainEvent)
+/URI (../rgant/rgant.pdf#_rgant-Property_domainEvent)
 >>
 /Subtype /Link
 /Rect [48.24 656.2760000000002 168.99 666.7760000000002]
@@ -35770,7 +35770,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_titleUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_titleUiEvent)
 >>
 /Subtype /Link
 /Rect [143.772615234375 60.496000000000265 322.272615234375 70.99600000000027]
@@ -36666,7 +36666,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_iconUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_iconUiEvent)
 >>
 /Subtype /Link
 /Rect [196.93050000000002 793.2059999999999 265.1805 803.7059999999999]
@@ -36677,7 +36677,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_cssClassUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_cssClassUiEvent)
 >>
 /Subtype /Link
 /Rect [289.72950000000003 793.2059999999999 378.97950000000003 803.7059999999999]
@@ -36735,7 +36735,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_iconUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_iconUiEvent)
 >>
 /Subtype /Link
 /Rect [447.7247859375 238.9860000000004 515.9747859375 249.4860000000004]
@@ -36746,7 +36746,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_cssClassUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_cssClassUiEvent)
 >>
 /Subtype /Link
 /Rect [48.24000000000001 223.2060000000004 137.49 233.7060000000004]
@@ -57720,7 +57720,7 @@ endobj
 >>
 endobj
 500 0 obj
-<< /Length 20551
+<< /Length 20558
 >>
 stream
 q
@@ -58657,7 +58657,7 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.436 Tw
+19.862 Tw
 
 BT
 48.24 297.98599999999993 Td
@@ -58672,10 +58672,10 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-0.436 Tw
+19.862 Tw
 
 BT
-95.01815668402777 297.98599999999993 Td
+133.86955126953126 297.98599999999993 Td
 /F6.0 10.5 Tf
 <426f6f74737472617070696e67476c7565> Tj
 ET
@@ -58687,12 +58687,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.436 Tw
+19.862 Tw
 
 BT
-184.2681566840278 297.98599999999993 Td
+223.11955126953126 297.98599999999993 Td
 /F1.0 10.5 Tf
-[<20676c756520636c61737320696e6865726974732066726f6d20746865206672> 20.01953125 <616d65776f726bd57320>] TJ
+[<20676c756520636c61737320696e6865726974732066726f6d20746865206672> 20.01953125 <616d65776f726bd573>] TJ
 ET
 
 
@@ -58702,12 +58702,12 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-0.436 Tw
+5.264 Tw
 
 BT
-394.78999999999996 297.98599999999993 Td
+48.24 282.2059999999999 Td
 /F6.0 10.5 Tf
-<43756b65476c7565426f6f74737472617070696e674162737472616374> Tj
+<486561646c65737357697468426f6f74737472617070696e674162737472616374> Tj
 ET
 
 
@@ -58717,45 +58717,53 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.436 Tw
+5.264 Tw
 
 BT
-547.04 297.98599999999993 Td
+221.49 282.2059999999999 Td
+/F1.0 10.5 Tf
+[<20636c6173732c20616e6420626f6f74737472> 20.01953125 <617073207573696e672074686520>] TJ
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+5.264 Tw
 
 BT
-48.24 282.2059999999999 Td
-/F1.0 10.5 Tf
-[<636c6173732c20616e6420626f6f74737472> 20.01953125 <617073207573696e672074686520>] TJ
+410.53999999999996 282.2059999999999 Td
+/F6.0 10.5 Tf
+<446f6d61696e4170704170706c69636174696f6e4d6f64756c65> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+5.264 Tw
 
 BT
-202.988794921875 282.2059999999999 Td
-/F6.0 10.5 Tf
-<446f6d61696e4170704170706c69636174696f6e4d6f64756c65> Tj
+547.04 282.2059999999999 Td
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-339.488794921875 282.2059999999999 Td
+48.24 266.42599999999993 Td
 /F1.0 10.5 Tf
-<206d656e74696f6e65642061626f76652e> Tj
+<6d656e74696f6e65642061626f76652e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -58764,7 +58772,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 254.42599999999993 Td
+48.24 238.6459999999999 Td
 /F1.0 10.5 Tf
 <5468657265206973206a757374206f6e6520666561747572652066696c653a20> Tj
 ET
@@ -58775,7 +58783,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-193.99050000000003 254.42599999999993 Td
+193.99050000000003 238.6459999999999 Td
 /F6.0 10.5 Tf
 <53696d706c654f626a656374537065635f6c697374416c6c416e644372656174652e66656174757265> Tj
 ET
@@ -58786,7 +58794,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-409.2405 254.42599999999993 Td
+409.2405 238.6459999999999 Td
 /F1.0 10.5 Tf
 <2c207768696368206973207072657474792073696d706c653a> Tj
 ET
@@ -58795,28 +58803,28 @@ ET
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 238.610 m
-543.040 238.610 l
-545.249 238.610 547.040 236.819 547.040 234.610 c
-547.040 117.430 l
-547.040 115.221 545.249 113.430 543.040 113.430 c
-52.240 113.430 l
-50.031 113.430 48.240 115.221 48.240 117.430 c
-48.240 234.610 l
-48.240 236.819 50.031 238.610 52.240 238.610 c
+52.240 222.830 m
+543.040 222.830 l
+545.249 222.830 547.040 221.039 547.040 218.830 c
+547.040 101.650 l
+547.040 99.441 545.249 97.650 543.040 97.650 c
+52.240 97.650 l
+50.031 97.650 48.240 99.441 48.240 101.650 c
+48.240 218.830 l
+48.240 221.039 50.031 222.830 52.240 222.830 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 238.610 m
-543.040 238.610 l
-545.249 238.610 547.040 236.819 547.040 234.610 c
-547.040 117.430 l
-547.040 115.221 545.249 113.430 543.040 113.430 c
-52.240 113.430 l
-50.031 113.430 48.240 115.221 48.240 117.430 c
-48.240 234.610 l
-48.240 236.819 50.031 238.610 52.240 238.610 c
+52.240 222.830 m
+543.040 222.830 l
+545.249 222.830 547.040 221.039 547.040 218.830 c
+547.040 101.650 l
+547.040 99.441 545.249 97.650 543.040 97.650 c
+52.240 97.650 l
+50.031 97.650 48.240 99.441 48.240 101.650 c
+48.240 218.830 l
+48.240 221.039 50.031 222.830 52.240 222.830 c
 h
 S
 Q
@@ -58824,7 +58832,7 @@ Q
 0.200 0.200 0.200 SCN
 
 BT
-59.24 215.7849999999999 Td
+59.24 200.00499999999988 Td
 /F6.0 11 Tf
 <40446f6d61696e41707044656d6f> Tj
 ET
@@ -58835,7 +58843,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 201.04499999999993 Td
+59.24 185.2649999999999 Td
 /F6.0 11 Tf
 <466561747572653a204c69737420616e6420437265617465204e65772053696d706c65204f626a65637473> Tj
 ET
@@ -58846,7 +58854,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 171.5649999999999 Td
+59.24 155.78499999999988 Td
 /F6.0 11 Tf
 <ca205363656e6172696f3a204578697374696e672073696d706c65206f626a656374732063616e206265206c697374656420616e64206e6577206f6e65732063726561746564> Tj
 ET
@@ -58857,7 +58865,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 156.82499999999993 Td
+59.24 141.0449999999999 Td
 /F6.0 11 Tf
 <ca202020476976656e2074686572652061726520696e697469616c6c792031302073696d706c65206f626a65637473> Tj
 ET
@@ -58868,7 +58876,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 142.08499999999992 Td
+59.24 126.3049999999999 Td
 /F6.0 11 Tf
 <ca2020205768656e202049206372656174652061206e65772073696d706c65206f626a656374> Tj
 ET
@@ -58879,7 +58887,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 127.34499999999993 Td
+59.24 111.5649999999999 Td
 /F6.0 11 Tf
 <ca2020205468656e20207468657265206172652031312073696d706c65206f626a65637473> Tj
 ET
@@ -58892,7 +58900,7 @@ ET
 0.529 Tw
 
 BT
-48.24 89.46599999999992 Td
+48.24 73.6859999999999 Td
 /F1.0 10.5 Tf
 <54686520> Tj
 ET
@@ -58907,7 +58915,7 @@ ET
 0.529 Tw
 
 BT
-70.18932142857143 89.46599999999992 Td
+70.18932142857143 73.6859999999999 Td
 /F6.0 10.5 Tf
 <40446f6d61696e41707044656d6f> Tj
 ET
@@ -58922,7 +58930,7 @@ ET
 0.529 Tw
 
 BT
-143.68932142857142 89.46599999999992 Td
+143.68932142857142 73.6859999999999 Td
 /F1.0 10.5 Tf
 <20616e6e6f746174696f6e206361757365732074686520> Tj
 ET
@@ -58937,7 +58945,7 @@ ET
 0.529 Tw
 
 BT
-260.4456071428571 89.46599999999992 Td
+260.4456071428571 73.6859999999999 Td
 /F6.0 10.5 Tf
 <446f6d61696e41707044656d6f> Tj
 ET
@@ -58952,7 +58960,7 @@ ET
 0.529 Tw
 
 BT
-328.69560714285717 89.46599999999992 Td
+328.69560714285717 73.6859999999999 Td
 /F1.0 10.5 Tf
 <20666978747572652073637269707420746f2062652072756e3b20746869732069732074686520707572706f7365> Tj
 ET
@@ -58965,7 +58973,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 73.68599999999992 Td
+48.24 57.90599999999989 Td
 /F1.0 10.5 Tf
 <6f662074686520> Tj
 ET
@@ -58976,7 +58984,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.58250000000001 73.68599999999992 Td
+79.58250000000001 57.90599999999989 Td
 /F6.0 10.5 Tf
 <436174616c6f674f664669787475726573476c7565> Tj
 ET
@@ -58987,7 +58995,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-189.8325 73.68599999999992 Td
+189.8325 57.90599999999989 Td
 /F1.0 10.5 Tf
 <20676c756520636c6173732e> Tj
 ET
@@ -59046,7 +59054,7 @@ q
 0.199 Tw
 
 BT
-48.24 794.6759999999999 Td
+48.24 793.9259999999999 Td
 /F1.0 10.5 Tf
 [<546865207370656373207468656d73656c766573206172652072756e2062> 20.01953125 <792074686520>] TJ
 ET
@@ -59061,7 +59069,7 @@ ET
 0.199 Tw
 
 BT
-232.94405919471154 794.6759999999999 Td
+232.94405919471154 793.9259999999999 Td
 /F6.0 10.5 Tf
 <52756e496e74656742646453706563732e6a617661> Tj
 ET
@@ -59076,7 +59084,7 @@ ET
 0.199 Tw
 
 BT
-343.19405919471154 794.6759999999999 Td
+343.19405919471154 793.9259999999999 Td
 /F1.0 10.5 Tf
 <20636c6173732c20776869636820737065636966696573207768696368207061636b6167657320746f> Tj
 ET
@@ -59089,7 +59097,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 778.896 Td
+48.24 778.146 Td
 /F1.0 10.5 Tf
 [<73656172636820666f722022> 40.0390625 <676c7565222e2054686973206973206a757374207374616e6461726420437563756d62657220626f6f74737472> 20.01953125 <617070696e672e>] TJ
 ET
@@ -59100,7 +59108,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 751.116 Td
+48.24 750.366 Td
 /F1.0 10.5 Tf
 [<54686520696e74656772> 20.01953125 <6174696f6e207465737473206d65616e7768696c652061726520696e20>] TJ
 ET
@@ -59111,7 +59119,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-244.04379492187502 751.116 Td
+244.04379492187502 750.366 Td
 /F6.0 10.5 Tf
 <646f6d61696e6170702e6170706c69636174696f6e2e696e7465677465737473> Tj
 ET
@@ -59122,7 +59130,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-412.043794921875 751.116 Td
+412.043794921875 750.366 Td
 /F1.0 10.5 Tf
 <3a> Tj
 ET
@@ -59131,28 +59139,28 @@ ET
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 735.300 m
-543.040 735.300 l
-545.249 735.300 547.040 733.509 547.040 731.300 c
-547.040 643.600 l
-547.040 641.391 545.249 639.600 543.040 639.600 c
-52.240 639.600 l
-50.031 639.600 48.240 641.391 48.240 643.600 c
-48.240 731.300 l
-48.240 733.509 50.031 735.300 52.240 735.300 c
+52.240 734.550 m
+543.040 734.550 l
+545.249 734.550 547.040 732.759 547.040 730.550 c
+547.040 642.850 l
+547.040 640.641 545.249 638.850 543.040 638.850 c
+52.240 638.850 l
+50.031 638.850 48.240 640.641 48.240 642.850 c
+48.240 730.550 l
+48.240 732.759 50.031 734.550 52.240 734.550 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 735.300 m
-543.040 735.300 l
-545.249 735.300 547.040 733.509 547.040 731.300 c
-547.040 643.600 l
-547.040 641.391 545.249 639.600 543.040 639.600 c
-52.240 639.600 l
-50.031 639.600 48.240 641.391 48.240 643.600 c
-48.240 731.300 l
-48.240 733.509 50.031 735.300 52.240 735.300 c
+52.240 734.550 m
+543.040 734.550 l
+545.249 734.550 547.040 732.759 547.040 730.550 c
+547.040 642.850 l
+547.040 640.641 545.249 638.850 543.040 638.850 c
+52.240 638.850 l
+50.031 638.850 48.240 640.641 48.240 642.850 c
+48.240 730.550 l
+48.240 732.759 50.031 734.550 52.240 734.550 c
 h
 S
 Q
@@ -59160,7 +59168,7 @@ Q
 0.200 0.200 0.200 SCN
 
 BT
-59.24 712.475 Td
+59.24 711.725 Td
 /F6.0 11 Tf
 <646f6d61696e6170702f> Tj
 ET
@@ -59171,7 +59179,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 697.735 Td
+59.24 696.985 Td
 /F6.1 11 Tf
 <24222220> Tj
 /F6.0 11 Tf
@@ -59184,7 +59192,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 682.9950000000001 Td
+59.24 682.2450000000001 Td
 /F6.0 11 Tf
 <ca202020> Tj
 /F6.1 11 Tf
@@ -59199,7 +59207,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 668.2550000000001 Td
+59.24 667.5050000000001 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 /F6.1 11 Tf
@@ -59214,7 +59222,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 653.5150000000001 Td
+59.24 652.7650000000001 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 /F6.1 11 Tf
@@ -59231,7 +59239,7 @@ ET
 9.296 Tw
 
 BT
-48.24 615.636 Td
+48.24 614.886 Td
 /F1.0 10.5 Tf
 <54686520> Tj
 ET
@@ -59246,7 +59254,7 @@ ET
 9.296 Tw
 
 BT
-78.956125 615.636 Td
+78.956125 614.886 Td
 /F6.0 10.5 Tf
 <536d6f6b655f496e74656754657374> Tj
 ET
@@ -59261,7 +59269,7 @@ ET
 9.296 Tw
 
 BT
-157.70612500000001 615.636 Td
+157.70612500000001 614.886 Td
 /F1.0 10.5 Tf
 <20696e68657269747320> Tj
 ET
@@ -59276,7 +59284,7 @@ ET
 9.296 Tw
 
 BT
-220.860375 615.636 Td
+220.860375 614.886 Td
 /F6.0 10.5 Tf
 <446f6d61696e417070496e746567546573744162737472616374> Tj
 ET
@@ -59291,7 +59299,7 @@ ET
 9.296 Tw
 
 BT
-357.360375 615.636 Td
+357.360375 614.886 Td
 /F1.0 10.5 Tf
 <2c20776869636820696e207475726e20696e6865726974732066726f6d> Tj
 ET
@@ -59306,7 +59314,7 @@ ET
 0.729 Tw
 
 BT
-48.24 599.856 Td
+48.24 599.106 Td
 /F6.0 10.5 Tf
 <496e746567726174696f6e54657374416273747261637433> Tj
 ET
@@ -59321,7 +59329,7 @@ ET
 0.729 Tw
 
 BT
-174.24 599.856 Td
+174.24 599.106 Td
 /F1.0 10.5 Tf
 <20616e6420757365732074686520> Tj
 ET
@@ -59336,7 +59344,7 @@ ET
 0.729 Tw
 
 BT
-244.8585714285714 599.856 Td
+244.8585714285714 599.106 Td
 /F6.0 10.5 Tf
 <446f6d61696e4170704170706c69636174696f6e4d6f64756c65> Tj
 ET
@@ -59351,7 +59359,7 @@ ET
 0.729 Tw
 
 BT
-381.3585714285714 599.856 Td
+381.3585714285714 599.106 Td
 /F1.0 10.5 Tf
 <2070726576696f75736c79206469736375737365642e204d6f72656f7665722c> Tj
 ET
@@ -59366,7 +59374,7 @@ ET
 0.508 Tw
 
 BT
-48.24 584.076 Td
+48.24 583.326 Td
 /F1.0 10.5 Tf
 <74686520> Tj
 ET
@@ -59381,7 +59389,7 @@ ET
 0.508 Tw
 
 BT
-67.43786192908654 584.076 Td
+67.43786192908654 583.326 Td
 /F6.0 10.5 Tf
 <536d6f6b655f496e74656754657374> Tj
 ET
@@ -59396,7 +59404,7 @@ ET
 0.508 Tw
 
 BT
-146.18786192908655 584.076 Td
+146.18786192908655 583.326 Td
 /F1.0 10.5 Tf
 <2075736573207468652073616d6520> Tj
 ET
@@ -59411,7 +59419,7 @@ ET
 0.508 Tw
 
 BT
-222.9793096454327 584.076 Td
+222.9793096454327 583.326 Td
 /F6.0 10.5 Tf
 <446f6d61696e41707044656d6f> Tj
 ET
@@ -59426,7 +59434,7 @@ ET
 0.508 Tw
 
 BT
-291.2293096454327 584.076 Td
+291.2293096454327 583.326 Td
 /F1.0 10.5 Tf
 [<2066697874757265207363726970742e20546865206170706c69636174696f6e20616e642074686520736d6f6b> 20.01953125 <65207465737473>] TJ
 ET
@@ -59439,7 +59447,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 568.296 Td
+48.24 567.546 Td
 /F1.0 10.5 Tf
 [<7468657265666f72652072756e2077697468207468652065786163742073616d652073746174652c206d616b696e6720646562756767696e672065617379> 89.84375 <2e>] TJ
 ET
@@ -59452,7 +59460,7 @@ ET
 0.166 Tw
 
 BT
-48.24 540.5160000000001 Td
+48.24 539.7660000000001 Td
 /F1.0 10.5 Tf
 [<576974682072656761726420746f20746865206e616d696e67206f6620746865736520766172696f75732042444420737065637320616e6420696e74656772> 20.01953125 <6174696f6e2074657374732c207468657920666f6c6c6f7720746865206e616d696e67>] TJ
 ET
@@ -59467,7 +59475,7 @@ ET
 1.472 Tw
 
 BT
-48.24 524.736 Td
+48.24 523.986 Td
 /F1.0 10.5 Tf
 [<636f6e76656e74696f6e2072657175697265642062> 20.01953125 <792074686520286e6f6e2d4153462920>] TJ
 ET
@@ -59482,7 +59490,7 @@ ET
 1.472 Tw
 
 BT
-247.07629723011362 524.736 Td
+247.07629723011362 523.986 Td
 /F1.0 10.5 Tf
 <22737572656669726522206d6176656e6d6978696e> Tj
 ET
@@ -59497,7 +59505,7 @@ ET
 1.472 Tw
 
 BT
-363.3129976917613 524.736 Td
+363.3129976917613 523.986 Td
 /F1.0 10.5 Tf
 <207468617420636f6e6669677572657320746865206d6176656e207375726566697265> Tj
 ET
@@ -59510,7 +59518,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 508.956 Td
+48.24 508.206 Td
 /F1.0 10.5 Tf
 <706c7567696e2e> Tj
 ET
@@ -59521,7 +59529,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 474.45599999999996 Td
+48.24 473.70599999999996 Td
 /F2.0 13 Tf
 <352e322e332e206d796170702d6d6f64756c652d73696d706c65> Tj
 ET
@@ -59534,7 +59542,7 @@ ET
 1.376 Tw
 
 BT
-48.24 447.89599999999996 Td
+48.24 447.14599999999996 Td
 /F1.0 10.5 Tf
 <54686973206d6f64756c652069732077686572652074686520646f6d61696e206f626a656374206d6f64656c206c697665732c20746861742069732074686520627573696e657373206c6f676963206f6620746865206170706c69636174696f6e> Tj
 ET
@@ -59547,7 +59555,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 432.116 Td
+48.24 431.366 Td
 /F1.0 10.5 Tf
 <697473656c662e2054686973207479706963616c6c7920636f6d70726973657320656e7469746965732c20646f6d61696e2073657276696365732c206d6978696e7320616e642076696577206d6f64656c732e> Tj
 ET
@@ -59557,8 +59565,8 @@ ET
 q
 0.5 w
 0.933 0.933 0.933 SCN
-113.807 317.400 m
-113.807 416.300 l
+113.807 316.650 m
+113.807 415.550 l
 S
 Q
 0.067 0.067 0.067 scn
@@ -59569,7 +59577,7 @@ Q
 0.067 0.067 0.067 SCN
 
 BT
-80.17133333333334 358.27 Td
+80.17133333333334 357.52 Td
 /F5.1 24 Tf
 <21> Tj
 ET
@@ -59582,7 +59590,7 @@ ET
 1.927 Tw
 
 BT
-125.80666666666667 400.33599999999996 Td
+125.80666666666667 399.58599999999996 Td
 /F1.0 10.5 Tf
 [<4173206469736375737365642061626f76652c206c6172676572206170706c69636174696f6e732077696c6c206c696b> 20.01953125 <656c792068617665206d756c7469706c65206d6f64756c65732065616368>] TJ
 ET
@@ -59595,7 +59603,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.80666666666667 384.5559999999999 Td
+125.80666666666667 383.8059999999999 Td
 /F1.0 10.5 Tf
 <636f6e7461696e696e67207468656972206f776e20736c696365206f6620627573696e657373206c6f6769632e> Tj
 ET
@@ -59608,7 +59616,7 @@ ET
 1.364 Tw
 
 BT
-125.80666666666667 356.77599999999995 Td
+125.80666666666667 356.02599999999995 Td
 /F1.0 10.5 Tf
 [<496e697469616c6c792074686f75676820796f752073686f756c642070726f6261626c79206a7573742075736520726567756c6172204a617661207061636b6167657320746f207365706172> 20.01953125 <617465>] TJ
 ET
@@ -59623,7 +59631,7 @@ ET
 4.881 Tw
 
 BT
-125.80666666666667 340.996 Td
+125.80666666666667 340.246 Td
 /F1.0 10.5 Tf
 [<6f75742066756e6374696f6e616c6974793b20796f752063616e206361727665206f7574207365706172> 20.01953125 <617465206d6f64756c6573206c61746572206f6e206f6e636520746865>] TJ
 ET
@@ -59636,7 +59644,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.80666666666667 325.21599999999995 Td
+125.80666666666667 324.46599999999995 Td
 /F1.0 10.5 Tf
 <726573706f6e736962696c6974696573206f662065616368206861766520736574746c656420646f776e2e> Tj
 ET
@@ -59649,7 +59657,7 @@ ET
 5.130 Tw
 
 BT
-48.24000000000001 293.436 Td
+48.24000000000001 292.686 Td
 /F1.0 10.5 Tf
 <54686520636c617373657320666f72207468652073696d706c65206d6f64756c652072657369646520696e2074686520> Tj
 ET
@@ -59664,7 +59672,7 @@ ET
 5.130 Tw
 
 BT
-330.6220909090909 293.436 Td
+330.6220909090909 292.686 Td
 /F6.0 10.5 Tf
 <646f6d61696e6170702e6d6f64756c65732e73696d706c65> Tj
 ET
@@ -59679,7 +59687,7 @@ ET
 5.130 Tw
 
 BT
-456.6220909090909 293.436 Td
+456.6220909090909 292.686 Td
 /F1.0 10.5 Tf
 <207061636b6167652e20556e646572> Tj
 ET
@@ -59692,7 +59700,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-48.24000000000001 277.65599999999995 Td
+48.24000000000001 276.90599999999995 Td
 /F6.0 10.5 Tf
 <7372632f6d61696e2f6a617661> Tj
 ET
@@ -59703,7 +59711,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-116.49000000000001 277.65599999999995 Td
+116.49000000000001 276.90599999999995 Td
 /F1.0 10.5 Tf
 <20776520686176653a> Tj
 ET
@@ -59759,12 +59767,12 @@ endobj
 /URI (http://github.com/danhaywood/java-mavenmixin-surefire)
 >>
 /Subtype /Link
-/Rect [247.07629723011362 521.6700000000001 363.3129976917613 535.95]
+/Rect [247.07629723011362 520.9200000000001 363.3129976917613 535.2]
 /Type /Annot
 >>
 endobj
 505 0 obj
-[503 0 R /XYZ 0 493.14 null]
+[503 0 R /XYZ 0 492.39 null]
 endobj
 506 0 obj
 << /Length 23433
@@ -75721,7 +75729,7 @@ endobj
 >>
 endobj
 598 0 obj
-<< /Length 32002
+<< /Length 31988
 >>
 stream
 q
@@ -76290,7 +76298,7 @@ ET
 BT
 163.74 709.365 Td
 /F6.0 11 Tf
-<46524f4d20646f6d61696e6170702e6d6f64756c65732e73696d706c652e646f6d2e696d706c2e73696d706c652e53696d706c654f626a65637420> Tj
+<46524f4d20646f6d61696e6170702e6d6f64756c65732e73696d706c652e646f6d2e696d706c2e53696d706c654f626a65637420> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -76299,7 +76307,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-488.24 709.365 Td
+449.74 709.365 Td
 /F6.0 11 Tf
 <22> Tj
 ET
@@ -76310,7 +76318,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-493.74 709.365 Td
+455.24 709.365 Td
 /F6.0 11 Tf
 <20202020> Tj
 ET
@@ -76321,7 +76329,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-515.74 709.365 Td
+477.24 709.365 Td
 /F6.1 11 Tf
 <28> Tj
 ET
@@ -84189,7 +84197,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainService)
+/URI (../rgant/rgant.pdf#_rgant-DomainService)
 >>
 /Subtype /Link
 /Rect [157.65021428571427 145.37599999999983 231.15021428571427 155.87599999999983]
@@ -84200,7 +84208,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainServiceLayout)
+/URI (../rgant/rgant.pdf#_rgant-DomainServiceLayout)
 >>
 /Subtype /Link
 /Rect [90.40355 76.25599999999983 195.40355 86.75599999999983]
@@ -85122,7 +85130,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainServiceLayout_menuOrder)
+/URI (../rgant/rgant.pdf#_rgant-DomainServiceLayout_menuOrder)
 >>
 /Subtype /Link
 /Rect [64.809 793.2059999999999 112.059 803.7059999999999]
@@ -85133,7 +85141,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Action)
+/URI (../rgant/rgant.pdf#_rgant-Action)
 >>
 /Subtype /Link
 /Rect [507.66499999999996 771.4259999999999 544.415 781.9259999999999]
@@ -85144,7 +85152,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_ActionLayout)
+/URI (../rgant/rgant.pdf#_rgant-ActionLayout)
 >>
 /Subtype /Link
 /Rect [64.809 755.646 133.059 766.146]
@@ -85155,7 +85163,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_MemberOrder)
+/URI (../rgant/rgant.pdf#_rgant-MemberOrder)
 >>
 /Subtype /Link
 /Rect [159.0317756347656 755.646 222.0317756347656 766.146]
@@ -85166,7 +85174,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_ParameterLayout)
+/URI (../rgant/rgant.pdf#_rgant-ParameterLayout)
 >>
 /Subtype /Link
 /Rect [86.229 718.0859999999999 170.22899999999998 728.5859999999999]
@@ -85188,7 +85196,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Action_restrictTo)
+/URI (../rgant/rgant.pdf#_rgant-Action_restrictTo)
 >>
 /Subtype /Link
 /Rect [64.809 641.3699999999999 113.5815 655.65]
@@ -85199,7 +85207,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_ParameterLayout_named)
+/URI (../rgant/rgant.pdf#_rgant-ParameterLayout_named)
 >>
 /Subtype /Link
 /Rect [332.61532052951384 595.406 458.61532052951384 605.906]
@@ -112940,7 +112948,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_MinLength)
+/URI (../rgant/rgant.pdf#_rgant-MinLength)
 >>
 /Subtype /Link
 /Rect [90.13385546875 328.116 142.63385546875 338.616]
@@ -116595,7 +116603,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObject)
+/URI (../rgant/rgant.pdf#_rgant-DomainObject)
 >>
 /Subtype /Link
 /Rect [48.24 564.756 116.49000000000001 575.256]
@@ -116631,7 +116639,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Column_allowsNull)
+/URI (../rgant/rgant.pdf#_rgant-Column_allowsNull)
 >>
 /Subtype /Link
 /Rect [323.91499999999996 503.6960000000001 544.415 514.1960000000001]
@@ -116642,7 +116650,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Nullable)
+/URI (../rgant/rgant.pdf#_rgant-Nullable)
 >>
 /Subtype /Link
 /Rect [441.6129073016827 487.91600000000005 488.8629073016827 498.41600000000005]
@@ -116689,7 +116697,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Column_length)
+/URI (../rgant/rgant.pdf#_rgant-Column_length)
 >>
 /Subtype /Link
 /Rect [344.91499999999996 86.33600000000008 544.415 96.83600000000008]
@@ -116700,7 +116708,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Parameter_maxLength)
+/URI (../rgant/rgant.pdf#_rgant-Parameter_maxLength)
 >>
 /Subtype /Link
 /Rect [431.53999999999996 70.55600000000008 547.04 81.05600000000008]
@@ -118506,7 +118514,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Column_length)
+/URI (../rgant/rgant.pdf#_rgant-Column_length)
 >>
 /Subtype /Link
 /Rect [281.6655 456.61599999999993 365.66549999999995 467.11599999999993]
@@ -118517,7 +118525,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Parameter_maxLength)
+/URI (../rgant/rgant.pdf#_rgant-Parameter_maxLength)
 >>
 /Subtype /Link
 /Rect [335.04729492187505 434.83599999999996 450.54729492187505 445.33599999999996]
@@ -118553,7 +118561,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Column_scale)
+/URI (../rgant/rgant.pdf#_rgant-Column_scale)
 >>
 /Subtype /Link
 /Rect [48.239999999999995 231.31600000000003 242.49 241.81600000000003]
@@ -118564,7 +118572,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Digits_fraction)
+/URI (../rgant/rgant.pdf#_rgant-Digits_fraction)
 >>
 /Subtype /Link
 /Rect [109.287 215.53600000000003 356.03700000000003 226.03600000000003]
@@ -120114,7 +120122,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Column_scale)
+/URI (../rgant/rgant.pdf#_rgant-Column_scale)
 >>
 /Subtype /Link
 /Rect [255.8775 602.3159999999999 334.62749999999994 612.8159999999999]
@@ -120125,7 +120133,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Digits_fraction)
+/URI (../rgant/rgant.pdf#_rgant-Digits_fraction)
 >>
 /Subtype /Link
 /Rect [340.24479492187504 580.536 434.74479492187504 591.036]
@@ -120161,7 +120169,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainService_menuOrder)
+/URI (../rgant/rgant.pdf#_rgant-DomainService_menuOrder)
 >>
 /Subtype /Link
 /Rect [312.34839218749994 318.8760000000001 448.84839218749994 329.3760000000001]
@@ -144867,7 +144875,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Mixin)
+/URI (../rgant/rgant.pdf#_rgant-Mixin)
 >>
 /Subtype /Link
 /Rect [293.9213118489583 185.85599999999994 325.4213118489583 196.35599999999994]
@@ -144878,7 +144886,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObject_nature)
+/URI (../rgant/rgant.pdf#_rgant-DomainObject_nature)
 >>
 /Subtype /Link
 /Rect [431.5399999999999 185.85599999999994 547.0399999999998 196.35599999999994]
@@ -152198,7 +152206,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Mixin_method)
+/URI (../rgant/rgant.pdf#_rgant-Mixin_method)
 >>
 /Subtype /Link
 /Rect [156.92348046874997 134.7360000000002 235.67348046874997 145.2360000000002]
@@ -162608,7 +162616,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_titleUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_titleUiEvent)
 >>
 /Subtype /Link
 /Rect [48.24 434.05600000000004 226.74 444.55600000000004]
@@ -166568,7 +166576,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_iconUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_iconUiEvent)
 >>
 /Subtype /Link
 /Rect [48.24 440.81600000000026 221.49 451.31600000000026]
@@ -171410,7 +171418,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_cssClassUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_cssClassUiEvent)
 >>
 /Subtype /Link
 /Rect [48.24 660.4260000000002 242.49 670.9260000000002]
@@ -176438,7 +176446,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_CollectionLayout_defaultView)
+/URI (../rgant/rgant.pdf#_rgant-CollectionLayout_defaultView)
 >>
 /Subtype /Link
 /Rect [253.08408984375004 483.7960000000002 415.83408984375 494.2960000000002]
@@ -176449,7 +176457,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_CollectionLayout_render)
+/URI (../rgant/rgant.pdf#_rgant-CollectionLayout_render)
 >>
 /Subtype /Link
 /Rect [125.80666666666667 269.5760000000003 262.3066666666667 280.0760000000003]
@@ -205381,929 +205389,929 @@ xref
 0001925706 00000 n 
 0001956494 00000 n 
 0001956723 00000 n 
-0001977329 00000 n 
-0001977572 00000 n 
-0001989147 00000 n 
-0001989434 00000 n 
-0001989663 00000 n 
-0001989709 00000 n 
-0002013197 00000 n 
-0002013458 00000 n 
-0002013724 00000 n 
-0002028511 00000 n 
-0002028809 00000 n 
-0002029039 00000 n 
-0002029233 00000 n 
-0002029417 00000 n 
-0002029629 00000 n 
-0002029687 00000 n 
-0002050540 00000 n 
-0002050783 00000 n 
-0002069903 00000 n 
-0002070145 00000 n 
-0002086032 00000 n 
-0002086316 00000 n 
-0002086522 00000 n 
-0002086741 00000 n 
-0002086799 00000 n 
-0002086856 00000 n 
-0002087060 00000 n 
-0002087259 00000 n 
-0002087317 00000 n 
-0002102388 00000 n 
-0002102693 00000 n 
-0002102739 00000 n 
-0002103063 00000 n 
-0002103274 00000 n 
-0002103331 00000 n 
-0002103530 00000 n 
-0002103785 00000 n 
-0002103994 00000 n 
-0002104250 00000 n 
-0002104308 00000 n 
-0002108894 00000 n 
-0002109220 00000 n 
-0002109416 00000 n 
-0002109621 00000 n 
-0002138142 00000 n 
-0002138338 00000 n 
-0002138579 00000 n 
-0002174526 00000 n 
-0002174748 00000 n 
-0002174806 00000 n 
-0002175029 00000 n 
-0002181975 00000 n 
-0002182280 00000 n 
-0002211375 00000 n 
-0002211583 00000 n 
-0002211830 00000 n 
-0002211887 00000 n 
-0002212087 00000 n 
-0002212292 00000 n 
-0002212512 00000 n 
-0002235885 00000 n 
-0002236502 00000 n 
-0002236749 00000 n 
-0002236958 00000 n 
-0002271920 00000 n 
-0002272840 00000 n 
-0002273087 00000 n 
-0002273310 00000 n 
-0002306078 00000 n 
-0002306687 00000 n 
-0002306934 00000 n 
-0002307159 00000 n 
-0002345074 00000 n 
-0002345695 00000 n 
-0002345942 00000 n 
-0002346167 00000 n 
-0002371402 00000 n 
-0002374515 00000 n 
-0002374807 00000 n 
-0002375016 00000 n 
-0002375073 00000 n 
-0002375261 00000 n 
-0002375495 00000 n 
-0002375732 00000 n 
-0002375947 00000 n 
-0002392513 00000 n 
-0002392812 00000 n 
-0002392858 00000 n 
-0002393065 00000 n 
-0002410183 00000 n 
-0002410465 00000 n 
-0002410660 00000 n 
-0002410879 00000 n 
-0002410937 00000 n 
-0002440760 00000 n 
-0002441016 00000 n 
-0002479449 00000 n 
-0002479692 00000 n 
-0002511749 00000 n 
-0002512023 00000 n 
-0002512230 00000 n 
-0002528069 00000 n 
-0002528399 00000 n 
-0002528445 00000 n 
-0002528491 00000 n 
-0002528694 00000 n 
-0002528897 00000 n 
-0002529080 00000 n 
-0002529285 00000 n 
-0002529484 00000 n 
-0002529742 00000 n 
-0002529996 00000 n 
-0002530053 00000 n 
-0002530875 00000 n 
-0002531129 00000 n 
-0002560559 00000 n 
-0002560815 00000 n 
-0002560873 00000 n 
-0002604848 00000 n 
-0002605117 00000 n 
-0002605346 00000 n 
-0002605560 00000 n 
-0002619969 00000 n 
-0002620360 00000 n 
-0002620580 00000 n 
-0002620789 00000 n 
-0002620972 00000 n 
-0002621175 00000 n 
-0002621392 00000 n 
-0002621608 00000 n 
-0002621806 00000 n 
-0002622021 00000 n 
-0002622202 00000 n 
-0002622405 00000 n 
-0002622463 00000 n 
-0002622703 00000 n 
-0002622938 00000 n 
-0002623179 00000 n 
-0002623382 00000 n 
-0002647597 00000 n 
-0002647892 00000 n 
-0002648135 00000 n 
-0002648193 00000 n 
-0002648428 00000 n 
-0002676178 00000 n 
-0002676508 00000 n 
-0002676737 00000 n 
-0002676972 00000 n 
-0002677213 00000 n 
-0002677259 00000 n 
-0002677466 00000 n 
-0002677704 00000 n 
-0002677956 00000 n 
-0002678204 00000 n 
-0002678412 00000 n 
-0002691146 00000 n 
-0002691422 00000 n 
-0002691468 00000 n 
-0002691694 00000 n 
-0002691879 00000 n 
-0002692067 00000 n 
-0002692125 00000 n 
-0002711910 00000 n 
-0002712247 00000 n 
-0002712452 00000 n 
-0002712656 00000 n 
-0002712713 00000 n 
-0002712972 00000 n 
-0002713236 00000 n 
-0002713451 00000 n 
-0002713654 00000 n 
-0002713868 00000 n 
-0002714069 00000 n 
-0002714270 00000 n 
-0002714328 00000 n 
-0002736940 00000 n 
-0002737297 00000 n 
-0002737489 00000 n 
-0002737749 00000 n 
-0002738013 00000 n 
-0002738258 00000 n 
-0002738502 00000 n 
-0002738746 00000 n 
-0002739004 00000 n 
-0002739248 00000 n 
-0002739306 00000 n 
-0002763646 00000 n 
-0002763936 00000 n 
-0002763993 00000 n 
-0002764235 00000 n 
-0002764281 00000 n 
-0002764474 00000 n 
-0002764639 00000 n 
-0002764697 00000 n 
-0002765607 00000 n 
-0002796733 00000 n 
-0002797003 00000 n 
-0002797060 00000 n 
-0002797118 00000 n 
-0002822563 00000 n 
-0002822860 00000 n 
-0002822906 00000 n 
-0002823144 00000 n 
-0002823341 00000 n 
-0002823563 00000 n 
-0002823621 00000 n 
-0002823860 00000 n 
-0002857103 00000 n 
-0002857403 00000 n 
-0002857635 00000 n 
-0002857870 00000 n 
-0002857916 00000 n 
-0002858179 00000 n 
-0002858517 00000 n 
-0002858887 00000 n 
-0002859258 00000 n 
-0002911009 00000 n 
-0002911282 00000 n 
-0002911328 00000 n 
-0002911589 00000 n 
-0002911647 00000 n 
-0002939716 00000 n 
-0002940038 00000 n 
-0002940084 00000 n 
-0002940344 00000 n 
-0002940608 00000 n 
-0002940821 00000 n 
-0002941064 00000 n 
-0002941268 00000 n 
-0002941495 00000 n 
-0002941697 00000 n 
-0002975064 00000 n 
-0002975338 00000 n 
-0002975516 00000 n 
-0002975562 00000 n 
-0002994834 00000 n 
-0002995155 00000 n 
-0002995400 00000 n 
-0002995644 00000 n 
-0002995877 00000 n 
-0002996134 00000 n 
-0002996179 00000 n 
-0002996418 00000 n 
-0002996476 00000 n 
-0002996534 00000 n 
-0002996777 00000 n 
-0002997022 00000 n 
-0003020191 00000 n 
-0003020500 00000 n 
-0003020546 00000 n 
-0003020765 00000 n 
-0003020981 00000 n 
-0003046507 00000 n 
-0003046811 00000 n 
-0003046857 00000 n 
-0003047973 00000 n 
-0003048211 00000 n 
-0003048453 00000 n 
-0003048649 00000 n 
-0003048707 00000 n 
-0003069749 00000 n 
-0003070005 00000 n 
-0003070063 00000 n 
-0003102273 00000 n 
-0003102619 00000 n 
-0003102812 00000 n 
-0003103055 00000 n 
-0003103101 00000 n 
-0003103344 00000 n 
-0003103564 00000 n 
-0003103786 00000 n 
-0003104010 00000 n 
-0003104255 00000 n 
-0003104312 00000 n 
-0003104573 00000 n 
-0003104789 00000 n 
-0003105010 00000 n 
-0003130239 00000 n 
-0003130566 00000 n 
-0003130785 00000 n 
-0003131020 00000 n 
-0003131267 00000 n 
-0003131325 00000 n 
-0003131585 00000 n 
-0003131801 00000 n 
-0003132021 00000 n 
-0003155257 00000 n 
-0003155589 00000 n 
-0003155805 00000 n 
-0003156014 00000 n 
-0003156248 00000 n 
-0003156305 00000 n 
-0003156559 00000 n 
-0003156796 00000 n 
-0003156854 00000 n 
-0003183858 00000 n 
-0003184100 00000 n 
-0003184146 00000 n 
-0003203520 00000 n 
-0003203806 00000 n 
-0003203852 00000 n 
-0003203909 00000 n 
-0003203966 00000 n 
-0003204233 00000 n 
-0003234653 00000 n 
-0003234909 00000 n 
-0003234966 00000 n 
-0003255559 00000 n 
-0003255894 00000 n 
-0003256121 00000 n 
-0003256356 00000 n 
-0003256611 00000 n 
-0003256668 00000 n 
-0003256886 00000 n 
-0003257111 00000 n 
-0003257343 00000 n 
-0003257590 00000 n 
-0003286299 00000 n 
-0003286559 00000 n 
-0003286783 00000 n 
-0003286841 00000 n 
-0003287424 00000 n 
-0003301525 00000 n 
-0003301819 00000 n 
-0003302077 00000 n 
-0003302134 00000 n 
-0003302367 00000 n 
-0003349651 00000 n 
-0003349960 00000 n 
-0003350206 00000 n 
-0003350430 00000 n 
-0003350680 00000 n 
-0003350919 00000 n 
-0003351158 00000 n 
-0003351424 00000 n 
-0003351689 00000 n 
-0003376132 00000 n 
-0003376427 00000 n 
-0003376473 00000 n 
-0003376684 00000 n 
-0003376888 00000 n 
-0003416053 00000 n 
-0003416296 00000 n 
-0003426349 00000 n 
-0003426638 00000 n 
-0003426684 00000 n 
-0003426945 00000 n 
-0003427192 00000 n 
-0003427424 00000 n 
-0003449821 00000 n 
-0003450076 00000 n 
-0003450293 00000 n 
-0003450512 00000 n 
-0003474674 00000 n 
-0003474903 00000 n 
-0003497301 00000 n 
-0003497561 00000 n 
-0003497619 00000 n 
-0003497824 00000 n 
-0003513019 00000 n 
-0003513369 00000 n 
-0003513605 00000 n 
-0003513831 00000 n 
-0003514012 00000 n 
-0003514218 00000 n 
-0003514409 00000 n 
-0003514662 00000 n 
-0003514888 00000 n 
-0003515083 00000 n 
-0003515141 00000 n 
-0003515385 00000 n 
-0003533705 00000 n 
-0003534013 00000 n 
-0003534225 00000 n 
-0003534440 00000 n 
-0003534662 00000 n 
-0003534863 00000 n 
-0003534921 00000 n 
-0003535182 00000 n 
-0003535401 00000 n 
-0003535634 00000 n 
-0003576601 00000 n 
-0003576857 00000 n 
-0003576903 00000 n 
-0003600045 00000 n 
-0003600301 00000 n 
-0003600347 00000 n 
-0003600404 00000 n 
-0003638866 00000 n 
-0003639164 00000 n 
-0003639210 00000 n 
-0003639436 00000 n 
-0003639696 00000 n 
-0003639947 00000 n 
-0003640184 00000 n 
-0003668576 00000 n 
-0003668850 00000 n 
-0003669099 00000 n 
-0003669145 00000 n 
-0003701968 00000 n 
-0003702250 00000 n 
-0003702296 00000 n 
-0003703121 00000 n 
-0003703393 00000 n 
-0003703635 00000 n 
-0003703693 00000 n 
-0003719495 00000 n 
-0003719764 00000 n 
-0003719821 00000 n 
-0003730514 00000 n 
-0003730790 00000 n 
-0003730836 00000 n 
-0003730882 00000 n 
-0003731097 00000 n 
-0003731154 00000 n 
-0003731399 00000 n 
-0003731456 00000 n 
-0003731514 00000 n 
-0003731710 00000 n 
-0003765015 00000 n 
-0003765288 00000 n 
-0003765346 00000 n 
-0003765580 00000 n 
-0003793030 00000 n 
-0003793298 00000 n 
-0003793503 00000 n 
-0003793549 00000 n 
-0003793771 00000 n 
-0003829454 00000 n 
-0003829728 00000 n 
-0003829785 00000 n 
-0003829842 00000 n 
-0003830060 00000 n 
-0003850085 00000 n 
-0003850353 00000 n 
-0003850399 00000 n 
-0003850606 00000 n 
-0003850663 00000 n 
-0003850884 00000 n 
-0003884450 00000 n 
-0003884748 00000 n 
-0003884794 00000 n 
-0003885033 00000 n 
-0003885279 00000 n 
-0003885336 00000 n 
-0003885553 00000 n 
-0003885611 00000 n 
-0003885840 00000 n 
-0003919969 00000 n 
-0003920258 00000 n 
-0003920304 00000 n 
-0003920885 00000 n 
-0003921108 00000 n 
-0003921166 00000 n 
-0003921403 00000 n 
-0003921627 00000 n 
-0003938602 00000 n 
-0003938902 00000 n 
-0003938948 00000 n 
-0003939155 00000 n 
-0003939342 00000 n 
-0003939568 00000 n 
-0003939779 00000 n 
-0003939996 00000 n 
-0003940234 00000 n 
-0003940292 00000 n 
-0003960965 00000 n 
-0003961350 00000 n 
-0003961572 00000 n 
-0003961796 00000 n 
-0003962002 00000 n 
-0003962219 00000 n 
-0003962434 00000 n 
-0003962491 00000 n 
-0003962954 00000 n 
-0003963194 00000 n 
-0003963439 00000 n 
-0003963685 00000 n 
-0003963919 00000 n 
-0003964158 00000 n 
-0003964396 00000 n 
-0003964639 00000 n 
-0003964881 00000 n 
-0003965113 00000 n 
-0003965350 00000 n 
-0003996368 00000 n 
-0003996732 00000 n 
-0003996947 00000 n 
-0003997167 00000 n 
-0003997368 00000 n 
-0003997623 00000 n 
-0003997903 00000 n 
-0003998086 00000 n 
-0003998143 00000 n 
-0004076517 00000 n 
-0004079404 00000 n 
-0004079638 00000 n 
-0004079877 00000 n 
-0004080113 00000 n 
-0004088313 00000 n 
-0004088543 00000 n 
-0004115100 00000 n 
-0004115470 00000 n 
-0004115518 00000 n 
-0004115777 00000 n 
-0004116031 00000 n 
-0004116258 00000 n 
-0004116469 00000 n 
-0004116722 00000 n 
-0004116967 00000 n 
-0004117217 00000 n 
-0004117276 00000 n 
-0004117519 00000 n 
-0004117753 00000 n 
-0004117997 00000 n 
-0004144636 00000 n 
-0004144930 00000 n 
-0004144989 00000 n 
-0004145218 00000 n 
-0004145442 00000 n 
-0004145685 00000 n 
-0004167521 00000 n 
-0004167833 00000 n 
-0004168056 00000 n 
-0004168103 00000 n 
-0004168336 00000 n 
-0004191890 00000 n 
-0004192221 00000 n 
-0004192443 00000 n 
-0004192686 00000 n 
-0004192918 00000 n 
-0004192978 00000 n 
-0004193233 00000 n 
-0004193293 00000 n 
-0004194051 00000 n 
-0004194261 00000 n 
-0004194491 00000 n 
-0004194709 00000 n 
-0004204264 00000 n 
-0004204567 00000 n 
-0004204615 00000 n 
-0004204859 00000 n 
-0004205074 00000 n 
-0004205298 00000 n 
-0004205549 00000 n 
-0004222112 00000 n 
-0004222375 00000 n 
-0004222423 00000 n 
-0004222675 00000 n 
-0004222734 00000 n 
-0004254930 00000 n 
-0004255283 00000 n 
-0004255519 00000 n 
-0004255755 00000 n 
-0004255991 00000 n 
-0004256039 00000 n 
-0004256234 00000 n 
-0004256473 00000 n 
-0004256712 00000 n 
-0004256951 00000 n 
-0004257206 00000 n 
-0004257265 00000 n 
-0004288030 00000 n 
-0004288357 00000 n 
-0004288596 00000 n 
-0004288834 00000 n 
-0004289072 00000 n 
-0004289296 00000 n 
-0004289520 00000 n 
-0004289579 00000 n 
-0004289639 00000 n 
-0004315924 00000 n 
-0004316273 00000 n 
-0004316491 00000 n 
-0004316698 00000 n 
-0004316894 00000 n 
-0004317133 00000 n 
-0004317372 00000 n 
-0004317611 00000 n 
-0004335103 00000 n 
-0004335478 00000 n 
-0004335526 00000 n 
-0004335733 00000 n 
-0004335928 00000 n 
-0004336123 00000 n 
-0004336335 00000 n 
-0004336535 00000 n 
-0004336735 00000 n 
-0004336940 00000 n 
-0004337157 00000 n 
-0004337375 00000 n 
-0004337423 00000 n 
-0004371118 00000 n 
-0004371389 00000 n 
-0004371437 00000 n 
-0004399019 00000 n 
-0004399304 00000 n 
-0004399352 00000 n 
-0004399584 00000 n 
-0004399831 00000 n 
-0004425725 00000 n 
-0004425995 00000 n 
-0004426043 00000 n 
-0004426103 00000 n 
-0004439270 00000 n 
-0004439704 00000 n 
-0004439752 00000 n 
-0004439811 00000 n 
-0004440050 00000 n 
-0004440282 00000 n 
-0004440522 00000 n 
-0004440762 00000 n 
-0004441005 00000 n 
-0004441237 00000 n 
-0004441475 00000 n 
-0004441706 00000 n 
-0004441946 00000 n 
-0004442186 00000 n 
-0004442421 00000 n 
-0004442653 00000 n 
-0004442893 00000 n 
-0004443133 00000 n 
-0004443377 00000 n 
-0004443618 00000 n 
-0004443858 00000 n 
-0004444101 00000 n 
-0004444350 00000 n 
-0004444591 00000 n 
-0004457413 00000 n 
-0004457888 00000 n 
-0004458128 00000 n 
-0004458344 00000 n 
-0004458562 00000 n 
-0004458787 00000 n 
-0004459006 00000 n 
-0004459229 00000 n 
-0004459456 00000 n 
-0004459685 00000 n 
-0004459918 00000 n 
-0004460150 00000 n 
-0004460384 00000 n 
-0004460625 00000 n 
-0004460861 00000 n 
-0004461103 00000 n 
-0004461351 00000 n 
-0004461595 00000 n 
-0004461842 00000 n 
-0004462090 00000 n 
-0004462318 00000 n 
-0004462559 00000 n 
-0004462802 00000 n 
-0004463048 00000 n 
-0004463279 00000 n 
-0004463527 00000 n 
-0004463772 00000 n 
-0004464005 00000 n 
-0004476961 00000 n 
-0004477363 00000 n 
-0004477565 00000 n 
-0004477779 00000 n 
-0004477990 00000 n 
-0004478210 00000 n 
-0004478451 00000 n 
-0004478677 00000 n 
-0004478896 00000 n 
-0004479120 00000 n 
-0004479345 00000 n 
-0004479584 00000 n 
-0004479827 00000 n 
-0004480072 00000 n 
-0004480317 00000 n 
-0004480532 00000 n 
-0004480591 00000 n 
-0004480807 00000 n 
-0004480938 00000 n 
-0004481060 00000 n 
-0004481186 00000 n 
-0004481313 00000 n 
-0004481458 00000 n 
-0004481604 00000 n 
-0004481770 00000 n 
-0004481927 00000 n 
-0004482091 00000 n 
-0004482257 00000 n 
-0004482416 00000 n 
-0004482586 00000 n 
-0004482769 00000 n 
-0004482954 00000 n 
-0004483122 00000 n 
-0004483290 00000 n 
-0004483458 00000 n 
-0004483636 00000 n 
-0004483817 00000 n 
-0004484009 00000 n 
-0004484189 00000 n 
-0004484369 00000 n 
-0004484542 00000 n 
-0004484725 00000 n 
-0004484889 00000 n 
-0004485064 00000 n 
-0004485230 00000 n 
-0004485407 00000 n 
-0004485594 00000 n 
-0004485783 00000 n 
-0004485960 00000 n 
-0004486147 00000 n 
-0004486355 00000 n 
-0004486565 00000 n 
-0004486778 00000 n 
-0004486991 00000 n 
-0004487188 00000 n 
-0004487396 00000 n 
-0004487592 00000 n 
-0004487799 00000 n 
-0004488003 00000 n 
-0004488207 00000 n 
-0004488412 00000 n 
-0004488617 00000 n 
-0004488808 00000 n 
-0004489009 00000 n 
-0004489189 00000 n 
-0004489379 00000 n 
-0004489586 00000 n 
-0004489795 00000 n 
-0004490005 00000 n 
-0004490215 00000 n 
-0004490410 00000 n 
-0004490616 00000 n 
-0004490812 00000 n 
-0004491019 00000 n 
-0004491232 00000 n 
-0004491445 00000 n 
-0004491606 00000 n 
-0004491767 00000 n 
-0004491930 00000 n 
-0004492093 00000 n 
-0004492261 00000 n 
-0004492431 00000 n 
-0004492606 00000 n 
-0004492792 00000 n 
-0004492980 00000 n 
-0004493168 00000 n 
-0004493340 00000 n 
-0004493523 00000 n 
-0004493707 00000 n 
-0004493891 00000 n 
-0004494067 00000 n 
-0004494245 00000 n 
-0004494421 00000 n 
-0004494607 00000 n 
-0004494791 00000 n 
-0004494975 00000 n 
-0004495146 00000 n 
-0004495317 00000 n 
-0004495472 00000 n 
-0004495638 00000 n 
-0004495789 00000 n 
-0004495950 00000 n 
-0004496116 00000 n 
-0004496284 00000 n 
-0004496458 00000 n 
-0004496643 00000 n 
-0004496823 00000 n 
-0004497005 00000 n 
-0004497189 00000 n 
-0004497373 00000 n 
-0004497540 00000 n 
-0004497717 00000 n 
-0004497870 00000 n 
-0004498027 00000 n 
-0004498198 00000 n 
-0004498369 00000 n 
-0004498537 00000 n 
-0004498705 00000 n 
-0004498859 00000 n 
-0004499024 00000 n 
-0004499190 00000 n 
-0004499356 00000 n 
-0004499522 00000 n 
-0004499688 00000 n 
-0004499845 00000 n 
-0004500012 00000 n 
-0004500175 00000 n 
-0004500338 00000 n 
-0004500488 00000 n 
-0004500650 00000 n 
-0004500809 00000 n 
-0004500970 00000 n 
-0004501125 00000 n 
-0004501282 00000 n 
-0004501431 00000 n 
-0004501590 00000 n 
-0004501767 00000 n 
-0004501944 00000 n 
-0004502109 00000 n 
-0004502274 00000 n 
-0004502433 00000 n 
-0004502592 00000 n 
-0004502766 00000 n 
-0004502940 00000 n 
-0004503118 00000 n 
-0004503296 00000 n 
-0004503480 00000 n 
-0004503666 00000 n 
-0004503844 00000 n 
-0004504022 00000 n 
-0004504219 00000 n 
-0004504416 00000 n 
-0004504602 00000 n 
-0004504798 00000 n 
-0004505086 00000 n 
-0004505167 00000 n 
-0004505327 00000 n 
-0004505523 00000 n 
-0004505774 00000 n 
-0004505951 00000 n 
-0004506206 00000 n 
-0004506447 00000 n 
-0004506691 00000 n 
-0004506907 00000 n 
-0004507124 00000 n 
-0004507388 00000 n 
-0004507577 00000 n 
-0004507826 00000 n 
-0004508030 00000 n 
-0004508235 00000 n 
-0004508420 00000 n 
-0004508594 00000 n 
-0004508878 00000 n 
-0004509075 00000 n 
-0004509308 00000 n 
-0004509548 00000 n 
-0004509773 00000 n 
-0004509994 00000 n 
-0004510206 00000 n 
-0004510471 00000 n 
-0004510653 00000 n 
-0004510933 00000 n 
-0004511150 00000 n 
-0004511390 00000 n 
-0004511615 00000 n 
-0004511835 00000 n 
-0004512080 00000 n 
-0004512292 00000 n 
-0004512505 00000 n 
-0004512777 00000 n 
-0004512983 00000 n 
-0004513192 00000 n 
-0004513384 00000 n 
-0004513577 00000 n 
-0004513766 00000 n 
-0004513998 00000 n 
-0004514254 00000 n 
-0004514458 00000 n 
-0004514628 00000 n 
-0004514864 00000 n 
-0004515022 00000 n 
-0004515274 00000 n 
-0004515515 00000 n 
-0004515763 00000 n 
-0004515968 00000 n 
-0004516269 00000 n 
-0004516467 00000 n 
-0004516668 00000 n 
-0004516877 00000 n 
-0004517103 00000 n 
-0004517302 00000 n 
-0004517563 00000 n 
-0004517793 00000 n 
-0004518023 00000 n 
-0004518256 00000 n 
-0004518445 00000 n 
-0004518640 00000 n 
-0004518941 00000 n 
-0004519156 00000 n 
-0004519358 00000 n 
-0004519628 00000 n 
-0004519902 00000 n 
-0004520209 00000 n 
-0004520503 00000 n 
-0004520761 00000 n 
-0004520971 00000 n 
-0004521892 00000 n 
-0004531641 00000 n 
-0004531859 00000 n 
-0004533223 00000 n 
-0004534272 00000 n 
-0004542752 00000 n 
-0004542975 00000 n 
-0004544339 00000 n 
-0004545408 00000 n 
-0004549592 00000 n 
-0004549824 00000 n 
-0004551188 00000 n 
-0004552304 00000 n 
-0004558221 00000 n 
-0004558449 00000 n 
-0004559813 00000 n 
-0004560898 00000 n 
-0004562061 00000 n 
-0004562279 00000 n 
-0004562583 00000 n 
-0004563721 00000 n 
-0004565173 00000 n 
-0004565386 00000 n 
-0004565708 00000 n 
-0004566625 00000 n 
-0004572520 00000 n 
-0004572736 00000 n 
-0004574100 00000 n 
-0004575152 00000 n 
-0004576550 00000 n 
-0004576770 00000 n 
-0004578134 00000 n 
-0004579274 00000 n 
-0004581755 00000 n 
-0004581971 00000 n 
-0004582332 00000 n 
+0001977336 00000 n 
+0001977579 00000 n 
+0001989154 00000 n 
+0001989441 00000 n 
+0001989669 00000 n 
+0001989715 00000 n 
+0002013203 00000 n 
+0002013464 00000 n 
+0002013730 00000 n 
+0002028517 00000 n 
+0002028815 00000 n 
+0002029045 00000 n 
+0002029239 00000 n 
+0002029423 00000 n 
+0002029635 00000 n 
+0002029693 00000 n 
+0002050546 00000 n 
+0002050789 00000 n 
+0002069909 00000 n 
+0002070151 00000 n 
+0002086038 00000 n 
+0002086322 00000 n 
+0002086528 00000 n 
+0002086747 00000 n 
+0002086805 00000 n 
+0002086862 00000 n 
+0002087066 00000 n 
+0002087265 00000 n 
+0002087323 00000 n 
+0002102394 00000 n 
+0002102699 00000 n 
+0002102745 00000 n 
+0002103069 00000 n 
+0002103280 00000 n 
+0002103337 00000 n 
+0002103536 00000 n 
+0002103791 00000 n 
+0002104000 00000 n 
+0002104256 00000 n 
+0002104314 00000 n 
+0002108900 00000 n 
+0002109226 00000 n 
+0002109422 00000 n 
+0002109627 00000 n 
+0002138148 00000 n 
+0002138344 00000 n 
+0002138585 00000 n 
+0002174532 00000 n 
+0002174754 00000 n 
+0002174812 00000 n 
+0002175035 00000 n 
+0002181981 00000 n 
+0002182286 00000 n 
+0002211381 00000 n 
+0002211589 00000 n 
+0002211836 00000 n 
+0002211893 00000 n 
+0002212093 00000 n 
+0002212298 00000 n 
+0002212518 00000 n 
+0002235891 00000 n 
+0002236508 00000 n 
+0002236755 00000 n 
+0002236964 00000 n 
+0002271926 00000 n 
+0002272846 00000 n 
+0002273093 00000 n 
+0002273316 00000 n 
+0002306084 00000 n 
+0002306693 00000 n 
+0002306940 00000 n 
+0002307165 00000 n 
+0002345080 00000 n 
+0002345701 00000 n 
+0002345948 00000 n 
+0002346173 00000 n 
+0002371408 00000 n 
+0002374521 00000 n 
+0002374813 00000 n 
+0002375022 00000 n 
+0002375079 00000 n 
+0002375267 00000 n 
+0002375501 00000 n 
+0002375738 00000 n 
+0002375953 00000 n 
+0002392519 00000 n 
+0002392818 00000 n 
+0002392864 00000 n 
+0002393071 00000 n 
+0002410189 00000 n 
+0002410471 00000 n 
+0002410666 00000 n 
+0002410885 00000 n 
+0002410943 00000 n 
+0002440766 00000 n 
+0002441022 00000 n 
+0002479455 00000 n 
+0002479698 00000 n 
+0002511741 00000 n 
+0002512015 00000 n 
+0002512222 00000 n 
+0002528061 00000 n 
+0002528391 00000 n 
+0002528437 00000 n 
+0002528483 00000 n 
+0002528686 00000 n 
+0002528889 00000 n 
+0002529072 00000 n 
+0002529277 00000 n 
+0002529476 00000 n 
+0002529734 00000 n 
+0002529988 00000 n 
+0002530045 00000 n 
+0002530867 00000 n 
+0002531121 00000 n 
+0002560551 00000 n 
+0002560807 00000 n 
+0002560865 00000 n 
+0002604840 00000 n 
+0002605109 00000 n 
+0002605338 00000 n 
+0002605552 00000 n 
+0002619961 00000 n 
+0002620352 00000 n 
+0002620572 00000 n 
+0002620781 00000 n 
+0002620964 00000 n 
+0002621167 00000 n 
+0002621384 00000 n 
+0002621600 00000 n 
+0002621798 00000 n 
+0002622013 00000 n 
+0002622194 00000 n 
+0002622397 00000 n 
+0002622455 00000 n 
+0002622695 00000 n 
+0002622930 00000 n 
+0002623171 00000 n 
+0002623374 00000 n 
+0002647589 00000 n 
+0002647884 00000 n 
+0002648127 00000 n 
+0002648185 00000 n 
+0002648420 00000 n 
+0002676170 00000 n 
+0002676500 00000 n 
+0002676729 00000 n 
+0002676964 00000 n 
+0002677205 00000 n 
+0002677251 00000 n 
+0002677458 00000 n 
+0002677696 00000 n 
+0002677948 00000 n 
+0002678196 00000 n 
+0002678404 00000 n 
+0002691138 00000 n 
+0002691414 00000 n 
+0002691460 00000 n 
+0002691686 00000 n 
+0002691871 00000 n 
+0002692059 00000 n 
+0002692117 00000 n 
+0002711902 00000 n 
+0002712239 00000 n 
+0002712444 00000 n 
+0002712648 00000 n 
+0002712705 00000 n 
+0002712964 00000 n 
+0002713228 00000 n 
+0002713443 00000 n 
+0002713646 00000 n 
+0002713860 00000 n 
+0002714061 00000 n 
+0002714262 00000 n 
+0002714320 00000 n 
+0002736932 00000 n 
+0002737289 00000 n 
+0002737481 00000 n 
+0002737741 00000 n 
+0002738005 00000 n 
+0002738250 00000 n 
+0002738494 00000 n 
+0002738738 00000 n 
+0002738996 00000 n 
+0002739240 00000 n 
+0002739298 00000 n 
+0002763638 00000 n 
+0002763928 00000 n 
+0002763985 00000 n 
+0002764227 00000 n 
+0002764273 00000 n 
+0002764466 00000 n 
+0002764631 00000 n 
+0002764689 00000 n 
+0002765599 00000 n 
+0002796725 00000 n 
+0002796995 00000 n 
+0002797052 00000 n 
+0002797110 00000 n 
+0002822555 00000 n 
+0002822852 00000 n 
+0002822898 00000 n 
+0002823136 00000 n 
+0002823333 00000 n 
+0002823555 00000 n 
+0002823613 00000 n 
+0002823852 00000 n 
+0002857095 00000 n 
+0002857395 00000 n 
+0002857627 00000 n 
+0002857862 00000 n 
+0002857908 00000 n 
+0002858171 00000 n 
+0002858509 00000 n 
+0002858879 00000 n 
+0002859250 00000 n 
+0002911001 00000 n 
+0002911274 00000 n 
+0002911320 00000 n 
+0002911581 00000 n 
+0002911639 00000 n 
+0002939708 00000 n 
+0002940030 00000 n 
+0002940076 00000 n 
+0002940336 00000 n 
+0002940600 00000 n 
+0002940813 00000 n 
+0002941056 00000 n 
+0002941260 00000 n 
+0002941487 00000 n 
+0002941689 00000 n 
+0002975056 00000 n 
+0002975330 00000 n 
+0002975508 00000 n 
+0002975554 00000 n 
+0002994826 00000 n 
+0002995147 00000 n 
+0002995392 00000 n 
+0002995636 00000 n 
+0002995869 00000 n 
+0002996126 00000 n 
+0002996171 00000 n 
+0002996410 00000 n 
+0002996468 00000 n 
+0002996526 00000 n 
+0002996769 00000 n 
+0002997014 00000 n 
+0003020183 00000 n 
+0003020492 00000 n 
+0003020538 00000 n 
+0003020757 00000 n 
+0003020973 00000 n 
+0003046499 00000 n 
+0003046803 00000 n 
+0003046849 00000 n 
+0003047965 00000 n 
+0003048203 00000 n 
+0003048445 00000 n 
+0003048641 00000 n 
+0003048699 00000 n 
+0003069741 00000 n 
+0003069997 00000 n 
+0003070055 00000 n 
+0003102265 00000 n 
+0003102611 00000 n 
+0003102804 00000 n 
+0003103047 00000 n 
+0003103093 00000 n 
+0003103336 00000 n 
+0003103556 00000 n 
+0003103778 00000 n 
+0003104002 00000 n 
+0003104247 00000 n 
+0003104304 00000 n 
+0003104565 00000 n 
+0003104781 00000 n 
+0003105002 00000 n 
+0003130231 00000 n 
+0003130558 00000 n 
+0003130777 00000 n 
+0003131012 00000 n 
+0003131259 00000 n 
+0003131317 00000 n 
+0003131577 00000 n 
+0003131793 00000 n 
+0003132013 00000 n 
+0003155249 00000 n 
+0003155581 00000 n 
+0003155797 00000 n 
+0003156006 00000 n 
+0003156240 00000 n 
+0003156297 00000 n 
+0003156551 00000 n 
+0003156788 00000 n 
+0003156846 00000 n 
+0003183850 00000 n 
+0003184092 00000 n 
+0003184138 00000 n 
+0003203512 00000 n 
+0003203798 00000 n 
+0003203844 00000 n 
+0003203901 00000 n 
+0003203958 00000 n 
+0003204225 00000 n 
+0003234645 00000 n 
+0003234901 00000 n 
+0003234958 00000 n 
+0003255551 00000 n 
+0003255886 00000 n 
+0003256113 00000 n 
+0003256348 00000 n 
+0003256603 00000 n 
+0003256660 00000 n 
+0003256878 00000 n 
+0003257103 00000 n 
+0003257335 00000 n 
+0003257582 00000 n 
+0003286291 00000 n 
+0003286551 00000 n 
+0003286775 00000 n 
+0003286833 00000 n 
+0003287416 00000 n 
+0003301517 00000 n 
+0003301811 00000 n 
+0003302069 00000 n 
+0003302126 00000 n 
+0003302359 00000 n 
+0003349643 00000 n 
+0003349952 00000 n 
+0003350198 00000 n 
+0003350422 00000 n 
+0003350672 00000 n 
+0003350911 00000 n 
+0003351150 00000 n 
+0003351416 00000 n 
+0003351681 00000 n 
+0003376124 00000 n 
+0003376419 00000 n 
+0003376465 00000 n 
+0003376676 00000 n 
+0003376880 00000 n 
+0003416045 00000 n 
+0003416288 00000 n 
+0003426341 00000 n 
+0003426630 00000 n 
+0003426676 00000 n 
+0003426937 00000 n 
+0003427184 00000 n 
+0003427416 00000 n 
+0003449813 00000 n 
+0003450068 00000 n 
+0003450285 00000 n 
+0003450504 00000 n 
+0003474666 00000 n 
+0003474895 00000 n 
+0003497293 00000 n 
+0003497553 00000 n 
+0003497611 00000 n 
+0003497816 00000 n 
+0003513011 00000 n 
+0003513361 00000 n 
+0003513597 00000 n 
+0003513823 00000 n 
+0003514004 00000 n 
+0003514210 00000 n 
+0003514401 00000 n 
+0003514654 00000 n 
+0003514880 00000 n 
+0003515075 00000 n 
+0003515133 00000 n 
+0003515377 00000 n 
+0003533697 00000 n 
+0003534005 00000 n 
+0003534217 00000 n 
+0003534432 00000 n 
+0003534654 00000 n 
+0003534855 00000 n 
+0003534913 00000 n 
+0003535174 00000 n 
+0003535393 00000 n 
+0003535626 00000 n 
+0003576593 00000 n 
+0003576849 00000 n 
+0003576895 00000 n 
+0003600037 00000 n 
+0003600293 00000 n 
+0003600339 00000 n 
+0003600396 00000 n 
+0003638858 00000 n 
+0003639156 00000 n 
+0003639202 00000 n 
+0003639428 00000 n 
+0003639688 00000 n 
+0003639939 00000 n 
+0003640176 00000 n 
+0003668568 00000 n 
+0003668842 00000 n 
+0003669091 00000 n 
+0003669137 00000 n 
+0003701960 00000 n 
+0003702242 00000 n 
+0003702288 00000 n 
+0003703113 00000 n 
+0003703385 00000 n 
+0003703627 00000 n 
+0003703685 00000 n 
+0003719487 00000 n 
+0003719756 00000 n 
+0003719813 00000 n 
+0003730506 00000 n 
+0003730782 00000 n 
+0003730828 00000 n 
+0003730874 00000 n 
+0003731089 00000 n 
+0003731146 00000 n 
+0003731391 00000 n 
+0003731448 00000 n 
+0003731506 00000 n 
+0003731702 00000 n 
+0003765007 00000 n 
+0003765280 00000 n 
+0003765338 00000 n 
+0003765572 00000 n 
+0003793022 00000 n 
+0003793290 00000 n 
+0003793495 00000 n 
+0003793541 00000 n 
+0003793763 00000 n 
+0003829446 00000 n 
+0003829720 00000 n 
+0003829777 00000 n 
+0003829834 00000 n 
+0003830052 00000 n 
+0003850077 00000 n 
+0003850345 00000 n 
+0003850391 00000 n 
+0003850598 00000 n 
+0003850655 00000 n 
+0003850876 00000 n 
+0003884442 00000 n 
+0003884740 00000 n 
+0003884786 00000 n 
+0003885025 00000 n 
+0003885271 00000 n 
+0003885328 00000 n 
+0003885545 00000 n 
+0003885603 00000 n 
+0003885832 00000 n 
+0003919961 00000 n 
+0003920250 00000 n 
+0003920296 00000 n 
+0003920877 00000 n 
+0003921100 00000 n 
+0003921158 00000 n 
+0003921395 00000 n 
+0003921619 00000 n 
+0003938594 00000 n 
+0003938894 00000 n 
+0003938940 00000 n 
+0003939147 00000 n 
+0003939334 00000 n 
+0003939560 00000 n 
+0003939771 00000 n 
+0003939988 00000 n 
+0003940226 00000 n 
+0003940284 00000 n 
+0003960957 00000 n 
+0003961342 00000 n 
+0003961564 00000 n 
+0003961788 00000 n 
+0003961994 00000 n 
+0003962211 00000 n 
+0003962426 00000 n 
+0003962483 00000 n 
+0003962946 00000 n 
+0003963186 00000 n 
+0003963431 00000 n 
+0003963677 00000 n 
+0003963911 00000 n 
+0003964150 00000 n 
+0003964388 00000 n 
+0003964631 00000 n 
+0003964873 00000 n 
+0003965105 00000 n 
+0003965342 00000 n 
+0003996360 00000 n 
+0003996724 00000 n 
+0003996939 00000 n 
+0003997159 00000 n 
+0003997360 00000 n 
+0003997615 00000 n 
+0003997895 00000 n 
+0003998078 00000 n 
+0003998135 00000 n 
+0004076509 00000 n 
+0004079396 00000 n 
+0004079630 00000 n 
+0004079869 00000 n 
+0004080105 00000 n 
+0004088305 00000 n 
+0004088535 00000 n 
+0004115092 00000 n 
+0004115462 00000 n 
+0004115510 00000 n 
+0004115769 00000 n 
+0004116023 00000 n 
+0004116250 00000 n 
+0004116461 00000 n 
+0004116714 00000 n 
+0004116959 00000 n 
+0004117209 00000 n 
+0004117268 00000 n 
+0004117511 00000 n 
+0004117745 00000 n 
+0004117989 00000 n 
+0004144628 00000 n 
+0004144922 00000 n 
+0004144981 00000 n 
+0004145210 00000 n 
+0004145434 00000 n 
+0004145677 00000 n 
+0004167513 00000 n 
+0004167825 00000 n 
+0004168048 00000 n 
+0004168095 00000 n 
+0004168328 00000 n 
+0004191882 00000 n 
+0004192213 00000 n 
+0004192435 00000 n 
+0004192678 00000 n 
+0004192910 00000 n 
+0004192970 00000 n 
+0004193225 00000 n 
+0004193285 00000 n 
+0004194043 00000 n 
+0004194253 00000 n 
+0004194483 00000 n 
+0004194701 00000 n 
+0004204256 00000 n 
+0004204559 00000 n 
+0004204607 00000 n 
+0004204851 00000 n 
+0004205066 00000 n 
+0004205290 00000 n 
+0004205541 00000 n 
+0004222104 00000 n 
+0004222367 00000 n 
+0004222415 00000 n 
+0004222667 00000 n 
+0004222726 00000 n 
+0004254922 00000 n 
+0004255275 00000 n 
+0004255511 00000 n 
+0004255747 00000 n 
+0004255983 00000 n 
+0004256031 00000 n 
+0004256226 00000 n 
+0004256465 00000 n 
+0004256704 00000 n 
+0004256943 00000 n 
+0004257198 00000 n 
+0004257257 00000 n 
+0004288022 00000 n 
+0004288349 00000 n 
+0004288588 00000 n 
+0004288826 00000 n 
+0004289064 00000 n 
+0004289288 00000 n 
+0004289512 00000 n 
+0004289571 00000 n 
+0004289631 00000 n 
+0004315916 00000 n 
+0004316265 00000 n 
+0004316483 00000 n 
+0004316690 00000 n 
+0004316886 00000 n 
+0004317125 00000 n 
+0004317364 00000 n 
+0004317603 00000 n 
+0004335095 00000 n 
+0004335470 00000 n 
+0004335518 00000 n 
+0004335725 00000 n 
+0004335920 00000 n 
+0004336115 00000 n 
+0004336327 00000 n 
+0004336527 00000 n 
+0004336727 00000 n 
+0004336932 00000 n 
+0004337149 00000 n 
+0004337367 00000 n 
+0004337415 00000 n 
+0004371110 00000 n 
+0004371381 00000 n 
+0004371429 00000 n 
+0004399011 00000 n 
+0004399296 00000 n 
+0004399344 00000 n 
+0004399576 00000 n 
+0004399823 00000 n 
+0004425717 00000 n 
+0004425987 00000 n 
+0004426035 00000 n 
+0004426095 00000 n 
+0004439262 00000 n 
+0004439696 00000 n 
+0004439744 00000 n 
+0004439803 00000 n 
+0004440042 00000 n 
+0004440274 00000 n 
+0004440514 00000 n 
+0004440754 00000 n 
+0004440997 00000 n 
+0004441229 00000 n 
+0004441467 00000 n 
+0004441698 00000 n 
+0004441938 00000 n 
+0004442178 00000 n 
+0004442413 00000 n 
+0004442645 00000 n 
+0004442885 00000 n 
+0004443125 00000 n 
+0004443369 00000 n 
+0004443610 00000 n 
+0004443850 00000 n 
+0004444093 00000 n 
+0004444342 00000 n 
+0004444583 00000 n 
+0004457405 00000 n 
+0004457880 00000 n 
+0004458120 00000 n 
+0004458336 00000 n 
+0004458554 00000 n 
+0004458779 00000 n 
+0004458998 00000 n 
+0004459221 00000 n 
+0004459448 00000 n 
+0004459677 00000 n 
+0004459910 00000 n 
+0004460142 00000 n 
+0004460376 00000 n 
+0004460617 00000 n 
+0004460853 00000 n 
+0004461095 00000 n 
+0004461343 00000 n 
+0004461587 00000 n 
+0004461834 00000 n 
+0004462082 00000 n 
+0004462310 00000 n 
+0004462551 00000 n 
+0004462794 00000 n 
+0004463040 00000 n 
+0004463271 00000 n 
+0004463519 00000 n 
+0004463764 00000 n 
+0004463997 00000 n 
+0004476953 00000 n 
+0004477355 00000 n 
+0004477557 00000 n 
+0004477771 00000 n 
+0004477982 00000 n 
+0004478202 00000 n 
+0004478443 00000 n 
+0004478669 00000 n 
+0004478888 00000 n 
+0004479112 00000 n 
+0004479337 00000 n 
+0004479576 00000 n 
+0004479819 00000 n 
+0004480064 00000 n 
+0004480309 00000 n 
+0004480524 00000 n 
+0004480583 00000 n 
+0004480799 00000 n 
+0004480930 00000 n 
+0004481052 00000 n 
+0004481178 00000 n 
+0004481305 00000 n 
+0004481450 00000 n 
+0004481596 00000 n 
+0004481762 00000 n 
+0004481919 00000 n 
+0004482083 00000 n 
+0004482249 00000 n 
+0004482408 00000 n 
+0004482578 00000 n 
+0004482761 00000 n 
+0004482946 00000 n 
+0004483114 00000 n 
+0004483282 00000 n 
+0004483450 00000 n 
+0004483628 00000 n 
+0004483809 00000 n 
+0004484001 00000 n 
+0004484181 00000 n 
+0004484361 00000 n 
+0004484534 00000 n 
+0004484717 00000 n 
+0004484881 00000 n 
+0004485056 00000 n 
+0004485222 00000 n 
+0004485399 00000 n 
+0004485586 00000 n 
+0004485775 00000 n 
+0004485952 00000 n 
+0004486139 00000 n 
+0004486347 00000 n 
+0004486557 00000 n 
+0004486770 00000 n 
+0004486983 00000 n 
+0004487180 00000 n 
+0004487388 00000 n 
+0004487584 00000 n 
+0004487791 00000 n 
+0004487995 00000 n 
+0004488199 00000 n 
+0004488404 00000 n 
+0004488609 00000 n 
+0004488800 00000 n 
+0004489001 00000 n 
+0004489181 00000 n 
+0004489371 00000 n 
+0004489578 00000 n 
+0004489787 00000 n 
+0004489997 00000 n 
+0004490207 00000 n 
+0004490402 00000 n 
+0004490608 00000 n 
+0004490804 00000 n 
+0004491011 00000 n 
+0004491224 00000 n 
+0004491437 00000 n 
+0004491598 00000 n 
+0004491759 00000 n 
+0004491922 00000 n 
+0004492085 00000 n 
+0004492253 00000 n 
+0004492423 00000 n 
+0004492598 00000 n 
+0004492784 00000 n 
+0004492972 00000 n 
+0004493160 00000 n 
+0004493332 00000 n 
+0004493515 00000 n 
+0004493699 00000 n 
+0004493883 00000 n 
+0004494059 00000 n 
+0004494237 00000 n 
+0004494413 00000 n 
+0004494599 00000 n 
+0004494783 00000 n 
+0004494967 00000 n 
+0004495138 00000 n 
+0004495309 00000 n 
+0004495464 00000 n 
+0004495630 00000 n 
+0004495781 00000 n 
+0004495942 00000 n 
+0004496108 00000 n 
+0004496276 00000 n 
+0004496450 00000 n 
+0004496635 00000 n 
+0004496815 00000 n 
+0004496997 00000 n 
+0004497181 00000 n 
+0004497365 00000 n 
+0004497532 00000 n 
+0004497709 00000 n 
+0004497862 00000 n 
+0004498019 00000 n 
+0004498190 00000 n 
+0004498361 00000 n 
+0004498529 00000 n 
+0004498697 00000 n 
+0004498851 00000 n 
+0004499016 00000 n 
+0004499182 00000 n 
+0004499348 00000 n 
+0004499514 00000 n 
+0004499680 00000 n 
+0004499837 00000 n 
+0004500004 00000 n 
+0004500167 00000 n 
+0004500330 00000 n 
+0004500480 00000 n 
+0004500642 00000 n 
+0004500801 00000 n 
+0004500962 00000 n 
+0004501117 00000 n 
+0004501274 00000 n 
+0004501423 00000 n 
+0004501582 00000 n 
+0004501759 00000 n 
+0004501936 00000 n 
+0004502101 00000 n 
+0004502266 00000 n 
+0004502425 00000 n 
+0004502584 00000 n 
+0004502758 00000 n 
+0004502932 00000 n 
+0004503110 00000 n 
+0004503288 00000 n 
+0004503472 00000 n 
+0004503658 00000 n 
+0004503836 00000 n 
+0004504014 00000 n 
+0004504211 00000 n 
+0004504408 00000 n 
+0004504594 00000 n 
+0004504790 00000 n 
+0004505078 00000 n 
+0004505159 00000 n 
+0004505319 00000 n 
+0004505515 00000 n 
+0004505766 00000 n 
+0004505943 00000 n 
+0004506198 00000 n 
+0004506439 00000 n 
+0004506683 00000 n 
+0004506899 00000 n 
+0004507116 00000 n 
+0004507380 00000 n 
+0004507569 00000 n 
+0004507818 00000 n 
+0004508022 00000 n 
+0004508227 00000 n 
+0004508412 00000 n 
+0004508586 00000 n 
+0004508870 00000 n 
+0004509067 00000 n 
+0004509300 00000 n 
+0004509540 00000 n 
+0004509765 00000 n 
+0004509986 00000 n 
+0004510198 00000 n 
+0004510463 00000 n 
+0004510645 00000 n 
+0004510925 00000 n 
+0004511142 00000 n 
+0004511382 00000 n 
+0004511607 00000 n 
+0004511827 00000 n 
+0004512072 00000 n 
+0004512284 00000 n 
+0004512497 00000 n 
+0004512769 00000 n 
+0004512975 00000 n 
+0004513184 00000 n 
+0004513376 00000 n 
+0004513569 00000 n 
+0004513758 00000 n 
+0004513990 00000 n 
+0004514246 00000 n 
+0004514450 00000 n 
+0004514620 00000 n 
+0004514856 00000 n 
+0004515014 00000 n 
+0004515266 00000 n 
+0004515507 00000 n 
+0004515755 00000 n 
+0004515960 00000 n 
+0004516261 00000 n 
+0004516459 00000 n 
+0004516660 00000 n 
+0004516869 00000 n 
+0004517095 00000 n 
+0004517294 00000 n 
+0004517555 00000 n 
+0004517785 00000 n 
+0004518015 00000 n 
+0004518248 00000 n 
+0004518437 00000 n 
+0004518632 00000 n 
+0004518933 00000 n 
+0004519148 00000 n 
+0004519350 00000 n 
+0004519620 00000 n 
+0004519894 00000 n 
+0004520201 00000 n 
+0004520495 00000 n 
+0004520753 00000 n 
+0004520963 00000 n 
+0004521884 00000 n 
+0004531633 00000 n 
+0004531851 00000 n 
+0004533215 00000 n 
+0004534264 00000 n 
+0004542744 00000 n 
+0004542967 00000 n 
+0004544331 00000 n 
+0004545400 00000 n 
+0004549584 00000 n 
+0004549816 00000 n 
+0004551180 00000 n 
+0004552296 00000 n 
+0004558213 00000 n 
+0004558441 00000 n 
+0004559805 00000 n 
+0004560890 00000 n 
+0004562053 00000 n 
+0004562271 00000 n 
+0004562575 00000 n 
+0004563713 00000 n 
+0004565165 00000 n 
+0004565378 00000 n 
+0004565700 00000 n 
+0004566617 00000 n 
+0004572512 00000 n 
+0004572728 00000 n 
+0004574092 00000 n 
+0004575144 00000 n 
+0004576542 00000 n 
+0004576762 00000 n 
+0004578126 00000 n 
+0004579266 00000 n 
+0004581747 00000 n 
+0004581963 00000 n 
+0004582324 00000 n 
 trailer
 << /Size 1419
 /Root 2 0 R
 /Info 1 0 R
 >>
 startxref
-4583471
+4583463
 %%EOF

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugodn/ugodn.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugodn/ugodn.pdf b/content/versions/SNAPSHOT/guides/ugodn/ugodn.pdf
index 8a543c1..48e0198 100644
--- a/content/versions/SNAPSHOT/guides/ugodn/ugodn.pdf
+++ b/content/versions/SNAPSHOT/guides/ugodn/ugodn.pdf
@@ -4,8 +4,8 @@
 << /Title (DataNucleus Object Store)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108231226+00'00')
-/ModDate (D:20180108231226+00'00')
+/CreationDate (D:20180213131229+00'00')
+/ModDate (D:20180213131229+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugsec/ugsec.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugsec/ugsec.pdf b/content/versions/SNAPSHOT/guides/ugsec/ugsec.pdf
index dd10e0d..99bbba6 100644
--- a/content/versions/SNAPSHOT/guides/ugsec/ugsec.pdf
+++ b/content/versions/SNAPSHOT/guides/ugsec/ugsec.pdf
@@ -4,8 +4,8 @@
 << /Title (Security)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108231305+00'00')
-/ModDate (D:20180108231305+00'00')
+/CreationDate (D:20180213131235+00'00')
+/ModDate (D:20180213131235+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugtst/ugtst.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugtst/ugtst.html b/content/versions/SNAPSHOT/guides/ugtst/ugtst.html
index 40b0432..916482c 100644
--- a/content/versions/SNAPSHOT/guides/ugtst/ugtst.html
+++ b/content/versions/SNAPSHOT/guides/ugtst/ugtst.html
@@ -2178,9 +2178,20 @@ Feature: <span class="predefined-type">List</span> and Create New Simple Objects
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
-           <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">BootstrappingGlue</span> <span class="directive">extends</span> CukeGlueBootstrappingAbstract {  <i class="conum" data-value="1"></i><b>(1)</b>
+           <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">BootstrappingGlue</span>
+                <span class="directive">extends</span> HeadlessWithBootstrappingAbstract { <i class="conum" data-value="1"></i><b>(1)</b>
+
     <span class="directive">public</span> BootstrappingGlue() {
-        <span class="local-variable">super</span>(<span class="keyword">new</span> DomainAppApplicationModule());                        <i class="conum" data-value="2"></i><b>(2)</b>
+        <span class="local-variable">super</span>(<span class="keyword">new</span> DomainAppApplicationModule());            <i class="conum" data-value="2"></i><b>(2)</b>
+    }
+
+    <span class="annotation">@Before</span>(order=<span class="integer">100</span>)                                      <i class="conum" data-value="3"></i><b>(3)</b>
+    <span class="directive">public</span> <span class="type">void</span> beforeScenario() {
+        <span class="local-variable">super</span>.bootstrapAndSetupIfRequired();
+    }
+    <span class="annotation">@After</span>
+    <span class="directive">public</span> <span class="type">void</span> afterScenario(cucumber.api.Scenario sc) {
+        <span class="local-variable">super</span>.tearDownAllModules();
     }
 }</code></pre> 
           </div> 
@@ -2190,12 +2201,29 @@ Feature: <span class="predefined-type">List</span> and Create New Simple Objects
            <tbody>
             <tr> 
              <td><i class="conum" data-value="1"></i><b>1</b></td> 
-             <td>superclass contains the bootstrapping logic. This reuses many of the same classes as the integration testing framework</td> 
+             <td>superclass contains much of the bootstrapping logic (and is also used by the integration testing framework)</td> 
             </tr> 
             <tr> 
              <td><i class="conum" data-value="2"></i><b>2</b></td> 
              <td>the <code>Module</code> to use to bootstrap the application in headless mode.</td> 
             </tr> 
+            <tr> 
+             <td><i class="conum" data-value="3"></i><b>3</b></td> 
+             <td>remainder of the class is just boilerplate.</td> 
+            </tr> 
+           </tbody>
+          </table> 
+         </div> 
+         <div class="admonitionblock note"> 
+          <table> 
+           <tbody>
+            <tr> 
+             <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+             <td class="content"> 
+              <div class="paragraph"> 
+               <p>For BDD specs, the <code>CukeGlueBootstrappingAbstract</code> was previously provided (as a BDD counterpart to <code>IntegrationTestAbstract3</code>) to perform the relevant bootstrapping. <em>However</em>, it turns out that Cucumber does not allow subclassing of BDD specs. Therefore the bootstrapping boilerplate (that ideally would have been factored out into an abstract superclass) must be included within the BDD spec.</p> 
+              </div> </td> 
+            </tr> 
            </tbody>
           </table> 
          </div> 
@@ -2273,7 +2301,7 @@ Feature: <span class="predefined-type">List</span> and Create New Simple Objects
              <td class="icon"> <i class="fa icon-tip" title="Tip"></i> </td> 
              <td class="content"> 
               <div class="paragraph"> 
-               <p>The <a href="rgsvc.html#_rgsvc_api_Scratchpad"><code>Scratchpad</code></a> domain service is one way in which glue classes can pass state between each other. Or, for more type safety, you could develop your own custom domain services for each scenario, and inject these in as regular services. See <a href="http://www.thinkcode.se/blog/2017/04/01/sharing-state-between-steps-in-cucumberjvm-using-picocontainer">this blog</a> post for more details.</p> 
+               <p>The <a href="../rgsvc/rgsvc.html#_rgsvc_api_Scratchpad"><code>Scratchpad</code></a> domain service is one way in which glue classes can pass state between each other. Or, for more type safety, you could develop your own custom domain services for each scenario, and inject these in as regular services. See <a href="http://www.thinkcode.se/blog/2017/04/01/sharing-state-between-steps-in-cucumberjvm-using-picocontainer">this blog</a> post for more details.</p> 
               </div> </td> 
             </tr> 
            </tbody>
@@ -2979,7 +3007,7 @@ Feature: <span class="predefined-type">List</span> and Create New Simple Objects
           <p>A variety of format strings are supported; the format "YYYY-MM-DD" (as shown above) will work in every locale.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>The fixture script requires that a <code>TickingFixtureClock</code> is initialized during bootstrapping. This is done automatically <code>IntegrationTestAbstract3</code> and <code>CukeGlueBootstrappingAbstract</code> (BDD specs).</p> 
+          <p>The fixture script requires that a <code>TickingFixtureClock</code> is initialized during bootstrapping. This is done automatically in <code>HeadlessWithBootstrappingAbstract</code> (the superclass of <code>IntegrationTestAbstract3</code> and for BDD bootstrapping classes).</p> 
          </div> 
         </div> 
         <div class="sect2"> 


[03/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugvw/ugvw.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugvw/ugvw.pdf b/content/versions/SNAPSHOT/guides/ugvw/ugvw.pdf
index 2e58180..7082f17 100644
--- a/content/versions/SNAPSHOT/guides/ugvw/ugvw.pdf
+++ b/content/versions/SNAPSHOT/guides/ugvw/ugvw.pdf
@@ -4,16 +4,16 @@
 << /Title (Wicket Viewer)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108231535+00'00')
-/ModDate (D:20180108231535+00'00')
+/CreationDate (D:20180213131300+00'00')
+/ModDate (D:20180213131300+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 16 0 R
-/Outlines 719 0 R
-/PageLabels 767 0 R
+/Outlines 721 0 R
+/PageLabels 769 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -23,7 +23,7 @@ endobj
 3 0 obj
 << /Type /Pages
 /Count 91
-/Kids [7 0 R 10 0 R 12 0 R 14 0 R 38 0 R 50 0 R 63 0 R 71 0 R 79 0 R 88 0 R 94 0 R 100 0 R 110 0 R 112 0 R 127 0 R 134 0 R 142 0 R 149 0 R 152 0 R 163 0 R 169 0 R 175 0 R 185 0 R 198 0 R 201 0 R 214 0 R 221 0 R 226 0 R 231 0 R 246 0 R 260 0 R 267 0 R 270 0 R 275 0 R 280 0 R 287 0 R 291 0 R 295 0 R 303 0 R 318 0 R 320 0 R 328 0 R 337 0 R 339 0 R 343 0 R 350 0 R 356 0 R 359 0 R 361 0 R 368 0 R 378 0 R 384 0 R 392 0 R 397 0 R 404 0 R 410 0 R 416 0 R 424 0 R 431 0 R 442 0 R 447 0 R 451 0 R 461 0 R 465 0 R 474 0 R 482 0 R 488 0 R 490 0 R 498 0 R 502 0 R 507 0 R 510 0 R 514 0 R 518 0 R 525 0 R 528 0 R 535 0 R 539 0 R 557 0 R 566 0 R 569 0 R 574 0 R 581 0 R 585 0 R 588 0 R 603 0 R 605 0 R 613 0 R 615 0 R 620 0 R 623 0 R]
+/Kids [7 0 R 10 0 R 12 0 R 14 0 R 38 0 R 50 0 R 63 0 R 71 0 R 79 0 R 88 0 R 94 0 R 100 0 R 110 0 R 112 0 R 127 0 R 134 0 R 142 0 R 149 0 R 152 0 R 163 0 R 169 0 R 175 0 R 185 0 R 198 0 R 201 0 R 214 0 R 221 0 R 226 0 R 231 0 R 246 0 R 257 0 R 269 0 R 272 0 R 277 0 R 282 0 R 289 0 R 293 0 R 297 0 R 305 0 R 320 0 R 322 0 R 330 0 R 339 0 R 341 0 R 345 0 R 353 0 R 359 0 R 362 0 R 364 0 R 371 0 R 381 0 R 387 0 R 395 0 R 400 0 R 407 0 R 413 0 R 419 0 R 427 0 R 434 0 R 445 0 R 450 0 R 454 0 R 464 0 R 468 0 R 477 0 R 485 0 R 491 0 R 493 0 R 500 0 R 504 0 R 509 0 R 512 0 R 516 0 R 520 0 R 527 0 R 530 0 R 537 0 R 541 0 R 559 0 R 568 0 R 571 0 R 576 0 R 583 0 R 587 0 R 590 0 R 605 0 R 607 0 R 615 0 R 617 0 R 622 0 R 625 0 R]
 >>
 endobj
 4 0 obj
@@ -80,11 +80,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAEP+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 769 0 R
+/FontDescriptor 771 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 771 0 R
-/ToUnicode 770 0 R
+/Widths 773 0 R
+/ToUnicode 772 0 R
 >>
 endobj
 9 0 obj
@@ -1639,7 +1639,7 @@ endobj
 /F1.0 8 0 R
 >>
 >>
-/Annots [628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R]
+/Annots [630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R]
 >>
 endobj
 11 0 obj
@@ -1942,7 +1942,7 @@ endobj
 /Font << /F1.0 8 0 R
 >>
 >>
-/Annots [704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R]
+/Annots [706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R]
 >>
 endobj
 13 0 obj
@@ -2585,7 +2585,7 @@ endobj
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 /Annots [19 0 R 20 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R]
@@ -2600,18 +2600,18 @@ endobj
 >>
 endobj
 17 0 obj
-<< /Kids [103 0 R 468 0 R 548 0 R 242 0 R 429 0 R 104 0 R 492 0 R 252 0 R 455 0 R]
+<< /Kids [103 0 R 471 0 R 550 0 R 242 0 R 432 0 R 104 0 R 350 0 R 251 0 R 458 0 R]
 >>
 endobj
 18 0 obj
 << /Type /Font
 /BaseFont /AAAAEQ+NotoSerif-Bold
 /Subtype /TrueType
-/FontDescriptor 773 0 R
+/FontDescriptor 775 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 775 0 R
-/ToUnicode 774 0 R
+/Widths 777 0 R
+/ToUnicode 776 0 R
 >>
 endobj
 19 0 obj
@@ -3144,7 +3144,7 @@ endobj
 /F3.1 45 0 R
 >>
 /XObject << /I1 43 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
 /Annots [42 0 R 44 0 R 46 0 R]
@@ -3670,11 +3670,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAER+FontAwesome
 /Subtype /TrueType
-/FontDescriptor 777 0 R
+/FontDescriptor 779 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 779 0 R
-/ToUnicode 778 0 R
+/Widths 781 0 R
+/ToUnicode 780 0 R
 >>
 endobj
 46 0 obj
@@ -4099,7 +4099,7 @@ endobj
 /F5.0 54 0 R
 >>
 /XObject << /I2 60 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
 /Annots [52 0 R 57 0 R 59 0 R 61 0 R]
@@ -4123,22 +4123,22 @@ endobj
 << /Type /Font
 /BaseFont /AAAAES+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 781 0 R
+/FontDescriptor 783 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 783 0 R
-/ToUnicode 782 0 R
+/Widths 785 0 R
+/ToUnicode 784 0 R
 >>
 endobj
 54 0 obj
 << /Type /Font
 /BaseFont /AAAAET+mplus-1p-regular
 /Subtype /TrueType
-/FontDescriptor 785 0 R
+/FontDescriptor 787 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 787 0 R
-/ToUnicode 786 0 R
+/Widths 789 0 R
+/ToUnicode 788 0 R
 >>
 endobj
 55 0 obj
@@ -5406,7 +5406,7 @@ endobj
 /F2.0 18 0 R
 >>
 /XObject << /I3 66 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
 /Annots [64 0 R 65 0 R 67 0 R 69 0 R]
@@ -7206,7 +7206,7 @@ endobj
 /F3.1 45 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 /Annots [72 0 R 75 0 R]
@@ -7493,7 +7493,7 @@ endobj
 /F3.1 45 0 R
 >>
 /XObject << /I4 83 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
 /Annots [81 0 R 84 0 R 85 0 R]
@@ -8606,7 +8606,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I5 86 0 R
 /I6 91 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
@@ -9398,7 +9398,7 @@ endobj
 /F2.0 18 0 R
 >>
 /XObject << /I7 95 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
 /Annots [96 0 R]
@@ -10438,7 +10438,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I8 98 0 R
 /I9 106 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -10464,12 +10464,12 @@ endobj
 endobj
 103 0 obj
 << /Limits [(__ugvw) (_ugvw_customisation)]
-/Names [(__ugvw) 15 0 R (__ugvw_customisation_tweaking-css-classes_columns-in-tables) 504 0 R (__ugvw_customisation_tweaking-css-classes_columns-in-tables_globally) 505 0 R (__ugvw_extending_replacing-page-elements_collections) 570 0 R (__ugvw_layout_file-based_unreferenced) 278 0 R (_ugvw_configuration-properties) 362 0 R (_ugvw_configuration-properties_abbreviating-titles) 398 0 R (_ugvw_configuration-properties_showing-theme-chooser) 435 0 R (_ugvw_configuration-properties_stripped-wicket-tags) 434 0 R (_ugvw_configuration-properties_suppressing-password-reset) 421 0 R (_ugvw_configuration-properties_suppressing-remember-me) 401 0 R (_ugvw_configuration-properties_suppressing-sign-up) 411 0 R (_ugvw_customisation) 452 0 R]
+/Names [(__ugvw) 15 0 R (__ugvw_customisation_tweaking-css-classes_columns-in-tables) 506 0 R (__ugvw_customisation_tweaking-css-classes_columns-in-tables_globally) 507 0 R (__ugvw_extending_replacing-page-elements_collections) 572 0 R (__ugvw_layout_file-based_unreferenced) 280 0 R (_ugvw_configuration-properties) 365 0 R (_ugvw_configuration-properties_abbreviating-titles) 401 0 R (_ugvw_configuration-properties_showing-theme-chooser) 438 0 R (_ugvw_configuration-properties_stripped-wicket-tags) 437 0 R (_ugvw_configuration-properties_suppressing-password-reset) 424 0 R (_ugvw_configuration-properties_suppressing-remember-me) 404 0 R (_ugvw_configuration-properties_suppressing-sign-up) 414 0 R (_ugvw_customisation) 455 0 R]
 >>
 endobj
 104 0 obj
-<< /Limits [(domain-code-2) (fieldsets)]
-/Names [(domain-code-2) 68 0 R (domain-code-3) 147 0 R (domain-services) 304 0 R (domainservicelayout) 335 0 R (download) 139 0 R (edit-mode) 124 0 R (example-layouts) 215 0 R (examples) 261 0 R (exporting-the-attributes-into-the-app) 491 0 R (fieldsets) 272 0 R]
+<< /Limits [(domain-code-2) (grids-vs-components)]
+/Names [(domain-code-2) 68 0 R (domain-code-3) 147 0 R (domain-services) 306 0 R (domainservicelayout) 337 0 R (download) 139 0 R (edit-mode) 124 0 R (example-layouts) 215 0 R (examples) 263 0 R (exporting-the-attributes-into-the-app) 494 0 R (fieldsets) 274 0 R (grids-vs-components) 254 0 R]
 >>
 endobj
 105 0 obj
@@ -13307,7 +13307,7 @@ endobj
 /F5.0 54 0 R
 /F3.1 45 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
@@ -13743,7 +13743,7 @@ endobj
 /F4.0 53 0 R
 >>
 /XObject << /I10 121 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
 /Annots [113 0 R 114 0 R 116 0 R 117 0 R 119 0 R 122 0 R 123 0 R]
@@ -14521,7 +14521,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I11 125 0 R
 /I12 130 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -15354,7 +15354,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I13 132 0 R
 /I14 137 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -16342,7 +16342,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I15 140 0 R
 /I16 145 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -20657,7 +20657,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
@@ -21065,7 +21065,7 @@ endobj
 /F2.0 18 0 R
 >>
 /XObject << /I17 159 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
 /Annots [153 0 R 154 0 R 155 0 R 156 0 R 160 0 R]
@@ -21119,11 +21119,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAEU+NotoSerif-Italic
 /Subtype /TrueType
-/FontDescriptor 789 0 R
+/FontDescriptor 791 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 791 0 R
-/ToUnicode 790 0 R
+/Widths 793 0 R
+/ToUnicode 792 0 R
 >>
 endobj
 158 0 obj
@@ -21307,7 +21307,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I18 161 0 R
 /I19 165 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -21515,7 +21515,7 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I20 167 0 R
 /I21 171 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -22035,7 +22035,7 @@ endobj
 /Contents 174 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I22 173 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -23159,7 +23159,7 @@ endobj
 /F1.0 8 0 R
 /F4.0 53 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 /Annots [187 0 R 188 0 R 190 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R]
@@ -28068,7 +28068,7 @@ endobj
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 /Annots [199 0 R]
@@ -29716,7 +29716,7 @@ endobj
 /F3.1 45 0 R
 /F6.0 157 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 /Annots [202 0 R 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R 210 0 R 211 0 R 212 0 R]
@@ -29737,11 +29737,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAAEV+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 793 0 R
+/FontDescriptor 795 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 795 0 R
-/ToUnicode 794 0 R
+/Widths 797 0 R
+/ToUnicode 796 0 R
 >>
 endobj
 204 0 obj
@@ -30537,7 +30537,7 @@ endobj
 /F4.0 53 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 /Annots [216 0 R 217 0 R]
@@ -30700,7 +30700,7 @@ endobj
 /Contents 220 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I23 218 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -30918,7 +30918,7 @@ endobj
 /Contents 225 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I24 223 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 >>
@@ -31649,7 +31649,7 @@ endobj
 /Contents 230 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I25 228 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
@@ -31755,7 +31755,7 @@ endobj
 endobj
 242 0 obj
 << /Limits [(_ugvw_layout_file-based) (code-memberorder-code)]
-/Names [(_ugvw_layout_file-based) 241 0 R (_ugvw_layout_table-columns) 314 0 R (_ugvw_menubars-layout) 321 0 R (_ugvw_menubars-layout_annotation-based) 332 0 R (_ugvw_menubars-layout_file-based) 344 0 R (adding-attributes-to-the-war-s-manifest) 486 0 R (adjusting-the-layout) 357 0 R (choose-file) 129 0 R (clear) 144 0 R (code-membergrouplayout-code) 204 0 R (code-memberorder-code) 191 0 R]
+/Names [(_ugvw_layout_file-based) 241 0 R (_ugvw_layout_table-columns) 316 0 R (_ugvw_menubars-layout) 323 0 R (_ugvw_menubars-layout_annotation-based) 334 0 R (_ugvw_menubars-layout_file-based) 346 0 R (adding-attributes-to-the-war-s-manifest) 489 0 R (adjusting-the-layout) 360 0 R (choose-file) 129 0 R (clear) 144 0 R (code-membergrouplayout-code) 204 0 R (code-memberorder-code) 191 0 R]
 >>
 endobj
 243 0 obj
@@ -31781,7 +31781,7 @@ endobj
 >>
 endobj
 245 0 obj
-<< /Length 17991
+<< /Length 18634
 >>
 stream
 q
@@ -32243,24 +32243,13 @@ ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-q
-0.5 w
-0.933 0.933 0.933 SCN
-113.807 363.700 m
-113.807 494.160 l
-S
-Q
-0.098 0.251 0.486 scn
-0.098 0.251 0.486 SCN
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.098 0.251 0.486 scn
-0.098 0.251 0.486 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-76.73933333333335 420.3500000000001 Td
-/F3.1 24 Tf
-<21> Tj
+48.24000000000001 475.47600000000006 Td
+/F2.0 13 Tf
+[<332e322e312e2053656172636820416c676f726974686d20284c696272> 20.01953125 <61727920537570706f727429>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -32268,12 +32257,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-4.723 Tw
+1.087 Tw
 
 BT
-125.80666666666667 478.1960000000001 Td
+48.24000000000001 448.91600000000005 Td
 /F1.0 10.5 Tf
-[<497420697320616c736f20706f737369626c6520746f206465736372696265206c61> 20.01953125 <796f757473207573696e67206120>] TJ
+[<46> 40.0390625 <6f72206120676976656e20646f6d61696e206f626a65637420>] TJ
 ET
 
 
@@ -32283,12 +32272,12 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-4.723 Tw
+1.087 Tw
 
 BT
-390.1340384706439 478.1960000000001 Td
+185.9517508544922 448.91600000000005 Td
 /F4.0 10.5 Tf
-<2e6c61796f75742e6a736f6e> Tj
+<587878> Tj
 ET
 
 
@@ -32298,12 +32287,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-4.723 Tw
+1.087 Tw
 
 BT
-453.1340384706439 478.1960000000001 Td
+201.7017508544922 448.91600000000005 Td
 /F1.0 10.5 Tf
-<2066696c652e20486f77657665722c> Tj
+[<20746865206672> 20.01953125 <616d65776f726b20696e697469616c6c7920736561726368657320666f7220612066696c6520286f6e2074686520636c61737370617468292063616c6c6564>] TJ
 ET
 
 
@@ -32313,27 +32302,34 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-1.009 Tw
-
 BT
-125.80666666666667 462.41600000000005 Td
+48.24000000000001 433.1360000000001 Td
 /F4.0 10.5 Tf
-<2e6c61796f75742e6a736f6e> Tj
+<5878782e6c61796f75742e786d6c> Tj
 ET
 
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+121.74000000000001 433.1360000000001 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
 
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.009 Tw
+0.915 Tw
 
 BT
-188.80666666666667 462.41600000000005 Td
+48.24000000000001 405.35600000000005 Td
 /F1.0 10.5 Tf
-<20737570706f727420697320646570726563617465643b2074686520> Tj
+[<496620746869732063616ed57420626520666f756e642c207468656e20746865206672> 20.01953125 <616d65776f726b2077696c6c2073656172636820666f7220612066696c65206e616d656420>] TJ
 ET
 
 
@@ -32343,12 +32339,12 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-1.009 Tw
+0.915 Tw
 
 BT
-329.3418333333333 462.41600000000005 Td
+412.30205299479167 405.35600000000005 Td
 /F4.0 10.5 Tf
-<2e6c61796f75742e786d6c> Tj
+<5878782e6c61796f75742e66616c6c6261636b2e786d6c> Tj
 ET
 
 
@@ -32358,12 +32354,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.009 Tw
+0.915 Tw
 
 BT
-387.09183333333334 462.41600000000005 Td
+533.0520529947917 405.35600000000005 Td
 /F1.0 10.5 Tf
-<2066696c6520616c736f20656e61626c6573206d756368206d6f7265> Tj
+<2e204966> Tj
 ET
 
 
@@ -32374,20 +32370,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.80666666666667 446.6360000000001 Td
+48.24000000000001 389.576 Td
 /F1.0 10.5 Tf
-[<736f7068697374696361746564206c61> 20.01953125 <796f757473207468616e2074686f7365206166666f726465642062> 20.01953125 <7920>] TJ
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-349.05725651041666 446.6360000000001 Td
-/F4.0 10.5 Tf
-<2e6c61796f75742e6a736f6e> Tj
+<70726573656e742c20746869732077696c6c206265207573656420696e73746561642e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -32395,38 +32380,42 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.854 Tw
+
 BT
-412.0572565104167 446.6360000000001 Td
+48.24000000000001 361.79600000000005 Td
 /F1.0 10.5 Tf
-<2e> Tj
+[<54686973207468657265666f726520616c6c6f7773206c696272> 20.01953125 <617269657320746861742070726f76696465206120646f6d61696e20656e7469746965732f76696577206d6f64656c732028666f72206578616d706c652c2074686520286e6f6e2d>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-2.346 Tw
+2.439 Tw
 
 BT
-125.80666666666667 418.85600000000005 Td
+48.24000000000001 346.0160000000001 Td
 /F1.0 10.5 Tf
-<496620796f75206861766520616e206170706c69636174696f6e2077697468206f6c64657220> Tj
+<4153462920> Tj
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
 
-2.346 Tw
+2.439 Tw
 
 BT
-329.93734615384614 418.85600000000005 Td
-/F4.0 10.5 Tf
-<2e6c61796f75742e6a736f6e> Tj
+76.32013781738281 346.0160000000001 Td
+/F1.0 10.5 Tf
+<496e636f646520506c6174666f726d> Tj
 ET
 
 
@@ -32436,12 +32425,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-2.346 Tw
+2.439 Tw
 
 BT
-392.93734615384614 418.85600000000005 Td
+159.36777563476562 346.0160000000001 Td
 /F1.0 10.5 Tf
-<2066696c65732c207468656e20697420697320706f737369626c6520746f> Tj
+[<206d6f64756c65732920746f20646566696e6520746865205549206f66207468657365206f626a65637473207573696e672061206c61> 20.01953125 <796f75742066696c652c207768696c65207374696c6c>] TJ
 ET
 
 
@@ -32451,42 +32440,45 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.358 Tw
-
 BT
-125.80666666666667 403.076 Td
+48.24000000000001 330.23600000000005 Td
 /F1.0 10.5 Tf
-<646f776e6c6f616420696e697469616c20> Tj
+[<616c6c6f77696e672074686520636f6e73756d696e67206170706c69636174696f6e20746f206f766572726964652074686174206c61> 20.01953125 <796f757420696620697420736f2072657175697265732e>] TJ
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-1.358 Tw
+q
+0.5 w
+0.933 0.933 0.933 SCN
+113.807 171.960 m
+113.807 314.420 l
+S
+Q
+0.098 0.251 0.486 scn
+0.098 0.251 0.486 SCN
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.098 0.251 0.486 scn
+0.098 0.251 0.486 SCN
 
 BT
-213.59423333333334 403.076 Td
-/F4.0 10.5 Tf
-<2e6c61796f75742e786d6c> Tj
+76.73933333333335 234.61000000000007 Td
+/F3.1 24 Tf
+<21> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.358 Tw
+4.723 Tw
 
 BT
-271.34423333333336 403.076 Td
+125.80666666666667 298.4560000000001 Td
 /F1.0 10.5 Tf
-<2066696c6573207573696e672074686520> Tj
+[<497420697320616c736f20706f737369626c6520746f206465736372696265206c61> 20.01953125 <796f757473207573696e67206120>] TJ
 ET
 
 
@@ -32496,27 +32488,12 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-1.358 Tw
+4.723 Tw
 
 BT
-351.62136666666663 403.076 Td
+390.1340384706439 298.4560000000001 Td
 /F4.0 10.5 Tf
-<4c61796f757453657276696365> Tj
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-1.358 Tw
-
-BT
-419.87136666666663 403.076 Td
-/F1.0 10.5 Tf
-<20286578706f73656420617320616e20616374696f6e> Tj
+<2e6c61796f75742e6a736f6e> Tj
 ET
 
 
@@ -32526,12 +32503,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-5.380 Tw
+4.723 Tw
 
 BT
-125.80666666666667 387.29600000000005 Td
+453.1340384706439 298.4560000000001 Td
 /F1.0 10.5 Tf
-<6f6e207468652070726f746f747970696e67206d656e75292e2054686520> Tj
+<2066696c652e20486f77657665722c> Tj
 ET
 
 
@@ -32541,10 +32518,10 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-5.380 Tw
+1.009 Tw
 
 BT
-308.0456363636364 387.29600000000005 Td
+125.80666666666667 282.67600000000004 Td
 /F4.0 10.5 Tf
 <2e6c61796f75742e6a736f6e> Tj
 ET
@@ -32556,12 +32533,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-5.380 Tw
+1.009 Tw
 
 BT
-371.0456363636364 387.29600000000005 Td
+188.80666666666667 282.67600000000004 Td
 /F1.0 10.5 Tf
-<2066696c652077696c6c2062652069676e6f726564206f6e63652061> Tj
+<20737570706f727420697320646570726563617465643b2074686520> Tj
 ET
 
 
@@ -32571,97 +32548,105 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+1.009 Tw
+
 BT
-125.80666666666667 371.5160000000001 Td
+329.3418333333333 282.67600000000004 Td
 /F4.0 10.5 Tf
 <2e6c61796f75742e786d6c> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.009 Tw
+
 BT
-183.55666666666667 371.5160000000001 Td
+387.09183333333334 282.67600000000004 Td
 /F1.0 10.5 Tf
-<2066696c652069732070726573656e742e> Tj
+<2066696c6520616c736f20656e61626c6573206d756368206d6f7265> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 333.016 Td
-/F2.0 13 Tf
-<332e322e312e20477269647320767320436f6d706f6e656e7473> Tj
+125.80666666666667 266.8960000000001 Td
+/F1.0 10.5 Tf
+[<736f7068697374696361746564206c61> 20.01953125 <796f757473207468616e2074686f7365206166666f726465642062> 20.01953125 <7920>] TJ
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-48.24000000000001 306.456 Td
-/F1.0 10.5 Tf
-[<546865206c61> 20.01953125 <796f75742066696c652064697374696e67756973686573206265747765656e2074776f207479706573206f6620656c656d656e743a>] TJ
+349.05725651041666 266.8960000000001 Td
+/F4.0 10.5 Tf
+<2e6c61796f75742e6a736f6e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-
--0.500 Tc
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-56.88050000000001 278.676 Td
+412.0572565104167 266.8960000000001 Td
 /F1.0 10.5 Tf
-<a5> Tj
+<2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-
-0.000 Tc
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+2.346 Tw
+
 BT
-66.24000000000001 278.676 Td
+125.80666666666667 239.11600000000004 Td
 /F1.0 10.5 Tf
-<74686f7365207468617420646566696e6520612067726964207374727563747572652c206f663a20726f77732c20636f6c756d6e732c207461622067726f75707320616e6420746162732e> Tj
+<496620796f75206861766520616e206170706c69636174696f6e2077697468206f6c64657220> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
-0.767 Tw
+2.346 Tw
 
 BT
-66.24000000000001 250.89600000000002 Td
-/F1.0 10.5 Tf
-<54686520726f777320616e6420636f6c756d6e732061726520636c6f73656c79206d6f64656c6c6564206f6e20> Tj
+329.93734615384614 239.11600000000004 Td
+/F4.0 10.5 Tf
+<2e6c61796f75742e6a736f6e> Tj
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
-0.767 Tw
+2.346 Tw
 
 BT
-309.1707760416666 250.89600000000002 Td
+392.93734615384614 239.11600000000004 Td
 /F1.0 10.5 Tf
-[<426f6f74737472> 20.01953125 <61702033>] TJ
+<2066696c65732c207468656e20697420697320706f737369626c6520746f> Tj
 ET
 
 
@@ -32671,64 +32656,72 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.767 Tw
+1.358 Tw
 
 BT
-366.70041796875 250.89600000000002 Td
+125.80666666666667 223.33600000000004 Td
 /F1.0 10.5 Tf
-<20287573656420696e2074686520696d706c656d656e746174696f6e206f6620746865> Tj
+<646f776e6c6f616420696e697469616c20> Tj
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+1.358 Tw
 
 BT
-66.24000000000001 235.116 Td
-/F1.0 10.5 Tf
-[<5769636b> 20.01953125 <657420766965776572>] TJ
+213.59423333333334 223.33600000000004 Td
+/F4.0 10.5 Tf
+<2e6c61796f75742e786d6c> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.358 Tw
+
 BT
-138.343294921875 235.116 Td
+271.34423333333336 223.33600000000004 Td
 /F1.0 10.5 Tf
-<292e> Tj
+<2066696c6573207573696e672074686520> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
--0.500 Tc
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+1.358 Tw
 
 BT
-56.88050000000001 207.336 Td
-/F1.0 10.5 Tf
-<a5> Tj
+351.62136666666663 223.33600000000004 Td
+/F4.0 10.5 Tf
+<4c61796f757453657276696365> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-
-0.000 Tc
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-2.867 Tw
+1.358 Tw
 
 BT
-66.24000000000001 207.336 Td
+419.87136666666663 223.33600000000004 Td
 /F1.0 10.5 Tf
-<74686f7365207468617420646566696e657320636f6d6d6f6e20636f6d706f6e656e74732c206f663a206669656c6473657473202870726576696f75736c792063616c6c6564206d656d6265722067726f757073206f72> Tj
+<20286578706f73656420617320616e20616374696f6e> Tj
 ET
 
 
@@ -32738,25 +32731,32 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-2.001 Tw
-
 BT
-66.24000000000001 191.556 Td
+125.80666666666667 207.55600000000004 Td
 /F1.0 10.5 Tf
-<70726f70657274792067726f757073292c2070726f706572746965732c20636f6c6c656374696f6e732c20616374696f6e7320616e6420616c736f20746865207469746c652f69636f6e206f662074686520646f6d61696e206f626a656374> Tj
+<6f6e207468652070726f746f747970696e67206d656e75292e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-66.24000000000001 175.776 Td
+125.80666666666667 179.77600000000004 Td
 /F1.0 10.5 Tf
-<697473656c662e> Tj
+<54686520> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+147.2266666666667 179.77600000000004 Td
+/F4.0 10.5 Tf
+<2e6c61796f75742e6a736f6e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -32764,88 +32764,80 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.158 Tw
-
 BT
-48.24000000000001 147.996 Td
+210.2266666666667 179.77600000000004 Td
 /F1.0 10.5 Tf
-<4d6f726520696e666f726d6174696f6e2061626f757420746865736520636c61737365732063616e20626520666f756e6420696e20> Tj
+<2066696c652077696c6c2062652069676e6f726564206f6e6365206120> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
-
-1.158 Tw
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-329.31719999999996 147.996 Td
-/F1.0 10.5 Tf
-<746865207265666572656e6365206775696465> Tj
+344.6581666666667 179.77600000000004 Td
+/F4.0 10.5 Tf
+<2e6c61796f75742e786d6c> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.158 Tw
-
 BT
-428.92546666666664 147.996 Td
+402.4081666666667 179.77600000000004 Td
 /F1.0 10.5 Tf
-<2e20204d6f726520696e666f726d6174696f6e206f6e> Tj
+<2066696c652069732070726573656e742e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 132.216 Td
-/F1.0 10.5 Tf
-[<426f6f74737472> 20.01953125 <61702033d57320677269642073797374656d2063616e20626520666f756e6420>] TJ
+48.24000000000001 141.276 Td
+/F2.0 13 Tf
+<332e322e322e20477269647320767320436f6d706f6e656e7473> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-243.37179492187502 132.216 Td
+48.24000000000001 114.71600000000002 Td
 /F1.0 10.5 Tf
-<68657265> Tj
+[<546865206c61> 20.01953125 <796f75742066696c652064697374696e67756973686573206265747765656e2074776f207479706573206f6620656c656d656e743a>] TJ
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+
+-0.500 Tc
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-266.209294921875 132.216 Td
+56.88050000000001 86.93600000000002 Td
 /F1.0 10.5 Tf
-<2e> Tj
+<a5> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+
+0.000 Tc
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 97.71600000000001 Td
-/F2.0 13 Tf
-<332e322e322e2053637265656e63617374> Tj
+66.24000000000001 86.93600000000002 Td
+/F1.0 10.5 Tf
+<74686f7365207468617420646566696e6520612067726964207374727563747572652c206f663a20726f77732c20636f6c756d6e732c207461622067726f75707320616e6420746162732e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -32853,34 +32845,46 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.767 Tw
+
 BT
-48.24000000000001 71.15600000000002 Td
+66.24000000000001 59.15600000000002 Td
 /F1.0 10.5 Tf
-<5468697320> Tj
+<54686520726f777320616e6420636f6c756d6e732061726520636c6f73656c79206d6f64656c6c6564206f6e20> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.259 0.545 0.792 scn
 0.259 0.545 0.792 SCN
 
+0.767 Tw
+
 BT
-72.12750000000001 71.15600000000002 Td
+309.1707760416666 59.15600000000002 Td
 /F1.0 10.5 Tf
-<73637265656e63617374> Tj
+[<426f6f74737472> 20.01953125 <61702033>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.767 Tw
+
 BT
-124.4805 71.15600000000002 Td
+366.70041796875 59.15600000000002 Td
 /F1.0 10.5 Tf
-<206465736372696265732074686520666561747572652e> Tj
+<20287573656420696e2074686520696d706c656d656e746174696f6e206f6620746865> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 q
@@ -32915,13 +32919,13 @@ endobj
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
-/F3.1 45 0 R
 /F2.0 18 0 R
+/F3.1 45 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [247 0 R 248 0 R 249 0 R 250 0 R 253 0 R 254 0 R 255 0 R 256 0 R 258 0 R]
+/Annots [247 0 R 248 0 R 249 0 R 252 0 R 253 0 R 255 0 R]
 >>
 endobj
 247 0 obj
@@ -32958,96 +32962,263 @@ endobj
 >>
 endobj
 250 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (../rgsvc/rgsvc.pdf#_rgsvc_metadata-api_LayoutService)
->>
-/Subtype /Link
-/Rect [351.62136666666663 401.606 419.87136666666663 412.106]
-/Type /Annot
->>
+[246 0 R /XYZ 0 494.1600000000001 null]
 endobj
 251 0 obj
-[246 0 R /XYZ 0 351.70000000000005 null]
-endobj
-252 0 obj
-<< /Limits [(parented-collections) (screenshots-5)]
-/Names [(parented-collections) 508 0 R (related-functionality) 51 0 R (related-functionality-2) 74 0 R (request-parameters) 537 0 R (required-updates-to-the-dom-project-s-pom-xml) 311 0 R (rows-full-width-cols-and-tabs) 268 0 R (screencast) 257 0 R (screenshot) 479 0 R (screenshots) 41 0 R (screenshots-10) 530 0 R (screenshots-2) 58 0 R (screenshots-3) 80 0 R (screenshots-4) 118 0 R (screenshots-5) 158 0 R]
+<< /Limits [(related-functionality-2) (screenshots-6)]
+/Names [(related-functionality-2) 74 0 R (request-parameters) 539 0 R (required-updates-to-the-dom-project-s-pom-xml) 313 0 R (rows-full-width-cols-and-tabs) 270 0 R (screencast) 261 0 R (screenshot) 482 0 R (screenshots) 41 0 R (screenshots-10) 532 0 R (screenshots-2) 58 0 R (screenshots-3) 80 0 R (screenshots-4) 118 0 R (screenshots-5) 158 0 R (screenshots-6) 405 0 R]
 >>
 endobj
-253 0 obj
+252 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (http://getbootstrap.com)
+/URI (http://platform.incode.org)
 >>
 /Subtype /Link
-/Rect [309.1707760416666 247.83 366.70041796875 262.11]
+/Rect [76.32013781738281 342.9500000000001 159.36777563476562 357.2300000000001]
 /Type /Annot
 >>
 endobj
-254 0 obj
+253 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../ugvw/ugvw.pdf)
+/URI (../rgsvc/rgsvc.pdf#_rgsvc_metadata-api_LayoutService)
 >>
 /Subtype /Link
-/Rect [66.24000000000001 232.05 138.343294921875 246.33]
+/Rect [351.62136666666663 221.86600000000004 419.87136666666663 232.36600000000004]
 /Type /Annot
 >>
 endobj
+254 0 obj
+[246 0 R /XYZ 0 159.96000000000004 null]
+endobj
 255 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgcms/rgcms.pdf#_rgcms_classes_layout)
+/URI (http://getbootstrap.com)
 >>
 /Subtype /Link
-/Rect [329.31719999999996 144.93 428.92546666666664 159.21]
+/Rect [309.1707760416666 56.09000000000002 366.70041796875 70.37000000000002]
 /Type /Annot
 >>
 endobj
 256 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (http://getbootstrap.com/css/#grid)
->>
-/Subtype /Link
-/Rect [243.37179492187502 129.15 266.209294921875 143.43]
-/Type /Annot
->>
-endobj
-257 0 obj
-[246 0 R /XYZ 0 116.4 null]
-endobj
-258 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (https://www.youtube.com/watch?v=MxewC5Pve5k)
->>
-/Subtype /Link
-/Rect [72.12750000000001 68.09000000000002 124.4805 82.37000000000002]
-/Type /Annot
->>
-endobj
-259 0 obj
-<< /Length 2714
+<< /Length 6205
 >>
 stream
 q
 /DeviceRGB cs
-0.200 0.200 0.200 scn
+0.259 0.545 0.792 scn
 /DeviceRGB CS
+0.259 0.545 0.792 SCN
+
+BT
+66.24000000000001 794.6759999999999 Td
+/F1.0 10.5 Tf
+[<5769636b> 20.01953125 <657420766965776572>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-48.24 792.006 Td
+138.343294921875 794.6759999999999 Td
+/F1.0 10.5 Tf
+<292e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+56.88050000000001 766.896 Td
+/F1.0 10.5 Tf
+<a5> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+0.000 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+2.867 Tw
+
+BT
+66.24000000000001 766.896 Td
+/F1.0 10.5 Tf
+<74686f7365207468617420646566696e657320636f6d6d6f6e20636f6d706f6e656e74732c206f663a206669656c6473657473202870726576696f75736c792063616c6c6564206d656d6265722067726f757073206f72> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+2.001 Tw
+
+BT
+66.24000000000001 751.116 Td
+/F1.0 10.5 Tf
+<70726f70657274792067726f757073292c2070726f706572746965732c20636f6c6c656374696f6e732c20616374696f6e7320616e6420616c736f20746865207469746c652f69636f6e206f662074686520646f6d61696e206f626a656374> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+66.24000000000001 735.336 Td
+/F1.0 10.5 Tf
+<697473656c662e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.158 Tw
+
+BT
+48.24000000000001 707.5559999999999 Td
+/F1.0 10.5 Tf
+<4d6f726520696e666f726d6174696f6e2061626f757420746865736520636c61737365732063616e20626520666f756e6420696e20> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+1.158 Tw
+
+BT
+329.31719999999996 707.5559999999999 Td
+/F1.0 10.5 Tf
+<746865207265666572656e6365206775696465> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.158 Tw
+
+BT
+428.92546666666664 707.5559999999999 Td
+/F1.0 10.5 Tf
+<2e20204d6f726520696e666f726d6174696f6e206f6e> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24000000000001 691.776 Td
+/F1.0 10.5 Tf
+[<426f6f74737472> 20.01953125 <61702033d57320677269642073797374656d2063616e20626520666f756e6420>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+BT
+243.37179492187502 691.776 Td
+/F1.0 10.5 Tf
+<68657265> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+266.209294921875 691.776 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24000000000001 657.2760000000001 Td
 /F2.0 13 Tf
-<332e322e332e204578616d706c6573> Tj
+<332e322e332e2053637265656e63617374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24000000000001 630.7160000000001 Td
+/F1.0 10.5 Tf
+<5468697320> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+BT
+72.12750000000001 630.7160000000001 Td
+/F1.0 10.5 Tf
+<73637265656e63617374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+124.4805 630.7160000000001 Td
+/F1.0 10.5 Tf
+<206465736372696265732074686520666561747572652e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24000000000001 596.2160000000002 Td
+/F2.0 13 Tf
+<332e322e342e204578616d706c6573> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -33058,7 +33229,7 @@ ET
 0.722 Tw
 
 BT
-48.24 765.446 Td
+48.24000000000001 569.6560000000003 Td
 /F1.0 10.5 Tf
 [<50726f6261626c79207468652065617369657374207761> 20.01953125 <7920746f20756e6465727374616e642064796e616d696320584d4c206c61> 20.01953125 <796f7574732069732062> 20.01953125 <79206578616d706c652e2046> 40.0390625 <6f722074686973207765d56c6c2075736520746865>] TJ
 ET
@@ -33071,7 +33242,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-48.24 749.666 Td
+48.24000000000001 553.8760000000003 Td
 /F4.0 10.5 Tf
 <546f446f4974656d> Tj
 ET
@@ -33082,7 +33253,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-90.24000000000001 749.666 Td
+90.24000000000001 553.8760000000003 Td
 /F1.0 10.5 Tf
 <2066726f6d2074686520286e6f6e2d4153462920> Tj
 ET
@@ -33093,7 +33264,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-191.29200000000003 749.666 Td
+191.29200000000003 553.8760000000003 Td
 /F1.0 10.5 Tf
 <49736973206164646f6e732720746f646f617070> Tj
 ET
@@ -33104,7 +33275,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-293.079 749.666 Td
+293.07900000000006 553.8760000000003 Td
 /F1.0 10.5 Tf
 <3a> Tj
 ET
@@ -33113,14 +33284,14 @@ ET
 0.000 0.000 0.000 scn
 
 q
-498.800 0 0 409.757 48.240 324.093 cm
+498.800 0 0 409.757 48.240 128.303 cm
 /I26 Do
 Q
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-48.24 296.0792859399686 Td
+48.24000000000001 100.28928593996888 Td
 /F2.0 10.5 Tf
 <4e616d65737061636573> Tj
 ET
@@ -33133,7 +33304,7 @@ ET
 1.315 Tw
 
 BT
-48.24 270.24928593996856 Td
+48.24000000000001 74.45928593996888 Td
 /F1.0 10.5 Tf
 <4669727374207468696e67732066697273743b20657665727920> Tj
 ET
@@ -33148,7 +33319,7 @@ ET
 1.315 Tw
 
 BT
-169.93589663461537 270.24928593996856 Td
+169.93589663461537 74.45928593996888 Td
 /F4.0 10.5 Tf
 <2e6c61796f75742e786d6c> Tj
 ET
@@ -33163,7 +33334,7 @@ ET
 1.315 Tw
 
 BT
-227.68589663461537 270.24928593996856 Td
+227.68589663461537 74.45928593996888 Td
 /F1.0 10.5 Tf
 [<2066696c65206d7573742070726f7065726c79206465636c617265207468652058> 9.765625 <5344206e616d6573706163657320616e6420736368656d61732e>] TJ
 ET
@@ -33176,7 +33347,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 254.46928593996856 Td
+48.24000000000001 58.67928593996888 Td
 /F1.0 10.5 Tf
 <5468657265206172652074776f3a206f6e6520666f7220746865206772696420636c61737365732c20616e64206f6e6520666f722074686520636f6d6d6f6e20636f6d706f6e656e7420636c61737365733a> Tj
 ET
@@ -33207,38 +33378,85 @@ Q
 
 endstream
 endobj
-260 0 obj
+257 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 259 0 R
+/Contents 256 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Font << /F2.0 18 0 R
-/F1.0 8 0 R
+/Font << /F1.0 8 0 R
+/F2.0 18 0 R
 /F4.0 53 0 R
 >>
-/XObject << /I26 263 0 R
-/Stamp1 718 0 R
+/XObject << /I26 265 0 R
+/Stamp1 720 0 R
+>>
+>>
+/Annots [258 0 R 259 0 R 260 0 R 262 0 R 264 0 R 266 0 R]
+>>
+endobj
+258 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../ugvw/ugvw.pdf)
+>>
+/Subtype /Link
+/Rect [66.24000000000001 791.6099999999999 138.343294921875 805.89]
+/Type /Annot
+>>
+endobj
+259 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../rgcms/rgcms.pdf#_rgcms_classes_layout)
+>>
+/Subtype /Link
+/Rect [329.31719999999996 704.4899999999999 428.92546666666664 718.77]
+/Type /Annot
 >>
+endobj
+260 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://getbootstrap.com/css/#grid)
 >>
-/Annots [262 0 R 264 0 R]
+/Subtype /Link
+/Rect [243.37179492187502 688.7099999999999 266.209294921875 702.99]
+/Type /Annot
 >>
 endobj
 261 0 obj
-[260 0 R /XYZ 0 841.89 null]
+[257 0 R /XYZ 0 675.96 null]
 endobj
 262 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (http://github.com/isisaddons/isis-app-todoapp)
+/URI (https://www.youtube.com/watch?v=MxewC5Pve5k)
 >>
 /Subtype /Link
-/Rect [191.29200000000003 746.6 293.079 760.8800000000001]
+/Rect [72.12750000000001 627.6500000000001 124.4805 641.9300000000002]
 /Type /Annot
 >>
 endobj
 263 0 obj
+[257 0 R /XYZ 0 614.9000000000002 null]
+endobj
+264 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://github.com/isisaddons/isis-app-todoapp)
+>>
+/Subtype /Link
+/Rect [191.29200000000003 550.8100000000004 293.07900000000006 565.0900000000004]
+/Type /Annot
+>>
+endobj
+265 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 1040
@@ -33432,21 +33650,21 @@ R
 l���x���Ζl$�]g�w=��3�,��ꖨm�a�%�����_M�%�B!��\�߷v����o�5Q�5��|��ƞ����:�M�Z�{t���zx-�^ptC�x<heF��%��¹N�55c�I�u��q=�8�o���ƴ���i�o6�#B�Em���Q�͐��-�[�~��s�o�uR�Zk-��Ql�8Uof��_c���fI�/����ǿ~�@����֚.X�L̩�
��s�k�hu]�:��B!��V�h���y����3��e�7f�n�*�h��R&	-��g���=�
��s}v��7��6ۭ���������̚�r�WV��q#���٨,�a���#Q�t.V��lY����Z���#{t�Z��� ��muw�Wíjf��V�l}��w�x�S�5����5�M�q��M��,�C�3r�-�<�Vٚ/6<��ﵓ��C�mB���Ň�[�ēS��ZB!�BH���Z����}��lR�yht��9��
�'�b:�X�� �M��Y��B�yRe�V����q>
 �d,����m����TmFWY�8���k{�ϵTY�!ǙNd�ް��	~�:��Z�`��~#��ӭ��=qVk�x��v��2G�v�'�zw��5���:,i��nS?<ZPpb�"�sn}*�����+�c�_
Z����ϩ�h-{h��ZK!�Bi�詵"����4���~��Pd�T?��`:��\ke��6���v��o��H^���ʑD�3�]�����Z۱����4�-���Z�q��h�<ǭ��Z�7��%�BP5La6�|����Η���R�Z�����_��\�Bk�y��ON�Rk	!�B!-���ޝ�>�}H΅���O��s�����+(����(�*��U�,�9;���]eM�󦏗v�q�����mkmƛ��mI�J��(�n��̰c����W�a^��V��A�̳�7�ߵ4�gw)
��w��o�`�Mu��%=b6fg���^�� ds�����׎���啜c��x?����S�T���~���B!�#�Ukm��k�y�r��KFdg����x��Qpx�
 ��H��Ւ�55��r!����ʤ��KFYfhÒ3r.���]J�i���Ѯ#��Q��j��:������_$�����gf�s6<���ʚ�%��n������y��/Zy�]��o���n��T_Sy~����6U{���<��J�%�B!��\Z��z -}��x���B!�����x<�ZB!�bM���]���[B���֒�j-!�BѢv���z�-�{����ZK!�Bd,�VE�%w)�Z��Pk	!�B�c��ْ�j-�x���B!$�a��4�V�6r��ZK<�Z�v藿�o��ID| ڬ����i��Vk������L�Z񿭽!�d����
 endstream
 endobj
-264 0 obj
+266 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
 /URI (images/layout-dynamic-xml/ToDoItem.png)
 >>
 /Subtype /Link
-/Rect [48.24 324.0932859399686 547.04 733.8500000000001]
+/Rect [48.24000000000001 128.30328593996887 547.04 538.0600000000004]
 /Type /Annot
 >>
 endobj
-265 0 obj
-[260 0 R /XYZ 0 312.0932859399686 null]
+267 0 obj
+[257 0 R /XYZ 0 116.30328593996887 null]
 endobj
-266 0 obj
+268 0 obj
 << /Length 30876
 >>
 stream
@@ -35523,25 +35741,25 @@ Q
 
 endstream
 endobj
-267 0 obj
+269 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 266 0 R
+/Contents 268 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
 endobj
-268 0 obj
-[267 0 R /XYZ 0 551.45 null]
+270 0 obj
+[269 0 R /XYZ 0 551.45 null]
 endobj
-269 0 obj
+271 0 obj
 << /Length 34695
 >>
 stream
@@ -37923,23 +38141,23 @@ Q
 
 endstream
 endobj
-270 0 obj
+272 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 269 0 R
+/Contents 271 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [271 0 R 273 0 R]
+/Annots [273 0 R 275 0 R]
 >>
 endobj
-271 0 obj
+273 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -37950,10 +38168,10 @@ endobj
 /Type /Annot
 >>
 endobj
-272 0 obj
-[270 0 R /XYZ 0 763.08 null]
+274 0 obj
+[272 0 R /XYZ 0 763.08 null]
 endobj
-273 0 obj
+275 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -37964,7 +38182,7 @@ endobj
 /Type /Annot
 >>
 endobj
-274 0 obj
+276 0 obj
 << /Length 24978
 >>
 stream
@@ -39294,7 +39512,7 @@ ET
 BT
 48.24000000000001 290.5060000000002 Td
 /F2.0 13 Tf
-<332e322e342e20556e7265666572656e636564204d656d62657273> Tj
+<332e322e352e20556e7265666572656e636564204d656d62657273> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -39590,42 +39808,42 @@ Q
 
 endstream
 endobj
-275 0 obj
+277 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 274 0 R
+/Contents 276 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F3.1 45 0 R
 /F1.0 8 0 R
 /F4.0 53 0 R
 /F6.0 157 0 R
-/F7.0 276 0 R
+/F7.0 278 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
 endobj
-276 0 obj
+278 0 obj
 << /Type /Font
 /BaseFont /AAAAEW+NotoSerif-BoldItalic
 /Subtype /TrueType
-/FontDescriptor 797 0 R
+/FontDescriptor 799 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 799 0 R
-/ToUnicode 798 0 R
+/Widths 801 0 R
+/ToUnicode 800 0 R
 >>
 endobj
-277 0 obj
-[275 0 R /XYZ 0 710.7700000000001 null]
+279 0 obj
+[277 0 R /XYZ 0 710.7700000000001 null]
 endobj
-278 0 obj
-[275 0 R /XYZ 0 309.1900000000002 null]
+280 0 obj
+[277 0 R /XYZ 0 309.1900000000002 null]
 endobj
-279 0 obj
+281 0 obj
 << /Length 7522
 >>
 stream
@@ -39873,7 +40091,7 @@ ET
 BT
 48.24000000000001 566.3760000000001 Td
 /F2.0 13 Tf
-<332e322e352e204d6f726520616476616e636564206665617475726573> Tj
+<332e322e362e204d6f726520616476616e636564206665617475726573> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -40007,11 +40225,11 @@ Q
 
 endstream
 endobj
-280 0 obj
+282 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 279 0 R
+/Contents 281 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
@@ -40019,20 +40237,20 @@ endobj
 /F5.0 54 0 R
 /F2.0 18 0 R
 >>
-/XObject << /I27 284 0 R
-/Stamp1 718 0 R
+/XObject << /I27 286 0 R
+/Stamp1 720 0 R
 >>
 >>
-/Annots [283 0 R 285 0 R]
+/Annots [285 0 R 287 0 R]
 >>
 endobj
-281 0 obj
-[280 0 R /XYZ 0 585.0600000000001 null]
+283 0 obj
+[282 0 R /XYZ 0 585.0600000000001 null]
 endobj
-282 0 obj
-[280 0 R /XYZ 0 524.0000000000002 null]
+284 0 obj
+[282 0 R /XYZ 0 524.0000000000002 null]
 endobj
-283 0 obj
+285 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -40043,7 +40261,7 @@ endobj
 /Type /Annot
 >>
 endobj
-284 0 obj
+286 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 916
@@ -40422,7 +40640,7 @@ Q?M
 ����Y�O�?��
���  �B!��y�ue�U�g��Ud��~���uuu�@�Q��O�?
����7�M�B!�B!�x)n�$G~k}����\�|��B!�B��S���B!�B!�89�O�B!�B!���~"�B!�B!E�!�B!�B)b��!�B!�BHC�D!�B!�B��'B!�B!�R�P?B!�B!��"���B!�B!�1�O�B!�B!���~"�B!�B!E�!�B!�B)b��!�B!�BHC�D!�B!�B��'B!�B!�R�P?B!�B!��"���B!�B!�1�O�B!�B!��I����K�O@��!���
 endstream
 endobj
-285 0 obj
+287 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -40433,7 +40651,7 @@ endobj
 /Type /Annot
 >>
 endobj
-286 0 obj
+288 0 obj
 << /Length 26738
 >>
 stream
@@ -42372,37 +42590,37 @@ Q
 
 endstream
 endobj
-287 0 obj
+289 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 286 0 R
+/Contents 288 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
-/F4.1 288 0 R
+/F4.1 290 0 R
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
 endobj
-288 0 obj
+290 0 obj
 << /Type /Font
 /BaseFont /AAAAEX+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 801 0 R
+/FontDescriptor 803 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 803 0 R
-/ToUnicode 802 0 R
+/Widths 805 0 R
+/ToUnicode 804 0 R
 >>
 endobj
-289 0 obj
-[287 0 R /XYZ 0 345.37 null]
+291 0 obj
+[289 0 R /XYZ 0 345.37 null]
 endobj
-290 0 obj
+292 0 obj
 << /Length 29257
 >>
 stream
@@ -44394,7 +44612,7 @@ ET
 BT
 48.239999999999995 90.54599999999996 Td
 /F2.0 13 Tf
-[<332e322e362e204d696772> 20.01953125 <6174696e672066726f6d206561726c6965722076657273696f6e73>] TJ
+[<332e322e372e204d696772> 20.01953125 <6174696e672066726f6d206561726c6965722076657273696f6e73>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -44468,27 +44686,27 @@ Q
 
 endstream
 endobj
-291 0 obj
+293 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 290 0 R
+/Contents 292 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
-/F4.1 288 0 R
+/F4.1 290 0 R
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [293 0 R]
+/Annots [295 0 R]
 >>
 endobj
-292 0 obj
-[291 0 R /XYZ 0 109.22999999999996 null]
+294 0 obj
+[293 0 R /XYZ 0 109.22999999999996 null]
 endobj
-293 0 obj
+295 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -44499,7 +44717,7 @@ endobj
 /Type /Annot
 >>
 endobj
-294 0 obj
+296 0 obj
 << /Length 25165
 >>
 stream
@@ -46113,24 +46331,24 @@ Q
 
 endstream
 endobj
-295 0 obj
+297 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 294 0 R
+/Contents 296 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
 /F6.0 157 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R]
+/Annots [298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R]
 >>
 endobj
-296 0 obj
+298 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46141,7 +46359,7 @@ endobj
 /Type /Annot
 >>
 endobj
-297 0 obj
+299 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46152,7 +46370,7 @@ endobj
 /Type /Annot
 >>
 endobj
-298 0 obj
+300 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46163,7 +46381,7 @@ endobj
 /Type /Annot
 >>
 endobj
-299 0 obj
+301 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46174,7 +46392,7 @@ endobj
 /Type /Annot
 >>
 endobj
-300 0 obj
+302 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46185,7 +46403,7 @@ endobj
 /Type /Annot
 >>
 endobj
-301 0 obj
+303 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46196,7 +46414,7 @@ endobj
 /Type /Annot
 >>
 endobj
-302 0 obj
+304 0 obj
 << /Length 12421
 >>
 stream
@@ -46209,7 +46427,7 @@ q
 BT
 48.24 792.006 Td
 /F2.0 13 Tf
-<332e322e372e20446f6d61696e205365727669636573> Tj
+<332e322e382e20446f6d61696e205365727669636573> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -46405,7 +46623,7 @@ ET
 BT
 48.24000000000001 643.8260000000002 Td
 /F2.0 13 Tf
-<332e322e382e205265717569726564207570646174657320746f2074686520646f6d2070726f6a656374d57320706f6d2e786d6c> Tj
+<332e322e392e205265717569726564207570646174657320746f2074686520646f6d2070726f6a656374d57320706f6d2e786d6c> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -46938,26 +47156,26 @@ Q
 
 endstream
 endobj
-303 0 obj
+305 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 302 0 R
+/Contents 304 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F4.0 53 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 312 0 R 313 0 R 315 0 R]
+/Annots [307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 314 0 R 315 0 R 317 0 R]
 >>
 endobj
-304 0 obj
-[303 0 R /XYZ 0 841.89 null]
+306 0 obj
+[305 0 R /XYZ 0 841.89 null]
 endobj
-305 0 obj
+307 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46968,7 +47186,7 @@ endobj
 /Type /Annot
 >>
 endobj
-306 0 obj
+308 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46979,7 +47197,7 @@ endobj
 /Type /Annot
 >>
 endobj
-307 0 obj
+309 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -46990,7 +47208,7 @@ endobj
 /Type /Annot
 >>
 endobj
-308 0 obj
+310 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -47001,7 +47219,7 @@ endobj
 /Type /Annot
 >>
 endobj
-309 0 obj
+311 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -47012,7 +47230,7 @@ endobj
 /Type /Annot
 >>
 endobj
-310 0 obj
+312 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -47023,10 +47241,10 @@ endobj
 /Type /Annot
 >>
 endobj
-311 0 obj
-[303 0 R /XYZ 0 662.5100000000002 null]
+313 0 obj
+[305 0 R /XYZ 0 662.5100000000002 null]
 endobj
-312 0 obj
+314 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -47037,7 +47255,7 @@ endobj
 /Type /Annot
 >>
 endobj
-313 0 obj
+315 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -47048,10 +47266,10 @@ endobj
 /Type /Annot
 >>
 endobj
-314 0 obj
-[303 0 R /XYZ 0 272.2700000000004 null]
+316 0 obj
+[305 0 R /XYZ 0 272.2700000000004 null]
 endobj
-315 0 obj
+317 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -47062,7 +47280,7 @@ endobj
 /Type /Annot
 >>
 endobj
-316 0 obj
+318 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 248
@@ -47108,7 +47326,7 @@ E
 �H�o�W�Odt�(/y]p9Ӥ�0�o�I��'�w����O4"Q222�Ritttd����];Qrss��D"QX��P��O�6"��L&��p�X��P�����A�P
�_��������6"T�P&�{X��P�����ADҨ �4�H� �4��<�M8
 endstream
 endobj
-317 0 obj
+319 0 obj
 << /Length 28237
 >>
 stream
@@ -49204,23 +49422,23 @@ Q
 
 endstream
 endobj
-318 0 obj
+320 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 317 0 R
+/Contents 319 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/XObject << /I28 316 0 R
-/Stamp1 718 0 R
+/XObject << /I28 318 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
-/F4.1 288 0 R
+/F4.1 290 0 R
 >>
 >>
 >>
 endobj
-319 0 obj
+321 0 obj
 << /Length 8712
 >>
 stream
@@ -49768,27 +49986,27 @@ Q
 
 endstream
 endobj
-320 0 obj
+322 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 319 0 R
+/Contents 321 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F4.0 53 0 R
 >>
-/XObject << /I29 324 0 R
-/Stamp1 718 0 R
+/XObject << /I29 326 0 R
+/Stamp1 720 0 R
 >>
 >>
-/Annots [322 0 R 323 0 R 325 0 R]
+/Annots [324 0 R 325 0 R 327 0 R]
 >>
 endobj
-321 0 obj
-[320 0 R /XYZ 0 841.89 null]
+323 0 obj
+[322 0 R /XYZ 0 841.89 null]
 endobj
-322 0 obj
+324 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -49799,7 +50017,7 @@ endobj
 /Type /Annot
 >>
 endobj
-323 0 obj
+325 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -49810,7 +50028,7 @@ endobj
 /Type /Annot
 >>
 endobj
-324 0 obj
+326 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 736
@@ -50127,7 +50345,7 @@ Z1!
 ��HN� ��6����.� �rNq���QV ��������@!	�y�XGY�B�����!�B!�B�����2g����
 endstream
 endobj
-325 0 obj
+327 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -50138,7 +50356,7 @@ endobj
 /Type /Annot
 >>
 endobj
-326 0 obj
+328 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 327
@@ -50218,7 +50436,7 @@ F
 ����3NE
 endstream
 endobj
-327 0 obj
+329 0 obj
 << /Length 5350
 >>
 stream
@@ -50521,25 +50739,25 @@ Q
 
 endstream
 endobj
-328 0 obj
+330 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 327 0 R
+/Contents 329 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/XObject << /I30 326 0 R
-/I31 330 0 R
-/Stamp1 718 0 R
+/XObject << /I30 328 0 R
+/I31 332 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 /F2.0 18 0 R
 /F4.0 53 0 R
 >>
 >>
-/Annots [329 0 R 331 0 R 333 0 R 334 0 R]
+/Annots [331 0 R 333 0 R 335 0 R 336 0 R]
 >>
 endobj
-329 0 obj
+331 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -50550,7 +50768,7 @@ endobj
 /Type /Annot
 >>
 endobj
-330 0 obj
+332 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 243
@@ -50606,7 +50824,7 @@ G
 ��zݍNG��[��W"N�A�{��p���+-�-�'�s�Ѭ���۲�|��u��A�犡��EzQ�z��8�~q�.�!	Q���HG�?�#�-��Y�[�+�o@y����u�}�$��e�����w%�m�(�zL:Ų9Ve}����'����{��"�)�D�qt
 endstream
 endobj
-331 0 obj
+333 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -50617,10 +50835,10 @@ endobj
 /Type /Annot
 >>
 endobj
-332 0 obj
-[328 0 R /XYZ 0 285.1786232088274 null]
+334 0 obj
+[330 0 R /XYZ 0 285.1786232088274 null]
 endobj
-333 0 obj
+335 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -50631,7 +50849,7 @@ endobj
 /Type /Annot
 >>
 endobj
-334 0 obj
+336 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -50642,10 +50860,10 @@ endobj
 /Type /Annot
 >>
 endobj
-335 0 obj
-[328 0 R /XYZ 0 201.53862320882737 null]
+337 0 obj
+[330 0 R /XYZ 0 201.53862320882737 null]
 endobj
-336 0 obj
+338 0 obj
 << /Length 29747
 >>
 stream
@@ -52726,21 +52944,21 @@ Q
 
 endstream
 endobj
-337 0 obj
+339 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 336 0 R
+/Contents 338 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
 endobj
-338 0 obj
+340 0 obj
 << /Length 34599
 >>
 stream
@@ -55217,11 +55435,11 @@ Q
 
 endstream
 endobj
-339 0 obj
+341 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 338 0 R
+/Contents 340 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
 /F1.0 8 0 R
@@ -55229,18 +55447,18 @@ endobj
 /F2.0 18 0 R
 /F5.0 54 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
 endobj
-340 0 obj
-[339 0 R /XYZ 0 624.1099999999999 null]
+342 0 obj
+[341 0 R /XYZ 0 624.1099999999999 null]
 endobj
-341 0 obj
-[339 0 R /XYZ 0 278.0900000000001 null]
+343 0 obj
+[341 0 R /XYZ 0 278.0900000000001 null]
 endobj
-342 0 obj
+344 0 obj
 << /Length 25825
 >>
 stream
@@ -56993,27 +57211,27 @@ Q
 
 endstream
 endobj
-343 0 obj
+345 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 342 0 R
+/Contents 344 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
 /F1.0 8 0 R
 /F6.0 157 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [345 0 R 346 0 R 348 0 R]
+/Annots [347 0 R 348 0 R 351 0 R]
 >>
 endobj
-344 0 obj
-[343 0 R /XYZ 0 520.93 null]
+346 0 obj
+[345 0 R /XYZ 0 520.93 null]
 endobj
-345 0 obj
+347 0 obj
 << /Border [0 0 0]
 /Dest (_ugvw_layout_file-based)
 /Subtype /Link
@@ -57021,7 +57239,7 @@ endobj
 /Type /Annot
 >>
 endobj
-346 0 obj
+348 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -57032,10 +57250,15 @@ endobj
 /Type /Annot
 >>
 endobj
-347 0 obj
-[343 0 R /XYZ 0 112.81000000000006 null]
+349 0 obj
+[345 0 R /XYZ 0 112.81000000000006 null]
 endobj
-348 0 obj
+350 0 obj
+<< /Limits [(hints) (related-functionality)]
+/Names [(hints) 90 0 R (how-the-viewer-selects-components) 562 0 R (how-to-replace-a-component) 565 0 R (image-rendered) 136 0 R (individual-members) 497 0 R (migrating-from-earlier-versions) 294 0 R (more-advanced-features) 283 0 R (multiple-references-to-a-feature) 284 0 R (namespaces) 267 0 R (obtaining-an-initial-layout) 349 0 R (ordering-menu-actions) 342 0 R (other-annotations) 233 0 R (other-guides) 21 0 R (parented-collections) 510 0 R (related-functionality) 51 0 R]
+>>
+endobj
+351 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -57046,7 +57269,7 @@ endobj
 /Type /Annot
 >>
 endobj
-349 0 obj
+352 0 obj
 << /Length 1853
 >>
 stream
@@ -57146,23 +57369,23 @@ Q
 
 endstream
 endobj
-350 0 obj
+353 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 349 0 R
+/Contents 352 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 8 0 R
 >>
-/XObject << /I32 351 0 R
-/I33 353 0 R
-/Stamp1 718 0 R
+/XObject << /I32 354 0 R
+/I33 356 0 R
+/Stamp1 720 0 R
 >>
 >>
-/Annots [352 0 R 354 0 R]
+/Annots [355 0 R 357 0 R]
 >>
 endobj
-351 0 obj
+354 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 520
@@ -57373,7 +57596,7 @@ e\{
 �=F9�2٬�M�Mf�Z�M@8�4�i�Ը�qX'O.�RS���I�֚�Չ�͛7766L�MNkz�V� �K�4Nj\�8�q['OƝ]�x��J�QT�L|x��m�ʚI�(y��1��W5k��8/��X՝���L@�D�>0]5bl��^�-@28�4Nj\�8�q['O6�s�IR��FY����I_M'?��C+U�-@b8�4�jָ�q^=��N
���+T7"R�&e���G9;���~j�&�֗+䩛�Bu��:e�)+U�ı�j�&�M�ԝ,��5)�SN��Z�Ź��\�MT�&R���H�RH*L��ԝ���9�~�wIz�p��O�Bu��,@:T8o�����
 endstream
 endobj
-352 0 obj
+355 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -57384,7 +57607,7 @@ endobj
 /Type /Annot
 >>
 endobj
-353 0 obj
+356 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 339
@@ -57435,7 +57658,7 @@ f8X
 @fsnB�R�;��1�d��{�}��WgΜK��zv{����f��T�W�b)�j�@e5� �X�(��o>0#�J	v�@�u=�D�(t�`;��}."�x��Ԭ��|��F^��<�l��tF����0�x�Z��o&H%$I�p��fDP��^�4�k ��#<�v�wu���~4��l�����'�lɣo��:`�Z\����ħ��re����W_�ş|�[�i���>0�f��Y�U 03AZ� y2p�o>0#���
��&8�!J�?��O2p,�mD"���aAK���~U#I�֬��?��Z�|Ց�-��67�[��=YX6��x�'��
�f����bU������Mf8��3"؃�1��"�������ߵO<Y8���=UT^Q��{���z�d8�]��"�e:�L�F2��{>�G��i"3���یW��:�L�^2��WD�d �d�ݝ��d�^��K���Wv�B�d �2K��qU>�d�YV�"3�fe_:Ț>*����0�}`лaͨ�;XHŒd����p#3��
 ��F2f$��d �H��@��7�TL��;4��F2�H4-̍d��h4Z��p#�h�07��F2��han$��d@����H�ɀF����7��Fs#n$��F2�H4-̍d��h4Z��p�������� �Ǭ�,���}h�y{������h�ׁ�Ph4�#�H�[�d�n&�h��H�ɀF����7��Fs#n�&�<��ԡ��ɒ����J�6%ݚ�
��}��Vnju�;h4Z��p�(�jm����$�����~4�A��9�S�vۑ�[�F���l$�-�s|���HA�G6u��gx��d��o%����h���p��<���Aܙ���:K���h4ZF�d�e����A&��i�|�mR�i4���p�<���z2�~ok)�$���F�%l$�-�d��d�����������8�@���H�[���y�Aj���-��[H���M`"�FL#n��3p^�@+�)$������q���VV0~{��&ϕ���V��h
 4����Z��han$��d@����H�ɀF����7��Fs#n$��F2�H4-̍d��h4Z��p#�h�07��F2��han$��d@����H��;��'�F�тj�z7�t˯~���?�4�T�}`лaͨ�;X~���Idnmm�}�v�A�x�ߓ�����
kF��A>�����A�x��ˑX��d�F��CF��CF��CF��CF��CF��CF��CF��C�?��K
 endstream
 endobj
-354 0 obj
+357 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -57446,7 +57669,7 @@ endobj
 /Type /Annot
 >>
 endobj
-355 0 obj
+358 0 obj
 << /Length 28714
 >>
 stream
@@ -59399,25 +59622,25 @@ Q
 
 endstream
 endobj
-356 0 obj
+359 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 355 0 R
+/Contents 358 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F4.0 53 0 R
 /F1.0 8 0 R
 /F2.0 18 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
 endobj
-357 0 obj
-[356 0 R /XYZ 0 152.42999999999986 null]
+360 0 obj
+[359 0 R /XYZ 0 152.42999999999986 null]
 endobj
-358 0 obj
+361 0 obj
 << /Length 2773
 >>
 stream
@@ -59563,21 +59786,21 @@ Q
 
 endstream
 endobj
-359 0 obj
+362 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 358 0 R
+/Contents 361 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 8 0 R
 /F3.1 45 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
 >>
 endobj
-360 0 obj
+363 0 obj
 << /Length 29922
 >>
 stream
@@ -61563,40 +61786,40 @@ Q
 
 endstream
 endobj
-361 0 obj
+364 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 360 0 R
+/Contents 363 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F4.0 53 0 R
 /F3.1 45 0 R
 /F6.0 157 0 R
-/F8.0 363 0 R
+/F8.0 366 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [364 0 R 365 0 R 366 0 R]
+/Annots [367 0 R 368 0 R 369 0 R]
 >>
 endobj
-362 0 obj
-[361 0 R /XYZ 0 841.89 null]
+365 0 obj
+[364 0 R /XYZ 0 841.89 null]
 endobj
-363 0 obj
+366 0 obj
 << /Type /Font
 /BaseFont /AAAAEY+mplus1mn-italic
 /Subtype /TrueType
-/FontDescriptor 805 0 R
+/FontDescriptor 807 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 807 0 R
-/ToUnicode 806 0 R
+/Widths 809 0 R
+/ToUnicode 808 0 R
 >>
 endobj
-364 0 obj
+367 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -61607,7 +61830,7 @@ endobj
 /Type /Annot
 >>
 endobj
-365 0 obj
+368 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -61618,7 +61841,7 @@ endobj
 /Type /Annot
 >>
 endobj
-366 0 obj
+369 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -61629,7 +61852,7 @@ endobj
 /Type /Annot
 >>
 endobj
-367 0 obj
+370 0 obj
 << /Length 31448
 >>
 stream
@@ -63873,25 +64096,25 @@ Q
 
 endstream
 endobj
-368 0 obj
+371 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 367 0 R
+/Contents 370 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F6.0 157 0 R
 /F4.0 53 0 R
 /F1.0 8 0 R
-/F8.0 363 0 R
+/F8.0 366 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R]
+/Annots [372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R]
 >>
 endobj
-369 0 obj
+372 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63902,7 +64125,7 @@ endobj
 /Type /Annot
 >>
 endobj
-370 0 obj
+373 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63913,7 +64136,7 @@ endobj
 /Type /Annot
 >>
 endobj
-371 0 obj
+374 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63924,7 +64147,7 @@ endobj
 /Type /Annot
 >>
 endobj
-372 0 obj
+375 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63935,7 +64158,7 @@ endobj
 /Type /Annot
 >>
 endobj
-373 0 obj
+376 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63946,7 +64169,7 @@ endobj
 /Type /Annot
 >>
 endobj
-374 0 obj
+377 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63957,7 +64180,7 @@ endobj
 /Type /Annot
 >>
 endobj
-375 0 obj
+378 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63968,7 +64191,7 @@ endobj
 /Type /Annot
 >>
 endobj
-376 0 obj
+379 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -63979,7 +64202,7 @@ endobj
 /Type /Annot
 >>
 endobj
-377 0 obj
+380 0 obj
 << /Length 21971
 >>
 stream
@@ -65479,25 +65702,25 @@ Q
 
 endstream
 endobj
-378 0 obj
+381 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 377 0 R
+/Contents 380 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F6.0 157 0 R
 /F4.0 53 0 R
 /F1.0 8 0 R
-/F8.0 363 0 R
+/F8.0 366 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [379 0 R 380 0 R 381 0 R 382 0 R]
+/Annots [382 0 R 383 0 R 384 0 R 385 0 R]
 >>
 endobj
-379 0 obj
+382 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -65508,7 +65731,7 @@ endobj
 /Type /Annot
 >>
 endobj
-380 0 obj
+383 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -65519,7 +65742,7 @@ endobj
 /Type /Annot
 >>
 endobj
-381 0 obj
+384 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -65530,7 +65753,7 @@ endobj
 /Type /Annot
 >>
 endobj
-382 0 obj
+385 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -65541,7 +65764,7 @@ endobj
 /Type /Annot
 >>
 endobj
-383 0 obj
+386 0 obj
 << /Length 31192
 >>
 stream
@@ -67715,25 +67938,25 @@ Q
 
 endstream
 endobj
-384 0 obj
+387 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 383 0 R
+/Contents 386 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F6.0 157 0 R
 /F4.0 53 0 R
 /F1.0 8 0 R
-/F8.0 363 0 R
+/F8.0 366 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R]
+/Annots [388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R]
 >>
 endobj
-385 0 obj
+388 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67744,7 +67967,7 @@ endobj
 /Type /Annot
 >>
 endobj
-386 0 obj
+389 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67755,7 +67978,7 @@ endobj
 /Type /Annot
 >>
 endobj
-387 0 obj
+390 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67766,7 +67989,7 @@ endobj
 /Type /Annot
 >>
 endobj
-388 0 obj
+391 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67777,7 +68000,7 @@ endobj
 /Type /Annot
 >>
 endobj
-389 0 obj
+392 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67788,7 +68011,7 @@ endobj
 /Type /Annot
 >>
 endobj
-390 0 obj
+393 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -67799,7 +68022,7 @@ endobj
 /Type /Annot
 >>
 endobj
-391 0 obj
+394 0 obj
 << /Length 26855
 >>
 stream
@@ -69657,26 +69880,26 @@ Q
 
 endstream
 endobj
-392 0 obj
+395 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 391 0 R
+/Contents 394 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F6.0 157 0 R
 /F4.0 53 0 R
 /F1.0 8 0 R
-/F8.0 363 0 R
+/F8.0 366 0 R
 /F5.0 54 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [393 0 R 394 0 R 395 0 R]
+/Annots [396 0 R 397 0 R 398 0 R]
 >>
 endobj
-393 0 obj
+396 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -69687,7 +69910,7 @@ endobj
 /Type /Annot
 >>
 endobj
-394 0 obj
+397 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -69698,7 +69921,7 @@ endobj
 /Type /Annot
 >>
 endobj
-395 0 obj
+398 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -69709,7 +69932,7 @@ endobj
 /Type /Annot
 >>
 endobj
-396 0 obj
+399 0 obj
 << /Length 6716
 >>
 stream
@@ -70068,26 +70291,26 @@ Q
 
 endstream
 endobj
-397 0 obj
+400 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 396 0 R
+/Contents 399 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F4.0 53 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [399 0 R 400 0 R]
+/Annots [402 0 R 403 0 R]
 >>
 endobj
-398 0 obj
-[397 0 R /XYZ 0 841.89 null]
+401 0 obj
+[400 0 R /XYZ 0 841.89 null]
 endobj
-399 0 obj
+402 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70098,7 +70321,7 @@ endobj
 /Type /Annot
 >>
 endobj
-400 0 obj
+403 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70109,13 +70332,13 @@ endobj
 /Type /Annot
 >>
 endobj
-401 0 obj
-[397 0 R /XYZ 0 472.15000000000003 null]
+404 0 obj
+[400 0 R /XYZ 0 472.15000000000003 null]
 endobj
-402 0 obj
-[397 0 R /XYZ 0 388.51 null]
+405 0 obj
+[400 0 R /XYZ 0 388.51 null]
 endobj
-403 0 obj
+406 0 obj
 << /Length 1859
 >>
 stream
@@ -70227,25 +70450,25 @@ Q
 
 endstream
 endobj
-404 0 obj
+407 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 403 0 R
+/Contents 406 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I34 159 0 R
-/I35 406 0 R
-/Stamp1 718 0 R
+/I35 409 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 /F2.0 18 0 R
 /F4.0 53 0 R
 >>
 >>
-/Annots [405 0 R 407 0 R]
+/Annots [408 0 R 410 0 R]
 >>
 endobj
-405 0 obj
+408 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70256,7 +70479,7 @@ endobj
 /Type /Annot
 >>
 endobj
-406 0 obj
+409 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 428
@@ -70304,7 +70527,7 @@ _=uT
 ;�`MN��v��ݘ�3�����P���vwJ�yw�w�uS���A�6F`r�v>��-%�!׮�)�P�<�ƻ��ڕm���v�;�%��:�6~~Az�/|#[��w���փ�;MC��߲S���J�/4/�,�k�K�����`���ݍ
�]:��׶Vwvvw��7_��#j5�]h~�ӳK�I�[d7r��cq2u��[����΃Ͽ���4���ژ�����퇟�������ל��w��]�����ڕr%�%	�{��o��z]���N�B
D�-Ө
�i	�7˗��c�R�D�����I:Iw�+j,��Z�%5:%m��a_�Aossy{���ۭ��=�����������7H&)ׁ�,�߶7l~w��\?�ŝe%G"�����]%������e��n75����nX�TG:L*�d�0��u�E����kw�����J`]�JNKr`�H���?�k�݇��k�B�!	���"�jcZ��߼(�IոJW,��k[��v�y���m�\�$�����K�H�9�I���w����kZ�
 ��M�-
��ޝ�7���^��PYe�`��,�����P=cZ��D��_7���v���ںu_��t7�ɷB�C������6�9��\�n���{?6�-Э���}�l6�7�
�Ɔ��
c�����?������:�S�
���N�se}�����a��;� $@`8�1���p�c 0���@`8�1���p�c 0���@`8�1���p�c 0���@`8�1�	$0�
 endstream
 endobj
-407 0 obj
+410 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70315,10 +70538,10 @@ endobj
 /Type /Annot
 >>
 endobj
-408 0 obj
-[404 0 R /XYZ 0 152.235 null]
+411 0 obj
+[407 0 R /XYZ 0 152.235 null]
 endobj
-409 0 obj
+412 0 obj
 << /Length 2055
 >>
 stream
@@ -70435,29 +70658,29 @@ Q
 
 endstream
 endobj
-410 0 obj
+413 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 409 0 R
+/Contents 412 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 >>
 /XObject << /I36 159 0 R
-/Stamp1 718 0 R
+/Stamp1 720 0 R
 >>
 >>
-/Annots [413 0 R]
+/Annots [416 0 R]
 >>
 endobj
-411 0 obj
-[410 0 R /XYZ 0 841.89 null]
+414 0 obj
+[413 0 R /XYZ 0 841.89 null]
 endobj
-412 0 obj
-[410 0 R /XYZ 0 699.2700000000001 null]
+415 0 obj
+[413 0 R /XYZ 0 699.2700000000001 null]
 endobj
-413 0 obj
+416 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70468,7 +70691,7 @@ endobj
 /Type /Annot
 >>
 endobj
-414 0 obj
+417 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 428
@@ -70517,7 +70740,7 @@ suE
 ���G�`�M"�e-�z�{��W�j�l�߬
���Q���BO�^0{��
ȳ����@` 0���@` 0���@` 0���@` 0���@` 0���@` 0���@` 0���@` 0���@` 0��#�
 endstream
 endobj
-415 0 obj
+418 0 obj
 << /Length 4010
 >>
 stream
@@ -70727,24 +70950,24 @@ Q
 
 endstream
 endobj
-416 0 obj
+419 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 415 0 R
+/Contents 418 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/XObject << /I37 414 0 R
-/Stamp1 718 0 R
+/XObject << /I37 417 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F4.0 53 0 R
 >>
 >>
-/Annots [417 0 R 420 0 R]
+/Annots [420 0 R 423 0 R]
 >>
 endobj
-417 0 obj
+420 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70755,13 +70978,13 @@ endobj
 /Type /Annot
 >>
 endobj
-418 0 obj
-[416 0 R /XYZ 0 492.9525 null]
+421 0 obj
+[419 0 R /XYZ 0 492.9525 null]
 endobj
-419 0 obj
-[416 0 R /XYZ 0 383.1524999999999 null]
+422 0 obj
+[419 0 R /XYZ 0 383.1524999999999 null]
 endobj
-420 0 obj
+423 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70772,13 +70995,13 @@ endobj
 /Type /Annot
 >>
 endobj
-421 0 obj
-[416 0 R /XYZ 0 322.09249999999986 null]
+424 0 obj
+[419 0 R /XYZ 0 322.09249999999986 null]
 endobj
-422 0 obj
-[416 0 R /XYZ 0 210.67249999999981 null]
+425 0 obj
+[419 0 R /XYZ 0 210.67249999999981 null]
 endobj
-423 0 obj
+426 0 obj
 << /Length 1855
 >>
 stream
@@ -70890,25 +71113,25 @@ Q
 
 endstream
 endobj
-424 0 obj
+427 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 423 0 R
+/Contents 426 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I38 159 0 R
-/I39 426 0 R
-/Stamp1 718 0 R
+/I39 429 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F1.0 8 0 R
 /F2.0 18 0 R
 /F4.0 53 0 R
 >>
 >>
-/Annots [425 0 R 427 0 R]
+/Annots [428 0 R 430 0 R]
 >>
 endobj
-425 0 obj
+428 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70919,7 +71142,7 @@ endobj
 /Type /Annot
 >>
 endobj
-426 0 obj
+429 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 428
@@ -70966,7 +71189,7 @@ l
 ���#y���/�^�H$~ؿ}p8Lo�)�9>�8�V�#�~��
�G�p�ä�J&�q��V6��P��_�v��lM�y�B��$&��L�!|����CL�l_�?"{p�����Z�Z���>Ҿ�J\�O8��g{��v{��+z�
r��=>���p�}�>I0�)���M�����Q~3o�����^�=�{������p,�U&��R�w.<�ϘQ�g����{��;S]�is�!�OÁ�(�����-�"b��(>Ԫ�-�Qu���,t%��d����ƂE�c�"���`x��X��,R����?�񫅟,X]�>?Z�:�����Âe��G���X 0���@` 0���@` 0���@` 0���@` 0���@` 0���@` 0���@` 0�������I
 endstream
 endobj
-427 0 obj
+430 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -70977,15 +71200,15 @@ endobj
 /Type /Annot
 >>
 endobj
-428 0 obj
-[424 0 R /XYZ 0 152.235 null]
+431 0 obj
+[427 0 R /XYZ 0 152.235 null]
 endobj
-429 0 obj
+432 0 obj
 << /Limits [(collections) (domain-code)]
-/Names [(collections) 277 0 R (configuration) 55 0 R (configuration-2) 76 0 R (configuration-3) 177 0 R (configuration-4) 408 0 R (configuration-5) 418 0 R (configuration-6) 428 0 R (configuration-7) 463 0 R (configuration-8) 485 0 R (copy-url) 82 0 R (copy-url-from-title) 97 0 R (custom-css) 289 0 R (custom-css-styles) 500 0 R (custom-object-view-eg-dashboard) 575 0 R (domain-code) 47 0 R]
+/Names [(collections) 279 0 R (configuration) 55 0 R (configuration-2) 76 0 R (configuration-3) 177 0 R (configuration-4) 411 0 R (configuration-5) 421 0 R (configuration-6) 431 0 R (configuration-7) 466 0 R (configuration-8) 488 0 R (copy-url) 82 0 R (copy-url-from-title) 97 0 R (custom-css) 291 0 R (custom-css-styles) 502 0 R (custom-object-view-eg-dashboard) 577 0 R (domain-code) 47 0 R]
 >>
 endobj
-430 0 obj
+433 0 obj
 << /Length 10939
 >>
 stream
@@ -71591,27 +71814,27 @@ Q
 
 endstream
 endobj
-431 0 obj
+434 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 430 0 R
+/Contents 433 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
 /F2.0 18 0 R
 /F3.1 45 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [433 0 R 436 0 R 437 0 R 438 0 R 439 0 R]
+/Annots [436 0 R 439 0 R 440 0 R 441 0 R 442 0 R]
 >>
 endobj
-432 0 obj
-[431 0 R /XYZ 0 762.33 null]
+435 0 obj
+[434 0 R /XYZ 0 762.33 null]
 endobj
-433 0 obj
+436 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -71622,13 +71845,13 @@ endobj
 /Type /Annot
 >>
 endobj
-434 0 obj
-[431 0 R /XYZ 0 701.2700000000002 null]
+437 0 obj
+[434 0 R /XYZ 0 701.2700000000002 null]
 endobj
-435 0 obj
-[431 0 R /XYZ 0 457.9900000000003 null]
+438 0 obj
+[434 0 R /XYZ 0 457.9900000000003 null]
 endobj
-436 0 obj
+439 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -71639,7 +71862,7 @@ endobj
 /Type /Annot
 >>
 endobj
-437 0 obj
+440 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -71650,7 +71873,7 @@ endobj
 /Type /Annot
 >>
 endobj
-438 0 obj
+441 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -71661,7 +71884,7 @@ endobj
 /Type /Annot
 >>
 endobj
-439 0 obj
+442 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -71672,7 +71895,7 @@ endobj
 /Type /Annot
 >>
 endobj
-440 0 obj
+443 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 851
@@ -71922,7 +72145,7 @@ U!
 �{��p[ū���y�N�y�/M;�.^�l���Y�{�~F/��P����U%������|f������QO���op�3�vy�Ŏ���ƁC�G^����3q�fr�L�s䣭�2l�m�2�5����k�m:E�r��Ss���/e�lu����#�9~���b���~0e��i
(��3KJ�֦l������*����_+z/��*q=��O\�:#3��ñnӎ��[�����?<�WO��ào�^?�q�=)�,^Ubii��?n�y}�]��w�yN\o�}�ǗKJ���
�F���Y��6)�?�2�5O��϶i�O�����5��/@hB�""b3�;&��g5�4�|*�yO�.���*��":��V��9�%���=��cN��s��Ͻ��y��EzLe޾kN�6����K?߸�R%VQY�}����y��/��d��t�ؘ�1�KʒS�U��Yͮz]�W��+|\���:?�9b���b���ƃG��*�)5�km��^�z2�-YU^^a�Q���\^37��fs�y���
 ,-]^�CI���і�۽��G�~��[��;�j6W��Ѵ��B��_�Mnn��'<�b�y�o}�Y�q	��ݼ)�]�ןex���K��&/""6C�+��>��ܪ��G���s������^�#L^�ϣҴ�Rݷ�[=���	������v�5bd�v�U��t������k]���=��]G�k82j��Ϸ��z8}�瓫�O�e4�q�.�X.|<s�:�ǟ~��9�W�X=z�6��5Ei�����?���-�o��4�����ԸE�ٟ���<��]���V�M�H�W(.�|�{nڑ���CZ����	�M�y��G�_�`�'T�Q;���w���������˄}|r�y��������<^�.h=L�G���v�����Ҿ����=���;M�6;�|�m}Żv}�~��#G���w�*5�����ի�KJ�����m_WTT�O��0y���I�ܗ�y��K�/�̚����6��+^��Uڅ&�TI��:u:s�1��s/�XF��xB����oX=�Nd|�
 ���n�I��\U	1�u�5�Y�=��뾣G����W����%�u�T���c�6�9�.}�w��]��#��C���=y���jr������ۉ���x��������t�/�5�:�ϛ4c��R�����V��\^Q�n���Y�|�łBs�R��ڮ6��FN�Q��:�Mٶ���}0�UU���0o�u�*^��-_��گ.{�t���o?r}wQ���Jݑ��y|�t��Tg%���T=j-X�g@�T�*�͘���H�ڨ�(�3ܾ7xG���E۷�������2��EK.�]4��U�8x�K�A>��`�O�6��v���!�Ż>e��̬~#t�c��;pP�>|�-['�j�����R��Э���4>�B�v�y\�N�]����������K��\���g��r/�ŋ���4�o�н_��\�i����Q����νr��v;q:6>����|�ohK��&/""b�h���v?��)��0��g<x�HAAa̬���N�<-3+���'Z��z�F�@C�x���nץ��
 |f�?R��aГ�ء[�WTV�8Oޕ�ݫou��l,��i{*�?�wh@�ꥧ`�+ """��AO>�mv�;?iٹs�Vр�����0�Cɠ'��6��}�}��i{rssG 2�n�x�r����KO/���V@DDD%��|���7������$���������=�,�9/"""""bh��\�1P=�,��EDDDDD�AO>˥xeГ�r)^DDDDD�@��\�1P=�,��EDDDDD�AO>˥xeГ�r)^DDDDD�@��\�1P=�,��EDDDDD�AO>˥xeГ�r)^DDDDD�@��\�1P=�,��EDDDDD�AO>˥xeГ�r)^DDDDD�@����+�e�'�?�{@
����xWoMT��dDDDDDD���U
����x�w.�P�������؜U��aU�~/""""""��]�CS�CS�CS�C�kŋ������z�?Z��,
 endstream
 endobj
-441 0 obj
+444 0 obj
 << /Length 1075
 >>
 stream
@@ -72000,24 +72223,24 @@ Q
 
 endstream
 endobj
-442 0 obj
+445 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 441 0 R
+/Contents 444 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/XObject << /I40 440 0 R
-/I41 444 0 R
-/Stamp1 718 0 R
+/XObject << /I40 443 0 R
+/I41 447 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F6.0 157 0 R
 /F1.0 8 0 R
 >>
 >>
-/Annots [443 0 R 445 0 R]
+/Annots [446 0 R 448 0 R]
 >>
 endobj
-443 0 obj
+446 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -72028,7 +72251,7 @@ endobj
 /Type /Annot
 >>
 endobj
-444 0 obj
+447 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 851
@@ -72223,7 +72446,7 @@ IV
 ��֒Jy,����Tɶ<�m?��zn�����db�zg�LJs�ON�Y�Brwfv޷�����x�޻X�*)7�#����?;�x��u�Uw���k]S�Y���li�R&�`�{�OV�n[��;�P��!�|�=���YK��v��9��`:(^Z�W5c߄��v���s���֥�e�
�C�ɺP�Fx��ū�>��Ĵ�q���Y��M<�r��C�2�9(^�0���X\Q��xէ%˶�d�x�6��ڋ�x��/@�^���m���e0�sP�a@{1�w������x�{\/_���3ƍ�(^y��P�_��hoW�7���y��P��?�a�x��]YY�����`�ޮo���Ow����ָ���f�x����x�'/@�����])��������KAq������ؗ!/7y��KO^���Z�E{�_�z?�� ��?U��x(��5��՛�/�_�8P��k��?})^�8P���Ż���x�� ����]�T�����
 �,�}�^��/x(�;vO�������]����I�_,2��`0��7�+w���_�?LVJvW�{�%S�Xv�J�x���ŻI�UVJvW�[�vS�J�>��>�j7Ż�G�UVJvW����u����8)^���2z)^�!��K��>H��>~3z)^��th����!z�&�O��.0
 endstream
 endobj
-445 0 obj
+448 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -72234,7 +72457,7 @@ endobj
 /Type /Annot
 >>
 endobj
-446 0 obj
+449 0 obj
 << /Length 3190
 >>
 stream
@@ -72417,23 +72640,23 @@ Q
 
 endstream
 endobj
-447 0 obj
+450 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 446 0 R
+/Contents 449 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F1.0 8 0 R
 /F4.0 53 0 R
 /F3.1 45 0 R
 >>
-/XObject << /Stamp1 718 0 R
+/XObject << /Stamp1 720 0 R
 >>
 >>
-/Annots [448 0 R 449 0 R]
+/Annots [451 0 R 452 0 R]
 >>
 endobj
-448 0 obj
+451 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -72444,7 +72667,7 @@ endobj
 /Type /Annot
 >>
 endobj
-449 0 obj
+452 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -72455,7 +72678,7 @@ endobj
 /Type /Annot
 >>
 endobj
-450 0 obj
+453 0 obj
 << /Length 2705
 >>
 stream
@@ -72617,37 +72840,37 @@ Q
 
 endstream
 endobj
-451 0 obj
+454 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 450 0 R
+/Contents 453 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /I42 457 0 R
-/Stamp1 718 0 R
+/XObject << /I42 460 0 R
+/Stamp1 720 0 R
 >>
 >>
-/Annots [456 0 R 458 0 R]
+/Annots [459 0 R 461 0 R]
 >>
 endobj
-452 0 obj
-[451 0 R /XYZ 0 841.89 null]
+455 0 obj
+[454 0 R /XYZ 0 841.89 null]
 endobj
-453 0 obj
-[451 0 R /XYZ 0 765.1700000000001 null]
+456 0 obj
+[454 0 R /XYZ 0 765.1700000000001 null]
 endobj
-454 0 obj
-[451 0 R /XYZ 0 681.5300000000002 null]
+457 0 obj
+[454 0 R /XYZ 0 681.5300000000002 null]
 endobj
-455 0 obj
-<< /Limits [(screenshots-6) (view-mode-empty)]
-/Names [(screenshots-6) 402 0 R (screenshots-7) 412 0 R (screenshots-8) 422 0 R (screenshots-9) 454 0 R (see-also) 419 0 R (see-also-2) 432 0 R (standalone-collections) 512 0 R (tertiary-menu) 341 0 R (user-experience) 48 0 R (user-experience-2) 73 0 R (user-experience-3) 102 0 R (view-mode-empty) 120 0 R]
+458 0 obj
+<< /Limits [(screenshots-7) (view-mode-empty)]
+/Names [(screenshots-7) 415 0 R (screenshots-8) 425 0 R (screenshots-9) 457 0 R (search-algorithm-library-support) 250 0 R (see-also) 422 0 R (see-also-2) 435 0 R (standalone-collections) 514 0 R (tertiary-menu) 343 0 R (user-experience) 48 0 R (user-experience-2) 73 0 R (user-experience-3) 102 0 R (view-mode-empty) 120 0 R]
 >>
 endobj
-456 0 obj
+459 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -72658,7 +72881,7 @@ endobj
 /Type /Annot
 >>
 endobj
-457 0 obj
+460 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 645
@@ -72881,7 +73104,7 @@ m
 Tg�@ dY�T焴��@ �H���c>2
 endstream
 endobj
-458 0 obj
+461 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -72892,7 +73115,7 @@ endobj
 /Type /Annot
 >>
 endobj
-459 0 obj
+462 0 obj
 << /Type /XObject
 /Subtype /Image
 /Height 645
@@ -72990,7 +73213,7 @@ vL2
 �|�?R�Bޙ�A�3)��L �M�T�h��qkK�“��TN٦|�f�e�ژ�H�Ca�w/h���~�_�}n���y���||A���Gh��Ԭ���-;�?6�f�"i�г3��G^�6y����xժU!K�<wߤI�����W�^�ъ7f�?�G������^���,z�?.\�qQ������+���?�t H:���e�1{�[l���n�}����0����+���\�������<�ۨ�y��-Q��;:Z����r���o�$t{����9�K�.]�e�إ�Կo:��^��s�?:kkAM��=�8�VU����7�4�}�u�Ѥs�>�?�ƕ�f���-�e'?�����m��–������dZ�|_���pu��irx-��n���U
����?>���\��ࣻ�-��3��o�{뺳4A��ϥsk��á}�Yt�'c��J��b6�ơ��u�����ue�C��{ϔG;\R�ޛ[�Z-=��-��<0��ϾQ^[�h�S������kS�>�н�+;W-_
 (���3/��L@��`��@�j�U��|�C:�i�`�++w��t[]�u�~)��
�e'���\s�R:7W�X�qŢ�8֎�U����{�?}�O�L���Xm쩭��0mɼ铞[v�rF}k{C��7^���`l�����'�=� ��@F<���FT�wŨ��;�n�]7��s�t��_���8�a�,^����������<i�R�ʢ7?���6d��^Y=��)S����oO>�x[���/=3{�	��7ꃗ�k�"��<3��_���'�w�u�S�����O���?�t #�����̮4y�fϠɕ��~t���p�`l�[k��=�C���{��t�����w6|��/����]�Ń�������#s�y�hj��Z�Ѷ��������_ծR���uU�ϟ1��o}S���4���Ig�_G:�	�(�v�q��ߙj�M/�+��޿2ͪQ�	SJ�<�''��X���5�%w�}���o
n��SنI�
�K:@�"���&7�vH_��̬��,�w_L�>��78�o���t� 
 E:��M������|���#��L
�}��t�
���o��c� �c�t C:����@�t�3)���<HgR�3�y���Hg2�� � H��dH�1@:@�"�Ȑ�c�t� E:�!���A�t ӣw����I�7�����h4���� �!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����
 B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:BHg@�!�!�3 �t�����B:�_�u�B@�a��)+���(�,Dc#%��BI8��b��s�]�.�x��LgI�$)*�Y�$I���t^���q�����P^��i0kfyZ8��C:�t���ի@i��<�v��Q�t�{����J+�����}:�Lg�b:@��tnt��?$��a���
 endstream
 endobj
-460 0 obj
+463 0 obj
 << /Length 2745
 >>
 stream
@@ -73163,24 +73386,24 @@ Q
 
 endstream
 endobj
-461 0 obj
+464 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 460 0 R
+/Contents 463 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/XObject << /I43 459 0 R
-/Stamp1 718 0 R
+/XObject << /I43 462 0 R
+/Stamp1 720 0 R
 >>
 /Font << /F2.0 18 0 R
 /F1.0 8 0 R
 /F4.0 53 0 R
 >>
 >>
-/Annots [462 0 R]
+/Annots [465 0 R]
 >>
 endobj
-462 0 obj
+465 0 obj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
@@ -73191,10 +73414,10 @@ endobj
 /Type /Annot
 >>
 endobj
-463 0 obj
-[461 0 R /XYZ 0 458.059102296451 null]
+466 0 obj
+[464 0 R /XYZ 0 458.059102296451 null]
 endobj
-464 0 obj
+467 0 obj
 << /Length 37281
 >>
 stream
@@ -75858,23 +76081,23 @@ Q
 
 endstream
 endobj
-465 0 obj
+468 0 obj
 << /Type /Page
 /Parent 3 0 R
 /MediaBox [0 0 595.28 841.89]
-/Contents 464 0 R
+/Contents 4

<TRUNCATED>

[08/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.pdf b/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.pdf
index 781bcb2..9f40832 100644
--- a/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.pdf
+++ b/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.pdf
@@ -4,16 +4,16 @@
 << /Title (Domain Services)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108230544+00'00')
-/ModDate (D:20180108230544+00'00')
+/CreationDate (D:20180213131106+00'00')
+/ModDate (D:20180213131106+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 18 0 R
-/Outlines 2072 0 R
-/PageLabels 2163 0 R
+/Outlines 2082 0 R
+/PageLabels 2172 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -23,7 +23,7 @@ endobj
 3 0 obj
 << /Type /Pages
 /Count 173
-/Kids [7 0 R 10 0 R 12 0 R 14 0 R 16 0 R 38 0 R 50 0 R 61 0 R 70 0 R 76 0 R 105 0 R 109 0 R 144 0 R 156 0 R 163 0 R 180 0 R 186 0 R 188 0 R 211 0 R 246 0 R 277 0 R 295 0 R 305 0 R 312 0 R 323 0 R 327 0 R 332 0 R 335 0 R 341 0 R 346 0 R 359 0 R 375 0 R 387 0 R 402 0 R 407 0 R 419 0 R 435 0 R 443 0 R 454 0 R 461 0 R 468 0 R 482 0 R 495 0 R 503 0 R 510 0 R 543 0 R 587 0 R 595 0 R 601 0 R 610 0 R 623 0 R 639 0 R 641 0 R 643 0 R 645 0 R 659 0 R 666 0 R 668 0 R 679 0 R 686 0 R 702 0 R 713 0 R 718 0 R 733 0 R 746 0 R 751 0 R 758 0 R 766 0 R 770 0 R 778 0 R 786 0 R 799 0 R 803 0 R 826 0 R 834 0 R 847 0 R 867 0 R 876 0 R 892 0 R 894 0 R 923 0 R 948 0 R 955 0 R 960 0 R 965 0 R 982 0 R 995 0 R 998 0 R 1009 0 R 1014 0 R 1022 0 R 1031 0 R 1037 0 R 1043 0 R 1052 0 R 1068 0 R 1079 0 R 1082 0 R 1085 0 R 1088 0 R 1094 0 R 1106 0 R 1115 0 R 1128 0 R 1135 0 R 1143 0 R 1151 0 R 1181 0 R 1189 0 R 1192 0 R 1203 0 R 1209 0 R 1217 0 R 1221 0 R 1230 0 R 1240 0 R 1247 0 R 1251 0 R 1255 0 R 1257 0 R 1261 0 R 
 1268 0 R 1296 0 R 1312 0 R 1319 0 R 1331 0 R 1346 0 R 1350 0 R 1360 0 R 1375 0 R 1382 0 R 1423 0 R 1433 0 R 1442 0 R 1451 0 R 1460 0 R 1471 0 R 1478 0 R 1509 0 R 1516 0 R 1529 0 R 1534 0 R 1541 0 R 1545 0 R 1551 0 R 1561 0 R 1564 0 R 1569 0 R 1578 0 R 1581 0 R 1587 0 R 1590 0 R 1594 0 R 1599 0 R 1603 0 R 1630 0 R 1648 0 R 1651 0 R 1663 0 R 1673 0 R 1688 0 R 1698 0 R 1713 0 R 1720 0 R 1733 0 R 1749 0 R 1756 0 R 1762 0 R 1770 0 R 1785 0 R 1791 0 R 1798 0 R 1814 0 R]
+/Kids [7 0 R 10 0 R 12 0 R 14 0 R 16 0 R 38 0 R 50 0 R 61 0 R 70 0 R 76 0 R 105 0 R 109 0 R 144 0 R 156 0 R 163 0 R 180 0 R 186 0 R 188 0 R 211 0 R 246 0 R 277 0 R 295 0 R 306 0 R 317 0 R 326 0 R 331 0 R 338 0 R 341 0 R 347 0 R 352 0 R 365 0 R 381 0 R 393 0 R 408 0 R 413 0 R 425 0 R 441 0 R 449 0 R 460 0 R 467 0 R 474 0 R 488 0 R 501 0 R 509 0 R 516 0 R 549 0 R 596 0 R 604 0 R 610 0 R 618 0 R 630 0 R 645 0 R 652 0 R 654 0 R 656 0 R 664 0 R 676 0 R 678 0 R 689 0 R 696 0 R 712 0 R 723 0 R 728 0 R 742 0 R 756 0 R 761 0 R 768 0 R 775 0 R 779 0 R 787 0 R 795 0 R 808 0 R 812 0 R 835 0 R 843 0 R 856 0 R 874 0 R 884 0 R 902 0 R 904 0 R 932 0 R 957 0 R 965 0 R 970 0 R 975 0 R 992 0 R 1005 0 R 1008 0 R 1019 0 R 1024 0 R 1032 0 R 1041 0 R 1046 0 R 1053 0 R 1062 0 R 1078 0 R 1089 0 R 1092 0 R 1095 0 R 1098 0 R 1104 0 R 1117 0 R 1126 0 R 1138 0 R 1145 0 R 1153 0 R 1161 0 R 1191 0 R 1199 0 R 1202 0 R 1213 0 R 1219 0 R 1227 0 R 1231 0 R 1239 0 R 1250 0 R 1257 0 R 1261 0 R 1265 0 R 1267 0 R 1271 0 
 R 1278 0 R 1306 0 R 1322 0 R 1329 0 R 1341 0 R 1356 0 R 1359 0 R 1371 0 R 1386 0 R 1396 0 R 1437 0 R 1447 0 R 1456 0 R 1465 0 R 1474 0 R 1485 0 R 1495 0 R 1525 0 R 1532 0 R 1543 0 R 1548 0 R 1555 0 R 1559 0 R 1565 0 R 1575 0 R 1578 0 R 1583 0 R 1591 0 R 1594 0 R 1600 0 R 1603 0 R 1607 0 R 1612 0 R 1616 0 R 1643 0 R 1661 0 R 1664 0 R 1677 0 R 1686 0 R 1702 0 R 1712 0 R 1727 0 R 1734 0 R 1747 0 R 1762 0 R 1769 0 R 1775 0 R 1783 0 R 1797 0 R 1803 0 R 1809 0 R 1825 0 R]
 >>
 endobj
 4 0 obj
@@ -80,15 +80,15 @@ endobj
 << /Type /Font
 /BaseFont /AAAACI+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 2165 0 R
+/FontDescriptor 2174 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2167 0 R
-/ToUnicode 2166 0 R
+/Widths 2176 0 R
+/ToUnicode 2175 0 R
 >>
 endobj
 9 0 obj
-<< /Length 35862
+<< /Length 35992
 >>
 stream
 q
@@ -806,7 +806,7 @@ ET
 BT
 535.3009999999999 474.6559999999998 Td
 /F1.0 10.5 Tf
-<3138> Tj
+<3139> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1693,9 +1693,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-202.58224999999993 142.01599999999962 Td
+200.69850000000002 142.01599999999962 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<20286465707265636174656429> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+272.0607499999999 142.01599999999962 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1713,7 +1724,7 @@ ET
 BT
 535.3009999999999 142.01599999999962 Td
 /F1.0 10.5 Tf
-<3432> Tj
+<3433> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1764,7 +1775,7 @@ ET
 BT
 535.3009999999999 123.53599999999963 Td
 /F1.0 10.5 Tf
-<3434> Tj
+<3435> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1786,7 +1797,7 @@ ET
 BT
 79.9485 105.05599999999964 Td
 /F3.0 10.5 Tf
-<436f6d6d616e64436f6e74657874> Tj
+<44746f4d617070696e6748656c706572> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1795,9 +1806,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 105.05599999999964 Td
+165.17074999999994 105.05599999999964 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1815,7 +1826,7 @@ ET
 BT
 535.3009999999999 105.05599999999964 Td
 /F1.0 10.5 Tf
-<3531> Tj
+<3536> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1837,7 +1848,7 @@ ET
 BT
 79.9485 86.57599999999965 Td
 /F3.0 10.5 Tf
-<44746f4d617070696e6748656c706572> Tj
+<496e746572616374696f6e436f6e74657874> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1846,9 +1857,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-165.17074999999994 86.57599999999965 Td
+175.85974999999996 86.57599999999965 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1888,7 +1899,7 @@ ET
 BT
 79.9485 68.09599999999966 Td
 /F3.0 10.5 Tf
-<496e746572616374696f6e436f6e74657874> Tj
+<4d65737361676553657276696365> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1897,9 +1908,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.85974999999996 68.09599999999966 Td
+154.48174999999992 68.09599999999966 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1917,7 +1928,7 @@ ET
 BT
 535.3009999999999 68.09599999999966 Td
 /F1.0 10.5 Tf
-<3536> Tj
+<3630> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1937,11 +1948,11 @@ endobj
 /F3.0 43 0 R
 >>
 >>
-/Annots [1819 0 R 1820 0 R 1821 0 R 1822 0 R 1823 0 R 1824 0 R 1825 0 R 1826 0 R 1827 0 R 1828 0 R 1829 0 R 1830 0 R 1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R 1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R 1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R 1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R 1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R 1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R 1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R 1878 0 R 1879 0 R 1880 0 R 1881 0 R 1882 0 R 1883 0 R 1884 0 R 1885 0 R 1886 0 R 1887 0 R 1888 0 R 1889 0 R 1890 0 R 1891 0 R 1892 0 R 1893 0 R 1894 0 R 1895 0 R 1896 0 R 1897 0 R 1898 0 R 1899 0 R 1900 0 R 1901 0 R 1902 0 R 1903 0 R 1904 0 R 1905 0 R 1906 0 R 1907 0 R 1908 0 R 1909 0 R 1910 0 R 1911 0 R 1912 0 R 1913 0 R 1914 0 R 1915 0 R 1916 0 R 1917 0 R 1918 0 R 1919 0 R 1920 0 R 1921 0 R]
+/Annots [1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R 1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R 1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R 1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R 1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R 1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R 1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R 1878 0 R 1879 0 R 1880 0 R 1881 0 R 1882 0 R 1883 0 R 1884 0 R 1885 0 R 1886 0 R 1887 0 R 1888 0 R 1889 0 R 1890 0 R 1891 0 R 1892 0 R 1893 0 R 1894 0 R 1895 0 R 1896 0 R 1897 0 R 1898 0 R 1899 0 R 1900 0 R 1901 0 R 1902 0 R 1903 0 R 1904 0 R 1905 0 R 1906 0 R 1907 0 R 1908 0 R 1909 0 R 1910 0 R 1911 0 R 1912 0 R 1913 0 R 1914 0 R 1915 0 R 1916 0 R 1917 0 R 1918 0 R 1919 0 R 1920 0 R 1921 0 R 1922 0 R 1923 0 R 1924 0 R 1925 0 R 1926 0 R 1927 0 R 1928 0 R 1929 0 R 1930 0 R 1931 0 R 1932 0 R 1933 0 R 1934 0 R]
 >>
 endobj
 11 0 obj
-<< /Length 40056
+<< /Length 39923
 >>
 stream
 q
@@ -1964,7 +1975,7 @@ ET
 BT
 79.9485 794.6759999999999 Td
 /F3.0 10.5 Tf
-<4d65737361676553657276696365> Tj
+<53657373696f6e4d616e6167656d656e7453657276696365> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1973,9 +1984,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 794.6759999999999 Td
+207.92674999999997 794.6759999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1993,7 +2004,7 @@ ET
 BT
 535.3009999999999 794.6759999999999 Td
 /F1.0 10.5 Tf
-<3630> Tj
+<3631> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2015,7 +2026,7 @@ ET
 BT
 79.9485 776.1959999999999 Td
 /F3.0 10.5 Tf
-<53657373696f6e4d616e6167656d656e7453657276696365> Tj
+<5469746c6553657276696365> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2024,9 +2035,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-207.92674999999997 776.1959999999999 Td
+143.79274999999996 776.1959999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2044,7 +2055,7 @@ ET
 BT
 535.3009999999999 776.1959999999999 Td
 /F1.0 10.5 Tf
-<3631> Tj
+<3632> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2066,7 +2077,7 @@ ET
 BT
 79.9485 757.7159999999999 Td
 /F3.0 10.5 Tf
-<5469746c6553657276696365> Tj
+<5472616e73616374696f6e5365727669636533> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2075,9 +2086,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.79274999999996 757.7159999999999 Td
+181.20424999999994 757.7159999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2095,7 +2106,7 @@ ET
 BT
 535.3009999999999 757.7159999999999 Td
 /F1.0 10.5 Tf
-<3632> Tj
+<3633> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2117,7 +2128,7 @@ ET
 BT
 79.9485 739.2359999999999 Td
 /F3.0 10.5 Tf
-<5472616e73616374696f6e5365727669636533> Tj
+<57726170706572466163746f7279> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2126,9 +2137,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-181.20424999999994 739.2359999999999 Td
+154.48174999999992 739.2359999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2146,57 +2157,6 @@ ET
 BT
 535.3009999999999 739.2359999999999 Td
 /F1.0 10.5 Tf
-<3633> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-60.24 720.7559999999999 Td
-/F1.0 10.5 Tf
-<352e31302e20> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-85.81800000000001 720.7559999999999 Td
-/F3.0 10.5 Tf
-<57726170706572466163746f7279> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-165.17074999999994 720.7559999999999 Td
-/F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-
-BT
-533.94125 720.7559999999999 Td
-/F1.0 5.25 Tf
-<ca> Tj
-ET
-
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-535.3009999999999 720.7559999999999 Td
-/F1.0 10.5 Tf
 <3635> Tj
 ET
 
@@ -2206,7 +2166,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 702.2759999999998 Td
+48.24 720.7559999999999 Td
 /F1.0 10.5 Tf
 [<362e204170706c69636174696f6e204c61> 20.01953125 <79657220535049>] TJ
 ET
@@ -2217,7 +2177,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-170.51524999999992 702.2759999999998 Td
+170.51524999999992 720.7559999999999 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2226,7 +2186,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 702.2759999999998 Td
+533.94125 720.7559999999999 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2235,7 +2195,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 702.2759999999998 Td
+535.3009999999999 720.7559999999999 Td
 /F1.0 10.5 Tf
 <3639> Tj
 ET
@@ -2246,7 +2206,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 683.7959999999998 Td
+60.24 702.2759999999998 Td
 /F1.0 10.5 Tf
 <362e312e20> Tj
 ET
@@ -2257,7 +2217,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 683.7959999999998 Td
+79.9485 702.2759999999998 Td
 /F3.0 10.5 Tf
 <4261636b67726f756e64436f6d6d616e6453657276696365> Tj
 ET
@@ -2268,7 +2228,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-207.92674999999997 683.7959999999998 Td
+207.92674999999997 702.2759999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2277,7 +2237,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 683.7959999999998 Td
+533.94125 702.2759999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2286,7 +2246,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 683.7959999999998 Td
+535.3009999999999 702.2759999999998 Td
 /F1.0 10.5 Tf
 <3730> Tj
 ET
@@ -2297,7 +2257,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 665.3159999999998 Td
+60.24 683.7959999999998 Td
 /F1.0 10.5 Tf
 <362e322e20> Tj
 ET
@@ -2308,7 +2268,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 665.3159999999998 Td
+79.9485 683.7959999999998 Td
 /F3.0 10.5 Tf
 <436f6d6d616e6453657276696365> Tj
 ET
@@ -2319,7 +2279,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 665.3159999999998 Td
+154.48174999999992 683.7959999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2328,7 +2288,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 665.3159999999998 Td
+533.94125 683.7959999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2337,7 +2297,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 665.3159999999998 Td
+535.3009999999999 683.7959999999998 Td
 /F1.0 10.5 Tf
 <3732> Tj
 ET
@@ -2348,7 +2308,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 646.8359999999998 Td
+60.24 665.3159999999998 Td
 /F1.0 10.5 Tf
 <362e332e20> Tj
 ET
@@ -2359,7 +2319,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 646.8359999999998 Td
+79.9485 665.3159999999998 Td
 /F3.0 10.5 Tf
 <486f6d655061676550726f766964657253657276696365> Tj
 ET
@@ -2370,7 +2330,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-202.58224999999993 646.8359999999998 Td
+202.58224999999993 665.3159999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2379,7 +2339,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 646.8359999999998 Td
+533.94125 665.3159999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2388,7 +2348,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 646.8359999999998 Td
+535.3009999999999 665.3159999999998 Td
 /F1.0 10.5 Tf
 <3734> Tj
 ET
@@ -2399,7 +2359,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 628.3559999999998 Td
+48.24 646.8359999999998 Td
 /F1.0 10.5 Tf
 <372e20436f72652f446f6d61696e20415049> Tj
 ET
@@ -2410,7 +2370,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-149.13724999999994 628.3559999999998 Td
+149.13724999999994 646.8359999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2419,7 +2379,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 628.3559999999998 Td
+533.94125 646.8359999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2428,7 +2388,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 628.3559999999998 Td
+535.3009999999999 646.8359999999998 Td
 /F1.0 10.5 Tf
 <3736> Tj
 ET
@@ -2439,7 +2399,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 609.8759999999997 Td
+60.24 628.3559999999998 Td
 /F1.0 10.5 Tf
 <372e312e20> Tj
 ET
@@ -2450,7 +2410,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 609.8759999999997 Td
+79.9485 628.3559999999998 Td
 /F3.0 10.5 Tf
 <436c6f636b53657276696365> Tj
 ET
@@ -2461,7 +2421,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.79274999999996 609.8759999999997 Td
+143.79274999999996 628.3559999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2470,7 +2430,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 609.8759999999997 Td
+533.94125 628.3559999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2479,7 +2439,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 609.8759999999997 Td
+535.3009999999999 628.3559999999998 Td
 /F1.0 10.5 Tf
 <3738> Tj
 ET
@@ -2490,7 +2450,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 591.3959999999997 Td
+60.24 609.8759999999997 Td
 /F1.0 10.5 Tf
 <372e322e20> Tj
 ET
@@ -2501,7 +2461,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 591.3959999999997 Td
+79.9485 609.8759999999997 Td
 /F3.0 10.5 Tf
 <436f6e66696775726174696f6e53657276696365> Tj
 ET
@@ -2512,7 +2472,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-186.54874999999993 591.3959999999997 Td
+186.54874999999993 609.8759999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2521,7 +2481,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 591.3959999999997 Td
+533.94125 609.8759999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2530,7 +2490,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 591.3959999999997 Td
+535.3009999999999 609.8759999999997 Td
 /F1.0 10.5 Tf
 <3739> Tj
 ET
@@ -2541,7 +2501,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 572.9159999999997 Td
+60.24 591.3959999999997 Td
 /F1.0 10.5 Tf
 <372e332e20> Tj
 ET
@@ -2552,7 +2512,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 572.9159999999997 Td
+79.9485 591.3959999999997 Td
 /F3.0 10.5 Tf
 <446f6d61696e4f626a656374436f6e7461696e6572> Tj
 ET
@@ -2563,7 +2523,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-191.89324999999997 572.9159999999997 Td
+191.89324999999997 591.3959999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2572,7 +2532,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 572.9159999999997 Td
+533.94125 591.3959999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2581,7 +2541,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 572.9159999999997 Td
+535.3009999999999 591.3959999999997 Td
 /F1.0 10.5 Tf
 <3831> Tj
 ET
@@ -2592,7 +2552,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 554.4359999999997 Td
+60.24 572.9159999999997 Td
 /F1.0 10.5 Tf
 <372e342e20> Tj
 ET
@@ -2603,7 +2563,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 554.4359999999997 Td
+79.9485 572.9159999999997 Td
 /F3.0 10.5 Tf
 <4576656e7442757353657276696365> Tj
 ET
@@ -2614,7 +2574,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 554.4359999999997 Td
+159.82624999999996 572.9159999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2623,7 +2583,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 554.4359999999997 Td
+533.94125 572.9159999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2632,7 +2592,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 554.4359999999997 Td
+535.3009999999999 572.9159999999997 Td
 /F1.0 10.5 Tf
 <3930> Tj
 ET
@@ -2643,7 +2603,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 535.9559999999997 Td
+60.24 554.4359999999997 Td
 /F1.0 10.5 Tf
 <372e352e20> Tj
 ET
@@ -2654,7 +2614,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 535.9559999999997 Td
+79.9485 554.4359999999997 Td
 /F3.0 10.5 Tf
 <466163746f727953657276696365> Tj
 ET
@@ -2665,7 +2625,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 535.9559999999997 Td
+154.48174999999992 554.4359999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2674,7 +2634,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 535.9559999999997 Td
+533.94125 554.4359999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2683,7 +2643,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 535.9559999999997 Td
+535.3009999999999 554.4359999999997 Td
 /F1.0 10.5 Tf
 <3938> Tj
 ET
@@ -2694,7 +2654,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 517.4759999999997 Td
+60.24 535.9559999999997 Td
 /F1.0 10.5 Tf
 <372e362e20> Tj
 ET
@@ -2705,7 +2665,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 517.4759999999997 Td
+79.9485 535.9559999999997 Td
 /F3.0 10.5 Tf
 <53637261746368706164> Tj
 ET
@@ -2716,7 +2676,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 517.4759999999997 Td
+138.44824999999992 535.9559999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2725,7 +2685,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 517.4759999999997 Td
+533.94125 535.9559999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2734,7 +2694,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 517.4759999999997 Td
+535.3009999999999 535.9559999999997 Td
 /F1.0 10.5 Tf
 <3939> Tj
 ET
@@ -2745,7 +2705,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 498.9959999999997 Td
+60.24 517.4759999999997 Td
 /F1.0 10.5 Tf
 <372e372e20> Tj
 ET
@@ -2756,7 +2716,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 498.9959999999997 Td
+79.9485 517.4759999999997 Td
 /F3.0 10.5 Tf
 <5573657253657276696365> Tj
 ET
@@ -2767,7 +2727,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.26774999999992 498.9959999999997 Td
+143.26774999999992 517.4759999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2776,7 +2736,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 498.9959999999997 Td
+528.07175 517.4759999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2785,7 +2745,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 498.9959999999997 Td
+529.4314999999999 517.4759999999997 Td
 /F1.0 10.5 Tf
 <313031> Tj
 ET
@@ -2796,7 +2756,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 480.5159999999997 Td
+48.24 498.9959999999997 Td
 /F1.0 10.5 Tf
 [<382e20496e74656772> 20.01953125 <6174696f6e20415049>] TJ
 ET
@@ -2807,7 +2767,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-137.92324999999994 480.5159999999997 Td
+137.92324999999994 498.9959999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2816,7 +2776,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 480.5159999999997 Td
+528.07175 498.9959999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2825,7 +2785,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 480.5159999999997 Td
+529.4314999999999 498.9959999999997 Td
 /F1.0 10.5 Tf
 <313033> Tj
 ET
@@ -2836,7 +2796,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 462.03599999999966 Td
+60.24 480.5159999999997 Td
 /F1.0 10.5 Tf
 <382e312e20> Tj
 ET
@@ -2847,7 +2807,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 462.03599999999966 Td
+79.9485 480.5159999999997 Td
 /F3.0 10.5 Tf
 <426f6f6b6d61726b5365727669636532> Tj
 ET
@@ -2858,7 +2818,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-164.6457499999999 462.03599999999966 Td
+164.6457499999999 480.5159999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2867,7 +2827,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 462.03599999999966 Td
+528.07175 480.5159999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2876,7 +2836,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 462.03599999999966 Td
+529.4314999999999 480.5159999999997 Td
 /F1.0 10.5 Tf
 <313034> Tj
 ET
@@ -2887,7 +2847,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 443.55599999999964 Td
+60.24 462.03599999999966 Td
 /F1.0 10.5 Tf
 <382e322e20> Tj
 ET
@@ -2898,7 +2858,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 443.55599999999964 Td
+79.9485 462.03599999999966 Td
 /F3.0 10.5 Tf
 <456d61696c53657276696365> Tj
 ET
@@ -2909,7 +2869,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-148.6122499999999 443.55599999999964 Td
+148.6122499999999 462.03599999999966 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2918,7 +2878,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 443.55599999999964 Td
+528.07175 462.03599999999966 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2927,7 +2887,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 443.55599999999964 Td
+529.4314999999999 462.03599999999966 Td
 /F1.0 10.5 Tf
 <313036> Tj
 ET
@@ -2938,7 +2898,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 425.0759999999996 Td
+60.24 443.55599999999964 Td
 /F1.0 10.5 Tf
 <382e332e20> Tj
 ET
@@ -2949,7 +2909,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 425.0759999999996 Td
+79.9485 443.55599999999964 Td
 /F3.0 10.5 Tf
 <4a61786253657276696365> Tj
 ET
@@ -2960,7 +2920,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.26774999999992 425.0759999999996 Td
+143.26774999999992 443.55599999999964 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2969,7 +2929,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 425.0759999999996 Td
+528.07175 443.55599999999964 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2978,7 +2938,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 425.0759999999996 Td
+529.4314999999999 443.55599999999964 Td
 /F1.0 10.5 Tf
 <313130> Tj
 ET
@@ -2989,7 +2949,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 406.5959999999996 Td
+60.24 425.0759999999996 Td
 /F1.0 10.5 Tf
 <382e342e20> Tj
 ET
@@ -3000,7 +2960,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 406.5959999999996 Td
+79.9485 425.0759999999996 Td
 /F3.0 10.5 Tf
 <4d656d656e746f53657276696365> Tj
 ET
@@ -3011,7 +2971,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-153.4485 406.5959999999996 Td
+153.4485 425.0759999999996 Td
 /F1.0 10.5 Tf
 <20286465707265636174656429> Tj
 ET
@@ -3022,7 +2982,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-223.43524999999994 406.5959999999996 Td
+223.43524999999994 425.0759999999996 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3031,7 +2991,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 406.5959999999996 Td
+528.07175 425.0759999999996 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3040,7 +3000,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 406.5959999999996 Td
+529.4314999999999 425.0759999999996 Td
 /F1.0 10.5 Tf
 <313131> Tj
 ET
@@ -3051,7 +3011,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 388.1159999999996 Td
+60.24 406.5959999999996 Td
 /F1.0 10.5 Tf
 <382e352e20> Tj
 ET
@@ -3062,7 +3022,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 388.1159999999996 Td
+79.9485 406.5959999999996 Td
 /F3.0 10.5 Tf
 <586d6c536e617073686f7453657276696365> Tj
 ET
@@ -3073,7 +3033,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.33474999999993 388.1159999999996 Td
+175.33474999999993 406.5959999999996 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3082,7 +3042,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 388.1159999999996 Td
+528.07175 406.5959999999996 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3091,7 +3051,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 388.1159999999996 Td
+529.4314999999999 406.5959999999996 Td
 /F1.0 10.5 Tf
 <313133> Tj
 ET
@@ -3102,7 +3062,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 369.63599999999957 Td
+48.24 388.1159999999996 Td
 /F1.0 10.5 Tf
 <392e204d6574616461746120415049> Tj
 ET
@@ -3113,7 +3073,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-132.5787499999999 369.63599999999957 Td
+132.5787499999999 388.1159999999996 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3122,7 +3082,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 369.63599999999957 Td
+528.07175 388.1159999999996 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3131,7 +3091,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 369.63599999999957 Td
+529.4314999999999 388.1159999999996 Td
 /F1.0 10.5 Tf
 <313138> Tj
 ET
@@ -3142,7 +3102,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 351.15599999999955 Td
+60.24 369.63599999999957 Td
 /F1.0 10.5 Tf
 <392e312e20> Tj
 ET
@@ -3153,7 +3113,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 351.15599999999955 Td
+79.9485 369.63599999999957 Td
 /F3.0 10.5 Tf
 <4170706c69636174696f6e466561747572655265706f7369746f7279> Tj
 ET
@@ -3164,7 +3124,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-228.77974999999992 351.15599999999955 Td
+228.77974999999992 369.63599999999957 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3173,7 +3133,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 351.15599999999955 Td
+528.07175 369.63599999999957 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3182,7 +3142,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 351.15599999999955 Td
+529.4314999999999 369.63599999999957 Td
 /F1.0 10.5 Tf
 <313139> Tj
 ET
@@ -3193,7 +3153,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 332.67599999999953 Td
+60.24 351.15599999999955 Td
 /F1.0 10.5 Tf
 <392e322e20> Tj
 ET
@@ -3204,7 +3164,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 332.67599999999953 Td
+79.9485 351.15599999999955 Td
 /F3.0 10.5 Tf
 <4c61796f757453657276696365> Tj
 ET
@@ -3215,7 +3175,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-153.95674999999994 332.67599999999953 Td
+153.95674999999994 351.15599999999955 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3224,7 +3184,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 332.67599999999953 Td
+528.07175 351.15599999999955 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3233,7 +3193,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 332.67599999999953 Td
+529.4314999999999 351.15599999999955 Td
 /F1.0 10.5 Tf
 <313231> Tj
 ET
@@ -3244,7 +3204,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 314.1959999999995 Td
+60.24 332.67599999999953 Td
 /F1.0 10.5 Tf
 <392e332e20> Tj
 ET
@@ -3255,9 +3215,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 314.1959999999995 Td
+79.9485 332.67599999999953 Td
 /F3.0 10.5 Tf
-<4d6574614d6f64656c5365727669636534> Tj
+<4d6574614d6f64656c5365727669636535> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3266,7 +3226,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-169.99024999999995 314.1959999999995 Td
+169.99024999999995 332.67599999999953 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3275,7 +3235,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 314.1959999999995 Td
+528.07175 332.67599999999953 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3284,7 +3244,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 314.1959999999995 Td
+529.4314999999999 332.67599999999953 Td
 /F1.0 10.5 Tf
 <313232> Tj
 ET
@@ -3295,7 +3255,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 295.7159999999995 Td
+60.24 314.1959999999995 Td
 /F1.0 10.5 Tf
 <392e342e20> Tj
 ET
@@ -3306,7 +3266,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 295.7159999999995 Td
+79.9485 314.1959999999995 Td
 /F3.0 10.5 Tf
 <53657276696365526567697374727932> Tj
 ET
@@ -3317,7 +3277,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-164.6457499999999 295.7159999999995 Td
+164.6457499999999 314.1959999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3326,7 +3286,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 295.7159999999995 Td
+528.07175 314.1959999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3335,7 +3295,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 295.7159999999995 Td
+529.4314999999999 314.1959999999995 Td
 /F1.0 10.5 Tf
 <313234> Tj
 ET
@@ -3346,7 +3306,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 277.2359999999995 Td
+60.24 295.7159999999995 Td
 /F1.0 10.5 Tf
 <392e352e20> Tj
 ET
@@ -3357,7 +3317,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 277.2359999999995 Td
+79.9485 295.7159999999995 Td
 /F3.0 10.5 Tf
 <5377616767657253657276696365> Tj
 ET
@@ -3368,7 +3328,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.30124999999992 277.2359999999995 Td
+159.30124999999992 295.7159999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3377,7 +3337,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 277.2359999999995 Td
+528.07175 295.7159999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3386,7 +3346,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 277.2359999999995 Td
+529.4314999999999 295.7159999999995 Td
 /F1.0 10.5 Tf
 <313235> Tj
 ET
@@ -3397,7 +3357,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 258.75599999999946 Td
+48.24 277.2359999999995 Td
 /F1.0 10.5 Tf
 [<31302e2054> 29.78515625 <657374696e67>] TJ
 ET
@@ -3408,7 +3368,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-105.85624999999993 258.75599999999946 Td
+105.85624999999993 277.2359999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3417,7 +3377,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 258.75599999999946 Td
+528.07175 277.2359999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3426,7 +3386,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 258.75599999999946 Td
+529.4314999999999 277.2359999999995 Td
 /F1.0 10.5 Tf
 <313237> Tj
 ET
@@ -3437,7 +3397,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 240.27599999999947 Td
+60.24 258.75599999999946 Td
 /F1.0 10.5 Tf
 <31302e312e20> Tj
 ET
@@ -3448,7 +3408,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 240.27599999999947 Td
+85.81800000000001 258.75599999999946 Td
 /F3.0 10.5 Tf
 <457865637574696f6e506172616d657465727353657276696365> Tj
 ET
@@ -3459,7 +3419,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-223.43524999999994 240.27599999999947 Td
+223.43524999999994 258.75599999999946 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3468,7 +3428,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 240.27599999999947 Td
+528.07175 258.75599999999946 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3477,7 +3437,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 240.27599999999947 Td
+529.4314999999999 258.75599999999946 Td
 /F1.0 10.5 Tf
 <313238> Tj
 ET
@@ -3488,7 +3448,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 221.79599999999948 Td
+60.24 240.27599999999947 Td
 /F1.0 10.5 Tf
 <31302e322e20> Tj
 ET
@@ -3499,7 +3459,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 221.79599999999948 Td
+85.81800000000001 240.27599999999947 Td
 /F3.0 10.5 Tf
 <4669787475726553637269707473> Tj
 ET
@@ -3510,7 +3470,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-164.6457499999999 221.79599999999948 Td
+164.6457499999999 240.27599999999947 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3519,7 +3479,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 221.79599999999948 Td
+528.07175 240.27599999999947 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3528,7 +3488,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 221.79599999999948 Td
+529.4314999999999 240.27599999999947 Td
 /F1.0 10.5 Tf
 <313238> Tj
 ET
@@ -3539,7 +3499,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 203.3159999999995 Td
+60.24 221.79599999999948 Td
 /F1.0 10.5 Tf
 <31302e332e20> Tj
 ET
@@ -3550,7 +3510,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 203.3159999999995 Td
+85.81800000000001 221.79599999999948 Td
 /F3.0 10.5 Tf
 <466978747572655363726970747353706563> Tj
 ET
@@ -3561,7 +3521,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-180.318 203.3159999999995 Td
+180.318 221.79599999999948 Td
 /F4.0 10.5 Tf
 <d5> Tj
 ET
@@ -3572,7 +3532,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-183.342 203.3159999999995 Td
+183.342 221.79599999999948 Td
 /F3.0 10.5 Tf
 <6e50726f7669646572> Tj
 ET
@@ -3583,7 +3543,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-239.46874999999994 203.3159999999995 Td
+239.46874999999994 221.79599999999948 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3592,7 +3552,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 203.3159999999995 Td
+528.07175 221.79599999999948 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3601,7 +3561,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 203.3159999999995 Td
+529.4314999999999 221.79599999999948 Td
 /F1.0 10.5 Tf
 <313239> Tj
 ET
@@ -3612,7 +3572,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 184.8359999999995 Td
+60.24 203.3159999999995 Td
 /F1.0 10.5 Tf
 <31302e342e20> Tj
 ET
@@ -3623,7 +3583,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 184.8359999999995 Td
+85.81800000000001 203.3159999999995 Td
 /F3.0 10.5 Tf
 <5375646f53657276696365> Tj
 ET
@@ -3634,7 +3594,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-148.6122499999999 184.8359999999995 Td
+148.6122499999999 203.3159999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3643,7 +3603,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 184.8359999999995 Td
+528.07175 203.3159999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3652,7 +3612,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 184.8359999999995 Td
+529.4314999999999 203.3159999999995 Td
 /F1.0 10.5 Tf
 <313330> Tj
 ET
@@ -3663,7 +3623,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 166.3559999999995 Td
+60.24 184.8359999999995 Td
 /F1.0 10.5 Tf
 <31302e352e20> Tj
 ET
@@ -3674,7 +3634,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 166.3559999999995 Td
+85.81800000000001 184.8359999999995 Td
 /F3.0 10.5 Tf
 <5377697463685573657253657276696365> Tj
 ET
@@ -3685,7 +3645,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.068 166.3559999999995 Td
+175.068 184.8359999999995 Td
 /F1.0 10.5 Tf
 <20286465707265636174656429> Tj
 ET
@@ -3696,7 +3656,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-244.81324999999993 166.3559999999995 Td
+244.81324999999993 184.8359999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3705,7 +3665,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 166.3559999999995 Td
+528.07175 184.8359999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3714,7 +3674,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 166.3559999999995 Td
+529.4314999999999 184.8359999999995 Td
 /F1.0 10.5 Tf
 <313333> Tj
 ET
@@ -3725,7 +3685,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 147.87599999999952 Td
+48.24 166.3559999999995 Td
 /F1.0 10.5 Tf
 [<31312e2050657273697374656e6365204c61> 20.01953125 <79657220415049>] TJ
 ET
@@ -3736,7 +3696,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.33474999999993 147.87599999999952 Td
+175.33474999999993 166.3559999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3745,7 +3705,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 147.87599999999952 Td
+528.07175 166.3559999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3754,7 +3714,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 147.87599999999952 Td
+529.4314999999999 166.3559999999995 Td
 /F1.0 10.5 Tf
 <313334> Tj
 ET
@@ -3765,7 +3725,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 129.39599999999953 Td
+60.24 147.87599999999952 Td
 /F1.0 10.5 Tf
 <31312e312e20> Tj
 ET
@@ -3776,7 +3736,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 129.39599999999953 Td
+85.81800000000001 147.87599999999952 Td
 /F3.0 10.5 Tf
 <4873716c44624d616e616765724d656e75> Tj
 ET
@@ -3787,7 +3747,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-180.6792499999999 129.39599999999953 Td
+180.6792499999999 147.87599999999952 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3796,7 +3756,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 129.39599999999953 Td
+528.07175 147.87599999999952 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3805,7 +3765,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 129.39599999999953 Td
+529.4314999999999 147.87599999999952 Td
 /F1.0 10.5 Tf
 <313334> Tj
 ET
@@ -3816,7 +3776,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 110.91599999999954 Td
+60.24 129.39599999999953 Td
 /F1.0 10.5 Tf
 <31312e322e20> Tj
 ET
@@ -3827,7 +3787,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 110.91599999999954 Td
+85.81800000000001 129.39599999999953 Td
 /F3.0 10.5 Tf
 <497369734a646f537570706f7274> Tj
 ET
@@ -3838,7 +3798,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-164.6457499999999 110.91599999999954 Td
+164.6457499999999 129.39599999999953 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3847,7 +3807,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 110.91599999999954 Td
+528.07175 129.39599999999953 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3856,7 +3816,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 110.91599999999954 Td
+529.4314999999999 129.39599999999953 Td
 /F1.0 10.5 Tf
 <313335> Tj
 ET
@@ -3867,7 +3827,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 92.43599999999955 Td
+60.24 110.91599999999954 Td
 /F1.0 10.5 Tf
 <31312e332e20> Tj
 ET
@@ -3878,7 +3838,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 92.43599999999955 Td
+85.81800000000001 110.91599999999954 Td
 /F3.0 10.5 Tf
 <4d65747269637353657276696365> Tj
 ET
@@ -3889,7 +3849,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-164.6457499999999 92.43599999999955 Td
+164.6457499999999 110.91599999999954 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3898,7 +3858,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 92.43599999999955 Td
+528.07175 110.91599999999954 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3907,7 +3867,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 92.43599999999955 Td
+529.4314999999999 110.91599999999954 Td
 /F1.0 10.5 Tf
 <313430> Tj
 ET
@@ -3918,7 +3878,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 73.95599999999956 Td
+60.24 92.43599999999955 Td
 /F1.0 10.5 Tf
 <31312e342e20> Tj
 ET
@@ -3929,7 +3889,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 73.95599999999956 Td
+85.81800000000001 92.43599999999955 Td
 /F3.0 10.5 Tf
 <5175657279526573756c74734361636865> Tj
 ET
@@ -3940,7 +3900,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-180.6792499999999 73.95599999999956 Td
+180.6792499999999 92.43599999999955 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3949,7 +3909,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 73.95599999999956 Td
+528.07175 92.43599999999955 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3958,7 +3918,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 73.95599999999956 Td
+529.4314999999999 92.43599999999955 Td
 /F1.0 10.5 Tf
 <313431> Tj
 ET
@@ -3969,7 +3929,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 55.47599999999957 Td
+60.24 73.95599999999956 Td
 /F1.0 10.5 Tf
 <31312e352e20> Tj
 ET
@@ -3980,7 +3940,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 55.47599999999957 Td
+85.81800000000001 73.95599999999956 Td
 /F3.0 10.5 Tf
 <5265706f7369746f727953657276696365> Tj
 ET
@@ -3991,7 +3951,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-180.6792499999999 55.47599999999957 Td
+180.6792499999999 73.95599999999956 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4000,7 +3960,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 55.47599999999957 Td
+528.07175 73.95599999999956 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4009,43 +3969,18 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 55.47599999999957 Td
+529.4314999999999 73.95599999999956 Td
 /F1.0 10.5 Tf
 <313434> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-Q
-
-endstream
-endobj
-12 0 obj
-<< /Type /Page
-/Parent 3 0 R
-/MediaBox [0 0 595.28 841.89]
-/Contents 11 0 R
-/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Font << /F1.0 8 0 R
-/F3.0 43 0 R
-/F4.0 58 0 R
->>
->>
-/Annots [1922 0 R 1923 0 R 1924 0 R 1925 0 R 1926 0 R 1927 0 R 1928 0 R 1929 0 R 1930 0 R 1931 0 R 1932 0 R 1933 0 R 1934 0 R 1935 0 R 1936 0 R 1937 0 R 1938 0 R 1939 0 R 1940 0 R 1941 0 R 1942 0 R 1943 0 R 1944 0 R 1945 0 R 1946 0 R 1947 0 R 1948 0 R 1949 0 R 1950 0 R 1951 0 R 1952 0 R 1953 0 R 1954 0 R 1955 0 R 1956 0 R 1957 0 R 1958 0 R 1959 0 R 1960 0 R 1961 0 R 1962 0 R 1963 0 R 1964 0 R 1965 0 R 1966 0 R 1967 0 R 1968 0 R 1969 0 R 1970 0 R 1971 0 R 1972 0 R 1973 0 R 1974 0 R 1975 0 R 1976 0 R 1977 0 R 1978 0 R 1979 0 R 1980 0 R 1981 0 R 1982 0 R 1983 0 R 1984 0 R 1985 0 R 1986 0 R 1987 0 R 1988 0 R 1989 0 R 1990 0 R 1991 0 R 1992 0 R 1993 0 R 1994 0 R 1995 0 R 1996 0 R 1997 0 R 1998 0 R 1999 0 R 2000 0 R 2001 0 R 2002 0 R 2003 0 R 2004 0 R 2005 0 R 2006 0 R 2007 0 R 2008 0 R 2009 0 R 2010 0 R 2011 0 R 2012 0 R 2013 0 R 2014 0 R 2015 0 R 2016 0 R 2017 0 R 2018 0 R 2019 0 R 2020 0 R 2021 0 R 2022 0 R 2023 0 R 2024 0 R 2025 0 R 2026 0 R 2027 0 R 2028 0 R 2029 0 R 2030 0 R 2031 0 
 R 2032 0 R 2033 0 R 2034 0 R 2035 0 R 2036 0 R 2037 0 R 2038 0 R 2039 0 R 2040 0 R 2041 0 R 2042 0 R]
->>
-endobj
-13 0 obj
-<< /Length 8982
->>
-stream
-q
-/DeviceRGB cs
 0.200 0.200 0.200 scn
-/DeviceRGB CS
 0.200 0.200 0.200 SCN
 
 BT
-48.24 794.6759999999999 Td
+48.24 55.47599999999957 Td
 /F1.0 10.5 Tf
 [<31322e2050657273697374656e6365204c61> 20.01953125 <79657220535049>] TJ
 ET
@@ -4056,7 +3991,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.33474999999993 794.6759999999999 Td
+175.33474999999993 55.47599999999957 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4065,7 +4000,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 794.6759999999999 Td
+528.07175 55.47599999999957 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4074,18 +4009,43 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 794.6759999999999 Td
+529.4314999999999 55.47599999999957 Td
 /F1.0 10.5 Tf
 <313531> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+Q
+
+endstream
+endobj
+12 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 11 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F3.0 43 0 R
+/F4.0 58 0 R
+>>
+>>
+/Annots [1935 0 R 1936 0 R 1937 0 R 1938 0 R 1939 0 R 1940 0 R 1941 0 R 1942 0 R 1943 0 R 1944 0 R 1945 0 R 1946 0 R 1947 0 R 1948 0 R 1949 0 R 1950 0 R 1951 0 R 1952 0 R 1953 0 R 1954 0 R 1955 0 R 1956 0 R 1957 0 R 1958 0 R 1959 0 R 1960 0 R 1961 0 R 1962 0 R 1963 0 R 1964 0 R 1965 0 R 1966 0 R 1967 0 R 1968 0 R 1969 0 R 1970 0 R 1971 0 R 1972 0 R 1973 0 R 1974 0 R 1975 0 R 1976 0 R 1977 0 R 1978 0 R 1979 0 R 1980 0 R 1981 0 R 1982 0 R 1983 0 R 1984 0 R 1985 0 R 1986 0 R 1987 0 R 1988 0 R 1989 0 R 1990 0 R 1991 0 R 1992 0 R 1993 0 R 1994 0 R 1995 0 R 1996 0 R 1997 0 R 1998 0 R 1999 0 R 2000 0 R 2001 0 R 2002 0 R 2003 0 R 2004 0 R 2005 0 R 2006 0 R 2007 0 R 2008 0 R 2009 0 R 2010 0 R 2011 0 R 2012 0 R 2013 0 R 2014 0 R 2015 0 R 2016 0 R 2017 0 R 2018 0 R 2019 0 R 2020 0 R 2021 0 R 2022 0 R 2023 0 R 2024 0 R 2025 0 R 2026 0 R 2027 0 R 2028 0 R 2029 0 R 2030 0 R 2031 0 R 2032 0 R 2033 0 R 2034 0 R 2035 0 R 2036 0 R 2037 0 R 2038 0 R 2039 0 R 2040 0 R 2041 0 R 2042 0 R 2043 0 R 2044 0 
 R 2045 0 R 2046 0 R 2047 0 R 2048 0 R 2049 0 R 2050 0 R 2051 0 R 2052 0 R 2053 0 R 2054 0 R]
+>>
+endobj
+13 0 obj
+<< /Length 8130
+>>
+stream
+q
+/DeviceRGB cs
 0.200 0.200 0.200 scn
+/DeviceRGB CS
 0.200 0.200 0.200 SCN
 
 BT
-60.24 776.1959999999999 Td
+60.24 794.6759999999999 Td
 /F1.0 10.5 Tf
 <31322e312e20> Tj
 ET
@@ -4096,7 +4056,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 776.1959999999999 Td
+85.81800000000001 794.6759999999999 Td
 /F3.0 10.5 Tf
 <4175646974657253657276696365> Tj
 ET
@@ -4107,7 +4067,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-164.6457499999999 776.1959999999999 Td
+164.6457499999999 794.6759999999999 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4116,7 +4076,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 776.1959999999999 Td
+528.07175 794.6759999999999 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4125,7 +4085,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 776.1959999999999 Td
+529.4314999999999 794.6759999999999 Td
 /F1.0 10.5 Tf
 <313532> Tj
 ET
@@ -4136,7 +4096,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 757.7159999999999 Td
+60.24 776.1959999999999 Td
 /F1.0 10.5 Tf
 <31322e322e20> Tj
 ET
@@ -4147,7 +4107,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 757.7159999999999 Td
+85.81800000000001 776.1959999999999 Td
 /F3.0 10.5 Tf
 <4175646974696e675365727669636533> Tj
 ET
@@ -4158,7 +4118,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-169.818 757.7159999999999 Td
+169.818 776.1959999999999 Td
 /F1.0 10.5 Tf
 <20286465707265636174656429> Tj
 ET
@@ -4169,7 +4129,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-239.46874999999994 757.7159999999999 Td
+239.46874999999994 776.1959999999999 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4178,7 +4138,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 757.7159999999999 Td
+528.07175 776.1959999999999 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4187,7 +4147,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 757.7159999999999 Td
+529.4314999999999 776.1959999999999 Td
 /F1.0 10.5 Tf
 <313535> Tj
 ET
@@ -4198,7 +4158,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 739.2359999999999 Td
+60.24 757.7159999999999 Td
 /F1.0 10.5 Tf
 <31322e332e20> Tj
 ET
@@ -4209,7 +4169,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 739.2359999999999 Td
+85.81800000000001 757.7159999999999 Td
 /F3.0 10.5 Tf
 <4576656e7453657269616c697a6572> Tj
 ET
@@ -4220,7 +4180,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-164.568 739.2359999999999 Td
+164.568 757.7159999999999 Td
 /F1.0 10.5 Tf
 <20286465707265636174656429> Tj
 ET
@@ -4231,7 +4191,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-234.12424999999996 739.2359999999999 Td
+234.12424999999996 757.7159999999999 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4240,7 +4200,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 739.2359999999999 Td
+528.07175 757.7159999999999 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4249,7 +4209,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 739.2359999999999 Td
+529.4314999999999 757.7159999999999 Td
 /F1.0 10.5 Tf
 <313536> Tj
 ET
@@ -4260,7 +4220,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 720.7559999999999 Td
+60.24 739.2359999999999 Td
 /F1.0 10.5 Tf
 <31322e342e20> Tj
 ET
@@ -4271,7 +4231,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 720.7559999999999 Td
+85.81800000000001 739.2359999999999 Td
 /F3.0 10.5 Tf
 <5075626c697368657253657276696365> Tj
 ET
@@ -4282,7 +4242,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.33474999999993 720.7559999999999 Td
+175.33474999999993 739.2359999999999 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4291,7 +4251,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 720.7559999999999 Td
+528.07175 739.2359999999999 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4300,7 +4260,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 720.7559999999999 Td
+529.4314999999999 739.2359999999999 Td
 /F1.0 10.5 Tf
 <313538> Tj
 ET
@@ -4311,7 +4271,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 702.2759999999998 Td
+60.24 720.7559999999999 Td
 /F1.0 10.5 Tf
 <31322e352e20> Tj
 ET
@@ -4322,7 +4282,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 702.2759999999998 Td
+85.81800000000001 720.7559999999999 Td
 /F3.0 10.5 Tf
 <5075626c697368696e6753657276696365> Tj
 ET
@@ -4333,7 +4293,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.068 702.2759999999998 Td
+175.068 720.7559999999999 Td
 /F1.0 10.5 Tf
 <20286465707265636174656429> Tj
 ET
@@ -4344,7 +4304,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-244.81324999999993 702.2759999999998 Td
+244.81324999999993 720.7559999999999 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4353,7 +4313,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 702.2759999999998 Td
+528.07175 720.7559999999999 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4362,7 +4322,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 702.2759999999998 Td
+529.4314999999999 720.7559999999999 Td
 /F1.0 10.5 Tf
 <313631> Tj
 ET
@@ -4373,7 +4333,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 683.7959999999998 Td
+60.24 702.2759999999998 Td
 /F1.0 10.5 Tf
 <31322e362e20> Tj
 ET
@@ -4384,7 +4344,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 683.7959999999998 Td
+85.81800000000001 702.2759999999998 Td
 /F3.0 10.5 Tf
 <55736572526567697374726174696f6e53657276696365> Tj
 ET
@@ -4395,7 +4355,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-207.40174999999994 683.7959999999998 Td
+207.40174999999994 702.2759999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4404,7 +4364,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 683.7959999999998 Td
+528.07175 702.2759999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4413,7 +4373,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 683.7959999999998 Td
+529.4314999999999 702.2759999999998 Td
 /F1.0 10.5 Tf
 <313635> Tj
 ET
@@ -4424,7 +4384,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 665.3159999999998 Td
+48.24 683.7959999999998 Td
 /F1.0 10.5 Tf
 [<31332e20426f6f74737472> 20.01953125 <617070696e6720535049>] TJ
 ET
@@ -4435,7 +4395,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.30124999999992 665.3159999999998 Td
+159.30124999999992 683.7959999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4444,7 +4404,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 665.3159999999998 Td
+528.07175 683.7959999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4453,7 +4413,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 665.3159999999998 Td
+529.4314999999999 683.7959999999998 Td
 /F1.0 10.5 Tf
 <313638> Tj
 ET
@@ -4464,7 +4424,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 646.8359999999998 Td
+60.24 665.3159999999998 Td
 /F1.0 10.5 Tf
 <31332e312e20> Tj
 ET
@@ -4475,7 +4435,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 646.8359999999998 Td
+85.81800000000001 665.3159999999998 Td
 /F3.0 10.5 Tf
 <436c617373446973636f766572795365727669636532> Tj
 ET
@@ -4486,7 +4446,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-202.05724999999995 646.8359999999998 Td
+202.05724999999995 665.3159999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -4495,7 +4455,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-528.07175 646.8359999999998 Td
+528.07175 665.3159999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4504,7 +4464,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-529.4314999999999 646.8359999999998 Td
+529.4314999999999 665.3159999999998 Td
 /F1.0 10.5 Tf
 <313638> Tj
 ET
@@ -4525,7 +4485,7 @@ endobj
 /F3.0 43 0 R
 >>
 >>
-/Annots [2043 0 R 2044 0 R 2045 0 R 2046 0 R 2047 0 R 2048 0 R 2049 0 R 2050 0 R 2051 0 R 2052 0 R 2053 0 R 2054 0 R 2055 0 R 2056 0 R 2057 0 R 2058 0 R 2059 0 R 2060 0 R 2061 0 R 2062 0 R 2063 0 R 2064 0 R 2065 0 R 2066 0 R 2067 0 R 2068 0 R 2069 0 R 2070 0 R]
+/Annots [2055 0 R 2056 0 R 2057 0 R 2058 0 R 2059 0 R 2060 0 R 2061 0 R 2062 0 R 2063 0 R 2064 0 R 2065 0 R 2066 0 R 2067 0 R 2068 0 R 2069 0 R 2070 0 R 2071 0 R 2072 0 R 2073 0 R 2074 0 R 2075 0 R 2076 0 R 2077 0 R 2078 0 R 2079 0 R 2080 0 R]
 >>
 endobj
 15 0 obj
@@ -5132,7 +5092,7 @@ endobj
 /Font << /F2.0 20 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R]
@@ -5147,18 +5107,18 @@ endobj
 >>
 endobj
 19 0 obj
-<< /Kids [1521 0 R 1522 0 R]
+<< /Kids [1492 0 R 1493 0 R]
 >>
 endobj
 20 0 obj
 << /Type /Font
 /BaseFont /AAAACJ+NotoSerif-Bold
 /Subtype /TrueType
-/FontDescriptor 2169 0 R
+/FontDescriptor 2178 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2171 0 R
-/ToUnicode 2170 0 R
+/Widths 2180 0 R
+/ToUnicode 2179 0 R
 >>
 endobj
 21 0 obj
@@ -5725,7 +5685,7 @@ endobj
 /F3.0 43 0 R
 >>
 /XObject << /I1 41 0 R
-/Stamp1 2071 0 R
+/Stamp1 2081 0 R
 >>
 >>
 /Annots [42 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R]
@@ -5817,11 +5777,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAACK+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 2173 0 R
+/FontDescriptor 2182 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2175 0 R
-/ToUnicode 2174 0 R
+/Widths 2184 0 R
+/ToUnicode 2183 0 R
 >>
 endobj
 44 0 obj
@@ -7819,7 +7779,7 @@ endobj
 /F3.1 54 0 R
 /F4.0 58 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [52 0 R 55 0 R 56 0 R 57 0 R 59 0 R]
@@ -7846,11 +7806,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAACL+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 2177 0 R
+/FontDescriptor 2186 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2179 0 R
-/ToUnicode 2178 0 R
+/Widths 2188 0 R
+/ToUnicode 2187 0 R
 >>
 endobj
 55 0 obj
@@ -7890,11 +7850,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAACM+mplus-1p-regular
 /Subtype /TrueType
-/FontDescriptor 2181 0 R
+/FontDescriptor 2190 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2183 0 R
-/ToUnicode 2182 0 R
+/Widths 2192 0 R
+/ToUnicode 2191 0 R
 >>
 endobj
 59 0 obj
@@ -9017,7 +8977,7 @@ endobj
 /F5.1 64 0 R
 /F3.1 54 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [63 0 R 65 0 R 66 0 R 67 0 R 68 0 R]
@@ -9041,11 +9001,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAACN+FontAwesome
 /Subtype /TrueType
-/FontDescriptor 2185 0 R
+/FontDescriptor 2194 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2187 0 R
-/ToUnicode 2186 0 R
+/Widths 2196 0 R
+/ToUnicode 2195 0 R
 >>
 endobj
 65 0 obj
@@ -10852,7 +10812,7 @@ endobj
 /F6.0 71 0 R
 /F2.0 20 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [73 0 R 74 0 R]
@@ -10862,11 +10822,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAACO+NotoSerif-Italic
 /Subtype /TrueType
-/FontDescriptor 2189 0 R
+/FontDescriptor 2198 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2191 0 R
-/ToUnicode 2190 0 R
+/Widths 2200 0 R
+/ToUnicode 2199 0 R
 >>
 endobj
 72 0 obj
@@ -12601,7 +12561,7 @@ endobj
 /F4.0 58 0 R
 /F5.1 64 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R]
@@ -13116,7 +13076,7 @@ endobj
 /Font << /F1.0 8 0 R
 /F3.0 43 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [106 0 R 107 0 R]
@@ -15019,7 +14979,7 @@ endobj
 /F6.0 71 0 R
 /F3.0 43 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R 129 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R 135 0 R 136 0 R 137 0 R 138 0 R 139 0 R 140 0 R 141 0 R 142 0 R]
@@ -16555,7 +16515,7 @@ endobj
 /F5.1 64 0 R
 /F3.1 54 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [146 0 R 147 0 R 148 0 R 150 0 R 151 0 R]
@@ -17410,7 +17370,7 @@ endobj
 /Contents 155 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I2 153 0 R
-/Stamp1 2071 0 R
+/Stamp1 2081 0 R
 >>
 /Font << /F1.0 8 0 R
 /F3.0 43 0 R
@@ -18737,7 +18697,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 20 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [164 0 R 167 0 R 168 0 R 169 0 R 170 0 R 172 0 R 173 0 R 174 0 R 176 0 R 177 0 R 178 0 R]
@@ -21672,7 +21632,7 @@ endobj
 /F2.0 20 0 R
 /F3.0 43 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [182 0 R 184 0 R]
@@ -22325,7 +22285,7 @@ endobj
 /Font << /F3.0 43 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 >>
@@ -23583,7 +23543,7 @@ endobj
 /F6.0 71 0 R
 /F3.0 43 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [192 0 R 193 0 R 194 0 R 195 0 R 196 0 R 197 0 R 198 0 R 199 0 R 200 0 R 201 0 R 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R]
@@ -23594,12 +23554,12 @@ endobj
 endobj
 190 0 obj
 << /Limits [(__rgsvc) (__rgsvc_intro_public-api)]
-/Names [(__rgsvc) 17 0 R (__rgsvc_application-layer-api_CommandContext_screencast) 661 0 R (__rgsvc_application-layer-api_InteractionContext_Related-Classes) 729 0 R (__rgsvc_core-domain-api_EventBusService_Configuration) 1095 0 R (__rgsvc_core-domain-api_EventBusService_api-and-implementation) 1060 0 R (__rgsvc_core-domain-api_EventBusService_event-hierarchy) 1083 0 R (__rgsvc_integration-api_JaxbService_api-and-implementation) 1227 0 R (__rgsvc_intro_commands-and-events) 72 0 R (__rgsvc_intro_overriding-the-services) 62 0 R (__rgsvc_intro_public-api) 51 0 R]
+/Names [(__rgsvc) 17 0 R (__rgsvc_application-layer-api_CommandContext_screencast) 671 0 R (__rgsvc_application-layer-api_InteractionContext_Related-Classes) 739 0 R (__rgsvc_core-domain-api_EventBusService_Configuration) 1105 0 R (__rgsvc_core-domain-api_EventBusService_api-and-implementation) 1070 0 R (__rgsvc_core-domain-api_EventBusService_event-hierarchy) 1093 0 R (__rgsvc_integration-api_JaxbService_api-and-implementation) 1236 0 R (__rgsvc_intro_commands-and-events) 72 0 R (__rgsvc_intro_overriding-the-services) 62 0 R (__rgsvc_intro_public-api) 51 0 R]
 >>
 endobj
 191 0 obj
-<< /Limits [(_rgsvc_presentation-layer-api) (_rgsvc_presentation-layer-spi_GridSystemService)]
-/Names [(_rgsvc_presentation-layer-api) 110 0 R (_rgsvc_presentation-layer-api_AcceptHeaderService) 145 0 R (_rgsvc_presentation-layer-spi) 189 0 R (_rgsvc_presentation-layer-spi_ContentMappingService) 288 0 R (_rgsvc_presentation-layer-spi_EmailNotificationService) 300 0 R (_rgsvc_presentation-layer-spi_ErrorReportingService) 317 0 R (_rgsvc_presentation-layer-spi_ExceptionRecognizer) 330 0 R (_rgsvc_presentation-layer-spi_GridLoaderService) 343 0 R (_rgsvc_presentation-layer-spi_GridService) 354 0 R (_rgsvc_presentation-layer-spi_GridSystemService) 381 0 R]
+<< /Limits [(_rgsvc_presentation-layer-api) (_rgsvc_presentation-layer-spi_GridService)]
+/Names [(_rgsvc_presentation-layer-api) 110 0 R (_rgsvc_presentation-layer-api_AcceptHeaderService) 145 0 R (_rgsvc_presentation-layer-spi) 189 0 R (_rgsvc_presentation-layer-spi_ContentMappingService) 288 0 R (_rgsvc_presentation-layer-spi_ContentMappingService_implementations) 296 0 R (_rgsvc_presentation-layer-spi_EmailNotificationService) 307 0 R (_rgsvc_presentation-layer-spi_ErrorReportingService) 322 0 R (_rgsvc_presentation-layer-spi_ExceptionRecognizer) 336 0 R (_rgsvc_presentation-layer-spi_GridLoaderService) 349 0 R (_rgsvc_presentation-layer-spi_GridService) 360 0 R]
 >>
 endobj
 192 0 obj
@@ -25871,7 +25831,7 @@ endobj
 /F3.0 43 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [212 0 R 213 0 R 214 0 R 215 0 R 216 0 R 217 0 R 218 0 R 219 0 R 220 0 R 221 0 R 222 0 R 223 0 R 224 0 R 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R]
@@ -27915,7 +27875,7 @@ endobj
 /F3.0 43 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R]
@@ -29947,7 +29907,7 @@ endobj
 /F6.0 71 0 R
 /F3.1 54 0 R
 >>
-/XObject << /Stamp1 2071 0 R
+/XObject << /Stamp1 2081 0 R
 >>
 >>
 /Annots [278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 289 0 R 290 0 R 291 0 R 292 0 R]
@@ -30114,7 +30074,7 @@ endobj
 [277 0 R /XYZ 0 208.36000000000027 null]
 endobj
 294 0 obj
-<< /Length 41184
+<< /Length 30101
 >>
 stream
 q
@@ -30215,38 +30175,40 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.242 Tw
+
 BT
 48.239999999999995 695.3060000000002 Td
 /F1.0 10.5 Tf
-[<4e6f2064656661756c7420696d706c656d656e746174696f6e73206172652070726f76696465642062> 20.01953125 <79204170616368652049736973206672> 20.01953125 <616d65776f726b20697473656c662e>] TJ
+[<546865206672> 20.01953125 <616d65776f726b2070726f76696465732074776f20696d706c656d656e746174696f6e73206f66207468697320736572766963652c20626f746820696e20737570706f7274206f662074686520>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
-2.681 Tw
+0.242 Tw
 
 BT
-48.239999999999995 667.5260000000002 Td
-/F1.0 10.5 Tf
-<486f77657665722c2074686520286e6f6e2d4153462920> Tj
+473.53999999999996 695.3060000000002 Td
+/F3.0 10.5 Tf
+<436f6d6d616e6453657276696365> Tj
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
-2.681 Tw
+0.242 Tw
 
 BT
-178.124375 667.5260000000002 Td
-/F1.0 10.5 Tf
-<49736973206164646f6e732720746f646f617070> Tj
+547.04 695.3060000000002 Td
 ET
 
 
@@ -30256,12 +30218,23 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-2.681 Tw
+BT
+48.239999999999995 679.5260000000002 Td
+/F1.0 10.5 Tf
+<5350492e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+7.023 Tw
 
 BT
-285.2729583333333 667.5260000000002 Td
+48.239999999999995 651.7460000000002 Td
 /F1.0 10.5 Tf
-<20696e636c7564657320612073616d706c6520696d706c656d656e746174696f6e20746f20636f6e7665727420697473> Tj
+[<42> 20.01953125 <79207761> 20.01953125 <79206f66206261636b> 20.01953125 <67726f756e643a20696d706c656d656e746174696f6e73206f66207468652053504920>] TJ
 ET
 
 
@@ -30271,169 +30244,205 @@ ET
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+7.023 Tw
+
 BT
-48.239999999999995 651.7460000000002 Td
+359.1668776633523 651.7460000000002 Td
 /F3.0 10.5 Tf
-<546f446f4974656d> Tj
+<436f6d6d616e6453657276696365> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+7.023 Tw
+
+BT
+432.6668776633523 651.7460000000002 Td
+/F1.0 10.5 Tf
+<20776f726b207769746820637573746f6d> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+6.665 Tw
+
 BT
-90.24 651.7460000000002 Td
+48.239999999999995 635.9660000000002 Td
 /F1.0 10.5 Tf
-<20656e7469747920696e746f206120284a41584220616e6e6f74617465642920> Tj
+<696d706c656d656e746174696f6e73206f662074686520> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+6.665 Tw
+
 BT
-244.4325 651.7460000000002 Td
+187.3795909090909 635.9660000000002 Td
 /F3.0 10.5 Tf
-<546f446f4974656d44746f> Tj
+<436f6d6d616e64> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+6.665 Tw
+
 BT
-302.1825 651.7460000000002 Td
+224.1295909090909 635.9660000000002 Td
 /F1.0 10.5 Tf
-<2e202054686520736f7572636520636f64652069733a> Tj
+<20696e746572666163652c207479706963616c6c79206265696e672070657273697374656420746f2061206461746173746f72652e20546865> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-q
-0.961 0.961 0.961 scn
-52.240 635.930 m
-543.040 635.930 l
-545.249 635.930 547.040 634.139 547.040 631.930 c
-547.040 219.950 l
-547.040 217.741 545.249 215.950 543.040 215.950 c
-52.240 215.950 l
-50.031 215.950 48.240 217.741 48.240 219.950 c
-48.240 631.930 l
-48.240 634.139 50.031 635.930 52.240 635.930 c
-h
-f
-0.800 0.800 0.800 SCN
-0.75 w
-52.240 635.930 m
-543.040 635.930 l
-545.249 635.930 547.040 634.139 547.040 631.930 c
-547.040 219.950 l
-547.040 217.741 545.249 215.950 543.040 215.950 c
-52.240 215.950 l
-50.031 215.950 48.240 217.741 48.240 219.950 c
-48.240 631.930 l
-48.240 634.139 50.031 635.930 52.240 635.930 c
-h
-S
-Q
-0.600 0.600 1.000 scn
-0.600 0.600 1.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+3.228 Tw
 
 BT
-59.239999999999995 613.1050000000002 Td
-/F3.0 11 Tf
-<40446f6d61696e53657276696365> Tj
+48.239999999999995 620.1860000000003 Td
+/F3.0 10.5 Tf
+<436f6d6d616e645769746844746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+3.228 Tw
+
 BT
-136.24 613.1050000000002 Td
-/F3.0 11 Tf
-<28> Tj
+121.74 620.1860000000003 Td
+/F1.0 10.5 Tf
+<20696e7465726661636520697320612073756274797065206f6620> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+3.228 Tw
 
 BT
-141.74 613.1050000000002 Td
-/F3.0 11 Tf
-<6e6174757265> Tj
+265.78592307692304 620.1860000000003 Td
+/F3.0 10.5 Tf
+<436f6d6d616e64> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+3.228 Tw
+
 BT
-174.74 613.1050000000002 Td
-/F3.0 11 Tf
-<20> Tj
+302.53592307692304 620.1860000000003 Td
+/F1.0 10.5 Tf
+<20666f7220696d706c656d656e746174696f6e7320746861742063616e206265207265696669656420696e746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+1.735 Tw
 
 BT
-180.24 613.1050000000002 Td
-/F3.0 11 Tf
-<3d> Tj
+48.239999999999995 604.4060000000003 Td
+/F3.0 10.5 Tf
+<436f6d6d616e6444746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.735 Tw
+
 BT
-185.74 613.1050000000002 Td
-/F3.0 11 Tf
-<20> Tj
+100.74 604.4060000000003 Td
+/F1.0 10.5 Tf
+<20584d4c20696e7374616e6365732e204f6e6520696d706c656d656e746174696f6e207468617420646f657320746869732069732074686520286e6f6e2d4153462920> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+1.735 Tw
 
 BT
-191.24 613.1050000000002 Td
-/F3.0 11 Tf
-<4e61747572654f6653657276696365> Tj
+457.6510833333333 604.4060000000003 Td
+/F1.0 10.5 Tf
+<496e636f646520506c6174666f726d> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.735 Tw
+
 BT
-273.74 613.1050000000002 Td
-/F3.0 11 Tf
-<2e> Tj
+539.9944999999999 604.4060000000003 Td
+/F1.0 10.5 Tf
+<2773> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-279.24 613.1050000000002 Td
-/F3.0 11 Tf
-<444f4d41494e> Tj
+48.239999999999995 588.6260000000002 Td
+/F1.0 10.5 Tf
+<636f6d6d616e64206d6f64756c652e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -30441,43 +30450,55 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.364 Tw
+
 BT
-312.24 613.1050000000002 Td
-/F3.0 11 Tf
-<29> Tj
+48.239999999999995 560.8460000000002 Td
+/F1.0 10.5 Tf
+[<46> 40.0390625 <6f72206672> 20.01953125 <616d65776f726b20696d706c656d656e746174696f6e73206f6620>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.364 Tw
 
 BT
-59.239999999999995 598.3650000000002 Td
-/F3.0 11 Tf
-<7075626c6963> Tj
+228.57403085937494 560.8460000000002 Td
+/F3.0 10.5 Tf
+<436f6e74656e744d617070696e6753657276696365> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.364 Tw
+
 BT
-92.24 598.3650000000002 Td
-/F3.0 11 Tf
-<20> Tj
+338.82403085937494 560.8460000000002 Td
+/F1.0 10.5 Tf
+<20616c6c6f7720646f6d61696e207365727669636520616374696f6e7320746861742072657475726e> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.467 0.533 scn
-0.000 0.467 0.533 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-97.74 598.3650000000002 Td
-/F3.0 11 Tf
-<636c617373> Tj
+48.239999999999995 545.0660000000003 Td
+/F3.0 10.5 Tf
+<436f6d6d616e6444746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -30486,42 +30507,65 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.24 598.3650000000002 Td
-/F3.0 11 Tf
-<20> Tj
+100.74 545.0660000000003 Td
+/F1.0 10.5 Tf
+<7320286569746865722073696e67756c61726c79206f7220696e2061206c6973742920746f20626520636f6e76657274656420696e746f20584d4c20646f63756d656e74733a> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.667 0.533 scn
-0.000 0.667 0.533 SCN
+
+-0.500 Tc
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-130.74 598.3650000000002 Td
-/F3.0 11 Tf
-<436f6e74656e744d617070696e6753657276696365466f72546f446f4974656d> Tj
+56.8805 517.2860000000003 Td
+/F1.0 10.5 Tf
+<a5> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+5.344 Tw
+
+BT
+66.24 517.2860000000003 Td
+/F3.0 10.5 Tf
+<6f2e612e692e6170706c69622e636f6e6d61702e436f6e74656e744d617070696e6753657276696365466f72436f6d6d616e6444746f> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+5.344 Tw
+
 BT
-306.74 598.3650000000002 Td
-/F3.0 11 Tf
-<20> Tj
+349.74 517.2860000000003 Td
+/F1.0 10.5 Tf
+[<2077696c6c206d617020616e> 20.01953125 <792073696e676c6520696e73746e6365206f662061>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-312.24 598.3650000000002 Td
-/F3.0 11 Tf
-<696d706c656d656e7473> Tj
+66.24 501.5060000000003 Td
+/F3.0 10.5 Tf
+<436f6d6d616e645769746844746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -30530,20 +30574,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-367.24 598.3650000000002 Td
-/F3.0 11 Tf
-<20> Tj
+139.74 501.5060000000003 Td
+/F1.0 10.5 Tf
+<20696e746f206120> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-372.74 598.3650000000002 Td
-/F3.0 11 Tf
-<436f6e74656e744d617070696e6753657276696365> Tj
+173.676 501.5060000000003 Td
+/F3.0 10.5 Tf
+<436f6d6d616e6444746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -30552,108 +30596,166 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-488.24 598.3650000000002 Td
-/F3.0 11 Tf
-<20> Tj
+226.176 501.5060000000003 Td
+/F1.0 10.5 Tf
+<20584d4c20646f63756d656e74> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+
+-0.500 Tc
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-493.74 598.3650000000002 Td
-/F3.0 11 Tf
-<7b> Tj
+56.8805 479.72600000000034 Td
+/F1.0 10.5 Tf
+<a5> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+
+0.000 Tc
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.412 Tw
+
+BT
+66.24 479.72600000000034 Td
+/F3.0 10.5 Tf
+<6f2e612e692e6170706c69622e636f6e6d61702e436f6e74656e744d617070696e6753657276696365466f72436f6d6d616e647344746f> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.412 Tw
+
 BT
-59.239999999999995 583.6250000000002 Td
-/F3.0 11 Tf
-<ca202020> Tj
+354.99 479.72600000000034 Td
+/F1.0 10.5 Tf
+<2077696c6c206d6170206c697374206f6620> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.600 0.600 1.000 scn
-0.600 0.600 1.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.412 Tw
 
 BT
-81.24 583.6250000000002 Td
-/F3.0 11 Tf
-<404f76657272696465> Tj
+436.7645714285714 479.72600000000034 Td
+/F3.0 10.5 Tf
+<436f6d6d616e645769746844746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.412 Tw
+
 BT
-59.239999999999995 568.8850000000003 Td
-/F3.0 11 Tf
-<ca202020> Tj
+510.2645714285714 479.72600000000034 Td
+/F1.0 10.5 Tf
+<7320696e746f2061> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+3.264 Tw
 
 BT
-81.24 568.8850000000003 Td
-/F3.0 11 Tf
-<7075626c6963> Tj
+66.24 463.94600000000037 Td
+/F3.0 10.5 Tf
+<436f6d6d616e647344746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+3.264 Tw
+
 BT
-114.24 568.8850000000003 Td
-/F3.0 11 Tf
-<20> Tj
+123.99000000000001 463.94600000000037 Td
+/F1.0 10.5 Tf
+[<20584d4c20646f63756d656e742c20616e642077696c6c207772> 20.01953125 <617020616e> 20.01953125 <792073696e676c6520696e7374616e6365206f66206120>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.467 0.533 scn
-0.000 0.467 0.533 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+3.264 Tw
 
 BT
-119.74 568.8850000000003 Td
-/F3.0 11 Tf
-<4f626a656374> Tj
+435.79489843749997 463.94600000000037 Td
+/F3.0 10.5 Tf
+<436f6d6d616e645769746844746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+3.264 Tw
+
 BT
-152.74 568.8850000000003 Td
-/F3.0 11 Tf
-<20> Tj
+509.29489843749997 463.94600000000037 Td
+/F1.0 10.5 Tf
+<20696e746f2061> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-158.24 568.8850000000003 Td
-/F3.0 11 Tf
-<6d6170> Tj
+66.24 448.16600000000034 Td
+/F1.0 10.5 Tf
+<73696e

<TRUNCATED>

[15/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/htg.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/htg.html b/content/versions/SNAPSHOT/guides/htg.html
index cff02f1..fb7d3f4 100644
--- a/content/versions/SNAPSHOT/guides/htg.html
+++ b/content/versions/SNAPSHOT/guides/htg.html
@@ -412,7 +412,7 @@ table.CodeRay td.code>pre{padding:0}
             <p>A third alternative is to move the responsibility for deriving the title into a separate subscriber object.</p> 
            </div> 
            <div class="paragraph"> 
-            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_titleUiEvent"><code>@DomainObjectLayout#titleUiEvent()</code></a> attribute to specify:</p> 
+            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_titleUiEvent"><code>@DomainObjectLayout#titleUiEvent()</code></a> attribute to specify:</p> 
            </div> 
            <div class="listingblock"> 
             <div class="content"> 
@@ -523,7 +523,7 @@ table.CodeRay td.code>pre{padding:0}
             <p>As for title, the determination of which image file to use for the icon can be externalized into a UI event subscriber.</p> 
            </div> 
            <div class="paragraph"> 
-            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_iconUiEvent"><code>@DomainObjectLayout#iconUiEvent()</code></a> attribute to specify.</p> 
+            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_iconUiEvent"><code>@DomainObjectLayout#iconUiEvent()</code></a> attribute to specify.</p> 
            </div> 
            <div class="paragraph"> 
             <p>For example</p> 
@@ -619,7 +619,7 @@ table.CodeRay td.code>pre{padding:0}
             <p>As for title and icon, the determination of which CSS class to render can be externalized into a UI event subscriber.</p> 
            </div> 
            <div class="paragraph"> 
-            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_cssClassUiEvent"><code>@DomainObjectLayout#cssClassUiEvent()</code></a> attribute to specify.</p> 
+            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_cssClassUiEvent"><code>@DomainObjectLayout#cssClassUiEvent()</code></a> attribute to specify.</p> 
            </div> 
            <div class="paragraph"> 
             <p>For example</p> 
@@ -938,7 +938,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="paragraph"> 
-          <p>For this we annotate the collection using <a href="../rgant/rgant.html#_rgant_CollectionLayout_defaultView"><code>@CollectionLayout#defaultView()</code></a>; for example</p> 
+          <p>For this we annotate the collection using <a href="../rgant/rgant.html#_rgant-CollectionLayout_defaultView"><code>@CollectionLayout#defaultView()</code></a>; for example</p> 
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
@@ -960,7 +960,7 @@ table.CodeRay td.code>pre{padding:0}
              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
              <td class="content"> 
               <div class="paragraph"> 
-               <p>The <code>defaultView()</code> attribute replaces the deprecated approach of using <a href="../rgant/rgant.html#_rgant_CollectionLayout_render"><code>@CollectionLayout#render()</code></a> eagerly.</p> 
+               <p>The <code>defaultView()</code> attribute replaces the deprecated approach of using <a href="../rgant/rgant.html#_rgant-CollectionLayout_render"><code>@CollectionLayout#render()</code></a> eagerly.</p> 
               </div> </td> 
             </tr> 
            </tbody>
@@ -3066,7 +3066,7 @@ serviceRegistry.injectServicesInto(viewModel);</code></pre>
           <p>If working from the Maven command line, JDO enhancement is done using the <code>maven-datanucleus-plugin</code>.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>Both the <a href="ugfun.html#_ugfun_getting-started_helloworld-archetype">HelloWorld</a> and <a href="ugfun.html#_ugfun_getting-started_simpleapp-archetype">SimpleApp</a> Maven archetypes generate applications that have this plugin pre-configured.</p> 
+          <p>Both the <a href="../ugfun/ugfun.html#_ugfun_getting-started_helloworld-archetype">HelloWorld</a> and <a href="../ugfun/ugfun.html#_ugfun_getting-started_simpleapp-archetype">SimpleApp</a> Maven archetypes generate applications that have this plugin pre-configured.</p> 
          </div> 
          <div class="sect3"> 
           <h4 id="_meta_inf_persistence_xml">7.1.1. META-INF/persistence.xml</h4> 

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/htg.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/htg.pdf b/content/versions/SNAPSHOT/guides/htg.pdf
index e9b8b63..df50539 100644
--- a/content/versions/SNAPSHOT/guides/htg.pdf
+++ b/content/versions/SNAPSHOT/guides/htg.pdf
@@ -4,8 +4,8 @@
 << /Title (Hints & Tips Guide)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108225847+00'00')
-/ModDate (D:20180108225847+00'00')
+/CreationDate (D:20180213130939+00'00')
+/ModDate (D:20180213130939+00'00')
 >>
 endobj
 2 0 obj
@@ -7066,7 +7066,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_titleUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_titleUiEvent)
 >>
 /Subtype /Link
 /Rect [48.24 434.05600000000004 226.74 444.55600000000004]
@@ -11037,7 +11037,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_iconUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_iconUiEvent)
 >>
 /Subtype /Link
 /Rect [48.24 440.81600000000026 221.49 451.31600000000026]
@@ -15885,7 +15885,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainObjectLayout_cssClassUiEvent)
+/URI (../rgant/rgant.pdf#_rgant-DomainObjectLayout_cssClassUiEvent)
 >>
 /Subtype /Link
 /Rect [48.24 660.4260000000002 242.49 670.9260000000002]
@@ -20919,7 +20919,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_CollectionLayout_defaultView)
+/URI (../rgant/rgant.pdf#_rgant-CollectionLayout_defaultView)
 >>
 /Subtype /Link
 /Rect [253.08408984375004 483.7960000000002 415.83408984375 494.2960000000002]
@@ -20930,7 +20930,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_CollectionLayout_render)
+/URI (../rgant/rgant.pdf#_rgant-CollectionLayout_render)
 >>
 /Subtype /Link
 /Rect [125.80666666666667 269.5760000000003 262.3066666666667 280.0760000000003]
@@ -92143,7 +92143,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (ugfun.pdf#_ugfun_getting-started_helloworld-archetype)
+/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_helloworld-archetype)
 >>
 /Subtype /Link
 /Rect [94.14922005208334 452.70000000000033 151.69910481770833 466.9800000000003]
@@ -92154,7 +92154,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
+/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
 >>
 /Subtype /Link
 /Rect [177.47982486979166 452.70000000000033 232.02732486979167 466.9800000000003]
@@ -95855,212 +95855,212 @@ xref
 0001639793 00000 n 
 0001640021 00000 n 
 0001640190 00000 n 
-0001640431 00000 n 
-0001640672 00000 n 
-0001640729 00000 n 
-0001640976 00000 n 
-0001641221 00000 n 
-0001653993 00000 n 
-0001654318 00000 n 
-0001654554 00000 n 
-0001654803 00000 n 
-0001655008 00000 n 
-0001655065 00000 n 
-0001655318 00000 n 
-0001655567 00000 n 
-0001655824 00000 n 
-0001655881 00000 n 
-0001656584 00000 n 
-0001667873 00000 n 
-0001668193 00000 n 
-0001668250 00000 n 
-0001668474 00000 n 
-0001668703 00000 n 
-0001668939 00000 n 
-0001669170 00000 n 
-0001669376 00000 n 
-0001669593 00000 n 
-0001669918 00000 n 
-0001670051 00000 n 
-0001670186 00000 n 
-0001670329 00000 n 
-0001670465 00000 n 
-0001670627 00000 n 
-0001670791 00000 n 
-0001670959 00000 n 
-0001671120 00000 n 
-0001671292 00000 n 
-0001671464 00000 n 
-0001671619 00000 n 
-0001671784 00000 n 
-0001671942 00000 n 
-0001672100 00000 n 
-0001672270 00000 n 
-0001672451 00000 n 
-0001672644 00000 n 
-0001672837 00000 n 
-0001673024 00000 n 
-0001673211 00000 n 
-0001673388 00000 n 
-0001673565 00000 n 
-0001673722 00000 n 
-0001673889 00000 n 
-0001674077 00000 n 
-0001674265 00000 n 
-0001674434 00000 n 
-0001674614 00000 n 
-0001674785 00000 n 
-0001674967 00000 n 
-0001675156 00000 n 
-0001675345 00000 n 
-0001675534 00000 n 
-0001675725 00000 n 
-0001675896 00000 n 
-0001676067 00000 n 
-0001676261 00000 n 
-0001676455 00000 n 
-0001676657 00000 n 
-0001676859 00000 n 
-0001677021 00000 n 
-0001677193 00000 n 
-0001677369 00000 n 
-0001677556 00000 n 
-0001677756 00000 n 
-0001677956 00000 n 
-0001678111 00000 n 
-0001678266 00000 n 
-0001678462 00000 n 
-0001678660 00000 n 
-0001678822 00000 n 
-0001678995 00000 n 
-0001679175 00000 n 
-0001679355 00000 n 
-0001679519 00000 n 
-0001679683 00000 n 
-0001679860 00000 n 
-0001680041 00000 n 
-0001680251 00000 n 
-0001680461 00000 n 
-0001680646 00000 n 
-0001680831 00000 n 
-0001681021 00000 n 
-0001681211 00000 n 
-0001681383 00000 n 
-0001681565 00000 n 
-0001681758 00000 n 
-0001681951 00000 n 
-0001682142 00000 n 
-0001682343 00000 n 
-0001682547 00000 n 
-0001682751 00000 n 
-0001682920 00000 n 
-0001683100 00000 n 
-0001683286 00000 n 
-0001683482 00000 n 
-0001683653 00000 n 
-0001683824 00000 n 
-0001684011 00000 n 
-0001684198 00000 n 
-0001684348 00000 n 
-0001684498 00000 n 
-0001684672 00000 n 
-0001684856 00000 n 
-0001685026 00000 n 
-0001685206 00000 n 
-0001685382 00000 n 
-0001685558 00000 n 
-0001685753 00000 n 
-0001685948 00000 n 
-0001686235 00000 n 
-0001686313 00000 n 
-0001686494 00000 n 
-0001686686 00000 n 
-0001686975 00000 n 
-0001687140 00000 n 
-0001687387 00000 n 
-0001687623 00000 n 
-0001687866 00000 n 
-0001688067 00000 n 
-0001688317 00000 n 
-0001688519 00000 n 
-0001688784 00000 n 
-0001689024 00000 n 
-0001689199 00000 n 
-0001689485 00000 n 
-0001689715 00000 n 
-0001689919 00000 n 
-0001690136 00000 n 
-0001690413 00000 n 
-0001690647 00000 n 
-0001690941 00000 n 
-0001691187 00000 n 
-0001691451 00000 n 
-0001691616 00000 n 
-0001691856 00000 n 
-0001692119 00000 n 
-0001692349 00000 n 
-0001692563 00000 n 
-0001692743 00000 n 
-0001693014 00000 n 
-0001693281 00000 n 
-0001693507 00000 n 
-0001693796 00000 n 
-0001694013 00000 n 
-0001694250 00000 n 
-0001694466 00000 n 
-0001694718 00000 n 
-0001694959 00000 n 
-0001695239 00000 n 
-0001695447 00000 n 
-0001695723 00000 n 
-0001695984 00000 n 
-0001696259 00000 n 
-0001696511 00000 n 
-0001696733 00000 n 
-0001696953 00000 n 
-0001697201 00000 n 
-0001697455 00000 n 
-0001698058 00000 n 
-0001707024 00000 n 
-0001707240 00000 n 
-0001708603 00000 n 
-0001709657 00000 n 
-0001717741 00000 n 
-0001717962 00000 n 
-0001719325 00000 n 
-0001720397 00000 n 
-0001726273 00000 n 
-0001726487 00000 n 
-0001727850 00000 n 
-0001728901 00000 n 
-0001730264 00000 n 
-0001730475 00000 n 
-0001730790 00000 n 
-0001731706 00000 n 
-0001733972 00000 n 
-0001734186 00000 n 
-0001734527 00000 n 
-0001735665 00000 n 
-0001741377 00000 n 
-0001741603 00000 n 
-0001742966 00000 n 
-0001744050 00000 n 
-0001745445 00000 n 
-0001745663 00000 n 
-0001747026 00000 n 
-0001748165 00000 n 
-0001750418 00000 n 
-0001750631 00000 n 
-0001751994 00000 n 
-0001753117 00000 n 
-0001754280 00000 n 
-0001754496 00000 n 
-0001754799 00000 n 
+0001640440 00000 n 
+0001640690 00000 n 
+0001640747 00000 n 
+0001640994 00000 n 
+0001641239 00000 n 
+0001654011 00000 n 
+0001654336 00000 n 
+0001654572 00000 n 
+0001654821 00000 n 
+0001655026 00000 n 
+0001655083 00000 n 
+0001655336 00000 n 
+0001655585 00000 n 
+0001655842 00000 n 
+0001655899 00000 n 
+0001656602 00000 n 
+0001667891 00000 n 
+0001668211 00000 n 
+0001668268 00000 n 
+0001668492 00000 n 
+0001668721 00000 n 
+0001668957 00000 n 
+0001669188 00000 n 
+0001669394 00000 n 
+0001669611 00000 n 
+0001669936 00000 n 
+0001670069 00000 n 
+0001670204 00000 n 
+0001670347 00000 n 
+0001670483 00000 n 
+0001670645 00000 n 
+0001670809 00000 n 
+0001670977 00000 n 
+0001671138 00000 n 
+0001671310 00000 n 
+0001671482 00000 n 
+0001671637 00000 n 
+0001671802 00000 n 
+0001671960 00000 n 
+0001672118 00000 n 
+0001672288 00000 n 
+0001672469 00000 n 
+0001672662 00000 n 
+0001672855 00000 n 
+0001673042 00000 n 
+0001673229 00000 n 
+0001673406 00000 n 
+0001673583 00000 n 
+0001673740 00000 n 
+0001673907 00000 n 
+0001674095 00000 n 
+0001674283 00000 n 
+0001674452 00000 n 
+0001674632 00000 n 
+0001674803 00000 n 
+0001674985 00000 n 
+0001675174 00000 n 
+0001675363 00000 n 
+0001675552 00000 n 
+0001675743 00000 n 
+0001675914 00000 n 
+0001676085 00000 n 
+0001676279 00000 n 
+0001676473 00000 n 
+0001676675 00000 n 
+0001676877 00000 n 
+0001677039 00000 n 
+0001677211 00000 n 
+0001677387 00000 n 
+0001677574 00000 n 
+0001677774 00000 n 
+0001677974 00000 n 
+0001678129 00000 n 
+0001678284 00000 n 
+0001678480 00000 n 
+0001678678 00000 n 
+0001678840 00000 n 
+0001679013 00000 n 
+0001679193 00000 n 
+0001679373 00000 n 
+0001679537 00000 n 
+0001679701 00000 n 
+0001679878 00000 n 
+0001680059 00000 n 
+0001680269 00000 n 
+0001680479 00000 n 
+0001680664 00000 n 
+0001680849 00000 n 
+0001681039 00000 n 
+0001681229 00000 n 
+0001681401 00000 n 
+0001681583 00000 n 
+0001681776 00000 n 
+0001681969 00000 n 
+0001682160 00000 n 
+0001682361 00000 n 
+0001682565 00000 n 
+0001682769 00000 n 
+0001682938 00000 n 
+0001683118 00000 n 
+0001683304 00000 n 
+0001683500 00000 n 
+0001683671 00000 n 
+0001683842 00000 n 
+0001684029 00000 n 
+0001684216 00000 n 
+0001684366 00000 n 
+0001684516 00000 n 
+0001684690 00000 n 
+0001684874 00000 n 
+0001685044 00000 n 
+0001685224 00000 n 
+0001685400 00000 n 
+0001685576 00000 n 
+0001685771 00000 n 
+0001685966 00000 n 
+0001686253 00000 n 
+0001686331 00000 n 
+0001686512 00000 n 
+0001686704 00000 n 
+0001686993 00000 n 
+0001687158 00000 n 
+0001687405 00000 n 
+0001687641 00000 n 
+0001687884 00000 n 
+0001688085 00000 n 
+0001688335 00000 n 
+0001688537 00000 n 
+0001688802 00000 n 
+0001689042 00000 n 
+0001689217 00000 n 
+0001689503 00000 n 
+0001689733 00000 n 
+0001689937 00000 n 
+0001690154 00000 n 
+0001690431 00000 n 
+0001690665 00000 n 
+0001690959 00000 n 
+0001691205 00000 n 
+0001691469 00000 n 
+0001691634 00000 n 
+0001691874 00000 n 
+0001692137 00000 n 
+0001692367 00000 n 
+0001692581 00000 n 
+0001692761 00000 n 
+0001693032 00000 n 
+0001693299 00000 n 
+0001693525 00000 n 
+0001693814 00000 n 
+0001694031 00000 n 
+0001694268 00000 n 
+0001694484 00000 n 
+0001694736 00000 n 
+0001694977 00000 n 
+0001695257 00000 n 
+0001695465 00000 n 
+0001695741 00000 n 
+0001696002 00000 n 
+0001696277 00000 n 
+0001696529 00000 n 
+0001696751 00000 n 
+0001696971 00000 n 
+0001697219 00000 n 
+0001697473 00000 n 
+0001698076 00000 n 
+0001707042 00000 n 
+0001707258 00000 n 
+0001708621 00000 n 
+0001709675 00000 n 
+0001717759 00000 n 
+0001717980 00000 n 
+0001719343 00000 n 
+0001720415 00000 n 
+0001726291 00000 n 
+0001726505 00000 n 
+0001727868 00000 n 
+0001728919 00000 n 
+0001730282 00000 n 
+0001730493 00000 n 
+0001730808 00000 n 
+0001731724 00000 n 
+0001733990 00000 n 
+0001734204 00000 n 
+0001734545 00000 n 
+0001735683 00000 n 
+0001741395 00000 n 
+0001741621 00000 n 
+0001742984 00000 n 
+0001744068 00000 n 
+0001745463 00000 n 
+0001745681 00000 n 
+0001747044 00000 n 
+0001748183 00000 n 
+0001750436 00000 n 
+0001750649 00000 n 
+0001752012 00000 n 
+0001753135 00000 n 
+0001754298 00000 n 
+0001754514 00000 n 
+0001754817 00000 n 
 trailer
 << /Size 557
 /Root 2 0 R
 /Info 1 0 R
 >>
 startxref
-1755936
+1755954
 %%EOF


[18/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/elasticlunr/index.json
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/elasticlunr/index.json b/content/versions/SNAPSHOT/elasticlunr/index.json
index ee63caa..272397b 100644
--- a/content/versions/SNAPSHOT/elasticlunr/index.json
+++ b/content/versions/SNAPSHOT/elasticlunr/index.json
@@ -1 +1 @@
-{"version":"0.9.5","fields":["title","body","description","url"],"ref":"id","documentStore":{"docs":{"372886":{"title":"Rows, full-width cols, and tabs","url":"guides/ugvw/ugvw.html#_rows_full_width_cols_and_tabs","body":"Rows, full-width cols, and tabs  The example layout consists of three rows: a row for the object/icon, a row containing a properties, and a row containing collections. In all three cases the row contains a single column spanning the full width of the page. For the property and collection rows, the column contains a tab group.  This corresponds to the following XML:  You will notice that one of the columns has an unreferencedActions attribute, while one of the tabGroups has a similar unreferencedCollections attribute. This topic is discussed in more detail below. ","description":" The example layout consists of three rows: a row for the object/icon, a row containing a properties, and a row containing collections. In all three cases the row contains a single column s
 panning the full width of the page. For the property and collection rows, the column contains a","id":372886},"2646929":{"title":"Apache Isis vs …​","url":"guides/ugfun/ugfun.html#_ugfun_core-concepts_apache-isis-vs","body":"Apache Isis vs …​  Many other frameworks promise rapid application development and provide automatically generated user interfaces, so how do they compare to Apache Isis? ","description":" Many other frameworks promise rapid application development and provide automatically generated user interfaces, so how do they compare to Apache Isis? ","id":2646929},"3836440":{"title":"Running","url":"guides/dg/dg.html#__dg_ide_intellij_running","body":"Running  Let’s see how to run both the app and the tests. ","description":" Let’s see how to run both the app and the tests. ","id":3836440},"11600575":{"title":"Using Contributions","url":"pages/tg/tg.html#_using_contributions","body":"Using Contributions  One of Apache Isis' most powerful features is the abilit
 y for the UI to combine functionality from domain services into the representation of an entity. The effect is similar to traits or mix-ins in other languages, however the \"mixing in\" is done at runtime, within the Apache Isis metamodel. In Apache Isis' terminology, we say that the domain service action is contributed to the entity.  Any action of a domain service that has a domain entity type as one of its parameter types will (by default) be contributed. If the service action takes more than one argument, or does not have safe semantics, then it will be contributed as an entity action. If the service action has precisely one parameter type (that of the entity) and has safe semantics then it will be contributed either as a collection or as a property (dependent on whether it returns a collection of a scalar).  Why are contributions so useful? Because the service action will match not on the entity type, but also on any of the entity’s supertypes (all the way up to java.lang.Obj
 ect). That means that you can apply the dependency inversion principle to ensure that the modules of your application have acyclic dependencies; but in the UI it can still appear as if there are bidirectional dependencies between those modules. The lack of bidirectional dependencies can help save your app degrading into a big ball of mud.  Finally, note that the layout of contributed actions/collections/properties can be specified using the .layout.json file (and it is highly recommended that you do so). ","description":" One of Apache Isis' most powerful features is the ability for the UI to combine functionality from domain services into the representation of an entity. The effect is similar to traits or mix-ins in other languages, however the \"mixing in\" is done at runtime, within the Apache Isis metamodel","id":11600575},"12196042":{"title":"Tertiary Menu","url":"guides/ugvw/ugvw.html#_tertiary_menu","body":"Tertiary Menu  Domain services' actions can be associated with the te
 rtiary menu using the same @DomainServiceLayout annotation, but be aware that the @DomainServiceLayout#name() attribute will be ignored (there is only one effective menu).  For example, the updateEpochDate(…​) and listAllSettings(…​) actions come from the following service:  Because the number of items on the tertiary menu is expected to be small and most will pertain to the current user, the viewer does not place dividers between actions from different services on the tertiary menu. ","description":" Domain services' actions can be associated with the tertiary menu using the same @DomainServiceLayout annotation, but be aware that the @DomainServiceLayout#name() attribute will be ignored (there is only one effective menu). ","id":12196042},"12649581":{"title":"Mark the version as released","url":"guides/cgcom/cgcom.html#_mark_the_version_as_released","body":"Mark the version as released  In JIRA, go to the administration section for the Apache Isis project and update the ver
 sion as being released.  In the Kanban view this will have the effect of marking all tickets as released (clearing the \"done\" column). ","description":" In JIRA, go to the administration section for the Apache Isis project and update the version as being released. ","id":12649581},"13573617":{"title":"hide…​()","url":"guides/rgcms/rgcms.html#_rgcms_methods_prefixes_hide","body":"hide…​()  The hide…​() supporting method is called for properties, collections and actions. It allows the property/collection to be completely hidden from view.  It’s comparatively rare for properties or collections to be imperatively hidden from view, but actions are sometimes hidden or shown visible (as opposed to being just disabled, ie greyed out).  The signature of the supporting method is simply:  Returning true will hide the property, collection or action, returning false leaves it visible.  For example, to hide an action:  Or, to hide a property: ","description":" The hide…​() sup
 porting method is called for properties, collections and actions. It allows the property/collection to be completely hidden from view. ","id":13573617},"14290952":{"title":"Vetoing Visibility","url":"guides/htg.html#_ugbtb_hints-and-tips_vetoing-visibility","body":"Vetoing Visibility  eg if included an addon such as auditing or security.  solution is to write a domain event subscriber that vetoes the visibility  All the addons actions inherit from common base classes so this can be as broad-brush or fine-grained as required ","description":" eg if included an addon such as auditing or security. ","id":14290952},"14971197":{"title":"Suppressing 'remember me'","url":"guides/ugvw/ugvw.html#_ugvw_configuration-properties_suppressing-remember-me","body":"Suppressing 'remember me'  The 'remember me' checkbox on the login page can be suppressed, if required, by setting a configuration flag. ","description":" The 'remember me' checkbox on the login page can be suppressed, if required, by se
 tting a configuration flag. ","id":14971197},"16629694":{"title":"allowLateRegistration","url":"migration-notes/migration-notes.html#__code_allowlateregistration_code","body":"allowLateRegistration  One possible issue is that (as per ISIS-830) the EventBusService is now initialized as one of the first domain services; this is to ensure that any object lifecycle events caused by domain services initializing themselves can be posted on the event bus for subscribers. The typical case for such lifecycle events to occur is from domain services that seed reference data; one such example can be found in the (non-ASF) Incode Platform's security module.  In previous releases, the ordering of initialization for the EventBusService was undefined (but would typically be towards the \"end\" of the list of services. What this meant in practice is that it generally didn’t matter whether (domain service) subscribers were initialized before or after seed services.  Now, though, because the EventBu
 sService is initialized early on, it proactively checks that all subscribers have been registered before any event posts occur (so that no events get missed). If any subscriber attempts to register after at least one event has been posted, then the service will fail fast and the framework will not start. The error looks something like:  To ensure that subscriber domain services are initialized before \"seed\" domain services, the @DomainServiceLayout#menuOrder() attribute can be used. Normally this attribute is just used to order UI-visible services on the menu bars, but it also is used internally to sequence the internal list of services being initialized.  Alternatively, you can disable this checking within the EventBusService using:  If you do that, be aware that not all subscribers may not receive some events generated by other domain services.  For more details, see the EventBusService man page. ","description":" One possible issue is that (as per ISIS-830) the EventBusService 
 is now initialized as one of the first domain services; this is to ensure that any object lifecycle events caused by domain services initializing themselves can be posted on the event bus for subscribers. The typical case for such","id":16629694},"17000573":{"title":"ObjectCreatedEvent","url":"guides/rgcms/rgcms.html#_rgcms_classes_lifecycleevent_ObjectCreatedEvent","body":"ObjectCreatedEvent  Subclass of AbstractLifecycleEvent, broadcast when an object is first instantiated using the DomainObjectContainer's #newTransientInstance(…​) method.  ObjectCreatedEvent.Default is the concrete implementation that is used. ","description":" Subclass of AbstractLifecycleEvent, broadcast when an object is first instantiated using the DomainObjectContainer's #newTransientInstance(…​) method. ","id":17000573},"17618894":{"title":"New Feature","url":"release-notes/release-notes.html#_new_feature_20","body":"New Feature ","description":"","id":17618894},"17724516":{"title":"Multi-select act
 ion parameters","url":"guides/ugfun/ugfun.html#_multi_select_action_parameters","body":"Multi-select action parameters  As well as scalar values, action parameters can also be collections. For this to be valid, a choices or autoComplete supporting method must be provided.  For example, suppose we want to \"tag\" or \"label\" an object: ","description":" As well as scalar values, action parameters can also be collections. For this to be valid, a choices or autoComplete supporting method must be provided. ","id":17724516},"18445041":{"title":"Verifying Releases","url":"downloads.html#_verifying_releases","body":"Verifying Releases ","description":"","id":18445041},"19254915":{"title":"API & Implementation","url":"guides/rgsvc/rgsvc.html#_api_implementation_7","body":"API & Implementation  The CommandContext request-scoped service defines the following very simple API:  This class (o.a.i.applib.services.CommandContext) is also the default implementation. Under normal circumstances ther
 e shouldn’t be any need to replace this implementation with another.  The Command type referenced above is in fact an interface, defined as: ","description":" The CommandContext request-scoped service defines the following very simple API: ","id":19254915},"21190750":{"title":"Run the archetype","url":"pages/tg/tg.html#_run_the_archetype","body":"Run the archetype  Throughout this tutorial you can, if you wish, just checkout from the github repo wherever you see a \"git checkout\" note:  Run the simpleapp archetype to build an empty Isis application. With the *nix bash shell, use:  Adjust as necessary if using Windows cmd.exe or Powershell.  This will generate the app in a petclinic directory. Move the contents back: ","description":" Throughout this tutorial you can, if you wish, just checkout from the github repo wherever you see a \"git checkout\" note: ","id":21190750},"21212015":{"title":"Key features","url":"pages/powered-by/powered-by.html#_key_features","body":"Key feature
 s ","description":"","id":21212015},"21857601":{"title":"Other Guides","url":"guides/cgcom/cgcom.html#_other_guides","body":"Other Guides  Apache Isis documentation is broken out into a number of user, reference and \"supporting procedures\" guides.  The user guides available are:  The reference guides are:  The remaining guides are:  This guide provides guidance for Apache Isis' own committers. ","description":" Apache Isis documentation is broken out into a number of user, reference and \"supporting procedures\" guides. ","id":21857601},"23125949":{"title":"Editing","url":"guides/dg/dg.html#__dg_ide_intellij_hints-and-tips_editing","body":"Editing ","description":"","id":23125949},"23524101":{"title":"Collections","url":"guides/ugvw/ugvw.html#_collections","body":"Collections  In the final row the collections are placed in tabs, simply one collection per tab. This corresponds to the following XML:  As with properties, actions can be associated with collections; this indicates that
  they should be rendered in the collection’s header. ","description":" In the final row the collections are placed in tabs, simply one collection per tab. This corresponds to the following XML: ","id":23524101},"26509816":{"title":"Commit changes","url":"guides/cgcom/cgcom.html#__cgcom_cutting-a-release_releasing-core_commit-changes","body":"Commit changes  Commit any changes from the preceding steps: ","description":" Commit any changes from the preceding steps: ","id":26509816},"27806498":{"title":"renderedAsDayBefore()","url":"guides/rgant/rgant.html#_rgant-ParameterLayout_renderedAsDayBefore","body":"renderedAsDayBefore()  The renderedAsDayBefore() attribute applies only to date parameters whereby the date will be rendered as the day before the value actually held in the domain object. It is ignored for parameters of other types. This attribute is also supported for properties.  This behaviour might at first glance appear odd, but the rationale is to support the use case of a 
 sequence of instances that represent adjacent intervals of time. In such cases there would typically be startDate and endDate properties, eg for all of Q2. Storing this as a half-closed interval — eg [1-Apr-2015, 1-July-2015) — can substantially simplify internal algorithms; the endDate of one interval will correspond to the startDate of the next.  However, from an end-user perspective the requirement may be to render the interval as a fully closed interval; eg the end date should be shown as 30-Jun-2015.  This attribute therefore bridges the gap; it presents the information in a way that makes sense to an end-user, but also stores the domain object in a way that is easy work with internally.  For example: ","description":" The renderedAsDayBefore() attribute applies only to date parameters whereby the date will be rendered as the day before the value actually held in the domain object. It is ignored for parameters of other types. This attribute is also supported for properties.
  ","id":27806498},"31312523":{"title":"Declarative style","url":"guides/htg.html#_declarative_style_3","body":"Declarative style  To render an object with a particular CSS, use @DomainObjectLayout#cssClass().  When the domain object is rendered on its own page, this CSS class will appear on a top-level <div>. Or, when the domain object is rendered as a row in a collection, then the CSS class will appear in a <div> wrapped by the <tr> of the row.  One possible use case would be to render the most important object types with a subtle background colour: Customers shown in light green, or Orders shown in a light pink, for example. ","description":" To render an object with a particular CSS, use @DomainObjectLayout#cssClass(). ","id":31312523},"31857620":{"title":"Interacting with the services","url":"guides/rgsvc/rgsvc.html#_interacting_with_the_services","body":"Interacting with the services  Typically domain objects will have little need to interact with the CommandContext and Command
  directly; what is more useful is that these are persisted in support of the various use cases identified above.  One case however where a domain object might want to obtain the Command is to determine whether it has been invoked in the foreground, or in the background. It can do this using the getExecutedIn() method:  Although not often needed, this then allows the domain object to access the Command object through the CommandContext service. To expand th above example:  If run in the background, it might then notify the user (eg by email) if all work is done.  This leads us onto a related point, distinguishing the current effective user vs the originating \"real\" user. When running in the foreground, the current user can be obtained from the UserService, using:  If running in the background, however, then the current user will be the credentials of the background process, for example as run by a Quartz scheduler job.  The domain object can still obtain the original (\"effective\"
 ) user that caused the job to be created, using: ","description":" Typically domain objects will have little need to interact with the CommandContext and Command directly; what is more useful is that these are persisted in support of the various use cases identified above. ","id":31857620},"31966407":{"title":"Icons","url":"guides/htg.html#_icons","body":"Icons  Action icons can be specified in several ways.  One option is to use the @ActionLayout#cssClassFa(). For example:  Alternatively, you can specify these hints dynamically in the Xxx.layout.xml for the entity:  Rather than annotating every action with @ActionLayout#cssClassFa() and @ActionLayout#cssClass() you can instead specify the UI hint globally using regular expressions. Not only does this save a lot of boilerplate/editing, it helps ensure consistency across all actions.  To declare fa classes globally, use the configuration property isis.reflector.facet.cssClassFa.patterns (a comma separated list of key:value pairs).  F
 or example:  Here:  For example, \"fa-plus\" is applied to all action members called \"newXxx\" ","description":" Action icons can be specified in several ways. ","id":31966407},"36734123":{"title":"Bug","url":"release-notes/release-notes.html#_bug_8","body":"Bug ","description":"","id":36734123},"39248326":{"title":"Runtime vs Noop implementation","url":"guides/rgfis/rgfis.html#_runtime_vs_noop_implementation","body":"Runtime vs Noop implementation  The framework provides two implementations:  The …​Default implementation takes priority over the …​Noop implementation. ","description":" The framework provides two implementations: ","id":39248326},"39290887":{"title":"Implementation","url":"guides/rgsvc/rgsvc.html#_implementation_22","body":"Implementation  The core framework provides a default implementation of this service (o.a.i.core.metamodel.services.container.DomainObjectContainerDefault). ","description":" The core framework provides a default implementation of this se
 rvice (o.a.i.core.metamodel.services.container.DomainObjectContainerDefault). ","id":39290887},"42240053":{"title":"Screenshots","url":"guides/ugvw/ugvw.html#_screenshots_9","body":"Screenshots  The screenshot below shows the Isis addons example todoapp (not ASF) with a 'brand logo' image in its header:  A custom brand logo (typically larger) can also be specified for the signin page: ","description":" The screenshot below shows the Isis addons example todoapp (not ASF) with a 'brand logo' image in its header: ","id":42240053},"44483327":{"title":"New Feature","url":"release-notes/release-notes.html#_new_feature_17","body":"New Feature ","description":"","id":44483327},"45128293":{"title":"getConfigurationProperties()","url":"guides/rgcms/rgcms.html#__rgcms_classes_AppManifest-bootstrapping_api_getConfigurationProperties","body":"getConfigurationProperties()  This method allow arbitrary other configuration properties to be overridden. One common use case is in conjunction with the g
 etFixtures() method, discussed above: ","description":" This method allow arbitrary other configuration properties to be overridden. One common use case is in conjunction with the getFixtures() method, discussed above: ","id":45128293},"57327287":{"title":"cssClassFa()","url":"guides/rgant/rgant.html#_rgant-ViewModelLayout_cssClassFa","body":"cssClassFa()  The cssClassFa() attribute is used to specify the name of a Font Awesome icon name, to be rendered as the domain object’s icon.  These attribute can also be applied to domain objects to specify the object’s icon, and to actions to specify an icon for the action’s representation as a button or menu item.  If necessary the icon specified can be overridden by a particular object instance using the iconName() method.  For example:  There can be multiple \"fa-\" classes, eg to mirror or rotate the icon. There is no need to include the mandatory fa \"marker\" CSS class; it will be automatically added to the list. The fa- prefix ca
 n also be omitted from the class names; it will be prepended to each if required.  The related cssClassFaPosition() attribute is currently unused for domain objects; the icon is always rendered to the left. ","description":" The cssClassFa() attribute is used to specify the name of a Font Awesome icon name, to be rendered as the domain object’s icon. ","id":57327287},"62314289":{"title":"Menu Bars Layout","url":"guides/ugvw/ugvw.html#_ugvw_menubars-layout","body":"Menu Bars Layout ","description":"","id":62314289},"64932464":{"title":"Other Guides","url":"guides/ugtst/ugtst.html#_other_guides","body":"Other Guides  Apache Isis documentation is broken out into a number of user, reference and \"supporting procedures\" guides.  The user guides available are:  The reference guides are:  The remaining guides are: ","description":" Apache Isis documentation is broken out into a number of user, reference and \"supporting procedures\" guides. ","id":64932464},"66604001":{"title":"@Program
 matic","url":"guides/rgant/rgant.html#_rgant-Programmatic","body":"@Programmatic ","description":"","id":66604001},"68441589":{"title":"License headers","url":"guides/cgcom/cgcom.html#__cgcom_cutting-a-release_releasing-core_license-headers","body":"License headers  The Apache Release Audit Tool RAT (from the Apache Creadur project) checks for missing license header files. The parent pom.xml of each releasable module specifies the RAT Maven plugin, with a number of custom exclusions.  To run the RAT tool, use:  where rat.numUnapprovedLicenses property is set to a high figure, temporarily overriding the default value of 0. This will allow the command to run over all submodules, rather than failing after the first one. The command writes out a target\\rat.txt for each submodule. missing license notes are indicated using the key !???. The for command collates all the errors.  Investigate and fix any reported violations, typically by either:  To add missing headers, use the groovy scrip
 t addmissinglicenses.groovy (in the scripts directory) to automatically insert missing headers for certain file types. The actual files checked are those with extensions specified in the line def fileEndings = [\".java\", \".htm\"]:  (If the -x is omitted then the script is run in \"dry run\" mode). Once you’ve fixed all issues, confirm once more that apache-rat-plugin no longer reports any license violations, this time leaving the rat.numUnapprovedLicenses property to its default, 0: ","description":" The Apache Release Audit Tool RAT (from the Apache Creadur project) checks for missing license header files. The parent pom.xml of each releasable module specifies the RAT Maven plugin, with a number of custom exclusions. ","id":68441589},"73703450":{"title":"New Feature","url":"release-notes/release-notes.html#_new_feature_29","body":"New Feature ","description":"","id":73703450},"74705826":{"title":"How to implement a spellchecker?","url":"guides/htg.html#_ugbtb_hints-and-tips_how
 -to-implement-a-spellchecker","body":"How to implement a spellchecker?  From this thread on the Apache Isis users mailing list:  One way to implement is to use the event bus:  if if the change is made through an edit, you can use @Property#domainEvent().  You’ll need some way to know which fields should be spell checked. Two ways spring to mind:  And you’ll (obviously) also need some sort of spell checker implementation to call. ","description":" From this thread on the Apache Isis users mailing list: ","id":74705826},"75054401":{"title":"Supporting Method Prefixes","url":"guides/rgcms/rgcms.html#_rgcms_methods_prefixes","body":"Supporting Method Prefixes  Supporting methods are those that are associated with properties, collections and actions, providing additional imperative business rule checking and behaviour to be performed when the user interacts with those object members.  This association is performed by name matching. Thus, a property called \"firstName\", derived from 
 a method getFirstName() may have supporting methods hideFirstName(), disableFirstName() and validateFirstName(). Supporting methods are, therefore, each characterized by their own particular prefix.  The table below lists the method prefixes that are recognized as part of Apache Isis' default programming model. ","description":" Supporting methods are those that are associated with properties, collections and actions, providing additional imperative business rule checking and behaviour to be performed when the user interacts with those object members. ","id":75054401},"77231561":{"title":"Interaction Execution","url":"guides/rgcms/rgcms.html#_rgcms_schema-ixn","body":"Interaction Execution  The interaction (\"ixn\") schema defines the serialized form of an action invocation or a property edit. In fact, it actually defines a call-graph of such executions for those cases where the WrapperFactory is used to execute sub-actions/property edits.  Each execution identifies the target objec
 t, the member to invoke, and the arguments. It also captures metrics about the execution, and the result of the execution (eg return value of an action invocation). ","description":" The interaction (\"ixn\") schema defines the serialized form of an action invocation or a property edit. In fact, it actually defines a call-graph of such executions for those cases where the WrapperFactory is used to execute sub-actions/property edits. ","id":77231561},"78112488":{"title":"Screencast","url":"guides/ugvw/ugvw.html#_screencast","body":"Screencast  This screencast describes the feature. ","description":" This screencast describes the feature. ","id":78112488},"78624086":{"title":"Other Guides","url":"guides/ugsec/ugsec.html#_other_guides","body":"Other Guides  Apache Isis documentation is broken out into a number of user, reference and \"supporting procedures\" guides.  The user guides available are:  The reference guides are:  The remaining guides are: ","description":" Apache Isis docum
 entation is broken out into a number of user, reference and \"supporting procedures\" guides. ","id":78624086},"80534397":{"title":"ContentMappingService","url":"guides/rgsvc/rgsvc.html#_rgsvc_presentation-layer-spi_ContentMappingService","body":"ContentMappingService  The ContentMappingService supports the (default implementation of the) ContentNegotiationService enabling the RestfulObjects viewer to represent domain objects in some other format as specified by the HTTP Accept header.  See ContentNegotiationService for further discussion. ","description":" The ContentMappingService supports the (default implementation of the) ContentNegotiationService enabling the RestfulObjects viewer to represent domain objects in some other format as specified by the HTTP Accept header. ","id":80534397},"83803344":{"title":"MessageService","url":"guides/rgsvc/rgsvc.html#_rgsvc_application-layer-api_MessageService","body":"MessageService  The MessageService allows domain objects to raise informat
 ion, warning or error messages. These messages can either be simple strings, or can be translated. ","description":" The MessageService allows domain objects to raise information, warning or error messages. These messages can either be simple strings, or can be translated. ","id":83803344},"83933647":{"title":"Persistence Concerns","url":"guides/ugbtb/ugbtb.html#_persistence_concerns","body":"Persistence Concerns ","description":"","id":83933647},"85931482":{"title":"Task","url":"release-notes/release-notes.html#_task_24","body":"Task ","description":"","id":85931482},"87271564":{"title":"2004:","url":"pages/articles-and-presentations/articles-and-presentations.html#_2004","body":"2004: ","description":"","id":87271564},"90561824":{"title":"Wicket Viewer","url":"release-notes/release-notes.html#_wicket_viewer_8","body":"Wicket Viewer ","description":"","id":90561824},"90935214":{"title":"Wicket Viewer","url":"release-notes/release-notes.html#_wicket_viewer_10","body":"Wicket Viewer 
 ","description":"","id":90935214},"91902412":{"title":"The issue in more detail","url":"guides/ugodn/ugodn.html#_the_issue_in_more_detail","body":"The issue in more detail  Consider these entities (yuml.me/b8681268):  In the course of a transaction, the Agreement entity is loaded into memory (not necessarily modified), and then new AgreementRoles are associated to it.  All these entities implement Comparable using ObjectContracts, and the implementation of AgreementRole's (simplified) is:  while Agreement's is implemented as:  and Party's is similarly implemented as:  DataNucleus’s persistence-by-reachability algorithm adds the AgreementRole instances into a SortedSet, which causes AgreementRole#compareTo() to fire:  In other words, in figuring out whether AgreementRole requires the persistence-by-reachability algorithm to run, it causes the adjacent associated entity Party to also be retrieved. ","description":" Consider these entities (yuml.me/b8681268): ","id":91902412},"924676
 60":{"title":"API and Usage","url":"guides/ugtst/ugtst.html#_ugtst_fixture-scripts_api-and-usage","body":"API and Usage  There are two main parts to using fixture scripts: the FixtureScripts domain service class, and the FixtureScript view model class:  Let’s look at FixtureScripts domain service in more detail first. ","description":" There are two main parts to using fixture scripts: the FixtureScripts domain service class, and the FixtureScript view model class: ","id":92467660},"96583162":{"title":"Configure toolchains plugin","url":"guides/cgcom/cgcom.html#_configure_toolchains_plugin","body":"Configure toolchains plugin  Apache Isis releases are built using Java 7, enforced using the maven toolchains plugin. Ensure that Java 7 is installed and the toolchains plugin is configured, as described in the contributors' guide. ","description":" Apache Isis releases are built using Java 7, enforced using the maven toolchains plugin. Ensure that Java 7 is installed and the toolchains
  plugin is configured, as described in the contributors' guide. ","id":96583162},"99090360":{"title":"Running the App","url":"guides/ugfun/ugfun.html#__ugfun_getting-started_simpleapp-archetype_running-the-app","body":"Running the App  The simpleapp archetype generates a single WAR file, configured to run both the Wicket viewer and the Restful Objects viewer. The archetype also configures the DataNucleus/JDO Objectstore to use an in-memory HSQLDB connection.  Once you’ve built the app, you can run the WAR in a variety of ways. ","description":" The simpleapp archetype generates a single WAR file, configured to run both the Wicket viewer and the Restful Objects viewer. The archetype also configures the DataNucleus/JDO Objectstore to use an in-memory HSQLDB connection. ","id":99090360},"100682258":{"title":"Update dependencies","url":"guides/cgcom/cgcom.html#_update_dependencies","body":"Update dependencies  With the release complete, now is a good time to bump versions of dependenc
 ies (so that there is a full release cycle to identify any possible issues).  You will probably want to create a new JIRA ticket for these updates (or if minor then use the \"catch-all\" JIRA ticket raised earlier for the next release). ","description":" With the release complete, now is a good time to bump versions of dependencies (so that there is a full release cycle to identify any possible issues). ","id":100682258},"102347041":{"title":"Bug","url":"release-notes/release-notes.html#_bug_10","body":"Bug ","description":"","id":102347041},"104167755":{"title":"How to implement a spellchecker?","url":"guides/ugbtb/ugbtb.html#_ugbtb_hints-and-tips_how-to-implement-a-spellchecker","body":"How to implement a spellchecker?  From this thread on the Apache Isis users mailing list:  One way to implement is to use the event bus:  if if the change is made through an edit, you can use @Property#domainEvent().  You’ll need some way to know which fields should be spell checked. Two ways spr
 ing to mind:  And you’ll (obviously) also need some sort of spell checker implementation to call. ","description":" From this thread on the Apache Isis users mailing list: ","id":104167755},"105480253":{"title":"Visitor","url":"guides/ugbtb/ugbtb.html#__code_visitor_code","body":"Visitor  More often than not, you’ll want to visit every element in the metamodel, and so for this you can instead subclass from MetaModelValidatorVisiting.Visitor:  You can then create your custom validator by subclassing MetaModelValidatorComposite and adding the visiting validator:  If you have more than one rule then each can live in its own visitor. ","description":" More often than not, you’ll want to visit every element in the metamodel, and so for this you can instead subclass from MetaModelValidatorVisiting.Visitor: ","id":105480253},"106558909":{"title":"contributedAs()","url":"guides/rgant/rgant.html#_rgant-ActionLayout_contributedAs","body":"contributedAs()  For a domain service action tha
 t can be contributed, the contributedAs() attribute determines how it is contributed: as an action or as an association (ie a property or collection).  The distinction between property or collection is automatic: if the action returns a java.util.Collection (or subtype) then the action is contributed as a collection; otherwise it is contributed as a property.  For a domain service action to be contributed, the domain services must have a nature nature of either VIEW or VIEW_CONTRIBUTIONS_ONLY, and the action must have safe action semantics, and takes a single argument, namely the contributee domain object.  For example:  It’s also possible to use the attribute to suppress the action completely:  In such cases, though, it would probably make more sense to annotate the action as either hidden or indeed @Programmatic. ","description":" For a domain service action that can be contributed, the contributedAs() attribute determines how it is contributed: as an action or as an association
  (ie a property or collection). ","id":106558909},"106606865":{"title":"Using the Wicket Viewer","url":"guides/rgcfg/rgcfg.html#_using_the_wicket_viewer","body":"Using the Wicket Viewer  Most of the you’re likely to run Apache Isis using the Wicket viewer. In this case Apache Isis' \"deployment type\" concept maps to Wicket’s \"configuration\" concept:  Wicket’s mechanism for specifying the \"configuration\" is to use a context parameter in web.xml; Apache Isis automatically infers its own deployment type from this. In other words: ","description":" Most of the you’re likely to run Apache Isis using the Wicket viewer. In this case Apache Isis' \"deployment type\" concept maps to Wicket’s \"configuration\" concept: ","id":106606865},"108815435":{"title":"unchanging()","url":"guides/rgant/rgant.html#_rgant-PropertyLayout_unchanging","body":"unchanging()  The unchanging() attribute is used to indicate that the value held by the property never changes over time, even when othe
 r properties of the object do change.  Setting this attribute to true is used as a hint to the viewer to not redraw the property after an AJAX update of some other property/ies of the object have changed. This is primarily for performance, eg can improve the user experience when rendering PDFs/blobs.  Note that for this to work, the viewer will also ensure that none of the property’s parent component (such as a tab group panel) are re-rendered.  For example: ","description":" The unchanging() attribute is used to indicate that the value held by the property never changes over time, even when other properties of the object do change. ","id":108815435},"109833874":{"title":"Persistable","url":"guides/rgcms/rgcms.html#_rgcms_classes_mixins_Persistable","body":"Persistable  All domain entities automatically implement the DataNucleus Persistable role interface as a result of the enhancer process (the fully qualified class name is org.datanucleus.enhancement.Persistable). So as a develo
 per you do not need to write any code to obtain the mixins that contribute to this interface.  These mixin properties/actions are all associated with the \"Metadata\" fieldset. A number of other mixins also contribute properties or actions to the \"Metadata\" fieldset. ","description":" All domain entities automatically implement the DataNucleus Persistable role interface as a result of the enhancer process (the fully qualified class name is org.datanucleus.enhancement.Persistable). So as a developer you do not need to write any code to obtain the mixins that contribute to this interface. ","id":109833874},"112375674":{"title":"Auditing","url":"migration-notes/migration-notes.html#_auditing","body":"Auditing  The AuditingService SPI service has been deprecated, instead replaced by the AuditerService.  There can be more than one implementation of this new SPI, and a framework-provided implementation (AuditerServiceLogging) will log to a file. The (non-ASF) Incode Platform's audit mod
 ule also implements the new SPI. ","description":" The AuditingService SPI service has been deprecated, instead replaced by the AuditerService. ","id":112375674},"113098816":{"title":"DataNucleus Object Store","url":"guides/htg.html#_datanucleus_object_store","body":"DataNucleus Object Store ","description":"","id":113098816},"114685873":{"title":"Usage","url":"guides/rgsvc/rgsvc.html#_usage_19","body":"Usage  To indicate that an action invocation should be published, annotate it with the @Action#publishing() annotation.  To indicate that an property edit should be published, annotate it with the @Property#publishing() annotation.  To indicate that a changed object should be published is to annotate it with the @DomainObject#publishing() annotation. ","description":" To indicate that an action invocation should be published, annotate it with the @Action#publishing() annotation. ","id":114685873},"115229271":{"title":"Domain Entities","url":"guides/ugfun/ugfun.html#_ugfun_programming
 -model_domain-entities","body":"Domain Entities  Entities are persistent domain objects, with their persistence handled by JDO/DataNucleus. As such, they are mapped to a persistent object store, typically an RDBMS, with DataNucleus taking care of both lazy loading and also the persisting of modified (\"dirty\") objects.  Domain entities are generally decorated with both DataNucleus and Apache Isis annotations. Let’s look at some of the most commonly-used annotations.  To start with, entities are flagged as being \"persistence capable\", indicating how JDO/DataNucleus should manage their identity:  All domain entities will have some sort of mandatory key properties. The example below is a very simple case, where the entity is identified by a name property:  It’s also common for domain entities to have queries annotated on them. These are used by repository domain services to query for instances of the entity:  DataNucleus provides several APIs for defining queries, including enti
 rely programmatic and type-safe APIs; but JDOQL is very similar to SQL and so easily learnt.  The corresponding repository method for the above query is: ","description":" Entities are persistent domain objects, with their persistence handled by JDO/DataNucleus. As such, they are mapped to a persistent object store, typically an RDBMS, with DataNucleus taking care of both lazy loading and also the persisting of modified (\"dirty\") objects. ","id":115229271},"117553409":{"title":"Object Icon","url":"guides/ugfun/ugfun.html#_object_icon","body":"Object Icon  The icon is often the same for all instances of a particular class, and is picked up by convention.  It’s is also possible for an individual instance to return a custom icon, typically so that some significant state of that domain object is represented. For example, a custom icon could be used to represent a shipped order, say, or an overdue library loan. ","description":" The icon is often the same for all instances of a parti
 cular class, and is picked up by convention. ","id":117553409},"121574190":{"title":"Related Services","url":"guides/rgsvc/rgsvc.html#_related_services_18","body":"Related Services  The ActionInteractionContext service allows bulk actions to co-ordinate with each other.  The QueryResultsCache is useful for caching the results of expensive method calls. ","description":" The ActionInteractionContext service allows bulk actions to co-ordinate with each other. ","id":121574190},"121879267":{"title":"Wicket Viewer","url":"release-notes/release-notes.html#_wicket_viewer_2","body":"Wicket Viewer ","description":"","id":121879267},"122762699":{"title":"Contributee","url":"guides/rgcms/rgcms.html#_rgcms_classes_contributee","body":"Contributee  The interfaces listed in this chapter act as contributees; they allow domain services to contribute actions/properties/collections to any domain objects that implement these interfaces. ","description":" The interfaces listed in this chapter act as c
 ontributees; they allow domain services to contribute actions/properties/collections to any domain objects that implement these interfaces. ","id":122762699},"125299345":{"title":"Example","url":"guides/rgant/rgant.html#_example_2","body":"Example  This example is taken from the (non-ASF) Isis addons' todoapp: ","description":" This example is taken from the (non-ASF) Isis addons' todoapp: ","id":125299345},"125961908":{"title":"Do it!","url":"pages/tg/tg.html#_do_it","body":"Do it! ","description":"","id":125961908},"134804772":{"title":"How to handle void/null results","url":"guides/ugbtb/ugbtb.html#_ugbtb_hints-and-tips_how-to-handle-void-and-null-results","body":"How to handle void/null results  From this thread on the Apache Isis users mailing list:  One way to implement this idea is to provide a custom implementation of the RoutingService SPI domain service. The default implementation will either return the current object (if not null), else the home page (as defined by @HomeP
 age) if one exists.  The following custom implementation refines this to use the breadcrumbs (available in the Wicket viewer) to return the first non-deleted domain object found in the list of breadcrumbs:  Note that the above implementation uses Java 8, so if you are using Java 7 then you’ll need to backport accordingly. ","description":" From this thread on the Apache Isis users mailing list: ","id":134804772},"148135206":{"title":"Layout Metadata Reader (deprecated)","url":"guides/ugbtb/ugbtb.html#_ugbtb_programming-model_layout-metadata-reader","body":"Layout Metadata Reader (deprecated)  The metadata for domain objects is obtained both annotations and files. There is also deprecated support for reading layouts from .layout.json files. This service provides an SPI (and default implementation) for reading layouts defined in this fashion. ","description":" The metadata for domain objects is obtained both annotations and files. There is also deprecated support for reading layouts
  from .layout.json files. This service provides an SPI (and default implementation) for reading layouts defined in this fashion. ","id":148135206},"153666205":{"title":"Implementation","url":"guides/rgsvc/rgsvc.html#_implementation_17","body":"Implementation  The core framework provides a default implementation of this service (o.a.i.core.metamodel.services.title.TitleServiceDefault). ","description":" The core framework provides a default implementation of this service (o.a.i.core.metamodel.services.title.TitleServiceDefault). ","id":153666205},"155655500":{"title":"@PrimaryKey (javax.jdo)","url":"guides/rgant/rgant.html#_rgant-PrimaryKey","body":"@PrimaryKey (javax.jdo) ","description":"","id":155655500},"158033412":{"title":"SPI","url":"guides/rgsvc/rgsvc.html#_spi_27","body":"SPI  The SPI defined by the service is: ","description":" The SPI defined by the service is: ","id":158033412},"158069558":{"title":"Usability: Defaults","url":"pages/tg/tg.html#_usability_defaults","body":
 "Usability: Defaults  Quick detour: often we want to set up defaults to go with choices. Sensible defaults for action parameters can really improve the usability of the app. ","description":" Quick detour: often we want to set up defaults to go with choices. Sensible defaults for action parameters can really improve the usability of the app. ","id":158069558},"158897592":{"title":"Refactoring","url":"guides/dg/dg.html#__dg_ide_intellij_hints-and-tips_refactoring","body":"Refactoring  Loads of good stuff on the Refactor menu; most used are:  If you can’t remember all those shortcuts, just use ctrl-shift-alt-T (might want to rebind that to something else!) and get a context-sensitive list of refactorings available for the currently selected object ","description":" Loads of good stuff on the Refactor menu; most used are: ","id":158897592},"159072030":{"title":"(non-ASF) Incode Platform","url":"migration-notes/migration-notes.html#_migration-notes_1.14.0-to-1.15.0_incode-platform","b
 ody":"(non-ASF) Incode Platform  The various (non-ASF) Isis Addons and Incode Catalog have also been combined into a single \"Incode Platform\".  While each module can still be consumed individually, the new platform versions consistently (a change in any one module will result in a re-release of all). This should make these modules easier to consume, and easier to maintain/develop.  All the modules remain open source, still licensed under the ASF v2.0 license.  As of this release, none of the groupIds or artifactIds have changed. They will be rationalized/made consistent in a future release; most probably to coincide with v2.0.0 of the framework. ","description":" The various (non-ASF) Isis Addons and Incode Catalog have also been combined into a single \"Incode Platform\". ","id":159072030},"160872749":{"title":"Related Services","url":"guides/rgfis/rgfis.html#_related_services","body":"Related Services  The default implementation of ContentNegotiationService delegates to ContentM
 appingService (if present) to convert domain entities into a stable form (eg DTO).  The ContentNegotiationService is itself called by the (default implementation of) RepresentationService. ","description":" The default implementation of ContentNegotiationService delegates to ContentMappingService (if present) to convert domain entities into a stable form (eg DTO). ","id":160872749},"163456888":{"title":"Dependency upgrade","url":"release-notes/release-notes.html#_dependency_upgrade_9","body":"Dependency upgrade ","description":"","id":163456888},"163915714":{"title":"web.xml","url":"migration-notes/migration-notes.html#_web_xml","body":"web.xml  In the web.xml, the \"isis.viewers\" context-param is now ignored. Instead the viewer_wicket.properties and viewer_restfulobjects.properties will both be loaded if present (but neither need be present). ","description":" In the web.xml, the \"isis.viewers\" context-param is now ignored. Instead the viewer_wicket.properties and viewer_restful
 objects.properties will both be loaded if present (but neither need be present). ","id":163915714},"165602306":{"title":"GridLoaderService","url":"guides/rgsvc/rgsvc.html#_rgsvc_presentation-layer-spi_GridLoaderService","body":"GridLoaderService  The GridLoaderService provides the ability to load the XML layout (grid) for a domain class. ","description":" The GridLoaderService provides the ability to load the XML layout (grid) for a domain class. ","id":165602306},"165750333":{"title":"loaded()","url":"guides/rgcms/rgcms.html#_rgcms_methods_lifecycle_loaded","body":"loaded()  The loaded() lifecycle callback method is called when a (persistent) object has just been loaded from the object store. ","description":" The loaded() lifecycle callback method is called when a (persistent) object has just been loaded from the object store. ","id":165750333},"166045728":{"title":"Sanity Check","url":"guides/cgcom/cgcom.html#_sanity_check_2","body":"Sanity Check  Ensure that the framework builds
  ok using the same command that your CI server is set up to execute (see section above). ","description":" Ensure that the framework builds ok using the same command that your CI server is set up to execute (see section above). ","id":166045728},"166899251":{"title":"Installing and Setting up","url":"guides/dg/dg.html#__dg_ide_intellij_installing","body":"Installing and Setting up  This section covers installation and setup. These notes/screenshots were prepared using IntelliJ Community Edition 14.1.x, but are believed to be compatible with more recent versions/other editions of the IDE. ","description":" This section covers installation and setup. These notes/screenshots were prepared using IntelliJ Community Edition 14.1.x, but are believed to be compatible with more recent versions/other editions of the IDE. ","id":166899251},"167039338":{"title":"Task","url":"release-notes/release-notes.html#_task_14","body":"Task ","description":"","id":167039338},"169081251":{"title":"Interact
 ion","url":"guides/rgsvc/rgsvc.html#__code_interaction_code","body":"Interaction  The public API of the Interaction class consists of:  This class is concrete (is also the implementation). ","description":" The public API of the Interaction class consists of: ","id":169081251},"174738887":{"title":"Related functionality","url":"guides/ugvw/ugvw.html#_related_functionality_2","body":"Related functionality  The Recent Pages also lists recently visited pages, selected from a drop-down. ","description":" The Recent Pages also lists recently visited pages, selected from a drop-down. ","id":174738887},"175028546":{"title":"Implementation","url":"guides/rgsvc/rgsvc.html#_implementation_5","body":"Implementation  The framework provides a default implementation of this service, namely GridServiceDefault. ","description":" The framework provides a default implementation of this service, namely GridServiceDefault. ","id":175028546},"175197970":{"title":"Performance tuning","url":"pages/tg/tg.h
 tml#_performance_tuning","body":"Performance tuning  The QueryResultsCache (request-scoped) domain service allows arbitrary objects to be cached for the duration of a request.  This can be helpful for \"naive\" code which would normally make the same query within a loop. ","description":" The QueryResultsCache (request-scoped) domain service allows arbitrary objects to be cached for the duration of a request. ","id":175197970},"175636232":{"title":"RepositoryService","url":"guides/rgsvc/rgsvc.html#_rgsvc_persistence-layer-api_RepositoryService","body":"RepositoryService  The RepositoryService collects together methods for creating, persisting and searching for entities from the underlying persistence store. It acts as an abstraction over the JDO/DataNucleus objectstore.  You can use it during prototyping to write naive queries (find all rows, then filter using the Guava Predicate API, or you can use it to call JDO named queries using JDOQL.  As an alternative, you could also use JDO
  typesafe queries through the IsisJdoSupport service. ","description":" The RepositoryService collects together methods for creating, persisting and searching for entities from the underlying persistence store. It acts as an abstraction over the JDO/DataNucleus objectstore. ","id":175636232},"176767338":{"title":"Command and Events","url":"guides/rgsvc/rgsvc.html#__rgsvc_intro_commands-and-events","body":"Command and Events  A good number of the domain services manage the execution of action invocations/property edits, along with the state of domain objects that are modified as a result of these. These services capture information which can then be used for various purposes, most notably for auditing or for publishing events, or for deferring execution such that the execution be performed in the background at some later date.  The diagram below shows how these services fit together. The outline boxes are services while the coloured boxes represent data structures - defined in the ap
 plib and therefore accessible to domain applications - which hold various information about the executions.  To explain:  Implementations of CommandService can use the Command#getMemento() method to obtain a XML equivalent of that Command, reified using the cmd.xsd schema. This can be converted back into a CommandDto using the CommandDtoUtils utility class (part of the applib).  Similarly, implementations of PublisherService can use the InteractionDtoUtils utility class to obtain a InteractionDto representing the interaction, either just for a single execution or for the entire call-graph. This can be converted into XML in a similar fashion.  Likewise, the PublishedObjects class passed to the PublisherService at the end of the interaction provides the PublishedObjects#getDto() method which returns a ChangesDto instance. This can be converted into XML using the ChangesDtoUtils utility class.  One final point: multiple PublisherService implementations are supported because different i
 mplementations may have different responsibilities. For example, the (non-ASF) Incode Platform's publishmq module is responsible for publishing messages onto an ActiveMQ event bus, for inter-system communication. However, the SPI can also be used for profiling; each execution within the call-graph contains metrics of the number of objects loaded or modified as a result of that execution, and thus could be used for application profiling. The framework provides a default PublisherServiceLogging implementation that logs this using SLF4J. ","description":" A good number of the domain services manage the execution of action invocations/property edits, along with the state of domain objects that are modified as a result of these. These services capture information which can then be used for various purposes, most notably for auditing or for publishing events","id":176767338},"178125062":{"title":"domainEvent()","url":"guides/rgant/rgant.html#_rgant-Action_domainEvent","body":"domainEvent(
 )  Whenever a domain object (or list of domain objects) is to be rendered, the framework fires off multiple domain events for every property, collection and action of the domain object. In the cases of the domain object’s actions, the events that are fired are:  Subscribers subscribe through the EventBusService using either Guava or Axon Framework annotations and can influence each of these phases.  By default the event raised is ActionDomainEvent.Default. For example:  The domainEvent() attribute allows a custom subclass to be emitted allowing more precise subscriptions (to those subclasses) to be defined instead. This attribute is also supported for collections and properties.  For example:  The benefit is that subscribers can be more targeted as to the events that they subscribe to. ","description":" Whenever a domain object (or list of domain objects) is to be rendered, the framework fires off multiple domain events for every property, collection and action of the domain objec
 t. In the cases of the domain object’s actions, the events that are fired are: ","id":178125062},"180783343":{"title":"TranslatableException","url":"guides/ugbtb/ugbtb.html#__code_translatableexception_code","body":"TranslatableException  Another mechanism by which messages can be rendered to the user are as the result of exception messages thrown and recognized by an ExceptionRecognizer.  In this case, if the exception implements TranslatableException, then the message will automatically be translated before being rendered. The TranslatableException itself takes the form: ","description":" Another mechanism by which messages can be rendered to the user are as the result of exception messages thrown and recognized by an ExceptionRecognizer. ","id":180783343},"183226640":{"title":"updatedLifecycleEvent()","url":"guides/rgant/rgant.html#_rgant-DomainObject_updatedLifecycleEvent","body":"updatedLifecycleEvent()  Whenever a (persistent) domain object has been modified and has been upd
 ated in the database, an \"updated\" lifecycle event is fired.  Subscribers subscribe through the EventBusService and can use the event to obtain a reference to the domain object.  By default the event raised is ObjectUpdatedEvent.Default. For example:  The purpose of the updatedLifecycleEvent() attribute is to allows a custom subclass to be emitted instead. A similar attribute is available for other lifecycle events.  For example:  The benefit is that subscribers can be more targeted as to the events that they subscribe to. ","description":" Whenever a (persistent) domain object has been modified and has been updated in the database, an \"updated\" lifecycle event is fired. ","id":183226640},"188123644":{"title":"2013","url":"pages/articles-and-presentations/articles-and-presentations.html#_2013","body":"2013 ","description":"","id":188123644},"189180810":{"title":"HoldsUpdatedAt","url":"guides/rgcms/rgcms.html#_rgcms_classes_roles_HoldsUpdatedAt","body":"HoldsUpdatedAt  The HoldsU
 pdatedAt role interface allows the (framework-provided) TimestampService to update each object with the current timestamp whenever it is modified in a transaction.  The interface is defined as:  The current time is obtained from the ClockService.  Entities that implement this interface often also implement HoldsUpdatedBy role interface; as a convenience the Timestampable interface combines the two roles. ","description":" The HoldsUpdatedAt role interface allows the (framework-provided) TimestampService to update each object with the current timestamp whenever it is modified in a transaction. ","id":189180810},"191180113":{"title":"persistence.xml","url":"guides/ugodn/ugodn.html#_ugodn_configuring_persistence-xml","body":"persistence.xml  DataNucleus will for itself also and read the META-INF/persistence.xml. In theory it can hold mappings and even connection strings. However, with Apache Isis we tend to use annotations instead and externalize connection strings. so its definition i
 s extremely simply, specifying just the name of the \"persistence unit\".  Here’s the one provided by the SimpleApp archetype:  Normally all one needs to do is to change the persistence-unit name.  See DataNucleus' documentation on persistence.xml to learn more. ","description":" DataNucleus will for itself also and read the META-INF/persistence.xml. In theory it can hold mappings and even connection strings. However, with Apache Isis we tend to use annotations instead and externalize connection strings. so its definition is extremely simply, specifying just the name of the \"persistence unit","id":191180113},"193237835":{"title":"Core","url":"release-notes/release-notes.html#_core_8","body":"Core ","description":"","id":193237835},"193497711":{"title":"UI Hints","url":"guides/ugfun/ugfun.html#_ugfun_ui-hints","body":"UI Hints ","description":"","id":193497711},"194608562":{"title":"SPI","url":"guides/rgsvc/rgsvc.html#_spi_19","body":"SPI  It is also possible to define use some ot
 her underlying event bus implementation, by implementing the EventBusImplementation SPI:  As is probably obvious, the EventBusService just delegates down to these method calls when its own similarly named methods are called.  If you do provide your own implementation of this SPI, be aware that your subscribers will need to use whatever convention is required (eg different annotations) such that the events are correctly routed through to your subscribers.  If you have written your own implementation of the EventBusServiceImplementation SPI, then specify instead its fully-qualified class name: ","description":" It is also possible to define use some other underlying event bus implementation, by implementing the EventBusImplementation SPI: ","id":194608562},"195374240":{"title":"Update the LDAP committee (if a PMC member)","url":"guides/cgcom/cgcom.html#_update_the_ldap_committee_if_a_pmc_member","body":"Update the LDAP committee (if a PMC member)  (Assuming that the new committer is a
  PMC member), also add them as to the PMC committee. This takes two steps:  The new committer does not officially become a member of the PMC until the ASF records have been updated. ","description":" (Assuming that the new committer is a PMC member), also add them as to the PMC committee. This takes two steps: ","id":195374240},"195848147":{"title":"ICLA, obtain new account","url":"guides/cgcom/cgcom.html#_icla_obtain_new_account","body":"ICLA, obtain new account  If required (that is, if the committer is not already a committer for a different ASF project), then ask them to complete an ICLA. As a result of this, they should also get an @apache.org user name.  More info can be found in the ASF new committers guide. ","description":" If required (that is, if the committer is not already a committer for a different ASF project), then ask them to complete an ICLA. As a result of this, they should also get an @apache.org user name. ","id":195848147},"196560907":{"title":"XJC profile","u
 rl":"guides/rgmvn/rgmvn.html#__rgmvn_xsd_xsd-submodule_xjc-profile","body":"XJC profile  The xjc profile reads the XSD generated by the xsd goal, and from it generates Java DTOs. Note that this isn’t round-tripping: the original view model is only for use within the Isis app, whereas the DTO generated from the XSDs is for use in a standalone context, eg in a Java subscriber on an event bus.  The xjc profile is defined as:  The referenced catalog.xml file instructs the xjc plugin how to resolve referenced schema locations. Only a reference for the Apache Isis common schema is likely to be needed: ","description":" The xjc profile reads the XSD generated by the xsd goal, and from it generates Java DTOs. Note that this isn’t round-tripping: the original view model is only for use within the Isis app, whereas the DTO generated from the XSDs is for use in a standalone context","id":196560907},"198329644":{"title":"Strings (Length)","url":"guides/ugfun/ugfun.html#__ugfun_programming-m
 odel_properties_datatypes_strings","body":"Strings (Length)  By default JDO/DataNucleus will map string properties to a VARCHAR(255). To limit the length, use the @Column(length=…​) annotation.  For example:  This is a good example of a case where Apache Isis infers domain semantics from the JDO annotation. ","description":" By default JDO/DataNucleus will map string properties to a VARCHAR(255). To limit the length, use the @Column(length=…​) annotation. ","id":198329644},"198382465":{"title":"Actions","url":"pages/tg/tg.html#_actions","body":"Actions  Most business functionality is implemented using actions basically a public method accepting domain classes and primitives as its parameter types. The action can return a domain entity, or a collection of entities, or a primitive/String/value, or void. If a domain entity is returned then that object is rendered immediately; if a collection is returned then the Wicket viewer renders a table. Such collections are sometimes call
 ed \"standalone\" collections. ","description":" Most business functionality is implemented using actions basically a public method accepting domain classes and primitives as its parameter types. The action can return a domain entity, or a collection of entities, or a primitive/String/value, or void. If a domain entity is returned then that object is rendered","id":198382465},"203208629":{"title":"New Feature","url":"release-notes/release-notes.html#_new_feature_18","body":"New Feature ","description":"","id":203208629},"203740710":{"title":"RoutingService","url":"guides/rgsvc/rgsvc.html#_rgsvc_presentation-layer-spi_RoutingService","body":"RoutingService  The RoutingService provides the ability to return (and therefore render) an alternative object from an action invocation.  There are two primary use cases:  Currently the routing service is used only by the Wicket viewer; it is ignored by the Restful Objects viewer. ","description":" The RoutingService provides the ability to retu
 rn (and therefore render) an alternative object from an action invocation. ","id":203740710},"204452611":{"title":"Related services","url":"guides/rgsvc/rgsvc.html#_related_services_15","body":"Related services  The ConfigurationServiceMenu exposes the allConfigurationProperties action in the user interface. ","description":" The ConfigurationServiceMenu exposes the allConfigurationProperties action in the user interface. ","id":204452611},"207811701":{"title":"API","url":"guides/rgsvc/rgsvc.html#_api_2","body":"API  The API of TitleService is: ","description":" The API of TitleService is: ","id":207811701},"209853740":{"title":"To run","url":"guides/rgmvn/rgmvn.html#_to_run","body":"To run  The plugin is activated by default, so is run simply using:  This will run any tests, and then also - because the plugin is activated by the isis-validate property and bound to the test phase, will run the plugin’s validate goal.  If for any reason you want to disable the validation, use: ","d
 escription":" The plugin is activated by default, so is run simply using: ","id":209853740},"213642269":{"title":"Moving on","url":"guides/ugfun/ugfun.html#__ugfun_getting-started_helloworld-archetype_moving-on","body":"Moving on  When you are ready to start working on your own app, we don’t recommend building on top of the helloworld app.  Instead, we suggest that you start with the simpleapp archetype instead. Although a little more complex, it provides more structure and tests, all of which will help you as your application grows. ","description":" When you are ready to start working on your own app, we don’t recommend building on top of the helloworld app. ","id":213642269},"216231183":{"title":"Raising a pull request","url":"guides/dg/dg.html#_raising_a_pull_request","body":"Raising a pull request  If you have your own fork, you can now simply push the changes you’ve made locally to your fork:  This will create a corresponding branch in the remote github repo. If you use 
 gitk --all, you’ll also see a remotes/origin/ISIS-123-blobs branch.  Then, use github to raise a pull request. Pull requests sent to the Apache GitHub repositories will forward a pull request e-mail to the dev mailing list. You’ll probably want to sign up to the dev mailing list first before issuing your first pull request (though that isn’t mandatory).  The process to raise the pull request, broadly speaking: ","description":" If you have your own fork, you can now simply push the changes you’ve made locally to your fork: ","id":216231183},"220685197":{"title":"AbstractSubscriber","url":"guides/rgcms/rgcms.html#_rgcms_classes_super_AbstractSubscriber","body":"AbstractSubscriber  This is a convenience superclass for creating subscriber domain services on the EventBusService. It uses @PostConstruct and @PreDestroy callbacks to automatically register/unregister itself with the EventBusService.  It’s important that subscribers register before any domain services that might em
 it events on the EventBusService. For example, the (non-ASF) Incode Platform security module provides a domain service that automatically seeds certain domain entities; these will generate lifecycle events and so any subscribers must be registered before such seed services. The easiest way to do this is to use the @DomainServiceLayout#menuOrder() attribute.  As a convenience, the AbstractSubscriber specifies this attribute. ","description":" This is a convenience superclass for creating subscriber domain services on the EventBusService. It uses @PostConstruct and @PreDestroy callbacks to automatically register/unregister itself with the EventBusService. ","id":220685197},"221961571":{"title":"Release prepare \"dry run\"","url":"guides/cgcom/cgcom.html#__cgcom_cutting-a-release_releasing-core_release-prepare-dry-run","body":"Release prepare \"dry run\"  Most of the work is done using the mvn release:prepare goal. Since this makes a lot of changes, we run it first in \"dry run\" mode;
  only if that works do we run the goal for real.  Run the dry-run as follows:  You may be prompted for the gpg passphrase. ","description":" Most of the work is done using the mvn release:prepare goal. Since this makes a lot of changes, we run it first in \"dry run\" mode; only if that works do we run the goal for real. ","id":221961571},"224301547":{"title":"IsisWebAppBootstrapper","url":"guides/ugbtb/ugbtb.html#__code_isiswebappbootstrapper_code","body":"IsisWebAppBootstrapper  The IsisWebAppBootstrapper servlet context listener bootstraps the shared (global) metadata for the Apache Isis framework. This listener is not required (indeed must not be configured) if the Wicket viewer is in use.  Its definition is:  Its context parameters are: ","description":" The IsisWebAppBootstrapper servlet context listener bootstraps the shared (global) metadata for the Apache Isis framework. This listener is not required (indeed must not be configured) if the Wicket viewer is in use. ","id":2243
 01547},"227377078":{"title":"Initialization","url":"guides/ugfun/ugfun.html#_ugfun_programming-model_domain-services_initialization","body":"Initialization  Services can optionally declare lifecycle callbacks to initialize them (when the app is deployed) and to shut them down (when the app is undeployed).  An Apache Isis session is available when initialization occurs (so services can interact with the object store, for example).  The framework will call any public method annotated with @PostConstruct with either no arguments of an argument of type Map<String,String>. In the latter case, the framework passes in the configuration (isis.properties and any other component-specific configuration files).  Shutdown is similar; the framework will call any method annotated with @PreDestroy. ","description":" Services can optionally declare lifecycle callbacks to initialize them (when the app is deployed) and to shut them down (when the app is undeployed). ","id":227377078},"228550183":{"tit
 le":"Policies","url":"guides/cgcom/cgcom.html#_cgcom_policies","body":"Policies ","description":"","id":228550183},"229025509":{"title":"Remove references to isis-viewer-wicket parent pom.","url":"migration-notes/migration-notes.html#_remove_references_to_code_isis_viewer_wicket_code_parent_pom","body":"Remove references to isis-viewer-wicket parent pom.  In earlier releases the Wicket viewer defined its own parent pom.xml for dependency management and its dependencies and to declare the various submodules that make up the viewer. This pom.xml has now been incorporated into the parent pom.xml for the Core framework.  Therefore, in the parent pom.xml of your own domain applications, remove: ","description":" In earlier releases the Wicket viewer defined its own parent pom.xml for dependency management and its dependencies and to declare the various submodules that make up the viewer. This pom.xml has now been incorporated into the parent pom.xml for the Core framework. ","id":2290255
 09},"230599582":{"title":"AuditingServiceInternal","url":"guides/rgfis/rgfis.html#_rgfis_persistence-layer_AuditingServiceInternal","body":"AuditingServiceInternal  The (internal) AuditingServiceInternal domain service acts as an internal facade to any configured AuditingService and AuditerService services. It is responsible for obtaining the details of all changes to domain objects within an interaction, and then to call the configured AuditingService to actually create audit entries of those changes. ","description":" The (internal) AuditingServiceInternal domain service acts as an internal facade to any configured AuditingService and AuditerService services. It is responsible for obtaining the details of all changes to domain objects within an interaction, and then to call the configured AuditingService to actually create audit entries of those changes. ","id":230599582},"232471644":{"title":"Registering Subscribers","url":"guides/rgsvc/rgsvc.html#_registering_subscribers","body"
 :"Registering Subscribers  The register() method should be called in the @PostConstruct lifecycle method. It is valid and probably the least confusing to readers to also \"unregister\" in the @PreDestroy lifecycle method (though as noted above, unregistering is actually a no-op).  For example:  This works for both singleton (application-scoped) and also @RequestScoped domain services. ","description":" The register() method should be called in the @PostConstruct lifecycle method. It is valid and probably the least confusing to readers to also \"unregister\" in the @PreDestroy lifecycle method (though as noted above, unregistering is actually a no-op). ","id":232471644},"238546442":{"title":"rebuildMetamodel()","url":"guides/rgcms/rgcms.html#__rgcms_classes_mixins_Object_rebuildMetamodel","body":"rebuildMetamodel()  The Object_rebuildMetamodel mixin provides the ability to discard the current internal metamodel data (an instance of ObjectSpecification) for the domain class of the ren
 dered object, and recreate from code and other sources (most notably, layout XML data). It has the following signature: ","description":" The Object_rebuildMetamodel mixin provides the ability to discard the current internal metamodel data (an instance of ObjectSpecification) for the domain class of the rendered object, and recreate from code and other sources (most notably, layout XML data). It has the following signature: ","id":238546442},"238979657":{"title":"New Feature","url":"release-notes/release-notes.html#_new_feature_22","body":"New Feature ","description":"","id":238979657},"240026998":{"title":"Improvement","url":"release-notes/release-notes.html#_improvement_14","body":"Improvement ","description":"","id":240026998},"242030985":{"title":"1.4.0","url":"release-notes/release-notes.html#_release-notes_1.4.0","body":"1.4.0 ","description":"","id":242030985},"243439147":{"title":"hidden()","url":"guides/rgant/rgant.html#_rgant-Property_hidden","body":"hidden()  Properties c
 an be hidden at the domain-level, indicating that they are not visible to the end-user. This attribute can also be applied to actions and collections.  For example:  The acceptable values for the where parameter are:  For example, if a property is annotated with @Title, then normally this should be hidden from all tables. Annotating with @Property(where=Where.NOWHERE) overrides this. ","description":" Properties can be hidden at the domain-level, indicating that they are not visible to the end-user. This attribute can also be applied to actions and collections. ","id":243439147},"243876171":{"title":"Task","url":"release-notes/release-notes.html#_task_28","body":"Task ","description":"","id":243876171},"244520152":{"title":"SessionLoggingService","url":"guides/rgsvc/rgsvc.html#_rgsvc_presentation-layer-spi_SessionLoggingService","body":"SessionLoggingService  The SessionLoggingService defines an SPI to keep track of (typically: to log) the current sessions that are using the applica
 tion. ","description":" The SessionLoggingService defines an SPI to keep track of (typically: to log) the current sessions that are using the application. ","id":244520152},"246409050":{"title":"Using system properties","url":"guides/ugbtb/ugbtb.html#_using_system_properties","body":"Using system properties  The servlet context initializer will search for any system properties called isis.xxx and if present will use them as overrides.  Thus, an alternative option for a Docker image is to bootstrap the servlet container (Tomcat, Jetty) with appropriate system properties set up. For example, with Tomcat this can be done by writing into the conf/catalina.properties file (see for example this stackoverflow post).  The Docker’s ENTRYPOINT therefore just needs to parse the Docker container’s own command line arguments and use to create this file. ","description":" The servlet context initializer will search for any system properties called isis.xxx and if present will use them as over
 rides. ","id":246409050},"251015067":{"title":"myapp-dom Module","url":"migration-notes/migration-notes.html#__code_myapp_dom_code_module","body":"myapp-dom Module  In your myapp-dom module (containing definitions of your persistent entities and domain services), create an empty class to represent the module. This should be at the root package for the domain, eg:  Since there is no requirement to actually instantiate this class (it merely provides the location of the myapp.dom package), we give it a private constructor.  If you have any other modules where you have either domain services or entities, similarly create an empty \"module\" class. ","description":" In your myapp-dom module (containing definitions of your persistent entities and domain services), create an empty class to represent the module. This should be at the root package for the domain, eg: ","id":251015067},"255768608":{"title":"Multi-tenancy support","url":"pages/isis-in-pictures/isis-in-pictures.html#_multi_tena
 ncy_support","body":"Multi-tenancy support  One significant feature of the (non-ASF) Incode Platform's security module is the ability to associate users and objects with a \"tenancy\". The todoapp uses this feature so that different users' list of todo items are kept separate from one another. A user with administrator is able to switch their own \"tenancy\" to the tenancy of some other user, in order to access the objects in that tenancy:  For more details, see the (non-ASF) Incode Platform's security module README. ","description":" One significant feature of the (non-ASF) Incode Platform's security module is the ability to associate users and objects with a \"tenancy\". The todoapp uses this feature so that different users' list of todo items are kept separate from one another. A user with administrator is able to switch","id":255768608},"257661017":{"title":"AppManifest (bootstrapping)","url":"guides/rgcms/rgcms.html#_rgcms_classes_AppManifest-bootstrapping","body":"AppManifest 
 (bootstrapping)  This section describes how to implement the AppManifest interface to bootstrap both an Apache Isis web application, and also its integration tests. ","description":" This section describes how to implement the AppManifest interface to bootstrap both an Apache Isis web application, and also its integration tests. ","id":257661017},"259202548":{"title":"Run-as","url":"guides/htg.html#_ugsec_hints-and-tips_run-as","body":"Run-as  This hint shows how to temporarily change the current user as reported by Shiro. This can be useful to support \"Run As\", for example.  The heavy lifting is done in ShiroService:  This could be exposed in the UI using a simple RunAsService, for example:  Credits: adapted from this gist. ","description":" This hint shows how to temporarily change the current user as reported by Shiro. This can be useful to support \"Run As\", for example. ","id":259202548},"259358868":{"title":"Hints and Tips","url":"guides/ugodn/ugodn.html#_ugodn_hints-and-ti
 ps","body":"Hints and Tips ","description":"","id":259358868},"266250802":{"title":"Implementation","url":"guides/rgsvc/rgsvc.html#_implementation_2","body":"Implementation  There is no default implementation of this service.  The (non-ASF) Isis addons' kitchensink app provides an example implementation:  which is rendered as: ","description":" There is no default implementation of this service. ","id":266250802},"267695496":{"title":"Building Apache Isis","url":"guides/dg/dg.html#_dg_building-isis","body":"Building Apache Isis ","description":"","id":267695496},"273843820":{"title":"Simulated UI (WrapperFactory)","url":"guides/ugtst/ugtst.html#_simulated_ui_code_wrapperfactory_code","body":"Simulated UI (WrapperFactory)  When we talk about integration tests/specs here, we mean tests that exercise the domain object logic, through to the actual database. But we also want the tests to exercise the app from the users’s perspective, which means including the user interface.  For most 
 other frameworks that would require having to test the application in a very heavy weight/fragile fashion using a tool such as Selenium, driving a web browser to navigate . In this regard though, Apache Isis has a significant trick up its sleeve. Because Apache Isis implements the naked objects pattern, it means that the UI is generated automatically from declared domain-objects, -views and -services. This therefore allows for other implementations of the UI.  The WrapperFactory domain service allows a test to wrap domain objects and thus to interact with said objects \"as if\" through the UI:  If the test invokes an action that is disabled, then the wrapper will throw an appropriate exception. If the action is ok to invoke, it delegates through.  What this means is that an Isis application can be tested end-to-end without having to deploy it onto a webserver; the whole app can be tested while running in-memory. Although integration tests re (necessarily) slower than unit tests, the
 y are not any harder to write (in fact, in some respects they are easier). ","description":" When we talk about integration tests/specs here, we mean tests that exercise the domain object logic, through to the actual database. But we also want the tests to exercise the app from the users’s perspective, which means including the user interface. ","id":273843820},"273985863":{"title":"addTo…​() (deprecated)","url":"guides/rgcms/rgcms.html#_rgcms_methods_prefixes_addTo","body":"addTo…​() (deprecated)  The addTo…​() supporting method is called whenever an object is added to a collection. Its purpose is to allow additional business logic to be performed.  For example:  See also removeFrom…​()` ","description":" The addTo…​() supporting method is called whenever an object is added to a collection. Its purpose is to allow additional business logic to be performed. ","id":273985863},"278859977":{"title":"promptStyle()","url":"guides/rgant/rgant.html#_rgant-PropertyLayo
 ut_promptStyle","body":"promptStyle()  The promptStyle() attribute is used to specify whether, when editing a domain object property, the new value for the property is prompted by way of a dialog box, or is prompted using an inline panel (replacing the property on the page).  If the attribute is not set, then the value of the configuration property isis.viewer.wicket.promptStyle is used. If this is itself not set, then an inline prompt is used.  For example:  Alternatively, the promptStyle() can be specified using file-based layouts. ","description":" The promptStyle() attribute is used to specify whether, when editing a domain object property, the new value for the property is prompted by way of a dialog box, or is prompted using an inline panel (replacing the property on the page). ","id":278859977},"278890330":{"title":"Build a domain app","url":"pages/tg/tg.html#_build_a_domain_app","body":"Build a domain app  The remainder of the tutorial provides guidance on building a domain 
 application. We don’t mandate any particular design, but we suggest one with no more than 3 to 6 domain entities in the first instance. If you’re stuck for ideas, then how about:  Hopefully one of those ideas appeals or sparks an idea for something of your own. ","description":" The remainder of the tutorial provides guidance on building a domain application. We don’t mandate any particular design, but we suggest one with no more than 3 to 6 domain entities in the first instance. If you’re stuck for ideas, then how about: ","id":278890330},"278999912":{"title":"Integration API","url":"guides/rgsvc/rgsvc.html#_rgsvc_integration-api","body":"Integration API ","description":"","id":278999912},"282766365":{"title":"Object CSS Styling","url":"guides/ugfun/ugfun.html#_object_css_styling","body":"Object CSS Styling  It is also possible for an object to return a CSS class. In conjunction with customized CSS this can be used to apply arbitrary styling; for example each object could b
 e rendered in a page with a different background colour. ","description":" It is also possible for an object to return a CSS class. In conjunction with customized CSS this can be used to apply arbitrary styling; for example each object could be rendered in a page with a different background colour. ","id":282766365},"285898371":{"title":"ObjectUpdatedEvent","url":"guides/rgcms/rgcms.html#_rgcms_classes_lifecycleevent_ObjectUpdatedEvent","body":"ObjectUpdatedEvent  Subclass of AbstractLifecycleEvent, broadcast when an object has just been updated in the database. This is done either explicitly when the current transaction is flushed using the DomainObjectContainer's #flush(…​) method, else is done implicitly when the transaction commits at the end of the user request.  ObjectUpdatedEvent.Default is the concrete implementation that is used. ","description":" Subclass of AbstractLifecycleEvent, broadcast when an object has just been updated in the database. This is done either expl
 icitly when the current transaction is flushed using the DomainObjectContainer's #flush(…​) method, else is done implicitly when the transaction commits at the end of the user request. ","id":285898371},"286850218":{"title":"Dependent choices for action parameters","url":"guides/ugfun/ugfun.html#_dependent_choices_for_action_parameters","body":"Dependent choices for action parameters  For action it is also possible (in a limited form) to define dependencies between parameters. Specifically, if one parameter is a drop-down choice, then other drop-down choices can be derived from it.  A good example is a category/sub-category:  Note how the choices method for the 2nd parameter also accepts the first parameter. ","description":" For action it is also possible (in a limited form) to define dependencies between parameters. Specifically, if one parameter is a drop-down choice, then other drop-down choices can be derived from it. ","id":286850218},"286919998":{"title":"Install Project 
 Lombok","url":"guides/dg/dg.html#__dg_ide_eclipse_configure-lombok","body":"Install Project Lombok  The SimpleApp archetype uses Project Lombok annotations (@Getter and @Setter and so on) to reduce the boilerplate. For Eclipse IDE this requires an installation step:  Then restart Eclipse. ","description":" The SimpleApp archetype uses Project Lombok annotations (@Getter and @Setter and so on) to reduce the boilerplate. For Eclipse IDE this requires an installation step: ","id":286919998},"287120012":{"title":"Actions","url":"guides/ugfun/ugfun.html#_actions_2","body":"Actions  Of course, the precondition business rules described above are only one type of business rule.  More generally, business rules are implemented in the form of the implementation of actions. Rather than have the end-user have to edit individual properties of numerous objects, an action can encode these rules and allow only safe transformations of the application from one consistent state to the next. ","descript
 ion":" Of course, the precondition business rules described above are only one type of business rule. ","id":287120012},"288377989":{"title":"Philosophy and Architecture","url":"guides/ugfun/ugfun.html#_ugfun_core-concepts_philosophy","body":"Philosophy and Architecture  This section describes some of the core ideas and architectural patterns upon which Apache Isis builds. ","description":" This section describes some of the core ideas and architectural patterns upon which Apache Isis builds. ","id":288377989},"288392697":{"title":"User Experience","url":"guides/ugvw/ugvw.html#_user_experience_3","body":"User Experience  The copy URL dialog is typically obtained by clicking on the icon.  Alternatively, alt+] will also open the dialog. It can be closed with either OK or the Esc key. ","description":" The copy URL dialog is typically obtained by clicking on the icon. ","id":288392697},"291813215":{"title":"Raising events programmatically","url":"guides/rgant/rgant.html#_raising_events
 _programmatically","body":"Raising events programmatically  Normally events are only raised for interactions through the UI. However, events can be raised programmatically either by calling the EventBusService API directly, or by emulating the UI by wrapping the target object using the WrapperFactory domain service. ","description":" Normally events are only raised for interactions through the UI. However, events can be raised programmatically either by calling the EventBusService API directly, or b

<TRUNCATED>

[05/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugtst/ugtst.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugtst/ugtst.pdf b/content/versions/SNAPSHOT/guides/ugtst/ugtst.pdf
index 438a2fd..9f9a261 100644
--- a/content/versions/SNAPSHOT/guides/ugtst/ugtst.pdf
+++ b/content/versions/SNAPSHOT/guides/ugtst/ugtst.pdf
@@ -4,8 +4,8 @@
 << /Title (Testing)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108231333+00'00')
-/ModDate (D:20180108231333+00'00')
+/CreationDate (D:20180213131242+00'00')
+/ModDate (D:20180213131242+00'00')
 >>
 endobj
 2 0 obj
@@ -42946,7 +42946,7 @@ endobj
 >>
 endobj
 201 0 obj
-<< /Length 41897
+<< /Length 32349
 >>
 stream
 q
@@ -43023,10 +43023,10 @@ q
 52.240 751.080 m
 543.040 751.080 l
 545.249 751.080 547.040 749.289 547.040 747.080 c
-547.040 659.380 l
-547.040 657.171 545.249 655.380 543.040 655.380 c
-52.240 655.380 l
-50.031 655.380 48.240 657.171 48.240 659.380 c
+547.040 497.240 l
+547.040 495.031 545.249 493.240 543.040 493.240 c
+52.240 493.240 l
+50.031 493.240 48.240 495.031 48.240 497.240 c
 48.240 747.080 l
 48.240 749.289 50.031 751.080 52.240 751.080 c
 h
@@ -43036,10 +43036,10 @@ f
 52.240 751.080 m
 543.040 751.080 l
 545.249 751.080 547.040 749.289 547.040 747.080 c
-547.040 659.380 l
-547.040 657.171 545.249 655.380 543.040 655.380 c
-52.240 655.380 l
-50.031 655.380 48.240 657.171 48.240 659.380 c
+547.040 497.240 l
+547.040 495.031 545.249 493.240 543.040 493.240 c
+52.240 493.240 l
+50.031 493.240 48.240 495.031 48.240 497.240 c
 48.240 747.080 l
 48.240 749.289 50.031 751.080 52.240 751.080 c
 h
@@ -43104,9 +43104,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-224.24 728.255 Td
+59.24 713.515 Td
 /F6.0 11 Tf
-<20> Tj
+<ca202020202020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43115,7 +43115,7 @@ ET
 0.000 0.400 0.600 SCN
 
 BT
-229.74 728.255 Td
+147.24 713.515 Td
 /F6.0 11 Tf
 <657874656e6473> Tj
 ET
@@ -43126,7 +43126,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-268.24 728.255 Td
+185.74 713.515 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43137,9 +43137,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-273.74 728.255 Td
+191.24 713.515 Td
 /F6.0 11 Tf
-<43756b65476c7565426f6f74737472617070696e674162737472616374> Tj
+<486561646c65737357697468426f6f74737472617070696e674162737472616374> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43148,7 +43148,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-433.24 728.255 Td
+372.74 713.515 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43159,7 +43159,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-438.74 728.255 Td
+378.24 713.515 Td
 /F6.0 11 Tf
 <7b> Tj
 ET
@@ -43170,9 +43170,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-444.24 728.255 Td
+383.74 713.515 Td
 /F6.0 11 Tf
-<2020> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43181,7 +43181,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-455.24 728.255 Td
+389.24 713.515 Td
 /F6.1 11 Tf
 <21> Tj
 ET
@@ -43192,7 +43192,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 713.515 Td
+59.24 684.0350000000001 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -43203,7 +43203,7 @@ ET
 0.000 0.400 0.600 SCN
 
 BT
-81.24000000000001 713.515 Td
+81.24000000000001 684.0350000000001 Td
 /F6.0 11 Tf
 <7075626c6963> Tj
 ET
@@ -43214,7 +43214,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-114.24000000000001 713.515 Td
+114.24000000000001 684.0350000000001 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43225,7 +43225,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-119.74000000000001 713.515 Td
+119.74000000000001 684.0350000000001 Td
 /F6.0 11 Tf
 <426f6f74737472617070696e67476c7565> Tj
 ET
@@ -43236,7 +43236,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-213.24 713.515 Td
+213.24 684.0350000000001 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -43247,7 +43247,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-218.74 713.515 Td
+218.74 684.0350000000001 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -43258,7 +43258,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-224.24 713.515 Td
+224.24 684.0350000000001 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43269,7 +43269,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-229.74 713.515 Td
+229.74 684.0350000000001 Td
 /F6.0 11 Tf
 <7b> Tj
 ET
@@ -43280,7 +43280,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 698.7750000000001 Td
+59.24 669.2950000000001 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -43291,7 +43291,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-103.24000000000001 698.7750000000001 Td
+103.24000000000001 669.2950000000001 Td
 /F6.0 11 Tf
 <7375706572> Tj
 ET
@@ -43302,7 +43302,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-130.74 698.7750000000001 Td
+130.74 669.2950000000001 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -43313,7 +43313,7 @@ ET
 0.000 0.400 0.600 SCN
 
 BT
-136.24 698.7750000000001 Td
+136.24 669.2950000000001 Td
 /F6.0 11 Tf
 <6e6577> Tj
 ET
@@ -43324,7 +43324,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-152.74 698.7750000000001 Td
+152.74 669.2950000000001 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43335,7 +43335,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-158.24 698.7750000000001 Td
+158.24 669.2950000000001 Td
 /F6.0 11 Tf
 <446f6d61696e4170704170706c69636174696f6e4d6f64756c65> Tj
 ET
@@ -43346,7 +43346,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-301.24 698.7750000000001 Td
+301.24 669.2950000000001 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -43357,7 +43357,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-306.74 698.7750000000001 Td
+306.74 669.2950000000001 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -43368,7 +43368,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-312.24 698.7750000000001 Td
+312.24 669.2950000000001 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -43379,7 +43379,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-317.74 698.7750000000001 Td
+317.74 669.2950000000001 Td
 /F6.0 11 Tf
 <3b> Tj
 ET
@@ -43390,9 +43390,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-323.24 698.7750000000001 Td
+323.24 669.2950000000001 Td
 /F6.0 11 Tf
-<202020202020202020202020202020202020202020202020> Tj
+<202020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43401,7 +43401,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-455.24 698.7750000000001 Td
+389.24 669.2950000000001 Td
 /F6.1 11 Tf
 <22> Tj
 ET
@@ -43412,7 +43412,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 684.0350000000001 Td
+59.24 654.5550000000001 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -43423,7 +43423,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-81.24000000000001 684.0350000000001 Td
+81.24000000000001 654.5550000000001 Td
 /F6.0 11 Tf
 <7d> Tj
 ET
@@ -43434,20 +43434,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 669.2950000000001 Td
+59.24 625.075 Td
 /F6.0 11 Tf
-<7d> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.600 0.600 1.000 scn
+0.600 0.600 1.000 SCN
 
 BT
-51.2745 637.655 Td
-/F6.1 10.5 Tf
-<21> Tj
+81.24000000000001 625.075 Td
+/F6.0 11 Tf
+<404265666f7265> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43455,36 +43455,21 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-3.508 Tw
-
 BT
-64.809 637.4159999999999 Td
-/F1.0 10.5 Tf
-[<7375706572636c61737320636f6e7461696e732074686520626f6f74737472> 20.01953125 <617070696e67206c6f6769632e205468697320726575736573206d616e> 20.01953125 <79206f66207468652073616d6520636c617373657320617320746865>] TJ
+119.74000000000001 625.075 Td
+/F6.0 11 Tf
+<28> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-64.809 621.636 Td
-/F1.0 10.5 Tf
-[<696e74656772> 20.01953125 <6174696f6e2074657374696e67206672> 20.01953125 <616d65776f726b>] TJ
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-51.274499999999996 600.095 Td
-/F6.1 10.5 Tf
-<22> Tj
+125.24000000000001 625.075 Td
+/F6.0 11 Tf
+<6f72646572> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43493,20 +43478,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-64.809 599.856 Td
-/F1.0 10.5 Tf
-<74686520> Tj
+152.74 625.075 Td
+/F6.0 11 Tf
+<3d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+1.000 0.400 0.000 scn
+1.000 0.400 0.000 SCN
 
 BT
-83.499 599.856 Td
-/F6.0 10.5 Tf
-<4d6f64756c65> Tj
+158.24 625.075 Td
+/F6.0 11 Tf
+<313030> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43515,9 +43500,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-114.999 599.856 Td
-/F1.0 10.5 Tf
-[<20746f2075736520746f20626f6f74737472> 20.01953125 <617020746865206170706c69636174696f6e20696e20686561646c657373206d6f64652e>] TJ
+174.74 625.075 Td
+/F6.0 11 Tf
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43526,9 +43511,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 572.076 Td
-/F1.0 10.5 Tf
-<546865206669787475726520746f2072756e20616c736f206c6976657320696e20697473206f776e207374657020646566696e6974696f6e2c20> Tj
+180.24 625.075 Td
+/F6.0 11 Tf
+<2020202020202020202020202020202020202020202020202020202020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43537,9 +43522,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-318.34200000000004 572.076 Td
-/F6.0 10.5 Tf
-<436174616c6f674f664669787475726573476c7565> Tj
+389.24 625.075 Td
+/F6.1 11 Tf
+<23> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43548,45 +43533,18 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-428.59200000000004 572.076 Td
-/F1.0 10.5 Tf
-<3a> Tj
+59.24 610.335 Td
+/F6.0 11 Tf
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-q
-0.961 0.961 0.961 scn
-52.240 556.260 m
-543.040 556.260 l
-545.249 556.260 547.040 554.469 547.040 552.260 c
-547.040 449.820 l
-547.040 447.611 545.249 445.820 543.040 445.820 c
-52.240 445.820 l
-50.031 445.820 48.240 447.611 48.240 449.820 c
-48.240 552.260 l
-48.240 554.469 50.031 556.260 52.240 556.260 c
-h
-f
-0.800 0.800 0.800 SCN
-0.75 w
-52.240 556.260 m
-543.040 556.260 l
-545.249 556.260 547.040 554.469 547.040 552.260 c
-547.040 449.820 l
-547.040 447.611 545.249 445.820 543.040 445.820 c
-52.240 445.820 l
-50.031 445.820 48.240 447.611 48.240 449.820 c
-48.240 552.260 l
-48.240 554.469 50.031 556.260 52.240 556.260 c
-h
-S
-Q
 0.000 0.400 0.600 scn
 0.000 0.400 0.600 SCN
 
 BT
-59.239999999999995 533.4350000000002 Td
+81.24000000000001 610.335 Td
 /F6.0 11 Tf
 <7075626c6963> Tj
 ET
@@ -43597,7 +43555,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-92.24 533.4350000000002 Td
+114.24000000000001 610.335 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43608,9 +43566,9 @@ ET
 0.000 0.467 0.533 SCN
 
 BT
-97.74 533.4350000000002 Td
+119.74000000000001 610.335 Td
 /F6.0 11 Tf
-<636c617373> Tj
+<766f6964> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43619,20 +43577,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.24 533.4350000000002 Td
+141.74 610.335 Td
 /F6.0 11 Tf
 <20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.667 0.533 scn
-0.000 0.667 0.533 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-130.74 533.4350000000002 Td
+147.24 610.335 Td
 /F6.0 11 Tf
-<436174616c6f674f664669787475726573476c7565> Tj
+<6265666f72655363656e6172696f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43641,20 +43599,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-246.24 533.4350000000002 Td
+224.24 610.335 Td
 /F6.0 11 Tf
-<20> Tj
+<28> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-251.74 533.4350000000002 Td
+229.74 610.335 Td
 /F6.0 11 Tf
-<657874656e6473> Tj
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43663,7 +43621,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-290.24 533.4350000000002 Td
+235.24 610.335 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43674,9 +43632,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-295.74 533.4350000000002 Td
+240.74 610.335 Td
 /F6.0 11 Tf
-<43756b65476c7565416273747261637432> Tj
+<7b> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43685,9 +43643,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-389.24 533.4350000000002 Td
+59.24 595.595 Td
 /F6.0 11 Tf
-<20> Tj
+<ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43696,9 +43654,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-394.74 533.4350000000002 Td
+103.24000000000001 595.595 Td
 /F6.0 11 Tf
-<7b> Tj
+<7375706572> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43707,20 +43665,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 518.6950000000002 Td
+130.74 595.595 Td
 /F6.0 11 Tf
-<ca202020> Tj
+<2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.600 0.600 1.000 scn
-0.600 0.600 1.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-81.24 518.6950000000002 Td
+136.24 595.595 Td
 /F6.0 11 Tf
-<404265666f7265> Tj
+<626f6f747374726170416e64536574757049665265717569726564> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43729,7 +43687,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-119.74 518.6950000000002 Td
+284.74 595.595 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -43740,9 +43698,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.24 518.6950000000002 Td
+290.24 595.595 Td
 /F6.0 11 Tf
-<76616c7565> Tj
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43751,9 +43709,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-152.74 518.6950000000002 Td
+295.74 595.595 Td
 /F6.0 11 Tf
-<3d> Tj
+<3b> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43762,42 +43720,42 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-158.24 518.6950000000002 Td
+59.24 580.855 Td
 /F6.0 11 Tf
-<7b> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-163.74 518.6950000000002 Td
+81.24000000000001 580.855 Td
 /F6.0 11 Tf
-<22> Tj
+<7d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-169.24 518.6950000000002 Td
+59.24 566.115 Td
 /F6.0 11 Tf
-<40446f6d61696e41707044656d6f> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.600 0.600 1.000 scn
+0.600 0.600 1.000 SCN
 
 BT
-246.24 518.6950000000002 Td
+81.24000000000001 566.115 Td
 /F6.0 11 Tf
-<22> Tj
+<404166746572> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43806,20 +43764,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-251.74 518.6950000000002 Td
+59.24 551.375 Td
 /F6.0 11 Tf
-<7d> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.000 0.400 0.600 scn
+0.000 0.400 0.600 SCN
 
 BT
-257.24 518.6950000000002 Td
+81.24000000000001 551.375 Td
 /F6.0 11 Tf
-<2c> Tj
+<7075626c6963> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43828,20 +43786,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-262.74 518.6950000000002 Td
+114.24000000000001 551.375 Td
 /F6.0 11 Tf
 <20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.000 0.467 0.533 scn
+0.000 0.467 0.533 SCN
 
 BT
-268.24 518.6950000000002 Td
+119.74000000000001 551.375 Td
 /F6.0 11 Tf
-<6f72646572> Tj
+<766f6964> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43850,20 +43808,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-295.74 518.6950000000002 Td
+141.74 551.375 Td
 /F6.0 11 Tf
-<3d> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-1.000 0.400 0.000 scn
-1.000 0.400 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-301.24 518.6950000000002 Td
+147.24 551.375 Td
 /F6.0 11 Tf
-<3230303030> Tj
+<61667465725363656e6172696f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43872,9 +43830,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-328.74 518.6950000000002 Td
+218.74 551.375 Td
 /F6.0 11 Tf
-<29> Tj
+<28> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43883,20 +43841,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 503.9550000000001 Td
+224.24 551.375 Td
 /F6.0 11 Tf
-<ca202020> Tj
+<637563756d626572> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-81.24 503.9550000000001 Td
+268.24 551.375 Td
 /F6.0 11 Tf
-<7075626c6963> Tj
+<2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43905,20 +43863,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-114.24 503.9550000000001 Td
+273.74 551.375 Td
 /F6.0 11 Tf
-<20> Tj
+<617069> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.467 0.533 scn
-0.000 0.467 0.533 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-119.74 503.9550000000001 Td
+290.24 551.375 Td
 /F6.0 11 Tf
-<766f6964> Tj
+<2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43927,9 +43885,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-141.74 503.9550000000001 Td
+295.74 551.375 Td
 /F6.0 11 Tf
-<20> Tj
+<5363656e6172696f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43938,9 +43896,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-147.24 503.9550000000001 Td
+339.74 551.375 Td
 /F6.0 11 Tf
-<72756e446f6d61696e41707044656d6f> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43949,9 +43907,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-235.24 503.9550000000001 Td
+345.24 551.375 Td
 /F6.0 11 Tf
-<28> Tj
+<7363> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -43960,7 +43918,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-240.74 503.9550000000001 Td
+356.24 551.375 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -43971,7 +43929,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-246.24 503.9550000000001 Td
+361.74 551.375 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -43982,7 +43940,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-251.74 503.9550000000001 Td
+367.24 551.375 Td
 /F6.0 11 Tf
 <7b> Tj
 ET
@@ -43993,7 +43951,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 489.2150000000001 Td
+59.24 536.635 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -44004,9 +43962,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-103.24 489.2150000000001 Td
+103.24000000000001 536.635 Td
 /F6.0 11 Tf
-<6669787475726553637269707473> Tj
+<7375706572> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44015,7 +43973,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-180.24 489.2150000000001 Td
+130.74 536.635 Td
 /F6.0 11 Tf
 <2e> Tj
 ET
@@ -44026,9 +43984,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-185.74 489.2150000000001 Td
+136.24 536.635 Td
 /F6.0 11 Tf
-<72756e46697874757265536372697074> Tj
+<74656172446f776e416c6c4d6f64756c6573> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44037,20 +43995,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-273.74 489.2150000000001 Td
+235.24 536.635 Td
 /F6.0 11 Tf
 <28> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-279.24 489.2150000000001 Td
+240.74 536.635 Td
 /F6.0 11 Tf
-<6e6577> Tj
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44059,9 +44017,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-295.74 489.2150000000001 Td
+246.24 536.635 Td
 /F6.0 11 Tf
-<20> Tj
+<3b> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44070,9 +44028,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-301.24 489.2150000000001 Td
+59.24 521.895 Td
 /F6.0 11 Tf
-<446f6d61696e41707044656d6f> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44081,9 +44039,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-372.74 489.2150000000001 Td
+81.24000000000001 521.895 Td
 /F6.0 11 Tf
-<28> Tj
+<7d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44092,20 +44050,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-378.24 489.2150000000001 Td
+59.24 507.155 Td
 /F6.0 11 Tf
-<29> Tj
+<7d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-383.74 489.2150000000001 Td
-/F6.0 11 Tf
-<2c> Tj
+51.2745 475.51500000000004 Td
+/F6.1 10.5 Tf
+<21> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44113,32 +44071,36 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.738 Tw
+
 BT
-389.24 489.2150000000001 Td
-/F6.0 11 Tf
-<20> Tj
+64.809 475.276 Td
+/F1.0 10.5 Tf
+[<7375706572636c61737320636f6e7461696e73206d756368206f662074686520626f6f74737472> 20.01953125 <617070696e67206c6f6769632028616e6420697320616c736f20757365642062> 20.01953125 <792074686520696e74656772> 20.01953125 <6174696f6e2074657374696e67>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-394.74 489.2150000000001 Td
-/F6.0 11 Tf
-<6e756c6c> Tj
+64.809 459.496 Td
+/F1.0 10.5 Tf
+[<6672> 20.01953125 <616d65776f726b29>] TJ
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-416.74 489.2150000000001 Td
-/F6.0 11 Tf
-<29> Tj
+51.274499999999996 437.95500000000004 Td
+/F6.1 10.5 Tf
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44147,9 +44109,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-422.24 489.2150000000001 Td
-/F6.0 11 Tf
-<3b> Tj
+64.809 437.716 Td
+/F1.0 10.5 Tf
+<74686520> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+83.499 437.716 Td
+/F6.0 10.5 Tf
+<4d6f64756c65> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44158,9 +44131,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-427.74 489.2150000000001 Td
-/F6.0 11 Tf
-<20> Tj
+114.999 437.716 Td
+/F1.0 10.5 Tf
+[<20746f2075736520746f20626f6f74737472> 20.01953125 <617020746865206170706c69636174696f6e20696e20686561646c657373206d6f64652e>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -44169,9 +44142,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-433.24 489.2150000000001 Td
-/F6.1 11 Tf
-<21> Tj
+51.274499999999996 416.175 Td
+/F6.1 10.5 Tf
+<23> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44180,20 +44153,31 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 474.4750000000001 Td
-/F6.0 11 Tf
-<ca202020> Tj
+64.809 415.936 Td
+/F1.0 10.5 Tf
+<72656d61696e646572206f662074686520636c617373206973206a75737420626f696c6572706c6174652e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+q
+0.5 w
+0.933 0.933 0.933 SCN
+113.807 313.220 m
+113.807 400.120 l
+S
+Q
+0.098 0.251 0.486 scn
+0.098 0.251 0.486 SCN
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.098 0.251 0.486 scn
+0.098 0.251 0.486 SCN
 
 BT
-81.24 474.4750000000001 Td
-/F6.0 11 Tf
-<7d> Tj
+76.73933333333332 348.09000000000003 Td
+/F3.1 24 Tf
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44201,93 +44185,132 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.118 Tw
+
 BT
-59.239999999999995 459.7350000000001 Td
-/F6.0 11 Tf
-<7d> Tj
+125.80666666666666 384.156 Td
+/F1.0 10.5 Tf
+[<46> 40.0390625 <6f72204244442073706563732c2074686520>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+1.118 Tw
+
 BT
-51.274499999999996 428.09500000000014 Td
-/F6.1 10.5 Tf
-<21> Tj
+225.3364202835648 384.156 Td
+/F6.0 10.5 Tf
+<43756b65476c7565426f6f74737472617070696e674162737472616374> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.118 Tw
+
 BT
-64.809 427.8560000000001 Td
+377.5864202835648 384.156 Td
 /F1.0 10.5 Tf
-<54686520> Tj
+<207761732070726576696f75736c792070726f7669646564202861732061> Tj
 ET
 
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+8.485 Tw
+
+BT
+125.80666666666666 368.376 Td
+/F1.0 10.5 Tf
+<42444420636f756e7465727061727420746f20> Tj
+ET
+
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+8.485 Tw
+
 BT
-86.229 427.8560000000001 Td
+251.18988095238092 368.376 Td
 /F6.0 10.5 Tf
-<6669787475726553637269707473> Tj
+<496e746567726174696f6e54657374416273747261637433> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+8.485 Tw
+
 BT
-159.72899999999998 427.8560000000001 Td
+377.1898809523809 368.376 Td
 /F1.0 10.5 Tf
-<207365727669636520697320696e686572697465642066726f6d20746865207375706572636c6173732e> Tj
+<2920746f20706572666f726d207468652072656c6576616e74> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.365 Tw
+
 BT
-48.239999999999995 400.0760000000001 Td
+125.80666666666666 352.596 Td
 /F1.0 10.5 Tf
-<546869732077696c6c206f6e6c7920616374697661746520666f7220666561747572652066696c6573207461676765642077697468202240446f6d61696e41707044656d6f222e> Tj
+[<626f6f74737472> 20.01953125 <617070696e672e20>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-5.593 Tw
+0.365 Tw
 
 BT
-48.239999999999995 372.2960000000001 Td
-/F1.0 10.5 Tf
-[<46696e616c6c79> 89.84375 <2c20746865207374657020646566696e6974696f6e73207065727461696e696e6720746f20>] TJ
+201.4776923532197 352.596 Td
+/F5.0 10.5 Tf
+<486f7765766572> Tj
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
-5.593 Tw
+0.365 Tw
 
 BT
-287.14607031249994 372.2960000000001 Td
-/F6.0 10.5 Tf
-<53696d706c654f626a656374> Tj
+245.3151923532197 352.596 Td
+/F1.0 10.5 Tf
+<2c206974207475726e73206f7574207468617420437563756d62657220646f6573206e6f7420616c6c6f7720737562636c617373696e67206f66> Tj
 ET
 
 
@@ -44297,25 +44320,47 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-5.593 Tw
+0.287 Tw
 
 BT
-350.1460703125 372.2960000000001 Td
+125.80666666666666 336.81600000000003 Td
 /F1.0 10.5 Tf
-<20646f6d61696e20656e74697479207468656e2072657369646520696e20746865> Tj
+[<4244442073706563732e205468657265666f72652074686520626f6f74737472> 20.01953125 <617070696e6720626f696c6572706c61746520287468617420696465616c6c7920776f756c642068617665206265656e>] TJ
 ET
 
 
 0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+125.80666666666666 321.036 Td
+/F1.0 10.5 Tf
+[<666163746f726564206f757420696e746f20616e206162737472> 20.01953125 <616374207375706572636c61737329206d75737420626520696e636c756465642077697468696e207468652042444420737065632e>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.239999999999995 289.25600000000003 Td
+/F1.0 10.5 Tf
+<546865206669787475726520746f2072756e20616c736f206c6976657320696e20697473206f776e207374657020646566696e6974696f6e2c20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-48.239999999999995 356.5160000000001 Td
+318.34200000000004 289.25600000000003 Td
 /F6.0 10.5 Tf
-<53696d706c654f626a656374476c7565> Tj
+<436174616c6f674f664669787475726573476c7565> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44324,37 +44369,37 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-132.24 356.5160000000001 Td
+428.59200000000004 289.25600000000003 Td
 /F1.0 10.5 Tf
-<20636c6173732e205468697320697320776865726520746865206865617679206c696674696e67206765747320646f6e653a> Tj
+<3a> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 340.700 m
-543.040 340.700 l
-545.249 340.700 547.040 338.909 547.040 336.700 c
-547.040 86.860 l
-547.040 84.651 545.249 82.860 543.040 82.860 c
-52.240 82.860 l
-50.031 82.860 48.240 84.651 48.240 86.860 c
-48.240 336.700 l
-48.240 338.909 50.031 340.700 52.240 340.700 c
+52.240 273.440 m
+543.040 273.440 l
+545.249 273.440 547.040 271.649 547.040 269.440 c
+547.040 167.000 l
+547.040 164.791 545.249 163.000 543.040 163.000 c
+52.240 163.000 l
+50.031 163.000 48.240 164.791 48.240 167.000 c
+48.240 269.440 l
+48.240 271.649 50.031 273.440 52.240 273.440 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 340.700 m
-543.040 340.700 l
-545.249 340.700 547.040 338.909 547.040 336.700 c
-547.040 86.860 l
-547.040 84.651 545.249 82.860 543.040 82.860 c
-52.240 82.860 l
-50.031 82.860 48.240 84.651 48.240 86.860 c
-48.240 336.700 l
-48.240 338.909 50.031 340.700 52.240 340.700 c
+52.240 273.440 m
+543.040 273.440 l
+545.249 273.440 547.040 271.649 547.040 269.440 c
+547.040 167.000 l
+547.040 164.791 545.249 163.000 543.040 163.000 c
+52.240 163.000 l
+50.031 163.000 48.240 164.791 48.240 167.000 c
+48.240 269.440 l
+48.240 271.649 50.031 273.440 52.240 273.440 c
 h
 S
 Q
@@ -44362,7 +44407,7 @@ Q
 0.000 0.400 0.600 SCN
 
 BT
-59.239999999999995 317.8750000000001 Td
+59.239999999999995 250.61500000000004 Td
 /F6.0 11 Tf
 <7075626c6963> Tj
 ET
@@ -44373,7 +44418,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-92.24 317.8750000000001 Td
+92.24 250.61500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -44384,7 +44429,7 @@ ET
 0.000 0.467 0.533 SCN
 
 BT
-97.74 317.8750000000001 Td
+97.74 250.61500000000004 Td
 /F6.0 11 Tf
 <636c617373> Tj
 ET
@@ -44395,7 +44440,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.24 317.8750000000001 Td
+125.24 250.61500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -44406,9 +44451,9 @@ ET
 0.000 0.667 0.533 SCN
 
 BT
-130.74 317.8750000000001 Td
+130.74 250.61500000000004 Td
 /F6.0 11 Tf
-<53696d706c654f626a6563744d656e75476c7565> Tj
+<436174616c6f674f664669787475726573476c7565> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44417,7 +44462,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-240.74 317.8750000000001 Td
+246.24 250.61500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -44428,7 +44473,7 @@ ET
 0.000 0.400 0.600 SCN
 
 BT
-246.24 317.8750000000001 Td
+251.74 250.61500000000004 Td
 /F6.0 11 Tf
 <657874656e6473> Tj
 ET
@@ -44439,7 +44484,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-284.74 317.8750000000001 Td
+290.24 250.61500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -44450,7 +44495,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-290.24 317.8750000000001 Td
+295.74 250.61500000000004 Td
 /F6.0 11 Tf
 <43756b65476c7565416273747261637432> Tj
 ET
@@ -44461,7 +44506,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-383.74 317.8750000000001 Td
+389.24 250.61500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -44472,7 +44517,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-389.24 317.8750000000001 Td
+394.74 250.61500000000004 Td
 /F6.0 11 Tf
 <7b> Tj
 ET
@@ -44483,7 +44528,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 288.3950000000001 Td
+59.239999999999995 235.87500000000006 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -44494,9 +44539,9 @@ ET
 0.600 0.600 1.000 SCN
 
 BT
-81.24 288.3950000000001 Td
+81.24 235.87500000000006 Td
 /F6.0 11 Tf
-<40476976656e> Tj
+<404265666f7265> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44505,31 +44550,42 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-114.24 288.3950000000001 Td
+119.74 235.87500000000006 Td
 /F6.0 11 Tf
 <28> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-119.74 288.3950000000001 Td
+125.24 235.87500000000006 Td
 /F6.0 11 Tf
-<22> Tj
+<76616c7565> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-125.24 288.3950000000001 Td
+152.74 235.87500000000006 Td
 /F6.0 11 Tf
-<5e7468657265206172652e2a2028> Tj
+<3d> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+158.24 235.87500000000006 Td
+/F6.0 11 Tf
+<7b> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44538,9 +44594,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-202.24 288.3950000000001 Td
+163.74 235.87500000000006 Td
 /F6.0 11 Tf
-<5c5c> Tj
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44549,9 +44605,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-213.24 288.3950000000001 Td
+169.24 235.87500000000006 Td
 /F6.0 11 Tf
-<642b292073696d706c65206f626a6563747324> Tj
+<40446f6d61696e41707044656d6f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44560,7 +44616,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-317.74 288.3950000000001 Td
+246.24 235.87500000000006 Td
 /F6.0 11 Tf
 <22> Tj
 ET
@@ -44571,9 +44627,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-323.24 288.3950000000001 Td
+251.74 235.87500000000006 Td
 /F6.0 11 Tf
-<29> Tj
+<7d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44582,20 +44638,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-328.74 288.3950000000001 Td
+257.24 235.87500000000006 Td
 /F6.0 11 Tf
-<202020202020202020202020202020202020202020202020202020> Tj
+<2c> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-477.24 288.3950000000001 Td
-/F6.1 11 Tf
-<21> Tj
+262.74 235.87500000000006 Td
+/F6.0 11 Tf
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44604,42 +44660,42 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 273.6550000000001 Td
+268.24 235.87500000000006 Td
 /F6.0 11 Tf
-<ca202020> Tj
+<6f72646572> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-81.24 273.6550000000001 Td
+295.74 235.87500000000006 Td
 /F6.0 11 Tf
-<7075626c6963> Tj
+<3d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+1.000 0.400 0.000 scn
+1.000 0.400 0.000 SCN
 
 BT
-114.24 273.6550000000001 Td
+301.24 235.87500000000006 Td
 /F6.0 11 Tf
-<20> Tj
+<3230303030> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.467 0.533 scn
-0.000 0.467 0.533 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-119.74 273.6550000000001 Td
+328.74 235.87500000000006 Td
 /F6.0 11 Tf
-<766f6964> Tj
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44648,20 +44704,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-141.74 273.6550000000001 Td
+59.239999999999995 221.13500000000005 Td
 /F6.0 11 Tf
-<20> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.000 0.400 0.600 scn
+0.000 0.400 0.600 SCN
 
 BT
-147.24 273.6550000000001 Td
+81.24 221.13500000000005 Td
 /F6.0 11 Tf
-<74686572655f6172655f4e5f73696d706c655f6f626a65637473> Tj
+<7075626c6963> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44670,9 +44726,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-290.24 273.6550000000001 Td
+114.24 221.13500000000005 Td
 /F6.0 11 Tf
-<28> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44681,9 +44737,9 @@ ET
 0.000 0.467 0.533 SCN
 
 BT
-295.74 273.6550000000001 Td
+119.74 221.13500000000005 Td
 /F6.0 11 Tf
-<696e74> Tj
+<766f6964> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44692,7 +44748,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-312.24 273.6550000000001 Td
+141.74 221.13500000000005 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -44703,9 +44759,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-317.74 273.6550000000001 Td
+147.24 221.13500000000005 Td
 /F6.0 11 Tf
-<6e> Tj
+<72756e446f6d61696e41707044656d6f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44714,7 +44770,18 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-323.24 273.6550000000001 Td
+235.24 221.13500000000005 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+240.74 221.13500000000005 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -44725,20 +44792,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-328.74 273.6550000000001 Td
+246.24 221.13500000000005 Td
 /F6.0 11 Tf
 <20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.400 0.600 scn
-0.000 0.400 0.600 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-334.24 273.6550000000001 Td
+251.74 221.13500000000005 Td
 /F6.0 11 Tf
-<7468726f7773> Tj
+<7b> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44747,20 +44814,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-367.24 273.6550000000001 Td
+59.239999999999995 206.39500000000004 Td
 /F6.0 11 Tf
-<20> Tj
+<ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.467 0.533 scn
-0.000 0.467 0.533 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-372.74 273.6550000000001 Td
+103.24 206.39500000000004 Td
 /F6.0 11 Tf
-<5468726f7761626c65> Tj
+<6669787475726553637269707473> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44769,9 +44836,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-422.24 273.6550000000001 Td
+180.24 206.39500000000004 Td
 /F6.0 11 Tf
-<20> Tj
+<2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44780,9 +44847,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-427.74 273.6550000000001 Td
+185.74 206.39500000000004 Td
 /F6.0 11 Tf
-<7b> Tj
+<72756e46697874757265536372697074> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44791,9 +44858,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 258.9150000000001 Td
+273.74 206.39500000000004 Td
 /F6.0 11 Tf
-<ca20202020202020> Tj
+<28> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44802,9 +44869,9 @@ ET
 0.000 0.400 0.600 SCN
 
 BT
-103.24 258.9150000000001 Td
+279.24 206.39500000000004 Td
 /F6.0 11 Tf
-<66696e616c> Tj
+<6e6577> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44813,20 +44880,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-130.74 258.9150000000001 Td
+295.74 206.39500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.000 0.467 0.533 scn
-0.000 0.467 0.533 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-136.24 258.9150000000001 Td
+301.24 206.39500000000004 Td
 /F6.0 11 Tf
-<4c697374> Tj
+<446f6d61696e41707044656d6f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44835,9 +44902,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-158.24 258.9150000000001 Td
+372.74 206.39500000000004 Td
 /F6.0 11 Tf
-<3c> Tj
+<28> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44846,9 +44913,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-163.74 258.9150000000001 Td
+378.24 206.39500000000004 Td
 /F6.0 11 Tf
-<53696d706c654f626a656374> Tj
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44857,9 +44924,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-229.74 258.9150000000001 Td
+383.74 206.39500000000004 Td
 /F6.0 11 Tf
-<3e> Tj
+<2c> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44868,7 +44935,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-235.24 258.9150000000001 Td
+389.24 206.39500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -44879,9 +44946,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-240.74 258.9150000000001 Td
+394.74 206.39500000000004 Td
 /F6.0 11 Tf
-<6c697374> Tj
+<6e756c6c> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44890,9 +44957,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-262.74 258.9150000000001 Td
+416.74 206.39500000000004 Td
 /F6.0 11 Tf
-<20> Tj
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44901,9 +44968,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-268.24 258.9150000000001 Td
+422.24 206.39500000000004 Td
 /F6.0 11 Tf
-<3d> Tj
+<3b> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44912,20 +44979,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-273.74 258.9150000000001 Td
+427.74 206.39500000000004 Td
 /F6.0 11 Tf
 <20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-279.24 258.9150000000001 Td
-/F6.0 11 Tf
-<77726170> Tj
+433.24 206.39500000000004 Td
+/F6.1 11 Tf
+<21> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44934,9 +45001,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-301.24 258.9150000000001 Td
+59.239999999999995 191.65500000000003 Td
 /F6.0 11 Tf
-<28> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44945,9 +45012,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-306.74 258.9150000000001 Td
+81.24 191.65500000000003 Td
 /F6.0 11 Tf
-<73696d706c654f626a6563744d656e75> Tj
+<7d> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44956,20 +45023,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-394.74 258.9150000000001 Td
+59.239999999999995 176.91500000000005 Td
 /F6.0 11 Tf
-<29> Tj
+<7d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-400.24 258.9150000000001 Td
-/F6.0 11 Tf
-<2e> Tj
+51.274499999999996 145.27500000000006 Td
+/F6.1 10.5 Tf
+<21> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -44978,20 +45045,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-405.74 258.9150000000001 Td
-/F6.0 11 Tf
-<6c697374416c6c> Tj
+64.809 145.03600000000006 Td
+/F1.0 10.5 Tf
+<54686520> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-444.24 258.9150000000001 Td
-/F6.0 11 Tf
-<28> Tj
+86.229 145.03600000000006 Td
+/F6.0 10.5 Tf
+<6669787475726553637269707473> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45000,9 +45067,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-449.74 258.9150000000001 Td
-/F6.0 11 Tf
-<29> Tj
+159.72899999999998 145.03600000000006 Td
+/F1.0 10.5 Tf
+<207365727669636520697320696e686572697465642066726f6d20746865207375706572636c6173732e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45011,9 +45078,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-455.24 258.9150000000001 Td
-/F6.0 11 Tf
-<3b> Tj
+48.239999999999995 117.25600000000006 Td
+/F1.0 10.5 Tf
+<546869732077696c6c206f6e6c7920616374697661746520666f7220666561747572652066696c6573207461676765642077697468202240446f6d61696e41707044656d6f222e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45021,43 +45088,55 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+5.593 Tw
+
 BT
-460.74 258.9150000000001 Td
-/F6.0 11 Tf
-<202020> Tj
+48.239999999999995 89.47600000000006 Td
+/F1.0 10.5 Tf
+[<46696e616c6c79> 89.84375 <2c20746865207374657020646566696e6974696f6e73207065727461696e696e6720746f20>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+5.593 Tw
+
 BT
-477.24 258.9150000000001 Td
-/F6.1 11 Tf
-<22> Tj
+287.14607031249994 89.47600000000006 Td
+/F6.0 10.5 Tf
+<53696d706c654f626a656374> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+5.593 Tw
+
 BT
-59.239999999999995 244.1750000000001 Td
-/F6.0 11 Tf
-<ca20202020202020> Tj
+350.1460703125 89.47600000000006 Td
+/F1.0 10.5 Tf
+<20646f6d61696e20656e74697479207468656e2072657369646520696e20746865> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-103.24 244.1750000000001 Td
-/F6.0 11 Tf
-<61737365727454686174> Tj
+48.239999999999995 73.69600000000005 Td
+/F6.0 10.5 Tf
+<53696d706c654f626a656374476c7565> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45066,31 +45145,109 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-158.24 244.1750000000001 Td
-/F6.0 11 Tf
-<28> Tj
+132.24 73.69600000000005 Td
+/F1.0 10.5 Tf
+<20636c6173732e205468697320697320776865726520746865206865617679206c696674696e67206765747320646f6e653a> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+q
+0.000 0.000 0.000 scn
+0.000 0.000 0.000 SCN
+1 w
+0 J
+0 j
+[ ] 0 d
+/Stamp1 Do
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-163.74 244.1750000000001 Td
-/F6.0 11 Tf
-<6c697374> Tj
+49.24 14.388 Td
+/F1.0 9 Tf
+<3238> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+Q
+Q
+
+endstream
+endobj
+202 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 201 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+/F6.0 43 0 R
+/F6.1 108 0 R
+/F3.1 37 0 R
+/F5.0 40 0 R
+>>
+/XObject << /Stamp1 341 0 R
+>>
+>>
+/Annots [203 0 R]
+>>
+endobj
+203 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
+>>
+/Subtype /Link
+/Rect [159.81300000000002 791.6099999999999 267.03900000000004 805.89]
+/Type /Annot
+>>
+endobj
+204 0 obj
+<< /Length 31183
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.961 0.961 0.961 scn
+52.240 805.890 m
+543.040 805.890 l
+545.249 805.890 547.040 804.099 547.040 801.890 c
+547.040 552.050 l
+547.040 549.841 545.249 548.050 543.040 548.050 c
+52.240 548.050 l
+50.031 548.050 48.240 549.841 48.240 552.050 c
+48.240 801.890 l
+48.240 804.099 50.031 805.890 52.240 805.890 c
+h
+f
+/DeviceRGB CS
+0.800 0.800 0.800 SCN
+0.75 w
+52.240 805.890 m
+543.040 805.890 l
+545.249 805.890 547.040 804.099 547.040 801.890 c
+547.040 552.050 l
+547.040 549.841 545.249 548.050 543.040 548.050 c
+52.240 548.050 l
+50.031 548.050 48.240 549.841 48.240 552.050 c
+48.240 801.890 l
+48.240 804.099 50.031 805.890 52.240 805.890 c
+h
+S
+Q
+/DeviceRGB cs
+0.000 0.400 0.600 scn
+/DeviceRGB CS
+0.000 0.400 0.600 SCN
 
 BT
-185.74 244.1750000000001 Td
+59.24 783.0649999999999 Td
 /F6.0 11 Tf
-<2e> Tj
+<7075626c6963> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45099,20 +45256,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-191.24 244.1750000000001 Td
+92.24000000000001 783.0649999999999 Td
 /F6.0 11 Tf
-<73697a65> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.000 0.467 0.533 scn
+0.000 0.467 0.533 SCN
 
 BT
-213.24 244.1750000000001 Td
+97.74000000000001 783.0649999999999 Td
 /F6.0 11 Tf
-<28> Tj
+<636c617373> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45121,20 +45278,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-218.74 244.1750000000001 Td
+125.24000000000001 783.0649999999999 Td
 /F6.0 11 Tf
-<29> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.000 0.667 0.533 scn
+0.000 0.667 0.533 SCN
 
 BT
-224.24 244.1750000000001 Td
+130.74 783.0649999999999 Td
 /F6.0 11 Tf
-<2c> Tj
+<53696d706c654f626a6563744d656e75476c7565> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45143,20 +45300,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-229.74 244.1750000000001 Td
+240.74 783.0649999999999 Td
 /F6.0 11 Tf
 <20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.000 0.400 0.600 scn
+0.000 0.400 0.600 SCN
 
 BT
-235.24 244.1750000000001 Td
+246.24 783.0649999999999 Td
 /F6.0 11 Tf
-<6973> Tj
+<657874656e6473> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45165,9 +45322,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-246.24 244.1750000000001 Td
+284.74 783.0649999999999 Td
 /F6.0 11 Tf
-<28> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45176,9 +45333,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-251.74 244.1750000000001 Td
+290.24 783.0649999999999 Td
 /F6.0 11 Tf
-<6e> Tj
+<43756b65476c7565416273747261637432> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45187,9 +45344,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-257.24 244.1750000000001 Td
+383.74 783.0649999999999 Td
 /F6.0 11 Tf
-<29> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45198,9 +45355,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-262.74 244.1750000000001 Td
+389.24 783.0649999999999 Td
 /F6.0 11 Tf
-<29> Tj
+<7b> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45209,20 +45366,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-268.24 244.1750000000001 Td
+59.24 753.585 Td
 /F6.0 11 Tf
-<3b> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.600 0.600 1.000 scn
+0.600 0.600 1.000 SCN
 
 BT
-59.239999999999995 229.43500000000012 Td
+81.24000000000001 753.585 Td
 /F6.0 11 Tf
-<ca202020> Tj
+<40476976656e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45231,42 +45388,42 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-81.24 229.43500000000012 Td
+114.24000000000001 753.585 Td
 /F6.0 11 Tf
-<7d> Tj
+<28> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-59.239999999999995 199.9550000000001 Td
+119.74000000000001 753.585 Td
 /F6.0 11 Tf
-<ca202020> Tj
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.600 0.600 1.000 scn
-0.600 0.600 1.000 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-81.24 199.9550000000001 Td
+125.24000000000001 753.585 Td
 /F6.0 11 Tf
-<405768656e> Tj
+<5e7468657265206172652e2a2028> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-108.74 199.9550000000001 Td
+202.24 753.585 Td
 /F6.0 11 Tf
-<28> Tj
+<5c5c> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45275,9 +45432,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-114.24 199.9550000000001 Td
+213.24 753.585 Td
 /F6.0 11 Tf
-<22> Tj
+<642b292073696d706c65206f626a6563747324> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45286,20 +45443,20 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-119.74 199.9550000000001 Td
+317.74 753.585 Td
 /F6.0 11 Tf
-<5e2e2a6372656174652061202e2a73696d706c65206f626a65637424> Tj
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-273.74 199.9550000000001 Td
+323.24 753.585 Td
 /F6.0 11 Tf
-<22> Tj
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45308,9 +45465,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-279.24 199.9550000000001 Td
+328.74 753.585 Td
 /F6.0 11 Tf
-<29> Tj
+<202020202020202020202020202020202020202020202020202020> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+477.24 753.585 Td
+/F6.1 11 Tf
+<21> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45319,7 +45487,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 185.21500000000012 Td
+59.24 738.845 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -45330,7 +45498,7 @@ ET
 0.000 0.400 0.600 SCN
 
 BT
-81.24 185.21500000000012 Td
+81.24000000000001 738.845 Td
 /F6.0 11 Tf
 <7075626c6963> Tj
 ET
@@ -45341,7 +45509,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-114.24 185.21500000000012 Td
+114.24000000000001 738.845 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -45352,7 +45520,7 @@ ET
 0.000 0.467 0.533 SCN
 
 BT
-119.74 185.21500000000012 Td
+119.74000000000001 738.845 Td
 /F6.0 11 Tf
 <766f6964> Tj
 ET
@@ -45363,7 +45531,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-141.74 185.21500000000012 Td
+141.74 738.845 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -45374,9 +45542,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-147.24 185.21500000000012 Td
+147.24 738.845 Td
 /F6.0 11 Tf
-<6372656174655f615f73696d706c655f6f626a656374> Tj
+<74686572655f6172655f4e5f73696d706c655f6f626a65637473> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -45385,18 +45553,51 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-268.24 185.21500000000012 Td
+290.24 738.845 Td
 /F6.0 11 Tf
 <28> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+0.000 0.467 0.533 scn
+0.000 0.467 0.533 SCN
+
+BT
+295.74 738.845 Td
+/F6.0 11 Tf
+<696e74> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+312.24 738.845 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-273.74 185.21500000000012 Td
+317.74 738.845 Td
+/F6.0 11 Tf
+<6e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+323.24 738.845 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -45407,7 +45608,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-279.24 185.21500000000012 Td
+328.74 738.845 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -45418,7 +45619,7 @@ ET
 0.000 0.400 0.600 SCN
 
 BT
-284.74 185.21500000000012 Td
+334.24 738.845 Td
 /F6.0 11 Tf
 <7468726f7773> Tj
 ET
@@ -45429,7 +45630,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-317.74 185.21500000000012 Td
+367.24 738.845 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -45440,7 +45641,7 @@ ET
 0.000 0.467 0.533 SCN
 
 BT
-323.24 185.21500000000012 Td
+372.74 738.845 Td
 /F6.0 11 Tf
 <5468726f7761626c65> Tj
 ET
@@ -45451,7 +45652,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-372.74 185.21500000000012 Td
+422.24 738.845 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -45462,7 +45663,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-378.24 185.21500000000012 Td
+427.74 738.845 Td
 /F6.0 11 Tf
 <7b> Tj
 ET
@@ -45473,18 +45674,139 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 170.4750000000001 Td
+59.24 724.105 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+0.000 0.400 0.600 scn
+0.000 0.400 0.600 SCN
+
+BT
+103.24000000000001 724.105 Td
+/F6.0 11 Tf
+<66696e616c> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+130.74 724.105 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.000 0.467 0.533 scn
+0.000 0.467 0.533 SCN
+
+BT
+136.24 724.105 Td
+/F6.0 11 Tf
+<4c697374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+158.24 724.105 Td
+/F6.0 11 Tf
+<3c> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+163.74 724.105 Td
+/F6.0 11 Tf
+<53696d706c654f626a656374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+229.74 724.105 Td
+/F6.0 11 Tf
+<3e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+235.24 724.105 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+240.74 724.105 Td
+/F6.0 11 Tf
+<6c697374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+262.74 724.105 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+268.24 724.105 Td
+/F6.0 11 Tf
+<3d> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-103.24 170.4750000000001 Td
+273.74 724.105 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+279.24 724.105 Td
 /F6.0 11 Tf
 <77726170> Tj
 ET
@@ -45495,7 +45817,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.24 170.4750000000001 Td
+301.24 724.105 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -45506,7 +45828,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-130.74 170.4750000000001 Td
+306.74 724.105 Td
 /F6.0 11 Tf
 <73696d706c654f626a6563744d656e75> Tj
 ET
@@ -45517,7 +45839,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-218.74 170.4750000000001 Td
+394.74 724.105 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -45528,7 +45850,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-224.24 170.4750000000001 Td
+400.24 724.105 Td
 /F6.0 11 Tf
 <2e> Tj
 ET
@@ -45539,7 +45861,568 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-229.74 170.4750000000001 Td
+405.74 724.105 Td
+/F6.0 11 Tf
+<6c697374416c6c> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+444.24 724.105 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+449.74 724.105 Td
+/F6.0 11 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+455.24 724.105 Td
+/F6.0 11 Tf
+<3b> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+460.74 724.105 Td
+/F6.0 11 Tf
+<202020> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+477.24 724.105 Td
+/F6.1 11 Tf
+<22> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 709.365 Td
+/F6.0 11 Tf
+<ca20202020202020> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+103.24000000000001 709.365 Td
+/F6.0 11 Tf
+<61737365727454686174> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+158.24 709.365 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+163.74 709.365 Td
+/F6.0 11 Tf
+<6c697374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+185.74 709.365 Td
+/F6.0 11 Tf
+<2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+191.24 709.365 Td
+/F6.0 11 Tf
+<73697a65> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+213.24 709.365 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+218.74 709.365 Td
+/F6.0 11 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+224.24 709.365 Td
+/F6.0 11 Tf
+<2c> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+229.74 709.365 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+235.24 709.365 Td
+/F6.0 11 Tf
+<6973> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+246.24 709.365 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+251.74 709.365 Td
+/F6.0 11 Tf
+<6e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+257.24 709.365 Td
+/F6.0 11 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+262.74 709.365 Td
+/F6.0 11 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+268.24 709.365 Td
+/F6.0 11 Tf
+<3b> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 694.625 Td
+/F6.0 11 Tf
+<ca202020> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+81.24000000000001 694.625 Td
+/F6.0 11 Tf
+<7d> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 665.145 Td
+/F6.0 11 Tf
+<ca202020> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.600 0.600 1.000 scn
+0.600 0.600 1.000 SCN
+
+BT
+81.24000000000001 665.145 Td
+/F6.0 11 Tf
+<405768656e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+108.74000000000001 665.145 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
+
+BT
+114.24000000000001 665.145 Td
+/F6.0 11 Tf
+<22> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
+
+BT
+119.74000000000001 665.145 Td
+/F6.0 11 Tf
+<5e2e2a6372656174652061202e2a73696d706c65206f626a65637424> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
+
+BT
+273.74 665.145 Td
+/F6.0 11 Tf
+<22> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+279.24 665.145 Td
+/F6.0 11 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 650.405 Td
+/F6.0 11 Tf
+<ca202020> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.000 0.400 0.600 scn
+0.000 0.400 0.600 SCN
+
+BT
+81.24000000000001 650.405 Td
+/F6.0 11 Tf
+<7075626c6963> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+114.24000000000001 650.405 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.000 0.467 0.533 scn
+0.000 0.467 0.533 SCN
+
+BT
+119.74000000000001 650.405 Td
+/F6.0 11 Tf
+<766f6964> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+141.74 650.405 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+147.24 650.405 Td
+/F6.0 11 Tf
+<6372656174655f615f73696d706c655f6f626a656374> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+268.24 650.405 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+273.74 650.405 Td
+/F6.0 11 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+279.24 650.405 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.000 0.400 0.600 scn
+0.000 0.400 0.600 SCN
+
+BT
+284.74 650.405 Td
+/F6.0 11 Tf
+<7468726f7773> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+317.74 650.405 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.000 0.467 0.533 scn
+0.000 0.467 0.533 SCN
+
+BT
+323.24 650.405 Td
+/F6.0 11 Tf
+<5468726f7761626c65> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+372.74 650.405 Td
+/F6.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+378.24 650.405 Td
+/F6.0 11 Tf
+<7b> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+59.24 635.665 Td
+/F6.0 11 Tf
+<ca20202020202020> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+103.24000000000001 635.665 Td
+/F6.0 11 Tf
+<77726170> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+125.24000000000001 635.665 Td
+/F6.0 11 Tf
+<28> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+130.74 635.665 Td
+/F6.0 11 Tf
+<73696d706c654f626a6563744d656e75> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+218.74 635.665 Td
+/F6.0 11 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+224.24 635.665 Td
+/F6.0 11 Tf
+<2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+229.74 635.665 Td
 /F6.0 11 Tf
 <637265617465> Tj
 ET
@@ -45550,7 +46433,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-262.74 170.4750000000001 Td
+262.74 635.665 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -45561,7 +46444,7 @@ ET
 0.000 0.467 0.533 SCN
 
 BT
-268.24 170.4750000000001 Td
+268.24 635.665 Td
 /F6.0 11 Tf
 <55554944> Tj
 ET
@@ -45572,7 +46455,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-290.24 170.4750000000001 Td
+290.24 635.665 Td
 /F6.0 11 Tf
 <2e> Tj
 ET
@@ -45583,7 +46466,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-295.74 170.4750000000001 Td
+295.74 635.665 Td
 /F6.0 11 Tf
 <72616e646f6d55554944> Tj
 ET
@@ -45594,7 +46477,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-350.74 170.4750000000001 Td
+350.74 635.665 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -45605,7 +46488,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-356.24 170.4750000000001 Td
+356.24 635.665 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -45616,7 +46499,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-361.74 170.4750000000001 Td
+361.74 635.665 Td
 /F6.0 11 Tf
 <2e> Tj
 ET
@@ -45627,7 +46510,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-367.24 170.4750000000001 Td
+367.24 635.665 Td
 /F6.0 11 Tf
 <746f537472696e67> Tj
 ET
@@ -45638,7 +46521,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-411.24 170.4750000000001 Td
+411.24 635.665 Td
 /F6.0 11 Tf
 <28> Tj
 ET
@@ -45649,7 +46532,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-416.74 170.4750000000001 Td
+416.74 635.665 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -45660,7 +46543,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-422.24 170.4750000000001 Td
+422.24 635.665 Td
 /F6.0 11 Tf
 <29> Tj
 ET
@@ -45671,7 +46554,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-427.74 170.4750000000001 Td
+427.74 635.665 Td
 /F6.0 11 Tf
 <3b> Tj
 ET
@@ -45682,7 +46565,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 155.7350000000001 Td
+59.24 620.925 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -45693,7 +46576,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-81.24 155.7350000000001 Td
+81.24000000000001 620.925 Td
 /F6.0 11 Tf
 <7d> Tj
 ET
@@ -45704,7 +46587,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 126.25500000000008 Td
+59.24 591.4449999999999 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -45715,7 +46598,7 @@ ET
 0.600 0.600 1.000 SCN
 
 BT
-81.24 126.25500000000008 Td
+81.24000000000001 591.4449999999999 Td
 /F6.0 11 Tf
 <40496e6a656374> Tj
 ET
@@ -45726,7 +46609,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 111.51500000000007 Td
+59.24 576.7049999999999 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -45737,7 +46620,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-81.24 111.51500000000007 Td
+81.24000000000001 576.7049999999999 Td
 /F6.0 11 Tf
 <53696d706c654f626a6563744d656e75> Tj
 ET
@@ -45748,7 +46631,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-169.24 111.51500000000007 Td
+169.24 576.7049999999999 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -45759,7 +46642,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-174.74 111.51500000000007 Td
+174.74 576.7049999999999 Td
 /F6.0 11 Tf
 <73696d706c654f626a6563744d656e75> Tj
 ET
@@ -45770,7 +46653,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-262.74 111.51500000000007 Td
+262.74 576.7049999999999 Td
 /F6.0 11 Tf
 <3b> Tj
 ET
@@ -45781,7 +46664,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-268.24 111.51500000000007 Td
+268.24 576.7049999999999 Td
 /F6.0 11 Tf
 <2020202020202020202020202020202020202020202020202020202020202020202020202020> Tj
 ET
@@ -45792,7 +46675,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-477.24 111.51500000000007 Td
+477.24 576.7049999999999 Td
 /F6.1 11 Tf
 <23> Tj
 ET
@@ -45803,7 +46686,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 96.77500000000006 Td
+59.24 561.9649999999999 Td
 /F6.0 11 Tf
 <7d> Tj
 ET
@@ -45814,7 +46697,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-51.274499999999996 65.13500000000008 Td
+51.2745 530.3249999999999 Td
 /F6.1 10.5 Tf
 <21> Tj
 ET
@@ -45825,76 +46708,18 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-64.809 64.89600000000007 Td
+64.809 530.086 Td
 /F1.0 10.5 Tf
 <726567657820746f206d6174636820746f20666561747572652066696c652073706563696669636174696f6e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-q
-0.000 0.000 0.000 scn
-0.000 0.000 0.000 SCN
-1 w
-0 J
-0 j
-[ ] 0 d
-/Stamp1 Do
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-49.24 14.388 Td
-/F1.0 9 Tf
-<3238> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-Q
-Q
-
-endstream
-endobj
-202 0 obj
-<< /Type /Page
-/Parent 3 0 R
-/MediaBox [0 0 595.28 841.89]
-/Contents 201 0 R
-/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Font << /F1.0 8 0 R
-/F6.0 43 0 R
-/F6.1 108 0 R
->>
-/XObject << /Stamp1 341 0 R
->>
->>
-/Annots [203 0 R]
->>
-endobj
-203 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
->>
-/Subtype /Link
-/Rect [159.81300000000002 791.6099999999999 267.03900000000004 805.89]
-/Type /Annot
->>
-endobj
-204 0 obj
-<< /Length 21283
->>
-stream
-q
-/DeviceRGB cs
 0.694 0.129 0.275 scn
-/DeviceRGB CS
 0.694 0.129 0.275 SCN
 
 BT
-51.2745 794.165 Td
+51.274499999999996 508.54499999999996 Td
 /F6.1 10.5 Tf
 <22> Tj
 ET
@@ -45905,7 +46730,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-64.809 793.9259999999999 Td
+64.809 508.306 Td
 /F1.0 10.5 Tf
 <74686520696e6865726974656420> Tj
 ET
@@ -45916,7 +46741,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-132.66 793.9259999999999 Td
+132.66 508.306 Td
 /F6.0 10.5 Tf
 <7772617028> Tj
 ET
@@ -45927,7 +46752,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-158.91 793.9259999999999 Td
+158.91 508.306 Td
 /F7.0 10.5 Tf
 <c9> Tj
 ET
@@ -45938,7 +46763,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-169.41 793.9259999999999 Td
+169.41 508.306 Td
 /F6.0 10.5 Tf
 <29> Tj
 ET
@@ -45949,7 +46774,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-174.66 793.9259999999999 Td
+174.66 508.306 Td
 /F1.0 10.5 Tf
 <206d6574686f642064656c65676174657320746f20> Tj
 ET
@@ -45960,7 +46785,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-280.19550000000004 793.9259999999999 Td
+280.19550000000004 508.306 Td
 /F6.0 10.5 Tf
 <57726170706572466163746f7279237772617028> Tj
 ET
@@ -45971,7 +46796,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-385.19550000000004 793.9259999999999 Td
+385.19550000000004 508.306 Td
 /F7.0 10.5 Tf
 <c9> Tj
 ET
@@ -45982,7 +46807,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-395.69550000000004 793.9259999999999 Td
+395.69550000000004 508.306 Td
 /F6.0 10.5 Tf
 <29> Tj
 ET
@@ -45993,7 +46818,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-51.274499999999996 772.385 Td
+51.274499999999996 486.76500000000004 Td
 /F6.1 10.5 Tf
 <23> Tj
 ET
@@ -46004,7 +46829,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-64.809 772.146 Td
+64.809 486.526 Td
 /F1.0 10.5 Tf
 [<696e6a656374656420696e2074686520757375616c207761> 20.01953125 <79>] TJ
 ET
@@ -46014,8 +46839,8 @@ ET
 q
 0.5 w
 0.933 0.933 0.933 SCN
-113.807 685.210 m
-113.807 756.330 l
+113.807 399.590 m
+113.807 470.710 l
 S
 Q
 0.067 0.067 0.067 scn
@@ -46026,7 +46851,7 @@ Q
 0.067 0.067 0.067 SCN
 
 BT
-80.17133333333332 712.19 Td
+80.17133333333332 426.57000000000005 Td
 /F3.1 24 Tf
 <21> Tj
 ET
@@ -46039,7 +46864,7 @@ ET
 1.688 Tw
 
 BT
-125.80666666666666 740.366 Td
+125.80666666666666 454.74600000000004 Td
 /F1.0 10.5 Tf
 <54686520> Tj
 ET
@@ -46054,7 +46879,7 @@ ET
 1.688 Tw
 
 BT
-148.91443885216344 740.366 Td
+148.91443885216344 454.74600000000004 Td
 /F6.0 10.5 Tf
 <53637261746368706164> Tj
 ET
@@ -46069,7 +46894,7 @@ ET
 1.688 Tw
 
 BT
-201.41443885216344 740.366 Td
+201.41443885216344 454.74600000000004 Td
 /F1.0 10.5 Tf
 [<20646f6d61696e2073657276696365206973206f6e65207761> 20.01953125 <7920696e20776869636820676c756520636c61737365732063616e2070617373207374617465>] TJ
 ET
@@ -46084,7 +46909,7 @@ ET
 0.067 Tw
 
 BT
-125.80666666666666 724.586 Td
+125.80666666666666 438.966 Td
 /F1.0 10.5 Tf
 [<6265747765656e2065616368206f746865722e204f722c20666f72206d6f7265207479706520736166657479> 89.84375 <2c20796f7520636f756c6420646576656c6f7020796f7572206f776e20637573746f6d>] TJ
 ET
@@ -46099,7 +46924,7 @@ ET
 0.205 Tw
 
 BT
-125.80666666666666 708.806 Td
+125.80666666666666 423.18600000000004 Td
 /F1.0 10.5 Tf
 <646f6d61696e20736572766963657320666f722065616368207363656e6172696f2c20616e6420696e6a65637420746865736520696e20617320726567756c61722073657276696365732e2053656520> Tj
 ET
@@ -46114,7 +46939,7 @@ ET
 0.205 Tw
 
 BT
-516.602 708.806 Td
+516.602 423.18600000000004 Td
 /F1.0 10.5 Tf
 <74686973> Tj
 ET
@@ -46127,7 +46952,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-125.80666666666666 693.0260000000001 Td
+125.80666666666666 407.40600000000006 Td
 /F1.0 10.5 Tf
 <626c6f67> Tj
 ET
@@ -46138,7 +46963,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-147.20566666666667 693.0260000000001 Td
+147.20566666666667 407.40600000000006 Td
 /F1.0 10.5 Tf
 <20706f737420666f72206d6f72652064657461696c732e> Tj
 ET
@@ -46148,8 +46973,8 @@ ET
 q
 0.5 w
 0.933 0.933 0.933 SCN
-113.807 633.650 m
-113.807 673.210 l
+113.807 348.030 m
+113.807 387.590 l
 S
 Q
 0.067 0.067 0.067 scn
@@ -46160,7 +46985,7 @@ Q
 0.067 0.067 0.067 SCN
 
 BT
-80.17133333333332 644.85 Td
+80.17133333333332 359.2300000000001 Td
 /F3.1 24 Tf
 <21> Tj
 ET
@@ -46173,7 +46998,7 @@ ET
 3.070 Tw
 
 BT
-125.80666666666666 657.246 Td
+125.80666666666666 371.62600000000003 Td
 /F1.0 10.5 Tf
 <4966207573696e67204a61766120382c206e6f7465207468617420437563756d626572204a564d20737570706f727473206120> Tj
 ET
@@ -46188,7 +47013,7 @@ ET
 3.070 Tw
 
 BT
-412.88544444444443 657.246 Td
+412.88544444444443 371.62600000000003 Td
 /F1.0 10.5 Tf
 <73696d706c69666965642073796e746178207573696e67> Tj
 ET
@@ -46201,7 +47026,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-125.80666666666666 641.466 Td
+125.80666666666666 355.846 Td
 /F1.0 10.5 Tf
 <6c616d62646173> Tj
 ET
@@ -46212,7 +47037,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-168.38416666666666 641.466 Td
+168.38416666666666 355.846 Td
 /F1.0 10.5 Tf
 <2e> Tj
 ET
@@ -46223,7 +47048,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 597.6260000000001 Td
+48.239999999999995 312.00600000000003 Td
 /F2.0 18 Tf
 [<352e332e204d6176656e20436f6e6669677572> 20.01953125 <6174696f6e>] TJ
 ET
@@ -46236,7 +47061,7 @@ ET
 0.864 Tw
 
 BT
-48.239999999999995 569.6060000000001 Td
+48.239999999999995 283.986 Td
 /F1.0 10.5 Tf
 <41706163686520497369732720424444207370656320737570706f7274206973206175746f6d61746963616c6c7920636f6e6669677572656420696620796f75207573652074686520> Tj
 ET
@@ -46251,7 +47076,7 @@ ET
 0.864 Tw
 
 BT
-420.5704235491071 569.6060000000001 Td
+420.5704235491071 283.986 Td
 /F1.0 10.5 Tf
 <53696d706c6541707020617263686574797065> Tj
 ET
@@ -46266,7 +47091,7 @@ ET
 0.864 Tw
 
 BT
-528.660083844866 569.6060000000001 Td
+528.660083844866 283.986 Td
 /F1.0 10.5 Tf
 [<2e2054> 29.78515625 <6f>] TJ
 ET
@@ -46279,7 +47104,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 553.8260000000001 Td
+48.239999999999995 268.206 Td
 /F1.0 10.5 Tf
 [<736574206974207570206d616e75616c6c79> 89.84375 <2c207570646174652074686520>] TJ
 ET
@@ -46290,7 +47115,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-198.717140625 553.8260000000001 Td
+198.717140625 268.206 Td
 /F6.0 10.5 Tf
 <706f6d2e786d6c> Tj
 ET
@@ -46301,7 +47126,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-235.467140625 553.8260000000001 Td
+235.467140625 268.206 Td
 /F1.0 10.5 Tf
 <206f6620796f757220646f6d61696e206f626a656374206d6f64656c206d6f64756c653a> Tj
 ET
@@ -46310,28 +47135,28 @@ ET
 0.000 0.000 0.000 scn
 q
 0.961 0.961 0.961 scn
-52.240 538.010 m
-543.040 538.010 l
-545.249 538.010 547.040 536.219 547.040 534.010 c
-547.040 446.310 l
-547.040 444.101 545.249 442.310 543.040 442.310 c
-52.240 442.310 l
-50.031 442.310 48.240 444.101 48.240 446.310 c
-48.240 534.010 l
-48.240 536.219 50.031 538.010 52.240 538.010 c
+52.240 252.390 m
+543.040 252.390 l
+545.249 252.390 547.040 250.599 547.040 248.390 c
+547.040 160.690 l
+547.040 158.481 545.249 156.690 543.040 156.690 c
+52.240 156.690 l
+50.031 156.690 48.240 158.481 48.240 160.690 c
+48.240 248.390 l
+48.240 250.599 50.031 252.390 52.240 252.390 c
 h
 f
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 538.010 m
-543.040 538.010 l
-545.249 538.010 547.040 536.219 547.040 534.010 c
-547.040 446.310 l
-547.040 444.101 545.249 442.310 543.040 442.310 c
-52.240 442.310 l
-50.031 442.310 48.240 444.101 48.240 446.310 c
-48.240 534.010 l
-48.240 536.219 50.031 538.010 52.240 538.010 c
+52.240 252.390 m
+543.040 252.390 l
+545.249 252.390 547.040 250.599 547.040 248.390 c
+547.040 160.690 l
+547.040 158.481 545.249 156.690 543.040 156.690 c
+52.240 156.690 l
+50.031 156.690 48.240 158.481 48.240 160.690 c
+48.240 248.390 l
+48.240 250.599 50.031 252.390 52.240 252.390 c
 h
 S
 Q
@@ -46339,7 +47164,7 @@ Q
 0.184 0.435 0.624 SCN
 
 BT
-59.239999999999995 515.1850000000002 Td
+59.239999999999995 229.56499999999997 Td
 /F6.0 11 Tf
 <3c646570656e64656e63793e> Tj
 ET
@@ -46350,7 +47175,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 500.4450000000002 Td
+59.239999999999995 214.825 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -46361,7 +47186,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-81.24 500.4450000000002 Td
+81.24 214.825 Td
 /F6.0 11 Tf
 <3c67726f757049643e> Tj
 ET
@@ -46372,7 +47197,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-130.74 500.4450000000002 Td
+130.74 214.825 Td
 /F6.0 11 Tf
 <6f72672e6170616368652e697369732e636f7265> Tj
 ET
@@ -46383,7 +47208,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-240.74 500.4450000000002 Td
+240.74 214.825 Td
 /F6.0 11 Tf
 <3c2f67726f757049643e> Tj
 ET
@@ -46394,7 +47219,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 485.7050000000002 Td
+59.239999999999995 200.08499999999998 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -46405,7 +47230,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-81.24 485.7050000000002 Td
+81.24 200.08499999999998 Td
 /F6.0 11 Tf
 <3c617274696661637449643e> Tj
 ET
@@ -46416,7 +47241,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-147.24 485.7050000000002 Td
+147.24 200.08499999999998 Td
 /F6.0 11 Tf
 <697369732d636f72652d73706563737570706f7274> Tj
 ET
@@ -46427,7 +47252,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-262.74 485.7050000000002 Td
+262.74 200.08499999999998 Td
 /F6.0 11 Tf
 <3c2f617274696661637449643e> Tj
 ET
@@ -46438,7 +47263,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 470.9650000000002 Td
+59.239999999999995 185.34499999999997 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -46449,7 +47274,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-81.24 470.9650000000002 Td
+81.24 185.34499999999997 Td
 /F6.0 11 Tf
 <3c73636f70653e> Tj
 ET
@@ -46460,7 +47285,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-119.74 470.9650000000002 Td
+119.74 185.34499999999997 Td
 /F6.0 11 Tf
 <74657374> Tj
 ET
@@ -46471,7 +47296,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-141.74 470.9650000000002 Td
+141.74 185.34499999999997 Td
 /F6.0 11 Tf
 <3c2f73636f70653e> Tj
 ET
@@ -46482,7 +47307,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-185.74 470.9650000000002 Td
+185.74 185.34499999999997 Td
 /F6.0 11 Tf
 <20> Tj
 ET
@@ -46493,7 +47318,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-191.24 470.9650000000002 Td
+191.24 185.34499999999997 Td
 /F6.1 11 Tf
 <21> Tj
 ET
@@ -46504,7 +47329,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-59.239999999999995 456.2250000000002 Td
+59.239999999999995 170.60499999999996 Td
 /F6.0 11 Tf
 <3c2f646570656e64656e63793e> Tj
 ET
@@ -46515,7 +47340,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-51.274499999999996 424.5850000000002 Td
+51.274499999999996 138.96499999999997 Td
 /F6.1 10.5 Tf
 <21> Tj
 ET
@@ -46526,7 +47351,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-64.809 424.3460000000002 Td
+64.809 138.72599999999997 Td
 /F1.0 10.5 Tf
 <4e6f726d616c6c7920> Tj
 ET
@@ -46537,7 +47362,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-114.789 424.3460000000002 Td
+114.789 138.72599999999997 Td
 /F6.0 10.5 Tf
 <74657374> Tj
 ET
@@ -46548,7 +47373,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-135.789 424.3460000000002 Td
+135.789 138.72599999999997 Td
 /F1.0 10.5 Tf
 [<3b20757375616c204d6176656e2073636f70696e672072756c6573206170706c79> 89.84375 <2e>] TJ
 ET
@@ -46559,7 +47384,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.239999999999995 396.5660000000002 Td
+48.239999999999995 110.94599999999997 Td
 /F1.0 10.5 Tf
 [<54686520636f6e6669677572> 20.01953125 <6174696f6e206973207772> 20.01953125 <6170706564207570206173206d6176656e206d6978696e733a>] TJ
 ET
@@ -46567,37 +47392,158 @@ ET
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 q
+0.000 0.000 0.000 scn
+0.000 0.000 0.000 SCN
+1 w
+0 J
+0 j
+[ ] 0 d
+/Stamp1 Do
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+535.978 14.388 Td
+/F1.0 9 Tf
+<3239> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+Q
+Q
+
+endstream
+endobj
+205 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 204 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F6.0 43 0 R
+/F6.1 108 0 R
+/F1.0 8 0 R
+/F7.0 84 0 R
+/F3.1 37 0 R
+/F2.0 16 0 R
+>>
+/XObject << /Stamp1 341 0 R
+>>
+>>
+/Annots [206 0 R 207 0 R 208 0 R 209 0 R 210 0 R 212 0 R]
+>>
+endobj
+206 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../rgsvc/rgsvc.pdf#_rgsvc_api_Scratchpad)
+>>
+/Subtype /Link
+/Rect [148.91443885216344 453.276 201.41443885216344 463.776]
+/Type /Annot
+>>
+endobj
+207 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://www.thinkcode.se/blog/2017/04/01/sharing-state-between-steps-in-cucumberjvm-using-picocontainer)
+>>
+/Subtype /Link
+/Rect [516.602 420.12000000000006 535.04 434.40000000000003]
+/Type /Annot
+>>
+endobj
+208 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (http://www.thinkcode.se/blog/2017/04/01/sharing-state-between-steps-in-cucumberjvm-using-picocontainer)
+>>
+/Subtype /Link
+/Rect [125.80666666666666 404.3400000000001 147.20566666666667 418.62000000000006]
+/Type /Annot
+>>
+endobj
+209 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (https://cucumber.io/docs/reference/jvm#java-8-lambdas)
+>>
+/Subtype /Link
+/Rect [412.88544444444443 368.56000000000006 535.04 382.84000000000003]
+/Type /Annot
+>>
+endobj
+210 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (https://cucumber.io/docs/reference/jvm#java-8-lambdas)
+>>
+/Subtype /Link
+/Rect [125.80666666666666 352.78000000000003 168.38416666666666 367.06]
+/Type /Annot
+>>
+endobj
+211 0 obj
+[205 0 R /XYZ 0 336.03000000000003 null]
+endobj
+212 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../ugfun/ugfun.pdf#_ugfun_getting-started_simpleapp-archetype)
+>>
+/Subtype /Link
+/Rect [420.5704235491071 280.91999999999996 528.660083844866 295.2]
+/Type /Annot
+>>
+endobj
+213 0 obj
+<< /Length 20152
+>>
+stream
+q
+q
+/DeviceRGB cs
 0.961 0.961 0.961 scn
-52.240 380.750 m
-543.040 380.750 l
-545.249 380.750 547.040 378.959 547.040 376.750 c
-547.040 53.210 l
-547.040 51.001 545.249 49.210 543.040 49.210 c
-52.240 49.210 l
-50.031 49.210 48.240 51.001 48.240 53.210 c
-48.240 376.750 l
-48.240 378.959 50.031 380.750 52.240 380.750 c
+52.240 805.890 m
+543.040 805.890 l
+545.249 805.890 547.040 804.099 547.040 801.890 c
+547.040 478.350 l
+547.040 476.141 545.249 474.350 543.040 474.350 c
+52.240 474.350 l
+50.031 474.350 48.240 476.141 48.240 478.350 c
+48.240 801.890 l
+48.240 804.099 50.031 805.890 52.240 805.890 c
 h
 f
+/DeviceRGB CS
 0.800 0.800 0.800 SCN
 0.75 w
-52.240 380.750 m
-543.040 380.750 l
-545.249 380.750 547.040 378.959 547.040 376.750 c
-547.040 53.210 l
-547.040 51.001 545.249 49.210 543.040 49.210 c
-52.240 49.210 l
-50.031 49.210 48.240 51.001 48.240 53.210 c
-48.240 376.750 l
-48.240 378.959 50.031 380.750 52.240 380.750 c
+52.240 805.890 m
+543.040 805.890 l
+545.249 805.890 547.040 804.099 547.040 801.890 c
+547.040 478.350 l
+547.040 476.141 545.249 474.350 543.040 474.350 c
+52.240 474.350 l
+50.031 474.350 48.240 476.141 48.240 478.350 c
+48.240 801.890 l
+48.240 804.099 50.031 805.890 52.240 805.890 c
 h
 S
 Q
+/DeviceRGB cs
 0.184 0.435 0.624 scn
+/DeviceRGB CS
 0.184 0.435 0.624 SCN
 
 BT
-59.239999999999995 357.92500000000024 Td
+59.24 783.0649999999999 Td
 /F6.0 11 Tf
 <3c706c7567696e733e> Tj
 ET
@@ -46608,7 +47554,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 343.18500000000023 Td
+59.24 768.3249999999999 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -46619,7 +47565,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-81.24 343.18500000000023 Td
+81.24000000000001 768.3249999999999 Td
 /F6.0 11 Tf
 <3c706c7567696e3e> Tj
 ET
@@ -46630,7 +47576,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 328.4450000000002 Td
+59.24 753.585 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -46641,7 +47587,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24 328.4450000000002 Td
+103.24000000000001 753.585 Td
 /F6.0 11 Tf
 <3c67726f757049643e> Tj
 ET
@@ -46652,7 +47598,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-152.74 328.4450000000002 Td
+152.74 753.585 Td
 /F6.0 11 Tf
 <636f6d2e6769746875622e6f64617669642e6d6176656e2e706c7567696e73> Tj
 ET
@@ -46663,7 +47609,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-323.24 328.4450000000002 Td
+323.24 753.585 Td
 /F6.0 11 Tf
 <3c2f67726f757049643e> Tj
 ET
@@ -46674,7 +47620,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 313.7050000000002 Td
+59.24 738.845 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -46685,7 +47631,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24 313.7050000000002 Td
+103.24000000000001 738.845 Td
 /F6.0 11 Tf
 <3c617274696661637449643e> Tj
 ET
@@ -46696,7 +47642,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-169.24 313.7050000000002 Td
+169.24 738.845 Td
 /F6.0 11 Tf
 <6d6978696e2d6d6176656e2d706c7567696e> Tj
 ET
@@ -46707,7 +47653,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-268.24 313.7050000000002 Td
+268.24 738.845 Td
 /F6.0 11 Tf
 <3c2f617274696661637449643e> Tj
 ET
@@ -46718,7 +47664,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 298.9650000000002 Td
+59.24 724.105 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -46729,7 +47675,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24 298.9650000000002 Td
+103.24000000000001 724.105 Td
 /F6.0 11 Tf
 <3c76657273696f6e3e> Tj
 ET
@@ -46740,7 +47686,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-152.74 298.9650000000002 Td
+152.74 724.105 Td
 /F6.0 11 Tf
 <302e312d616c7068612d3339> Tj
 ET
@@ -46751,7 +47697,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-218.74 298.9650000000002 Td
+218.74 724.105 Td
 /F6.0 11 Tf
 <3c2f76657273696f6e3e> Tj
 ET
@@ -46762,7 +47708,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 284.22500000000025 Td
+59.24 709.365 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -46773,7 +47719,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24 284.22500000000025 Td
+103.24000000000001 709.365 Td
 /F6.0 11 Tf
 <3c657874656e73696f6e733e> Tj
 ET
@@ -46784,7 +47730,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-169.24 284.22500000000025 Td
+169.24 709.365 Td
 /F6.0 11 Tf
 <74727565> Tj
 ET
@@ -46795,7 +47741,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-191.24 284.22500000000025 Td
+191.24 709.365 Td
 /F6.0 11 Tf
 <3c2f657874656e73696f6e733e> Tj
 ET
@@ -46806,7 +47752,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 269.48500000000024 Td
+59.24 694.625 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -46817,7 +47763,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24 269.48500000000024 Td
+103.24000000000001 694.625 Td
 /F6.0 11 Tf
 <3c636f6e66696775726174696f6e3e> Tj
 ET
@@ -46828,7 +47774,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 254.74500000000023 Td
+59.24 679.885 Td
 /F6.0 11 Tf
 <ca2020202020202020202020> Tj
 ET
@@ -46839,7 +47785,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-125.24 254.74500000000023 Td
+125.24000000000001 679.885 Td
 /F6.0 11 Tf
 <3c6d6978696e733e> Tj
 ET
@@ -46850,7 +47796,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 240.00500000000022 Td
+59.24 665.145 Td
 /F6.0 11 Tf
 <ca202020202020202020202020202020> Tj
 ET
@@ -46861,7 +47807,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-147.24 240.00500000000022 Td
+147.24 665.145 Td
 /F6.0 11 Tf
 <2e2e2e> Tj
 ET
@@ -46872,7 +47818,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 225.26500000000024 Td
+59.24 650.405 Td
 /F6.0 11 Tf
 <ca202020202020202020202020202020> Tj
 ET
@@ -46883,7 +47829,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-147.24 225.26500000000024 Td
+147.24 650.405 Td
 /F6.0 11 Tf
 <3c6d6978696e3e> Tj
 ET
@@ -46894,7 +47840,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 210.52500000000023 Td
+59.24 635.665 Td
 /F6.0 11 Tf
 <ca20202020202020202020202020202020202020> Tj
 ET
@@ -46905,7 +47851,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-169.24 210.52500000000023 Td
+169.24 635.665 Td
 /F6.0 11 Tf
 <3c67726f757049643e> Tj
 ET
@@ -46916,7 +47862,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-218.74 210.52500000000023 Td
+218.74 635.665 Td
 /F6.0 11 Tf
 <636f6d2e64616e686179776f6f642e6d6176656e6d6978696e> Tj
 ET
@@ -46927,7 +47873,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-356.24 210.52500000000023 Td
+356.24 635.665 Td
 /F6.0 11 Tf
 <3c2f67726f757049643e> Tj
 ET
@@ -46938,7 +47884,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 195.78500000000022 Td
+59.24 620.925 Td
 /F6.0 11 Tf
 <ca20202020202020202020202020202020202020> Tj
 ET
@@ -46949,7 +47895,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-169.24 195.78500000000022 Td
+169.24 620.925 Td
 /F6.0 11 Tf
 <3c617274696661637449643e> Tj
 ET
@@ -46960,7 +47906,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-235.24 195.78500000000022 Td
+235.24 620.925 Td
 /F6.0 11 Tf
 <7375726566697265> Tj
 ET
@@ -46971,7 +47917,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-279.24 195.78500000000022 Td
+279.24 620.925 Td
 /F6.0 11 Tf
 <3c2f617274696661637449643e> Tj
 ET
@@ -46982,7 +47928,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 181.04500000000021 Td
+59.24 606.185 Td
 /F6.0 11 Tf
 <ca202020202020202020202020202020> Tj
 ET
@@ -46993,7 +47939,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-147.24 181.04500000000021 Td
+147.24 606.185 Td
 /F6.0 11 Tf
 <3c2f6d6978696e3e> Tj
 ET
@@ -47004,7 +47950,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 166.3050000000002 Td
+59.24 591.4449999999999 Td
 /F6.0 11 Tf
 <ca202020202020202020202020202020> Tj
 ET
@@ -47015,7 +47961,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-147.24 166.3050000000002 Td
+147.24 591.4449999999999 Td
 /F6.0 11 Tf
 <3c6d6978696e3e> Tj
 ET
@@ -47026,7 +47972,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 151.5650000000002 Td
+59.24 576.7049999999999 Td
 /F6.0 11 Tf
 <ca20202020202020202020202020202020202020> Tj
 ET
@@ -47037,7 +47983,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-169.24 151.5650000000002 Td
+169.24 576.7049999999999 Td
 /F6.0 11 Tf
 <3c67726f757049643e> Tj
 ET
@@ -47048,7 +47994,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-218.74 151.5650000000002 Td
+218.74 576.7049999999999 Td
 /F6.0 11 Tf
 <636f6d2e64616e686179776f6f642e6d6176656e6d6978696e> Tj
 ET
@@ -47059,7 +48005,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-356.24 151.5650000000002 Td
+356.24 576.7049999999999 Td
 /F6.0 11 Tf
 <3c2f67726f757049643e> Tj
 ET
@@ -47070,7 +48016,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 136.8250000000002 Td
+59.24 561.9649999999999 Td
 /F6.0 11 Tf
 <ca20202020202020202020202020202020202020> Tj
 ET
@@ -47081,7 +48027,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-169.24 136.8250000000002 Td
+169.24 561.9649999999999 Td
 /F6.0 11 Tf
 <3c617274696661637449643e> Tj
 ET
@@ -47092,7 +48038,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-235.24 136.8250000000002 Td
+235.24 561.9649999999999 Td
 /F6.0 11 Tf
 <637563756d6265727265706f7274696e67> Tj
 ET
@@ -47103,7 +48049,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-328.74 136.8250000000002 Td
+328.74 561.9649999999999 Td
 /F6.0 11 Tf
 <3c2f617274696661637449643e> Tj
 ET
@@ -47114,7 +48060,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 122.08500000000018 Td
+59.24 547.2249999999999 Td
 /F6.0 11 Tf
 <ca202020202020202020202020202020> Tj
 ET
@@ -47125,7 +48071,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-147.24 122.08500000000018 Td
+147.24 547.2249999999999 Td
 /F6.0 11 Tf
 <3c2f6d6978696e3e> Tj
 ET
@@ -47136,7 +48082,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 107.3450000000002 Td
+59.24 532.4849999999999 Td
 /F6.0 11 Tf
 <ca2020202020202020202020> Tj
 ET
@@ -47147,7 +48093,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-125.24 107.3450000000002 Td
+125.24000000000001 532.4849999999999 Td
 /F6.0 11 Tf
 <3c2f6d6978696e733e> Tj
 ET
@@ -47158,7 +48104,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 92.60500000000019 Td
+59.24 517.7449999999999 Td
 /F6.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -47169,7 +48115,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24 92.60500000000019 Td
+103.24000000000001 517.7449999999999 Td
 /F6.0 11 Tf
 <3c2f636f6e66696775726174696f6e3e> Tj
 ET
@@ -47180,7 +48126,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.239999999999995 77.86500000000018 Td
+59.24 503.00499999999994 Td
 /F6.0 11 Tf
 <ca202020> Tj
 ET
@@ -47191,7 +48137,7 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-81.24 77.86500000000018 Td
+81.24000000000001 503.00499999999994 Td
 /F6.0 11 Tf
 <3c2f706c7567696e3e> Tj
 ET
@@ -47202,139 +48148,20 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-59.239999999999995 63.12500000000017 Td
+59.24 488.26499999999993 Td
 /F6.0 11 Tf
 <3c2f706c7567696e733e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-q
-0.000 0.000 0.000 scn
-0.000 0.000 0.000 SCN
-1 w
-0 J
-0 j
-[ ] 0 d
-/Stamp1 Do
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-535.978 

<TRUNCATED>

[13/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgant/rgant.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgant/rgant.pdf b/content/versions/SNAPSHOT/guides/rgant/rgant.pdf
index 5b600f3..dd54c21 100644
--- a/content/versions/SNAPSHOT/guides/rgant/rgant.pdf
+++ b/content/versions/SNAPSHOT/guides/rgant/rgant.pdf
@@ -4,16 +4,16 @@
 << /Title (Annotations)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108225958+00'00')
-/ModDate (D:20180108225958+00'00')
+/CreationDate (D:20180213130952+00'00')
+/ModDate (D:20180213130952+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 20 0 R
-/Outlines 2164 0 R
-/PageLabels 2324 0 R
+/Outlines 2218 0 R
+/PageLabels 2380 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -22,8 +22,8 @@ endobj
 endobj
 3 0 obj
 << /Type /Pages
-/Count 180
-/Kids [7 0 R 10 0 R 12 0 R 14 0 R 16 0 R 18 0 R 42 0 R 45 0 R 66 0 R 81 0 R 105 0 R 146 0 R 170 0 R 205 0 R 228 0 R 249 0 R 273 0 R 289 0 R 292 0 R 294 0 R 308 0 R 316 0 R 330 0 R 336 0 R 345 0 R 351 0 R 354 0 R 367 0 R 376 0 R 385 0 R 389 0 R 393 0 R 397 0 R 418 0 R 426 0 R 433 0 R 440 0 R 456 0 R 467 0 R 475 0 R 492 0 R 498 0 R 506 0 R 515 0 R 530 0 R 536 0 R 539 0 R 555 0 R 562 0 R 569 0 R 573 0 R 587 0 R 603 0 R 618 0 R 627 0 R 638 0 R 649 0 R 656 0 R 662 0 R 664 0 R 672 0 R 677 0 R 686 0 R 688 0 R 693 0 R 707 0 R 712 0 R 730 0 R 754 0 R 763 0 R 766 0 R 779 0 R 792 0 R 797 0 R 801 0 R 807 0 R 811 0 R 814 0 R 820 0 R 830 0 R 836 0 R 844 0 R 856 0 R 870 0 R 877 0 R 885 0 R 892 0 R 899 0 R 904 0 R 910 0 R 913 0 R 933 0 R 939 0 R 946 0 R 963 0 R 973 0 R 979 0 R 995 0 R 1005 0 R 1019 0 R 1031 0 R 1043 0 R 1049 0 R 1055 0 R 1065 0 R 1070 0 R 1080 0 R 1087 0 R 1097 0 R 1103 0 R 1109 0 R 1120 0 R 1129 0 R 1132 0 R 1135 0 R 1141 0 R 1145 0 R 1157 0 R 1163 0 R 1166 0 R 1172 0 R 1182 0 R 1
 190 0 R 1192 0 R 1201 0 R 1205 0 R 1211 0 R 1221 0 R 1229 0 R 1237 0 R 1241 0 R 1246 0 R 1248 0 R 1262 0 R 1275 0 R 1285 0 R 1299 0 R 1307 0 R 1312 0 R 1325 0 R 1331 0 R 1342 0 R 1346 0 R 1356 0 R 1363 0 R 1368 0 R 1385 0 R 1392 0 R 1404 0 R 1406 0 R 1411 0 R 1424 0 R 1431 0 R 1439 0 R 1444 0 R 1450 0 R 1457 0 R 1460 0 R 1463 0 R 1468 0 R 1484 0 R 1499 0 R 1512 0 R 1529 0 R 1535 0 R 1547 0 R 1556 0 R 1562 0 R 1567 0 R 1573 0 R 1578 0 R 1580 0 R 1586 0 R 1592 0 R 1609 0 R 1626 0 R 1645 0 R 1656 0 R 1661 0 R 1676 0 R]
+/Count 188
+/Kids [7 0 R 10 0 R 12 0 R 14 0 R 16 0 R 18 0 R 42 0 R 45 0 R 66 0 R 81 0 R 105 0 R 146 0 R 170 0 R 205 0 R 228 0 R 249 0 R 273 0 R 289 0 R 292 0 R 294 0 R 308 0 R 317 0 R 321 0 R 336 0 R 340 0 R 346 0 R 350 0 R 353 0 R 361 0 R 369 0 R 375 0 R 385 0 R 392 0 R 401 0 R 405 0 R 409 0 R 413 0 R 434 0 R 442 0 R 449 0 R 456 0 R 473 0 R 484 0 R 492 0 R 508 0 R 514 0 R 522 0 R 531 0 R 546 0 R 552 0 R 555 0 R 571 0 R 578 0 R 585 0 R 589 0 R 603 0 R 619 0 R 634 0 R 643 0 R 654 0 R 665 0 R 672 0 R 678 0 R 680 0 R 688 0 R 694 0 R 702 0 R 704 0 R 709 0 R 723 0 R 728 0 R 745 0 R 769 0 R 779 0 R 782 0 R 795 0 R 808 0 R 813 0 R 817 0 R 823 0 R 827 0 R 830 0 R 836 0 R 846 0 R 851 0 R 859 0 R 872 0 R 887 0 R 894 0 R 902 0 R 909 0 R 915 0 R 920 0 R 926 0 R 929 0 R 949 0 R 955 0 R 962 0 R 979 0 R 989 0 R 995 0 R 1011 0 R 1021 0 R 1035 0 R 1047 0 R 1059 0 R 1065 0 R 1071 0 R 1081 0 R 1086 0 R 1096 0 R 1104 0 R 1114 0 R 1120 0 R 1126 0 R 1137 0 R 1146 0 R 1149 0 R 1152 0 R 1158 0 R 1162 0 R 1174 0 R 1180
  0 R 1183 0 R 1189 0 R 1199 0 R 1206 0 R 1208 0 R 1218 0 R 1222 0 R 1228 0 R 1238 0 R 1246 0 R 1254 0 R 1258 0 R 1263 0 R 1265 0 R 1278 0 R 1292 0 R 1302 0 R 1316 0 R 1324 0 R 1329 0 R 1342 0 R 1348 0 R 1359 0 R 1363 0 R 1372 0 R 1380 0 R 1385 0 R 1398 0 R 1408 0 R 1421 0 R 1430 0 R 1437 0 R 1440 0 R 1449 0 R 1455 0 R 1459 0 R 1473 0 R 1480 0 R 1488 0 R 1493 0 R 1499 0 R 1506 0 R 1509 0 R 1512 0 R 1517 0 R 1533 0 R 1548 0 R 1561 0 R 1578 0 R 1584 0 R 1596 0 R 1604 0 R 1610 0 R 1615 0 R 1621 0 R 1626 0 R 1628 0 R 1634 0 R 1640 0 R 1657 0 R 1674 0 R 1694 0 R 1704 0 R 1709 0 R 1724 0 R]
 >>
 endobj
 4 0 obj
@@ -80,15 +80,15 @@ endobj
 << /Type /Font
 /BaseFont /AAAAAZ+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 2326 0 R
+/FontDescriptor 2382 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 2328 0 R
-/ToUnicode 2327 0 R
+/Widths 2384 0 R
+/ToUnicode 2383 0 R
 >>
 endobj
 9 0 obj
-<< /Length 36113
+<< /Length 36109
 >>
 stream
 q
@@ -573,7 +573,7 @@ ET
 BT
 79.9485 548.5759999999998 Td
 /F3.0 10.5 Tf
-<636f6d6d616e642829> Tj
+<6173736f6369617465576974682829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -582,9 +582,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-133.10374999999993 548.5759999999998 Td
+159.82624999999996 548.5759999999998 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -602,7 +602,7 @@ ET
 BT
 535.3009999999999 548.5759999999998 Td
 /F1.0 10.5 Tf
-<3136> Tj
+<3137> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -613,7 +613,18 @@ ET
 BT
 60.24 530.0959999999998 Td
 /F1.0 10.5 Tf
-<332e322e20646f6d61696e4576656e742829> Tj
+<332e322e20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+79.9485 530.0959999999998 Td
+/F3.0 10.5 Tf
+<636f6d6d616e642829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -622,9 +633,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 530.0959999999998 Td
+133.10374999999993 530.0959999999998 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -642,7 +653,7 @@ ET
 BT
 535.3009999999999 530.0959999999998 Td
 /F1.0 10.5 Tf
-<3139> Tj
+<3138> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -653,18 +664,7 @@ ET
 BT
 60.24 511.6159999999998 Td
 /F1.0 10.5 Tf
-<332e332e20> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-79.9485 511.6159999999998 Td
-/F3.0 10.5 Tf
-<68696464656e2829> Tj
+<332e332e20646f6d61696e4576656e742829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -673,9 +673,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 511.6159999999998 Td
+159.82624999999996 511.6159999999998 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -693,7 +693,7 @@ ET
 BT
 535.3009999999999 511.6159999999998 Td
 /F1.0 10.5 Tf
-<3232> Tj
+<3233> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -715,7 +715,7 @@ ET
 BT
 79.9485 493.1359999999998 Td
 /F3.0 10.5 Tf
-<696e766f6b654f6e2829> Tj
+<68696464656e2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -724,9 +724,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 493.1359999999998 Td
+127.75924999999995 493.1359999999998 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -744,7 +744,7 @@ ET
 BT
 535.3009999999999 493.1359999999998 Td
 /F1.0 10.5 Tf
-<3232> Tj
+<3236> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -766,7 +766,7 @@ ET
 BT
 79.9485 474.6559999999998 Td
 /F3.0 10.5 Tf
-<7075626c697368696e672829> Tj
+<696e766f6b654f6e2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -775,9 +775,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.79274999999996 474.6559999999998 Td
+138.44824999999992 474.6559999999998 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -795,7 +795,7 @@ ET
 BT
 535.3009999999999 474.6559999999998 Td
 /F1.0 10.5 Tf
-<3233> Tj
+<3236> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -817,7 +817,7 @@ ET
 BT
 79.9485 456.17599999999976 Td
 /F3.0 10.5 Tf
-<7265737472696374546f2829> Tj
+<7075626c697368696e672829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -846,7 +846,7 @@ ET
 BT
 535.3009999999999 456.17599999999976 Td
 /F1.0 10.5 Tf
-<3234> Tj
+<3237> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -868,7 +868,7 @@ ET
 BT
 79.9485 437.69599999999974 Td
 /F3.0 10.5 Tf
-<73656d616e746963732829> Tj
+<7265737472696374546f2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -877,9 +877,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 437.69599999999974 Td
+143.79274999999996 437.69599999999974 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -897,7 +897,7 @@ ET
 BT
 535.3009999999999 437.69599999999974 Td
 /F1.0 10.5 Tf
-<3235> Tj
+<3238> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -919,7 +919,7 @@ ET
 BT
 79.9485 419.2159999999997 Td
 /F3.0 10.5 Tf
-<747970654f662829> Tj
+<73656d616e746963732829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -928,9 +928,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 419.2159999999997 Td
+138.44824999999992 419.2159999999997 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -948,7 +948,7 @@ ET
 BT
 535.3009999999999 419.2159999999997 Td
 /F1.0 10.5 Tf
-<3237> Tj
+<3239> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -957,9 +957,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 400.7359999999997 Td
+60.24 400.7359999999997 Td
 /F1.0 10.5 Tf
-<342e20> Tj
+<332e392e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -968,9 +968,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-59.454 400.7359999999997 Td
+79.9485 400.7359999999997 Td
 /F3.0 10.5 Tf
-<40416374696f6e4c61796f7574> Tj
+<747970654f662829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -979,9 +979,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-133.10374999999993 400.7359999999997 Td
+127.75924999999995 400.7359999999997 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -999,7 +999,7 @@ ET
 BT
 535.3009999999999 400.7359999999997 Td
 /F1.0 10.5 Tf
-<3238> Tj
+<3331> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1008,9 +1008,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 382.2559999999997 Td
+48.24 382.2559999999997 Td
 /F1.0 10.5 Tf
-<342e312e20> Tj
+<342e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1019,9 +1019,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 382.2559999999997 Td
+59.454 382.2559999999997 Td
 /F3.0 10.5 Tf
-<626f6f6b6d61726b696e672829> Tj
+<40416374696f6e4c61796f7574> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1030,9 +1030,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-149.13724999999994 382.2559999999997 Td
+133.10374999999993 382.2559999999997 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1050,7 +1050,7 @@ ET
 BT
 535.3009999999999 382.2559999999997 Td
 /F1.0 10.5 Tf
-<3239> Tj
+<3332> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1061,7 +1061,7 @@ ET
 BT
 60.24 363.77599999999967 Td
 /F1.0 10.5 Tf
-<342e322e20> Tj
+<342e312e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1072,7 +1072,7 @@ ET
 BT
 79.9485 363.77599999999967 Td
 /F3.0 10.5 Tf
-<636f6e747269627574656441732829> Tj
+<626f6f6b6d61726b696e672829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1081,9 +1081,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 363.77599999999967 Td
+149.13724999999994 363.77599999999967 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1101,7 +1101,7 @@ ET
 BT
 535.3009999999999 363.77599999999967 Td
 /F1.0 10.5 Tf
-<3331> Tj
+<3333> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1112,7 +1112,7 @@ ET
 BT
 60.24 345.29599999999965 Td
 /F1.0 10.5 Tf
-<342e332e20> Tj
+<342e322e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1123,7 +1123,7 @@ ET
 BT
 79.9485 345.29599999999965 Td
 /F3.0 10.5 Tf
-<637373436c6173732829> Tj
+<636f6e747269627574656441732829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1132,9 +1132,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 345.29599999999965 Td
+159.82624999999996 345.29599999999965 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1152,7 +1152,7 @@ ET
 BT
 535.3009999999999 345.29599999999965 Td
 /F1.0 10.5 Tf
-<3332> Tj
+<3335> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1163,7 +1163,7 @@ ET
 BT
 60.24 326.81599999999963 Td
 /F1.0 10.5 Tf
-<342e342e20> Tj
+<342e332e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1174,7 +1174,7 @@ ET
 BT
 79.9485 326.81599999999963 Td
 /F3.0 10.5 Tf
-<637373436c61737346612829> Tj
+<637373436c6173732829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1183,9 +1183,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.79274999999996 326.81599999999963 Td
+138.44824999999992 326.81599999999963 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1203,7 +1203,7 @@ ET
 BT
 535.3009999999999 326.81599999999963 Td
 /F1.0 10.5 Tf
-<3332> Tj
+<3336> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1214,7 +1214,7 @@ ET
 BT
 60.24 308.3359999999996 Td
 /F1.0 10.5 Tf
-<342e352e20> Tj
+<342e342e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1225,7 +1225,7 @@ ET
 BT
 79.9485 308.3359999999996 Td
 /F3.0 10.5 Tf
-<64657363726962656441732829> Tj
+<637373436c61737346612829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1234,9 +1234,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-149.13724999999994 308.3359999999996 Td
+143.79274999999996 308.3359999999996 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1254,7 +1254,7 @@ ET
 BT
 535.3009999999999 308.3359999999996 Td
 /F1.0 10.5 Tf
-<3333> Tj
+<3336> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1265,7 +1265,7 @@ ET
 BT
 60.24 289.8559999999996 Td
 /F1.0 10.5 Tf
-<342e362e20> Tj
+<342e352e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1276,7 +1276,7 @@ ET
 BT
 79.9485 289.8559999999996 Td
 /F3.0 10.5 Tf
-<68696464656e2829> Tj
+<64657363726962656441732829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1285,9 +1285,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 289.8559999999996 Td
+149.13724999999994 289.8559999999996 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1305,7 +1305,7 @@ ET
 BT
 535.3009999999999 289.8559999999996 Td
 /F1.0 10.5 Tf
-<3334> Tj
+<3337> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1316,7 +1316,7 @@ ET
 BT
 60.24 271.3759999999996 Td
 /F1.0 10.5 Tf
-<342e372e20> Tj
+<342e362e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1327,7 +1327,7 @@ ET
 BT
 79.9485 271.3759999999996 Td
 /F3.0 10.5 Tf
-<6e616d65642829> Tj
+<68696464656e2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1336,9 +1336,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-122.41474999999997 271.3759999999996 Td
+127.75924999999995 271.3759999999996 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1356,7 +1356,7 @@ ET
 BT
 535.3009999999999 271.3759999999996 Td
 /F1.0 10.5 Tf
-<3335> Tj
+<3338> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1367,7 +1367,7 @@ ET
 BT
 60.24 252.89599999999956 Td
 /F1.0 10.5 Tf
-<342e382e20> Tj
+<342e372e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1378,7 +1378,7 @@ ET
 BT
 79.9485 252.89599999999956 Td
 /F3.0 10.5 Tf
-<706f736974696f6e2829> Tj
+<6e616d65642829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1387,9 +1387,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 252.89599999999956 Td
+122.41474999999997 252.89599999999956 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1407,7 +1407,7 @@ ET
 BT
 535.3009999999999 252.89599999999956 Td
 /F1.0 10.5 Tf
-<3335> Tj
+<3339> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1416,9 +1416,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 234.41599999999957 Td
+60.24 234.41599999999957 Td
 /F1.0 10.5 Tf
-<352e20> Tj
+<342e382e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1427,9 +1427,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-59.454 234.41599999999957 Td
+79.9485 234.41599999999957 Td
 /F3.0 10.5 Tf
-<40436f6c6c656374696f6e> Tj
+<706f736974696f6e2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1438,9 +1438,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-122.41474999999997 234.41599999999957 Td
+138.44824999999992 234.41599999999957 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1458,7 +1458,7 @@ ET
 BT
 535.3009999999999 234.41599999999957 Td
 /F1.0 10.5 Tf
-<3338> Tj
+<3339> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1467,9 +1467,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 215.93599999999958 Td
+48.24 215.93599999999958 Td
 /F1.0 10.5 Tf
-<352e312e20> Tj
+<352e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1478,9 +1478,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 215.93599999999958 Td
+59.454 215.93599999999958 Td
 /F3.0 10.5 Tf
-<646f6d61696e4576656e742829> Tj
+<40436f6c6c656374696f6e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1489,9 +1489,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-149.13724999999994 215.93599999999958 Td
+122.41474999999997 215.93599999999958 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1509,7 +1509,7 @@ ET
 BT
 535.3009999999999 215.93599999999958 Td
 /F1.0 10.5 Tf
-<3339> Tj
+<3432> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1520,7 +1520,7 @@ ET
 BT
 60.24 197.4559999999996 Td
 /F1.0 10.5 Tf
-<352e322e20> Tj
+<352e312e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1531,7 +1531,7 @@ ET
 BT
 79.9485 197.4559999999996 Td
 /F3.0 10.5 Tf
-<65646974696e672829> Tj
+<646f6d61696e4576656e742829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1540,9 +1540,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-133.10374999999993 197.4559999999996 Td
+149.13724999999994 197.4559999999996 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1560,7 +1560,7 @@ ET
 BT
 535.3009999999999 197.4559999999996 Td
 /F1.0 10.5 Tf
-<3432> Tj
+<3433> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1571,7 +1571,7 @@ ET
 BT
 60.24 178.9759999999996 Td
 /F1.0 10.5 Tf
-<352e332e20> Tj
+<352e322e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1582,7 +1582,7 @@ ET
 BT
 79.9485 178.9759999999996 Td
 /F3.0 10.5 Tf
-<68696464656e2829> Tj
+<65646974696e672829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1591,9 +1591,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 178.9759999999996 Td
+133.10374999999993 178.9759999999996 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1611,7 +1611,7 @@ ET
 BT
 535.3009999999999 178.9759999999996 Td
 /F1.0 10.5 Tf
-<3433> Tj
+<3436> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1622,7 +1622,7 @@ ET
 BT
 60.24 160.4959999999996 Td
 /F1.0 10.5 Tf
-<352e342e20> Tj
+<352e332e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1633,7 +1633,7 @@ ET
 BT
 79.9485 160.4959999999996 Td
 /F3.0 10.5 Tf
-<6e6f745065727369737465642829> Tj
+<68696464656e2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1642,9 +1642,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 160.4959999999996 Td
+127.75924999999995 160.4959999999996 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1662,7 +1662,7 @@ ET
 BT
 535.3009999999999 160.4959999999996 Td
 /F1.0 10.5 Tf
-<3434> Tj
+<3437> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1673,7 +1673,7 @@ ET
 BT
 60.24 142.01599999999962 Td
 /F1.0 10.5 Tf
-<352e352e20> Tj
+<352e342e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1684,7 +1684,7 @@ ET
 BT
 79.9485 142.01599999999962 Td
 /F3.0 10.5 Tf
-<747970654f662829> Tj
+<6e6f745065727369737465642829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1693,9 +1693,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 142.01599999999962 Td
+154.48174999999992 142.01599999999962 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1713,7 +1713,7 @@ ET
 BT
 535.3009999999999 142.01599999999962 Td
 /F1.0 10.5 Tf
-<3435> Tj
+<3438> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1722,9 +1722,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 123.53599999999963 Td
+60.24 123.53599999999963 Td
 /F1.0 10.5 Tf
-<362e20> Tj
+<352e352e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1733,9 +1733,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-59.454 123.53599999999963 Td
+79.9485 123.53599999999963 Td
 /F3.0 10.5 Tf
-<40436f6c6c656374696f6e4c61796f7574> Tj
+<747970654f662829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1744,9 +1744,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 123.53599999999963 Td
+127.75924999999995 123.53599999999963 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1764,7 +1764,7 @@ ET
 BT
 535.3009999999999 123.53599999999963 Td
 /F1.0 10.5 Tf
-<3436> Tj
+<3439> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1773,9 +1773,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 105.05599999999964 Td
+48.24 105.05599999999964 Td
 /F1.0 10.5 Tf
-<362e312e20> Tj
+<362e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1784,9 +1784,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-79.9485 105.05599999999964 Td
+59.454 105.05599999999964 Td
 /F3.0 10.5 Tf
-<637373436c6173732829> Tj
+<40436f6c6c656374696f6e4c61796f7574> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1795,9 +1795,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 105.05599999999964 Td
+154.48174999999992 105.05599999999964 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1815,7 +1815,7 @@ ET
 BT
 535.3009999999999 105.05599999999964 Td
 /F1.0 10.5 Tf
-<3437> Tj
+<3530> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1826,7 +1826,7 @@ ET
 BT
 60.24 86.57599999999965 Td
 /F1.0 10.5 Tf
-<362e322e20> Tj
+<362e312e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1837,7 +1837,7 @@ ET
 BT
 79.9485 86.57599999999965 Td
 /F3.0 10.5 Tf
-<64656661756c74566965772829> Tj
+<637373436c6173732829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1846,9 +1846,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-149.13724999999994 86.57599999999965 Td
+138.44824999999992 86.57599999999965 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1866,7 +1866,7 @@ ET
 BT
 535.3009999999999 86.57599999999965 Td
 /F1.0 10.5 Tf
-<3438> Tj
+<3531> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1877,7 +1877,7 @@ ET
 BT
 60.24 68.09599999999966 Td
 /F1.0 10.5 Tf
-<362e332e20> Tj
+<362e322e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1888,7 +1888,7 @@ ET
 BT
 79.9485 68.09599999999966 Td
 /F3.0 10.5 Tf
-<64657363726962656441732829> Tj
+<64656661756c74566965772829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1917,7 +1917,7 @@ ET
 BT
 535.3009999999999 68.09599999999966 Td
 /F1.0 10.5 Tf
-<3438> Tj
+<3532> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1937,11 +1937,11 @@ endobj
 /F3.0 40 0 R
 >>
 >>
-/Annots [1682 0 R 1683 0 R 1684 0 R 1685 0 R 1686 0 R 1687 0 R 1688 0 R 1689 0 R 1690 0 R 1691 0 R 1692 0 R 1693 0 R 1694 0 R 1695 0 R 1696 0 R 1697 0 R 1698 0 R 1699 0 R 1700 0 R 1701 0 R 1702 0 R 1703 0 R 1704 0 R 1705 0 R 1706 0 R 1707 0 R 1708 0 R 1709 0 R 1710 0 R 1711 0 R 1712 0 R 1713 0 R 1714 0 R 1715 0 R 1716 0 R 1717 0 R 1718 0 R 1719 0 R 1720 0 R 1721 0 R 1722 0 R 1723 0 R 1724 0 R 1725 0 R 1726 0 R 1727 0 R 1728 0 R 1729 0 R 1730 0 R 1731 0 R 1732 0 R 1733 0 R 1734 0 R 1735 0 R 1736 0 R 1737 0 R 1738 0 R 1739 0 R 1740 0 R 1741 0 R 1742 0 R 1743 0 R 1744 0 R 1745 0 R 1746 0 R 1747 0 R 1748 0 R 1749 0 R 1750 0 R 1751 0 R 1752 0 R 1753 0 R 1754 0 R 1755 0 R 1756 0 R 1757 0 R 1758 0 R 1759 0 R 1760 0 R 1761 0 R 1762 0 R 1763 0 R 1764 0 R 1765 0 R 1766 0 R 1767 0 R 1768 0 R 1769 0 R 1770 0 R 1771 0 R 1772 0 R 1773 0 R 1774 0 R 1775 0 R 1776 0 R 1777 0 R 1778 0 R 1779 0 R 1780 0 R 1781 0 R 1782 0 R 1783 0 R 1784 0 R]
+/Annots [1730 0 R 1731 0 R 1732 0 R 1733 0 R 1734 0 R 1735 0 R 1736 0 R 1737 0 R 1738 0 R 1739 0 R 1740 0 R 1741 0 R 1742 0 R 1743 0 R 1744 0 R 1745 0 R 1746 0 R 1747 0 R 1748 0 R 1749 0 R 1750 0 R 1751 0 R 1752 0 R 1753 0 R 1754 0 R 1755 0 R 1756 0 R 1757 0 R 1758 0 R 1759 0 R 1760 0 R 1761 0 R 1762 0 R 1763 0 R 1764 0 R 1765 0 R 1766 0 R 1767 0 R 1768 0 R 1769 0 R 1770 0 R 1771 0 R 1772 0 R 1773 0 R 1774 0 R 1775 0 R 1776 0 R 1777 0 R 1778 0 R 1779 0 R 1780 0 R 1781 0 R 1782 0 R 1783 0 R 1784 0 R 1785 0 R 1786 0 R 1787 0 R 1788 0 R 1789 0 R 1790 0 R 1791 0 R 1792 0 R 1793 0 R 1794 0 R 1795 0 R 1796 0 R 1797 0 R 1798 0 R 1799 0 R 1800 0 R 1801 0 R 1802 0 R 1803 0 R 1804 0 R 1805 0 R 1806 0 R 1807 0 R 1808 0 R 1809 0 R 1810 0 R 1811 0 R 1812 0 R 1813 0 R 1814 0 R 1815 0 R 1816 0 R 1817 0 R 1818 0 R 1819 0 R 1820 0 R 1821 0 R 1822 0 R 1823 0 R 1824 0 R 1825 0 R 1826 0 R 1827 0 R 1828 0 R 1829 0 R 1830 0 R 1831 0 R 1832 0 R]
 >>
 endobj
 11 0 obj
-<< /Length 40656
+<< /Length 40644
 >>
 stream
 q
@@ -1953,7 +1953,7 @@ q
 BT
 60.24 794.6759999999999 Td
 /F1.0 10.5 Tf
-<362e342e20> Tj
+<362e332e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1964,7 +1964,7 @@ ET
 BT
 79.9485 794.6759999999999 Td
 /F3.0 10.5 Tf
-<68696464656e2829> Tj
+<64657363726962656441732829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1973,9 +1973,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 794.6759999999999 Td
+149.13724999999994 794.6759999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1993,7 +1993,7 @@ ET
 BT
 535.3009999999999 794.6759999999999 Td
 /F1.0 10.5 Tf
-<3439> Tj
+<3532> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2004,7 +2004,7 @@ ET
 BT
 60.24 776.1959999999999 Td
 /F1.0 10.5 Tf
-<362e352e20> Tj
+<362e342e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2015,7 +2015,7 @@ ET
 BT
 79.9485 776.1959999999999 Td
 /F3.0 10.5 Tf
-<6e616d65642829> Tj
+<68696464656e2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2024,9 +2024,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-122.41474999999997 776.1959999999999 Td
+127.75924999999995 776.1959999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2044,7 +2044,7 @@ ET
 BT
 535.3009999999999 776.1959999999999 Td
 /F1.0 10.5 Tf
-<3530> Tj
+<3533> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2055,7 +2055,7 @@ ET
 BT
 60.24 757.7159999999999 Td
 /F1.0 10.5 Tf
-<362e362e20> Tj
+<362e352e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2066,7 +2066,7 @@ ET
 BT
 79.9485 757.7159999999999 Td
 /F3.0 10.5 Tf
-<70616765642829> Tj
+<6e616d65642829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2095,7 +2095,7 @@ ET
 BT
 535.3009999999999 757.7159999999999 Td
 /F1.0 10.5 Tf
-<3531> Tj
+<3534> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2106,7 +2106,7 @@ ET
 BT
 60.24 739.2359999999999 Td
 /F1.0 10.5 Tf
-<362e372e20> Tj
+<362e362e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2117,7 +2117,7 @@ ET
 BT
 79.9485 739.2359999999999 Td
 /F3.0 10.5 Tf
-<72656e6465722829> Tj
+<70616765642829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2126,9 +2126,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 739.2359999999999 Td
+122.41474999999997 739.2359999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2146,7 +2146,7 @@ ET
 BT
 535.3009999999999 739.2359999999999 Td
 /F1.0 10.5 Tf
-<3532> Tj
+<3535> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2157,7 +2157,7 @@ ET
 BT
 60.24 720.7559999999999 Td
 /F1.0 10.5 Tf
-<362e382e20> Tj
+<362e372e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2168,7 +2168,7 @@ ET
 BT
 79.9485 720.7559999999999 Td
 /F3.0 10.5 Tf
-<736f7274656442792829> Tj
+<72656e6465722829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2177,9 +2177,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 720.7559999999999 Td
+127.75924999999995 720.7559999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2197,7 +2197,58 @@ ET
 BT
 535.3009999999999 720.7559999999999 Td
 /F1.0 10.5 Tf
-<3532> Tj
+<3536> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+60.24 702.2759999999998 Td
+/F1.0 10.5 Tf
+<362e382e20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+79.9485 702.2759999999998 Td
+/F3.0 10.5 Tf
+<736f7274656442792829> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+138.44824999999992 702.2759999999998 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+BT
+533.94125 702.2759999999998 Td
+/F1.0 5.25 Tf
+<ca> Tj
+ET
+
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+535.3009999999999 702.2759999999998 Td
+/F1.0 10.5 Tf
+<3536> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2206,7 +2257,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 702.2759999999998 Td
+48.24 683.7959999999998 Td
 /F1.0 10.5 Tf
 <372e20> Tj
 ET
@@ -2217,7 +2268,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-59.454 702.2759999999998 Td
+59.454 683.7959999999998 Td
 /F3.0 10.5 Tf
 <40436f6c756d6e> Tj
 ET
@@ -2228,7 +2279,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-96.20400000000001 702.2759999999998 Td
+96.20400000000001 683.7959999999998 Td
 /F1.0 10.5 Tf
 <2028> Tj
 ET
@@ -2239,7 +2290,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-102.5565 702.2759999999998 Td
+102.5565 683.7959999999998 Td
 /F3.0 10.5 Tf
 <6a617661782e6a646f> Tj
 ET
@@ -2250,7 +2301,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-149.8065 702.2759999999998 Td
+149.8065 683.7959999999998 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -2261,7 +2312,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 702.2759999999998 Td
+154.48174999999992 683.7959999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2270,7 +2321,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 702.2759999999998 Td
+533.94125 683.7959999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2279,9 +2330,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 702.2759999999998 Td
+535.3009999999999 683.7959999999998 Td
 /F1.0 10.5 Tf
-<3535> Tj
+<3539> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2290,7 +2341,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 683.7959999999998 Td
+60.24 665.3159999999998 Td
 /F1.0 10.5 Tf
 <372e312e204e756c6c6162696c697479> Tj
 ET
@@ -2301,7 +2352,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 683.7959999999998 Td
+138.44824999999992 665.3159999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2310,7 +2361,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 683.7959999999998 Td
+533.94125 665.3159999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2319,9 +2370,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 683.7959999999998 Td
+535.3009999999999 665.3159999999998 Td
 /F1.0 10.5 Tf
-<3535> Tj
+<3539> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2330,7 +2381,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 665.3159999999998 Td
+60.24 646.8359999999998 Td
 /F1.0 10.5 Tf
 <372e322e204c656e67746820666f7220> Tj
 ET
@@ -2341,7 +2392,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-135.1995 665.3159999999998 Td
+135.1995 646.8359999999998 Td
 /F3.0 10.5 Tf
 <537472696e67> Tj
 ET
@@ -2352,7 +2403,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-166.6995 665.3159999999998 Td
+166.6995 646.8359999999998 Td
 /F1.0 10.5 Tf
 <73> Tj
 ET
@@ -2363,7 +2414,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.85974999999996 665.3159999999998 Td
+175.85974999999996 646.8359999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2372,7 +2423,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 665.3159999999998 Td
+533.94125 646.8359999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2381,9 +2432,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 665.3159999999998 Td
+535.3009999999999 646.8359999999998 Td
 /F1.0 10.5 Tf
-<3535> Tj
+<3539> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2392,7 +2443,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 646.8359999999998 Td
+60.24 628.3559999999998 Td
 /F1.0 10.5 Tf
 <372e332e204c656e6774682f7363616c6520666f7220> Tj
 ET
@@ -2403,7 +2454,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-162.8985 646.8359999999998 Td
+162.8985 628.3559999999998 Td
 /F3.0 10.5 Tf
 <426967446563696d616c> Tj
 ET
@@ -2414,7 +2465,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-215.3985 646.8359999999998 Td
+215.3985 628.3559999999998 Td
 /F1.0 10.5 Tf
 <73> Tj
 ET
@@ -2425,7 +2476,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-223.96024999999997 646.8359999999998 Td
+223.96024999999997 628.3559999999998 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2434,7 +2485,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 646.8359999999998 Td
+533.94125 628.3559999999998 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2443,9 +2494,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 646.8359999999998 Td
+535.3009999999999 628.3559999999998 Td
 /F1.0 10.5 Tf
-<3536> Tj
+<3630> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2454,7 +2505,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 628.3559999999998 Td
+60.24 609.8759999999997 Td
 /F1.0 10.5 Tf
 <372e342e2048696e747320616e642054697073> Tj
 ET
@@ -2465,7 +2516,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 628.3559999999998 Td
+154.48174999999992 609.8759999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2474,7 +2525,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 628.3559999999998 Td
+533.94125 609.8759999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2483,9 +2534,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 628.3559999999998 Td
+535.3009999999999 609.8759999999997 Td
 /F1.0 10.5 Tf
-<3536> Tj
+<3630> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2494,7 +2545,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 609.8759999999997 Td
+60.24 591.3959999999997 Td
 /F1.0 10.5 Tf
 <372e352e204d617070696e6720> Tj
 ET
@@ -2505,7 +2556,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-127.0515 609.8759999999997 Td
+127.0515 591.3959999999997 Td
 /F3.0 10.5 Tf
 <426c6f62> Tj
 ET
@@ -2516,7 +2567,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-148.0515 609.8759999999997 Td
+148.0515 591.3959999999997 Td
 /F1.0 10.5 Tf
 <7320616e6420> Tj
 ET
@@ -2527,7 +2578,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-177.336 609.8759999999997 Td
+177.336 591.3959999999997 Td
 /F3.0 10.5 Tf
 <436c6f62> Tj
 ET
@@ -2538,7 +2589,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-198.336 609.8759999999997 Td
+198.336 591.3959999999997 Td
 /F1.0 10.5 Tf
 <73> Tj
 ET
@@ -2549,7 +2600,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-207.92674999999997 609.8759999999997 Td
+207.92674999999997 591.3959999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2558,7 +2609,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 609.8759999999997 Td
+533.94125 591.3959999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2567,9 +2618,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 609.8759999999997 Td
+535.3009999999999 591.3959999999997 Td
 /F1.0 10.5 Tf
-<3537> Tj
+<3631> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2578,7 +2629,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 591.3959999999997 Td
+48.24 572.9159999999997 Td
 /F1.0 10.5 Tf
 <382e20> Tj
 ET
@@ -2589,7 +2640,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-59.454 591.3959999999997 Td
+59.454 572.9159999999997 Td
 /F3.0 10.5 Tf
 <40446967697473> Tj
 ET
@@ -2600,7 +2651,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-96.20400000000001 591.3959999999997 Td
+96.20400000000001 572.9159999999997 Td
 /F1.0 10.5 Tf
 <2028> Tj
 ET
@@ -2611,7 +2662,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-102.5565 591.3959999999997 Td
+102.5565 572.9159999999997 Td
 /F3.0 10.5 Tf
 <6a61766178> Tj
 ET
@@ -2622,7 +2673,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-128.8065 591.3959999999997 Td
+128.8065 572.9159999999997 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -2633,7 +2684,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 591.3959999999997 Td
+138.44824999999992 572.9159999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2642,7 +2693,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 591.3959999999997 Td
+533.94125 572.9159999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2651,9 +2702,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 591.3959999999997 Td
+535.3009999999999 572.9159999999997 Td
 /F1.0 10.5 Tf
-<3539> Tj
+<3633> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2662,7 +2713,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 572.9159999999997 Td
+48.24 554.4359999999997 Td
 /F1.0 10.5 Tf
 <392e20> Tj
 ET
@@ -2673,7 +2724,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-59.454 572.9159999999997 Td
+59.454 554.4359999999997 Td
 /F3.0 10.5 Tf
 <404469736372696d696e61746f72> Tj
 ET
@@ -2684,7 +2735,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-132.954 572.9159999999997 Td
+132.954 554.4359999999997 Td
 /F1.0 10.5 Tf
 <2028> Tj
 ET
@@ -2695,7 +2746,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-139.3065 572.9159999999997 Td
+139.3065 554.4359999999997 Td
 /F3.0 10.5 Tf
 <6a617661782e6a646f> Tj
 ET
@@ -2706,7 +2757,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-186.55650000000003 572.9159999999997 Td
+186.55650000000003 554.4359999999997 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -2717,7 +2768,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-191.89324999999997 572.9159999999997 Td
+191.89324999999997 554.4359999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2726,7 +2777,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 572.9159999999997 Td
+533.94125 554.4359999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2735,9 +2786,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 572.9159999999997 Td
+535.3009999999999 554.4359999999997 Td
 /F1.0 10.5 Tf
-<3630> Tj
+<3634> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2746,7 +2797,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 554.4359999999997 Td
+60.24 535.9559999999997 Td
 /F1.0 10.5 Tf
 <392e312e204578616d706c6573> Tj
 ET
@@ -2757,7 +2808,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-133.10374999999993 554.4359999999997 Td
+133.10374999999993 535.9559999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2766,7 +2817,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 554.4359999999997 Td
+533.94125 535.9559999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2775,9 +2826,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 554.4359999999997 Td
+535.3009999999999 535.9559999999997 Td
 /F1.0 10.5 Tf
-<3630> Tj
+<3634> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2786,7 +2837,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 535.9559999999997 Td
+60.24 517.4759999999997 Td
 /F1.0 10.5 Tf
 <392e322e20507265636564656e6365> Tj
 ET
@@ -2797,7 +2848,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 535.9559999999997 Td
+138.44824999999992 517.4759999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2806,7 +2857,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 535.9559999999997 Td
+533.94125 517.4759999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2815,9 +2866,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 535.9559999999997 Td
+535.3009999999999 517.4759999999997 Td
 /F1.0 10.5 Tf
-<3630> Tj
+<3634> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2826,7 +2877,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 517.4759999999997 Td
+48.24 498.9959999999997 Td
 /F1.0 10.5 Tf
 <31302e20> Tj
 ET
@@ -2837,7 +2888,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-65.3235 517.4759999999997 Td
+65.3235 498.9959999999997 Td
 /F3.0 10.5 Tf
 <40446f6d61696e4f626a656374> Tj
 ET
@@ -2848,7 +2899,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 517.4759999999997 Td
+138.44824999999992 498.9959999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2857,7 +2908,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 517.4759999999997 Td
+533.94125 498.9959999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2866,9 +2917,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 517.4759999999997 Td
+535.3009999999999 498.9959999999997 Td
 /F1.0 10.5 Tf
-<3632> Tj
+<3636> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2877,7 +2928,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 498.9959999999997 Td
+60.24 480.5159999999997 Td
 /F1.0 10.5 Tf
 <31302e312e20> Tj
 ET
@@ -2888,7 +2939,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 498.9959999999997 Td
+85.81800000000001 480.5159999999997 Td
 /F3.0 10.5 Tf
 <6175646974696e672829> Tj
 ET
@@ -2899,7 +2950,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.79274999999996 498.9959999999997 Td
+143.79274999999996 480.5159999999997 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2908,7 +2959,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 498.9959999999997 Td
+533.94125 480.5159999999997 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2917,9 +2968,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 498.9959999999997 Td
+535.3009999999999 480.5159999999997 Td
 /F1.0 10.5 Tf
-<3634> Tj
+<3638> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2928,7 +2979,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 480.5159999999997 Td
+60.24 462.03599999999966 Td
 /F1.0 10.5 Tf
 <31302e322e20> Tj
 ET
@@ -2939,7 +2990,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 480.5159999999997 Td
+85.81800000000001 462.03599999999966 Td
 /F3.0 10.5 Tf
 <6175746f436f6d706c6574655265706f7369746f72792829> Tj
 ET
@@ -2950,7 +3001,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-213.27124999999995 480.5159999999997 Td
+213.27124999999995 462.03599999999966 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -2959,7 +3010,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 480.5159999999997 Td
+533.94125 462.03599999999966 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -2968,9 +3019,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 480.5159999999997 Td
+535.3009999999999 462.03599999999966 Td
 /F1.0 10.5 Tf
-<3634> Tj
+<3638> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -2979,7 +3030,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 462.03599999999966 Td
+60.24 443.55599999999964 Td
 /F1.0 10.5 Tf
 <31302e332e20> Tj
 ET
@@ -2990,7 +3041,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 462.03599999999966 Td
+85.81800000000001 443.55599999999964 Td
 /F3.0 10.5 Tf
 <626f756e6465642829> Tj
 ET
@@ -3001,7 +3052,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 462.03599999999966 Td
+138.44824999999992 443.55599999999964 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3010,7 +3061,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 462.03599999999966 Td
+533.94125 443.55599999999964 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3019,9 +3070,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 462.03599999999966 Td
+535.3009999999999 443.55599999999964 Td
 /F1.0 10.5 Tf
-<3636> Tj
+<3730> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3030,7 +3081,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 443.55599999999964 Td
+60.24 425.0759999999996 Td
 /F1.0 10.5 Tf
 <31302e342e20637265617465644c6966656379636c654576656e742829> Tj
 ET
@@ -3041,7 +3092,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-207.92674999999997 443.55599999999964 Td
+207.92674999999997 425.0759999999996 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3050,7 +3101,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 443.55599999999964 Td
+533.94125 425.0759999999996 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3059,9 +3110,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 443.55599999999964 Td
+535.3009999999999 425.0759999999996 Td
 /F1.0 10.5 Tf
-<3637> Tj
+<3731> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3070,7 +3121,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 425.0759999999996 Td
+60.24 406.5959999999996 Td
 /F1.0 10.5 Tf
 <31302e352e20> Tj
 ET
@@ -3081,7 +3132,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 425.0759999999996 Td
+85.81800000000001 406.5959999999996 Td
 /F3.0 10.5 Tf
 <65646974696e672829> Tj
 ET
@@ -3092,7 +3143,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-138.44824999999992 425.0759999999996 Td
+138.44824999999992 406.5959999999996 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3101,7 +3152,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 425.0759999999996 Td
+533.94125 406.5959999999996 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3110,9 +3161,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 425.0759999999996 Td
+535.3009999999999 406.5959999999996 Td
 /F1.0 10.5 Tf
-<3638> Tj
+<3732> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3121,7 +3172,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 406.5959999999996 Td
+60.24 388.1159999999996 Td
 /F1.0 10.5 Tf
 <31302e362e206c6f616465644c6966656379636c654576656e742829> Tj
 ET
@@ -3132,7 +3183,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-202.58224999999993 406.5959999999996 Td
+202.58224999999993 388.1159999999996 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3141,7 +3192,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 406.5959999999996 Td
+533.94125 388.1159999999996 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3150,9 +3201,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 406.5959999999996 Td
+535.3009999999999 388.1159999999996 Td
 /F1.0 10.5 Tf
-<3639> Tj
+<3733> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3161,7 +3212,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 388.1159999999996 Td
+60.24 369.63599999999957 Td
 /F1.0 10.5 Tf
 <31302e372e20> Tj
 ET
@@ -3172,7 +3223,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 388.1159999999996 Td
+85.81800000000001 369.63599999999957 Td
 /F3.0 10.5 Tf
 <6d6978696e4d6574686f642829> Tj
 ET
@@ -3183,7 +3234,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 388.1159999999996 Td
+159.82624999999996 369.63599999999957 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3192,7 +3243,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 388.1159999999996 Td
+533.94125 369.63599999999957 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3201,9 +3252,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 388.1159999999996 Td
+535.3009999999999 369.63599999999957 Td
 /F1.0 10.5 Tf
-<3731> Tj
+<3735> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3212,7 +3263,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 369.63599999999957 Td
+60.24 351.15599999999955 Td
 /F1.0 10.5 Tf
 <31302e382e20> Tj
 ET
@@ -3223,7 +3274,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 369.63599999999957 Td
+85.81800000000001 351.15599999999955 Td
 /F3.0 10.5 Tf
 <6e61747572652829> Tj
 ET
@@ -3234,7 +3285,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-133.10374999999993 369.63599999999957 Td
+133.10374999999993 351.15599999999955 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3243,7 +3294,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 369.63599999999957 Td
+533.94125 351.15599999999955 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3252,9 +3303,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 369.63599999999957 Td
+535.3009999999999 351.15599999999955 Td
 /F1.0 10.5 Tf
-<3732> Tj
+<3736> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3263,7 +3314,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 351.15599999999955 Td
+60.24 332.67599999999953 Td
 /F1.0 10.5 Tf
 <31302e392e207065727369737465644c6966656379636c654576656e742829> Tj
 ET
@@ -3274,7 +3325,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-213.27124999999995 351.15599999999955 Td
+213.27124999999995 332.67599999999953 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3283,7 +3334,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 351.15599999999955 Td
+533.94125 332.67599999999953 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3292,9 +3343,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 351.15599999999955 Td
+535.3009999999999 332.67599999999953 Td
 /F1.0 10.5 Tf
-<3734> Tj
+<3738> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3303,7 +3354,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 332.67599999999953 Td
+60.24 314.1959999999995 Td
 /F1.0 10.5 Tf
 <31302e31302e2070657273697374696e674c6966656379636c654576656e742829> Tj
 ET
@@ -3314,7 +3365,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-223.96024999999997 332.67599999999953 Td
+223.96024999999997 314.1959999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3323,7 +3374,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 332.67599999999953 Td
+533.94125 314.1959999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3332,9 +3383,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 332.67599999999953 Td
+535.3009999999999 314.1959999999995 Td
 /F1.0 10.5 Tf
-<3735> Tj
+<3739> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3343,7 +3394,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 314.1959999999995 Td
+60.24 295.7159999999995 Td
 /F1.0 10.5 Tf
 <31302e31312e20> Tj
 ET
@@ -3354,7 +3405,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-91.6875 314.1959999999995 Td
+91.6875 295.7159999999995 Td
 /F3.0 10.5 Tf
 <6f626a656374547970652829> Tj
 ET
@@ -3365,7 +3416,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 314.1959999999995 Td
+159.82624999999996 295.7159999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3374,7 +3425,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 314.1959999999995 Td
+533.94125 295.7159999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3383,9 +3434,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 314.1959999999995 Td
+535.3009999999999 295.7159999999995 Td
 /F1.0 10.5 Tf
-<3737> Tj
+<3831> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3394,7 +3445,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 295.7159999999995 Td
+60.24 277.2359999999995 Td
 /F1.0 10.5 Tf
 <31302e31322e20> Tj
 ET
@@ -3405,7 +3456,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-91.6875 295.7159999999995 Td
+91.6875 277.2359999999995 Td
 /F3.0 10.5 Tf
 <7075626c697368696e672829> Tj
 ET
@@ -3416,7 +3467,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 295.7159999999995 Td
+159.82624999999996 277.2359999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3425,7 +3476,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 295.7159999999995 Td
+533.94125 277.2359999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3434,9 +3485,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 295.7159999999995 Td
+535.3009999999999 277.2359999999995 Td
 /F1.0 10.5 Tf
-<3738> Tj
+<3832> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3445,7 +3496,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 277.2359999999995 Td
+60.24 258.75599999999946 Td
 /F1.0 10.5 Tf
 <31302e31332e2072656d6f76696e674c6966656379636c654576656e742829> Tj
 ET
@@ -3456,7 +3507,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-223.96024999999997 277.2359999999995 Td
+223.96024999999997 258.75599999999946 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3465,7 +3516,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 277.2359999999995 Td
+533.94125 258.75599999999946 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3474,9 +3525,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 277.2359999999995 Td
+535.3009999999999 258.75599999999946 Td
 /F1.0 10.5 Tf
-<3739> Tj
+<3833> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3485,7 +3536,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 258.75599999999946 Td
+60.24 240.27599999999947 Td
 /F1.0 10.5 Tf
 <31302e31342e207570646174696e674c6966656379636c654576656e742829> Tj
 ET
@@ -3496,7 +3547,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-218.61574999999993 258.75599999999946 Td
+218.61574999999993 240.27599999999947 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3505,7 +3556,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 258.75599999999946 Td
+533.94125 240.27599999999947 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3514,9 +3565,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 258.75599999999946 Td
+535.3009999999999 240.27599999999947 Td
 /F1.0 10.5 Tf
-<3831> Tj
+<3835> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3525,7 +3576,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 240.27599999999947 Td
+60.24 221.79599999999948 Td
 /F1.0 10.5 Tf
 <31302e31352e20757064617465644c6966656379636c654576656e742829> Tj
 ET
@@ -3536,7 +3587,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-218.61574999999993 240.27599999999947 Td
+218.61574999999993 221.79599999999948 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3545,7 +3596,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 240.27599999999947 Td
+533.94125 221.79599999999948 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3554,9 +3605,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 240.27599999999947 Td
+535.3009999999999 221.79599999999948 Td
 /F1.0 10.5 Tf
-<3833> Tj
+<3837> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3565,7 +3616,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 221.79599999999948 Td
+48.24 203.3159999999995 Td
 /F1.0 10.5 Tf
 <31312e20> Tj
 ET
@@ -3576,7 +3627,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-65.3235 221.79599999999948 Td
+65.3235 203.3159999999995 Td
 /F3.0 10.5 Tf
 <40446f6d61696e4f626a6563744c61796f7574> Tj
 ET
@@ -3587,7 +3638,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-170.51524999999992 221.79599999999948 Td
+170.51524999999992 203.3159999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3596,7 +3647,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 221.79599999999948 Td
+533.94125 203.3159999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3605,9 +3656,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 221.79599999999948 Td
+535.3009999999999 203.3159999999995 Td
 /F1.0 10.5 Tf
-<3836> Tj
+<3930> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3616,7 +3667,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 203.3159999999995 Td
+60.24 184.8359999999995 Td
 /F1.0 10.5 Tf
 <31312e312e20> Tj
 ET
@@ -3627,7 +3678,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 203.3159999999995 Td
+85.81800000000001 184.8359999999995 Td
 /F3.0 10.5 Tf
 <626f6f6b6d61726b696e672829> Tj
 ET
@@ -3638,7 +3689,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 203.3159999999995 Td
+159.82624999999996 184.8359999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3647,7 +3698,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 203.3159999999995 Td
+533.94125 184.8359999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3656,9 +3707,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 203.3159999999995 Td
+535.3009999999999 184.8359999999995 Td
 /F1.0 10.5 Tf
-<3837> Tj
+<3931> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3667,7 +3718,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 184.8359999999995 Td
+60.24 166.3559999999995 Td
 /F1.0 10.5 Tf
 <31312e322e20> Tj
 ET
@@ -3678,7 +3729,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 184.8359999999995 Td
+85.81800000000001 166.3559999999995 Td
 /F3.0 10.5 Tf
 <637373436c6173732829> Tj
 ET
@@ -3689,7 +3740,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.79274999999996 184.8359999999995 Td
+143.79274999999996 166.3559999999995 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3698,7 +3749,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 184.8359999999995 Td
+533.94125 166.3559999999995 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3707,9 +3758,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 184.8359999999995 Td
+535.3009999999999 166.3559999999995 Td
 /F1.0 10.5 Tf
-<3839> Tj
+<3933> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3718,7 +3769,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 166.3559999999995 Td
+60.24 147.87599999999952 Td
 /F1.0 10.5 Tf
 <31312e332e20> Tj
 ET
@@ -3729,7 +3780,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 166.3559999999995 Td
+85.81800000000001 147.87599999999952 Td
 /F3.0 10.5 Tf
 <637373436c61737346612829> Tj
 ET
@@ -3740,7 +3791,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-154.48174999999992 166.3559999999995 Td
+154.48174999999992 147.87599999999952 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3749,7 +3800,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 166.3559999999995 Td
+533.94125 147.87599999999952 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3758,9 +3809,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 166.3559999999995 Td
+535.3009999999999 147.87599999999952 Td
 /F1.0 10.5 Tf
-<3839> Tj
+<3933> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3769,7 +3820,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 147.87599999999952 Td
+60.24 129.39599999999953 Td
 /F1.0 10.5 Tf
 <31312e342e20637373436c61737355694576656e742829> Tj
 ET
@@ -3780,7 +3831,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-175.85974999999996 147.87599999999952 Td
+175.85974999999996 129.39599999999953 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
@@ -3789,7 +3840,7 @@ ET
 0.000 0.000 0.000 scn
 
 BT
-533.94125 147.87599999999952 Td
+533.94125 129.39599999999953 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -3798,9 +3849,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 147.87599999999952 Td
+535.3009999999999 129.39599999999953 Td
 /F1.0 10.5 Tf
-<3930> Tj
+<3934> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3809,7 +3860,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 129.39599999999953 Td
+60.24 110.91599999999954 Td
 /F1.0 10.5 Tf
 <31312e352e20> Tj
 ET
@@ -3820,7 +3871,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-85.81800000000001 129.39599999999953 Td
+85.81800000000001 110.91599999999954 Td
 /F3.0 10.5 Tf
 <64657363726962656441732829> Tj
 ET
@@ -3831,46 +3882,6 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 129.39599999999953 Td
-/F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-
-BT
-533.94125 129.39599999999953 Td
-/F1.0 5.25 Tf
-<ca> Tj
-ET
-
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-535.3009999999999 129.39599999999953 Td
-/F1.0 10.5 Tf
-<3932> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-60.24 110.91599999999954 Td
-/F1.0 10.5 Tf
-<31312e362e2069636f6e55694576656e742829> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
 159.82624999999996 110.91599999999954 Td
 /F1.0 10.5 Tf
 <2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
@@ -3891,7 +3902,7 @@ ET
 BT
 535.3009999999999 110.91599999999954 Td
 /F1.0 10.5 Tf
-<3932> Tj
+<3936> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3902,18 +3913,7 @@ ET
 BT
 60.24 92.43599999999955 Td
 /F1.0 10.5 Tf
-<31312e372e20> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-85.81800000000001 92.43599999999955 Td
-/F3.0 10.5 Tf
-<6e616d65642829> Tj
+<31312e362e2069636f6e55694576656e742829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3922,9 +3922,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-127.75924999999995 92.43599999999955 Td
+159.82624999999996 92.43599999999955 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3942,7 +3942,7 @@ ET
 BT
 535.3009999999999 92.43599999999955 Td
 /F1.0 10.5 Tf
-<3934> Tj
+<3936> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3953,7 +3953,7 @@ ET
 BT
 60.24 73.95599999999956 Td
 /F1.0 10.5 Tf
-<31312e382e20> Tj
+<31312e372e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3964,7 +3964,7 @@ ET
 BT
 85.81800000000001 73.95599999999956 Td
 /F3.0 10.5 Tf
-<70616765642829> Tj
+<6e616d65642829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -3993,7 +3993,7 @@ ET
 BT
 535.3009999999999 73.95599999999956 Td
 /F1.0 10.5 Tf
-<3935> Tj
+<3938> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4004,7 +4004,7 @@ ET
 BT
 60.24 55.47599999999957 Td
 /F1.0 10.5 Tf
-<31312e392e20> Tj
+<31312e382e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4015,7 +4015,7 @@ ET
 BT
 85.81800000000001 55.47599999999957 Td
 /F3.0 10.5 Tf
-<706c7572616c2829> Tj
+<70616765642829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4024,9 +4024,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-133.10374999999993 55.47599999999957 Td
+127.75924999999995 55.47599999999957 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4044,7 +4044,7 @@ ET
 BT
 535.3009999999999 55.47599999999957 Td
 /F1.0 10.5 Tf
-<3935> Tj
+<3939> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4063,11 +4063,11 @@ endobj
 /F3.0 40 0 R
 >>
 >>
-/Annots [1785 0 R 1786 0 R 1787 0 R 1788 0 R 1789 0 R 1790 0 R 1791 0 R 1792 0 R 1793 0 R 1794 0 R 1795 0 R 1796 0 R 1797 0 R 1798 0 R 1799 0 R 1800 0 R 1801 0 R 1802 0 R 1803 0 R 1804 0 R 1805 0 R 1806 0 R 1807 0 R 1808 0 R 1809 0 R 1810 0 R 1811 0 R 1812 0 R 1813 0 R 1814 0 R 1815 0 R 1816 0 R 1817 0 R 1818 0 R 1819 0 R 1820 0 R 1821 0 R 1822 0 R 1823 0 R 1824 0 R 1825 0 R 1826 0 R 1827 0 R 1828 0 R 1829 0 R 1830 0 R 1831 0 R 1832 0 R 1833 0 R 1834 0 R 1835 0 R 1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R 1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R 1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R 1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R 1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R 1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R 1878 0 R 1879 0 R 1880 0 R 1881 0 R 1882 0 R 1883 0 R 1884 0 R 1885 0 R 1886 0 R 1887 0 R 1888 0 R 1889 0 R 1890 0 R 1891 0 R 1892 0 R 1893 0 R 1894 0 
 R 1895 0 R 1896 0 R 1897 0 R 1898 0 R 1899 0 R 1900 0 R 1901 0 R 1902 0 R 1903 0 R 1904 0 R 1905 0 R 1906 0 R 1907 0 R 1908 0 R]
+/Annots [1833 0 R 1834 0 R 1835 0 R 1836 0 R 1837 0 R 1838 0 R 1839 0 R 1840 0 R 1841 0 R 1842 0 R 1843 0 R 1844 0 R 1845 0 R 1846 0 R 1847 0 R 1848 0 R 1849 0 R 1850 0 R 1851 0 R 1852 0 R 1853 0 R 1854 0 R 1855 0 R 1856 0 R 1857 0 R 1858 0 R 1859 0 R 1860 0 R 1861 0 R 1862 0 R 1863 0 R 1864 0 R 1865 0 R 1866 0 R 1867 0 R 1868 0 R 1869 0 R 1870 0 R 1871 0 R 1872 0 R 1873 0 R 1874 0 R 1875 0 R 1876 0 R 1877 0 R 1878 0 R 1879 0 R 1880 0 R 1881 0 R 1882 0 R 1883 0 R 1884 0 R 1885 0 R 1886 0 R 1887 0 R 1888 0 R 1889 0 R 1890 0 R 1891 0 R 1892 0 R 1893 0 R 1894 0 R 1895 0 R 1896 0 R 1897 0 R 1898 0 R 1899 0 R 1900 0 R 1901 0 R 1902 0 R 1903 0 R 1904 0 R 1905 0 R 1906 0 R 1907 0 R 1908 0 R 1909 0 R 1910 0 R 1911 0 R 1912 0 R 1913 0 R 1914 0 R 1915 0 R 1916 0 R 1917 0 R 1918 0 R 1919 0 R 1920 0 R 1921 0 R 1922 0 R 1923 0 R 1924 0 R 1925 0 R 1926 0 R 1927 0 R 1928 0 R 1929 0 R 1930 0 R 1931 0 R 1932 0 R 1933 0 R 1934 0 R 1935 0 R 1936 0 R 1937 0 R 1938 0 R 1939 0 R 1940 0 R 1941 0 R 1942 0 
 R 1943 0 R 1944 0 R 1945 0 R 1946 0 R 1947 0 R 1948 0 R 1949 0 R 1950 0 R 1951 0 R 1952 0 R 1953 0 R 1954 0 R 1955 0 R 1956 0 R]
 >>
 endobj
 13 0 obj
-<< /Length 42471
+<< /Length 42013
 >>
 stream
 q
@@ -4079,7 +4079,18 @@ q
 BT
 60.24 794.6759999999999 Td
 /F1.0 10.5 Tf
-<31312e31302e207469746c6555694576656e742829> Tj
+<31312e392e20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+85.81800000000001 794.6759999999999 Td
+/F3.0 10.5 Tf
+<706c7572616c2829> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4088,9 +4099,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-159.82624999999996 794.6759999999999 Td
+133.10374999999993 794.6759999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4108,7 +4119,7 @@ ET
 BT
 535.3009999999999 794.6759999999999 Td
 /F1.0 10.5 Tf
-<3936> Tj
+<3939> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4117,7 +4128,47 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 776.1959999999999 Td
+60.24 776.1959999999999 Td
+/F1.0 10.5 Tf
+<31312e31302e207469746c6555694576656e742829> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+159.30124999999992 776.1959999999999 Td
+/F1.0 10.5 Tf
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+
+BT
+528.07175 776.1959999999999 Td
+/F1.0 5.25 Tf
+<ca> Tj
+ET
+
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+529.4314999999999 776.1959999999999 Td
+/F1.0 10.5 Tf
+<313030> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24 757.7159999999999 Td
 /F1.0 10.5 Tf
 <31322e20> Tj
 ET
@@ -4128,7 +4179,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-65.3235 776.1959999999999 Td
+65.3235 757.7159999999999 Td
 /F3.0 10.5 Tf
 <40446f6d61696e53657276696365> Tj
 ET
@@ -4139,16 +4190,16 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-143.79274999999996 776.1959999999999 Td
+143.26774999999992 757.7159999999999 Td
 /F1.0 10.5 Tf
-<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
+<2e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e202e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 
 BT
-533.94125 776.1959999999999 Td
+528.07175 757.7159999999999 Td
 /F1.0 5.25 Tf
 <ca> Tj
 ET
@@ -4157,9 +4208,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-535.3009999999999 776.1959999999999 Td
+529.4314999999999 757.7159999999999 Td
 /F1.0 10.5 Tf
-<3939> Tj
+<313033> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -4168,7 +4219,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-60.24 757.7159999999999 Td
+60.24 739.2359999999999 Td
 /F1.0 10.5 Tf
 <31322e312e20> Tj
 ET
@@ -417

<TRUNCATED>

[10/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgcms/rgcms.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgcms/rgcms.pdf b/content/versions/SNAPSHOT/guides/rgcms/rgcms.pdf
index 0804d23..749f8bf 100644
--- a/content/versions/SNAPSHOT/guides/rgcms/rgcms.pdf
+++ b/content/versions/SNAPSHOT/guides/rgcms/rgcms.pdf
@@ -4,16 +4,16 @@
 << /Title (Classes, Methods and Schema)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108230315+00'00')
-/ModDate (D:20180108230315+00'00')
+/CreationDate (D:20180213131034+00'00')
+/ModDate (D:20180213131034+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 14 0 R
-/Outlines 1054 0 R
-/PageLabels 1084 0 R
+/Outlines 1057 0 R
+/PageLabels 1087 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -22,8 +22,8 @@ endobj
 endobj
 3 0 obj
 << /Type /Pages
-/Count 97
-/Kids [7 0 R 10 0 R 12 0 R 39 0 R 62 0 R 127 0 R 150 0 R 155 0 R 163 0 R 168 0 R 172 0 R 177 0 R 187 0 R 191 0 R 194 0 R 204 0 R 209 0 R 216 0 R 223 0 R 240 0 R 243 0 R 247 0 R 260 0 R 291 0 R 299 0 R 308 0 R 311 0 R 327 0 R 337 0 R 347 0 R 356 0 R 374 0 R 402 0 R 420 0 R 423 0 R 433 0 R 441 0 R 450 0 R 456 0 R 462 0 R 465 0 R 474 0 R 507 0 R 526 0 R 547 0 R 558 0 R 568 0 R 570 0 R 576 0 R 583 0 R 589 0 R 598 0 R 605 0 R 615 0 R 625 0 R 641 0 R 658 0 R 672 0 R 688 0 R 705 0 R 715 0 R 718 0 R 722 0 R 728 0 R 733 0 R 736 0 R 743 0 R 751 0 R 757 0 R 765 0 R 773 0 R 781 0 R 795 0 R 808 0 R 828 0 R 837 0 R 850 0 R 870 0 R 875 0 R 885 0 R 894 0 R 897 0 R 909 0 R 914 0 R 918 0 R 925 0 R 932 0 R 941 0 R 946 0 R 951 0 R 957 0 R 962 0 R 969 0 R 976 0 R 982 0 R 988 0 R 991 0 R]
+/Count 98
+/Kids [7 0 R 10 0 R 12 0 R 39 0 R 62 0 R 127 0 R 150 0 R 155 0 R 163 0 R 168 0 R 172 0 R 177 0 R 187 0 R 191 0 R 194 0 R 204 0 R 209 0 R 216 0 R 223 0 R 240 0 R 243 0 R 247 0 R 260 0 R 291 0 R 299 0 R 308 0 R 311 0 R 327 0 R 337 0 R 347 0 R 356 0 R 374 0 R 402 0 R 420 0 R 423 0 R 433 0 R 441 0 R 450 0 R 456 0 R 462 0 R 465 0 R 474 0 R 507 0 R 526 0 R 547 0 R 558 0 R 568 0 R 570 0 R 576 0 R 583 0 R 589 0 R 598 0 R 605 0 R 615 0 R 625 0 R 641 0 R 658 0 R 672 0 R 688 0 R 705 0 R 715 0 R 718 0 R 722 0 R 728 0 R 733 0 R 736 0 R 743 0 R 751 0 R 757 0 R 765 0 R 773 0 R 781 0 R 795 0 R 808 0 R 828 0 R 837 0 R 850 0 R 870 0 R 875 0 R 885 0 R 894 0 R 897 0 R 909 0 R 912 0 R 917 0 R 921 0 R 928 0 R 934 0 R 943 0 R 948 0 R 954 0 R 959 0 R 965 0 R 976 0 R 982 0 R 989 0 R 991 0 R 997 0 R]
 >>
 endobj
 4 0 obj
@@ -80,11 +80,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAABN+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 1086 0 R
+/FontDescriptor 1089 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1088 0 R
-/ToUnicode 1087 0 R
+/Widths 1091 0 R
+/ToUnicode 1090 0 R
 >>
 endobj
 9 0 obj
@@ -1082,7 +1082,7 @@ ET
 BT
 535.3009999999999 326.81599999999963 Td
 /F1.0 10.5 Tf
-<3833> Tj
+<3834> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1162,7 +1162,7 @@ ET
 BT
 535.3009999999999 289.8559999999996 Td
 /F1.0 10.5 Tf
-<3930> Tj
+<3931> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -1222,7 +1222,7 @@ endobj
 /F3.0 18 0 R
 >>
 >>
-/Annots [997 0 R 998 0 R 999 0 R 1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R]
+/Annots [1000 0 R 1001 0 R 1002 0 R 1003 0 R 1004 0 R 1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1054 0 R 1055 0 R]
 >>
 endobj
 11 0 obj
@@ -2029,7 +2029,7 @@ endobj
 /F3.0 18 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [17 0 R 20 0 R 21 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R]
@@ -2044,18 +2044,18 @@ endobj
 >>
 endobj
 15 0 obj
-<< /Kids [220 0 R 467 0 R 948 0 R 840 0 R 701 0 R 824 0 R 541 0 R 731 0 R 425 0 R 221 0 R 966 0 R 287 0 R 753 0 R]
+<< /Kids [220 0 R 467 0 R 950 0 R 840 0 R 701 0 R 824 0 R 541 0 R 731 0 R 425 0 R 221 0 R 968 0 R 287 0 R 753 0 R]
 >>
 endobj
 16 0 obj
 << /Type /Font
 /BaseFont /AAAABO+NotoSerif-Bold
 /Subtype /TrueType
-/FontDescriptor 1090 0 R
+/FontDescriptor 1093 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1092 0 R
-/ToUnicode 1091 0 R
+/Widths 1095 0 R
+/ToUnicode 1094 0 R
 >>
 endobj
 17 0 obj
@@ -2073,22 +2073,22 @@ endobj
 << /Type /Font
 /BaseFont /AAAABP+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 1094 0 R
+/FontDescriptor 1097 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1096 0 R
-/ToUnicode 1095 0 R
+/Widths 1099 0 R
+/ToUnicode 1098 0 R
 >>
 endobj
 19 0 obj
 << /Type /Font
 /BaseFont /AAAABQ+mplus-1p-regular
 /Subtype /TrueType
-/FontDescriptor 1098 0 R
+/FontDescriptor 1101 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1100 0 R
-/ToUnicode 1099 0 R
+/Widths 1103 0 R
+/ToUnicode 1102 0 R
 >>
 endobj
 20 0 obj
@@ -3830,7 +3830,7 @@ endobj
 /F6.0 44 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [41 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R]
@@ -3857,22 +3857,22 @@ endobj
 << /Type /Font
 /BaseFont /AAAABR+FontAwesome
 /Subtype /TrueType
-/FontDescriptor 1102 0 R
+/FontDescriptor 1105 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1104 0 R
-/ToUnicode 1103 0 R
+/Widths 1107 0 R
+/ToUnicode 1106 0 R
 >>
 endobj
 44 0 obj
 << /Type /Font
 /BaseFont /AAAABS+NotoSerif-Italic
 /Subtype /TrueType
-/FontDescriptor 1106 0 R
+/FontDescriptor 1109 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1108 0 R
-/ToUnicode 1107 0 R
+/Widths 1111 0 R
+/ToUnicode 1110 0 R
 >>
 endobj
 45 0 obj
@@ -8055,7 +8055,7 @@ endobj
 /F4.0 19 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R]
@@ -11503,7 +11503,7 @@ endobj
 /F5.1 43 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [128 0 R 129 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R 135 0 R 136 0 R 137 0 R 138 0 R 140 0 R 142 0 R 143 0 R 144 0 R 146 0 R 147 0 R 148 0 R]
@@ -11648,11 +11648,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAABT+mplus1mn-regular
 /Subtype /TrueType
-/FontDescriptor 1110 0 R
+/FontDescriptor 1113 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1112 0 R
-/ToUnicode 1111 0 R
+/Widths 1115 0 R
+/ToUnicode 1114 0 R
 >>
 endobj
 142 0 obj
@@ -14742,7 +14742,7 @@ endobj
 /F3.0 18 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [152 0 R]
@@ -16311,7 +16311,7 @@ endobj
 /F4.0 19 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [156 0 R 158 0 R 159 0 R 160 0 R]
@@ -18642,7 +18642,7 @@ endobj
 /F2.0 16 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [165 0 R]
@@ -20802,7 +20802,7 @@ endobj
 /Contents 167 0 R
 /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
 /XObject << /I1 166 0 R
-/Stamp1 1053 0 R
+/Stamp1 1056 0 R
 >>
 /Font << /F1.0 8 0 R
 /F3.0 18 0 R
@@ -23339,7 +23339,7 @@ endobj
 /F4.0 19 0 R
 /F1.1 175 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -23354,11 +23354,11 @@ endobj
 << /Type /Font
 /BaseFont /AAAABU+NotoSerif
 /Subtype /TrueType
-/FontDescriptor 1114 0 R
+/FontDescriptor 1117 0 R
 /FirstChar 32
 /LastChar 255
-/Widths 1116 0 R
-/ToUnicode 1115 0 R
+/Widths 1119 0 R
+/ToUnicode 1118 0 R
 >>
 endobj
 176 0 obj
@@ -25419,7 +25419,7 @@ endobj
 /F1.1 175 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [178 0 R 179 0 R 180 0 R 182 0 R 183 0 R 184 0 R]
@@ -27878,7 +27878,7 @@ endobj
 /F3.1 141 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [188 0 R 189 0 R]
@@ -31122,7 +31122,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -32110,7 +32110,7 @@ endobj
 /F4.0 19 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [196 0 R 197 0 R 198 0 R 199 0 R 201 0 R 202 0 R]
@@ -34694,7 +34694,7 @@ endobj
 /F2.0 16 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [205 0 R 206 0 R]
@@ -36411,7 +36411,7 @@ endobj
 /F4.0 19 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [210 0 R 211 0 R 212 0 R 214 0 R]
@@ -39289,7 +39289,7 @@ endobj
 /F1.1 175 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [217 0 R 218 0 R]
@@ -41484,7 +41484,7 @@ endobj
 /F5.1 43 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [224 0 R 225 0 R 226 0 R 228 0 R 229 0 R 230 0 R 231 0 R 233 0 R 234 0 R 235 0 R 237 0 R]
@@ -43775,7 +43775,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -46771,7 +46771,7 @@ endobj
 /F1.0 8 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -49143,7 +49143,7 @@ endobj
 /F4.0 19 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 257 0 R 258 0 R]
@@ -51705,7 +51705,7 @@ endobj
 /F2.0 16 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 288 0 R 289 0 R]
@@ -51983,7 +51983,7 @@ endobj
 endobj
 287 0 obj
 << /Limits [(action-parameter-set) (dependent-choices)]
-/Names [(action-parameter-set) 241 0 R (adapter-classes) 758 0 R (alternative-approaches) 779 0 R (alternatives) 195 0 R (alternatives-2) 306 0 R (alternatives-3) 329 0 R (alternatives-4) 788 0 R (api) 566 0 R (api-2) 574 0 R (api-3) 584 0 R (api-4) 590 0 R (code-changesdto-code) 955 0 R (code-objectsdto-code) 963 0 R (code-specification-code) 752 0 R (code-specification2-code) 754 0 R (combining-specifications) 760 0 R (dependent-choices) 164 0 R]
+/Names [(action-parameter-set) 241 0 R (adapter-classes) 758 0 R (alternative-approaches) 779 0 R (alternatives) 195 0 R (alternatives-2) 306 0 R (alternatives-3) 329 0 R (alternatives-4) 788 0 R (api) 566 0 R (api-2) 574 0 R (api-3) 584 0 R (api-4) 590 0 R (code-changesdto-code) 957 0 R (code-objectsdto-code) 963 0 R (code-specification-code) 752 0 R (code-specification2-code) 754 0 R (combining-specifications) 760 0 R (dependent-choices) 164 0 R]
 >>
 endobj
 288 0 obj
@@ -53044,7 +53044,7 @@ endobj
 /F3.0 18 0 R
 >>
 /XObject << /I2 293 0 R
-/Stamp1 1053 0 R
+/Stamp1 1056 0 R
 >>
 >>
 /Annots [292 0 R 294 0 R 295 0 R 296 0 R 297 0 R]
@@ -55425,7 +55425,7 @@ endobj
 /F4.0 19 0 R
 /F1.1 175 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [301 0 R 302 0 R 303 0 R 304 0 R 305 0 R]
@@ -57915,7 +57915,7 @@ endobj
 /F1.0 8 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -59244,7 +59244,7 @@ endobj
 /F5.1 43 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [312 0 R 313 0 R 314 0 R 315 0 R 316 0 R 319 0 R 320 0 R 321 0 R 323 0 R 324 0 R 325 0 R]
@@ -59315,7 +59315,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_DomainService_objectType)
+/URI (../rgant/rgant.pdf#_rgant-DomainService_objectType)
 >>
 /Subtype /Link
 /Rect [66.24000000000001 462.72000000000025 207.99 473.22000000000025]
@@ -60742,7 +60742,7 @@ endobj
 /F1.1 175 0 R
 >>
 /XObject << /I3 334 0 R
-/Stamp1 1053 0 R
+/Stamp1 1056 0 R
 >>
 >>
 /Annots [328 0 R 330 0 R 332 0 R 333 0 R 335 0 R]
@@ -62048,7 +62048,7 @@ endobj
 /F6.0 44 0 R
 >>
 /XObject << /I4 338 0 R
-/Stamp1 1053 0 R
+/Stamp1 1056 0 R
 >>
 >>
 /Annots [340 0 R 341 0 R 342 0 R 344 0 R 345 0 R]
@@ -64507,7 +64507,7 @@ endobj
 /F5.1 43 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 354 0 R]
@@ -66200,7 +66200,7 @@ endobj
 /F6.0 44 0 R
 /F3.0 18 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R]
@@ -67511,7 +67511,7 @@ endobj
 /F1.0 8 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [376 0 R 377 0 R 378 0 R 379 0 R 381 0 R 382 0 R 383 0 R 385 0 R 386 0 R 387 0 R 388 0 R 390 0 R 391 0 R 392 0 R 393 0 R 395 0 R 396 0 R 397 0 R 398 0 R 400 0 R]
@@ -68468,7 +68468,7 @@ endobj
 /F3.0 18 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [403 0 R 404 0 R 405 0 R 407 0 R 408 0 R 409 0 R 410 0 R 412 0 R 413 0 R 414 0 R 415 0 R 417 0 R 418 0 R]
@@ -70690,7 +70690,7 @@ endobj
 /F3.1 141 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [421 0 R]
@@ -72853,7 +72853,7 @@ endobj
 /F5.1 43 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [426 0 R 427 0 R 428 0 R 430 0 R]
@@ -75562,7 +75562,7 @@ endobj
 /Font << /F3.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [435 0 R 436 0 R 437 0 R 438 0 R]
@@ -77100,7 +77100,7 @@ endobj
 /F3.0 18 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [442 0 R 443 0 R 445 0 R 447 0 R]
@@ -79032,7 +79032,7 @@ endobj
 /F2.0 16 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [453 0 R 454 0 R]
@@ -80136,7 +80136,7 @@ endobj
 /F2.0 16 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [457 0 R 458 0 R 460 0 R]
@@ -82245,7 +82245,7 @@ endobj
 /F3.0 18 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [463 0 R]
@@ -84048,7 +84048,7 @@ endobj
 /F1.0 8 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [469 0 R 470 0 R 471 0 R 472 0 R]
@@ -86280,7 +86280,7 @@ endobj
 /F1.0 8 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R]
@@ -87684,7 +87684,7 @@ endobj
 /F2.0 16 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [508 0 R 509 0 R 511 0 R 512 0 R 514 0 R 515 0 R 517 0 R 518 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R]
@@ -88946,7 +88946,7 @@ endobj
 /F2.0 16 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [527 0 R 528 0 R 530 0 R 531 0 R 533 0 R 534 0 R 536 0 R 537 0 R 538 0 R 539 0 R 542 0 R 543 0 R 544 0 R 545 0 R]
@@ -90459,7 +90459,7 @@ endobj
 /F2.0 16 0 R
 /F3.0 18 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R]
@@ -91382,7 +91382,7 @@ endobj
 /F3.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [559 0 R 560 0 R 561 0 R 563 0 R 564 0 R 565 0 R]
@@ -94923,7 +94923,7 @@ endobj
 /F1.0 8 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -95703,7 +95703,7 @@ endobj
 /F3.1 141 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [572 0 R 573 0 R]
@@ -98438,7 +98438,7 @@ endobj
 /F6.0 44 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [577 0 R 578 0 R 579 0 R 581 0 R]
@@ -98448,7 +98448,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Action_domainEvent)
+/URI (../rgant/rgant.pdf#_rgant-Action_domainEvent)
 >>
 /Subtype /Link
 /Rect [328.29566666666665 499.1359999999999 438.54566666666665 509.6359999999999]
@@ -100834,7 +100834,7 @@ endobj
 /F3.1 141 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [585 0 R 587 0 R]
@@ -100847,7 +100847,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Collection_domainEvent)
+/URI (../rgant/rgant.pdf#_rgant-Collection_domainEvent)
 >>
 /Subtype /Link
 /Rect [354.72127272727266 534.7160000000001 485.97127272727266 545.2160000000001]
@@ -102982,7 +102982,7 @@ endobj
 /F3.1 141 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [591 0 R 593 0 R 594 0 R 595 0 R 596 0 R]
@@ -102995,7 +102995,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (../rgant/rgant.pdf#_rgant_Property_domainEvent)
+/URI (../rgant/rgant.pdf#_rgant-Property_domainEvent)
 >>
 /Subtype /Link
 /Rect [364.2667272727273 458.5760000000002 485.0167272727273 469.0760000000002]
@@ -103801,7 +103801,7 @@ endobj
 /F3.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [599 0 R 600 0 R 601 0 R 602 0 R 603 0 R]
@@ -104659,7 +104659,7 @@ endobj
 /F3.0 18 0 R
 /F1.0 8 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R]
@@ -105838,7 +105838,7 @@ endobj
 /F1.0 8 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [616 0 R 617 0 R 618 0 R 619 0 R 621 0 R 622 0 R]
@@ -107214,7 +107214,7 @@ endobj
 /F6.0 44 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [626 0 R 627 0 R 629 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R]
@@ -108780,7 +108780,7 @@ endobj
 /F1.0 8 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R]
@@ -110151,7 +110151,7 @@ endobj
 /F1.0 8 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R]
@@ -111298,7 +111298,7 @@ endobj
 /F1.0 8 0 R
 /F4.0 19 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R]
@@ -112463,7 +112463,7 @@ endobj
 /F4.0 19 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [690 0 R 691 0 R 693 0 R 695 0 R 696 0 R 698 0 R 699 0 R 702 0 R 703 0 R]
@@ -113695,7 +113695,7 @@ endobj
 /F4.0 19 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [707 0 R 708 0 R 710 0 R 711 0 R 713 0 R]
@@ -114314,7 +114314,7 @@ endobj
 /F3.0 18 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -117589,7 +117589,7 @@ endobj
 /F5.1 43 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [719 0 R]
@@ -121733,7 +121733,7 @@ endobj
 /F2.0 16 0 R
 >>
 /XObject << /I5 725 0 R
-/Stamp1 1053 0 R
+/Stamp1 1056 0 R
 >>
 >>
 /Annots [723 0 R 726 0 R]
@@ -121853,7 +121853,7 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (images/value-types/markup/.png)
+/URI (images/value-types/markup.png)
 >>
 /Subtype /Link
 /Rect [48.24000000000001 245.42999999999995 48.24000000000001 245.42999999999995]
@@ -125422,7 +125422,7 @@ endobj
 /F2.0 16 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -127784,7 +127784,7 @@ endobj
 /F5.1 43 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 >>
@@ -130190,7 +130190,7 @@ endobj
 /F3.0 18 0 R
 >>
 /XObject << /I6 739 0 R
-/Stamp1 1053 0 R
+/Stamp1 1056 0 R
 >>
 >>
 /Annots [738 0 R 741 0 R]
@@ -131819,7 +131819,7 @@ endobj
 /F2.0 16 0 R
 /F6.0 44 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [746 0 R 748 0 R 749 0 R]
@@ -134302,7 +134302,7 @@ endobj
 /F1.0 8 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [755 0 R]
@@ -136201,7 +136201,7 @@ endobj
 /F6.0 44 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [759 0 R 763 0 R]
@@ -137613,7 +137613,7 @@ endobj
 /F5.1 43 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [768 0 R 769 0 R 771 0 R]
@@ -139353,7 +139353,7 @@ endobj
 /F3.0 18 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [776 0 R 777 0 R 778 0 R]
@@ -140512,7 +140512,7 @@ endobj
 /F1.0 8 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [783 0 R 784 0 R 786 0 R 787 0 R 789 0 R 791 0 R 793 0 R]
@@ -141918,7 +141918,7 @@ endobj
 /F2.0 16 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [797 0 R 799 0 R 801 0 R 802 0 R 803 0 R 805 0 R]
@@ -143563,7 +143563,7 @@ endobj
 /F1.0 8 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [810 0 R 811 0 R 813 0 R 814 0 R 815 0 R 817 0 R 819 0 R 820 0 R 822 0 R 825 0 R 826 0 R]
@@ -146061,7 +146061,7 @@ endobj
 /F3.1 141 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [829 0 R 830 0 R 831 0 R 832 0 R 834 0 R]
@@ -147382,7 +147382,7 @@ endobj
 /F3.1 141 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [838 0 R 841 0 R 842 0 R 844 0 R 847 0 R 848 0 R]
@@ -148804,7 +148804,7 @@ endobj
 /F3.0 18 0 R
 /F2.0 16 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [851 0 R 852 0 R 853 0 R 854 0 R 855 0 R 856 0 R 857 0 R 858 0 R 859 0 R 861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 867 0 R 868 0 R]
@@ -148993,7 +148993,7 @@ endobj
 >>
 endobj
 869 0 obj
-<< /Length 20309
+<< /Length 20368
 >>
 stream
 q
@@ -150237,21 +150237,25 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+43.168 Tw
+
 BT
 48.24000000000001 71.49600000000035 Td
 /F1.0 10.5 Tf
-[<5468652058> 9.765625 <534420666f7220746865736520636c617373657320697320617661696c61626c6520617420>] TJ
+[<5468652058> 9.765625 <534420666f7220746865736520636c617373657320697320617661696c61626c65206174>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.259 0.545 0.792 scn
 0.259 0.545 0.792 SCN
 
 BT
-247.58496093750003 71.49600000000035 Td
+48.24000000000001 55.71600000000035 Td
 /F1.0 10.5 Tf
-[<687474703a2f2f697369732e6170616368652e6f72672f6170706c69622f6c61> 20.01953125 <796f75742f6d656e75732f6d656e75626172732e787364>] TJ
+[<687474703a2f2f697369732e6170616368652e6f72672f6170706c69622f6c61> 20.01953125 <796f75742f6d656e75626172732f626f6f74737472> 20.01953125 <6170332f6d656e75626172732e787364>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -150260,7 +150264,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-530.6017558593751 71.49600000000035 Td
+405.18708984375 55.71600000000035 Td
 /F1.0 10.5 Tf
 <2e> Tj
 ET
@@ -150300,7 +150304,7 @@ endobj
 /Font << /F1.0 8 0 R
 /F3.0 18 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [871 0 R 872 0 R 873 0 R]
@@ -150332,10 +150336,10 @@ endobj
 << /Border [0 0 0]
 /A << /Type /Action
 /S /URI
-/URI (http://isis.apache.org/applib/layout/menus/menubars.xsd)
+/URI (http://isis.apache.org/applib/layout/menubars/bootstrap3/menubars.xsd)
 >>
 /Subtype /Link
-/Rect [247.58496093750003 68.43000000000035 530.6017558593751 82.71000000000035]
+/Rect [48.24000000000001 52.65000000000035 405.18708984375 66.93000000000035]
 /Type /Annot
 >>
 endobj
@@ -152097,7 +152101,7 @@ endobj
 /F3.0 18 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [877 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R]
@@ -154010,7 +154014,7 @@ endobj
 /F3.0 18 0 R
 /F3.1 141 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [887 0 R 888 0 R 890 0 R 891 0 R]
@@ -154250,7 +154254,7 @@ endobj
 /F1.0 8 0 R
 /F3.0 18 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [895 0 R]
@@ -154268,7 +154272,7 @@ endobj
 >>
 endobj
 896 0 obj
-<< /Length 13826
+<< /Length 14358
 >>
 stream
 q
@@ -154994,10 +154998,25 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.850 Tw
+
 BT
 48.24000000000001 366.8660000000003 Td
 /F1.0 10.5 Tf
-[<6564697420612070726f7065727479> 89.84375 <2e>] TJ
+[<6564697420612070726f7065727479> 89.84375 <2e2049742063616e20626520737570706c656d656e7465642077697468206f7074696f6e616c2074696d696e677320636170747572696e67207468652061637475616c20696e766f636174696f6e206f662061>] TJ
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+48.24000000000001 351.08600000000035 Td
+/F1.0 10.5 Tf
+[<636f6d6d616e642028696e74726f647563656420746f20737570706f727420746865207265706c69636174696f6e206f6620636f6d6d616e647320696e2061206d61737465722f736c61766520617272> 20.01953125 <616e67656d656e74292e>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -155005,8 +155024,8 @@ ET
 q
 0.5 w
 0.933 0.933 0.933 SCN
-113.807 295.710 m
-113.807 351.050 l
+113.807 279.930 m
+113.807 335.270 l
 S
 Q
 0.098 0.251 0.486 scn
@@ -155017,7 +155036,7 @@ Q
 0.098 0.251 0.486 SCN
 
 BT
-76.73933333333335 314.80000000000035 Td
+76.73933333333335 299.0200000000003 Td
 /F5.1 24 Tf
 <21> Tj
 ET
@@ -155027,12 +155046,12 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.364 Tw
+0.621 Tw
 
 BT
-125.80666666666667 335.08600000000035 Td
+125.80666666666667 319.3060000000003 Td
 /F1.0 10.5 Tf
-<4d6978696e20616374696f6e732061726520726570726573656e74656420617320726567756c617220616374696f6e73206f6e20746865206d697865642d696e206f626a6563742e2020496e206f74686572> Tj
+<4d6978696e20616374696f6e732061726520726570726573656e74656420617320726567756c617220616374696f6e73206f6e20746865206d697865642d696e206f626a6563742e20496e206f74686572> Tj
 ET
 
 
@@ -155045,7 +155064,7 @@ ET
 0.381 Tw
 
 BT
-125.80666666666667 319.3060000000004 Td
+125.80666666666667 303.5260000000003 Td
 /F1.0 10.5 Tf
 [<776f7264732c2074686520666163742074686174207468652061637475616c20696d706c656d656e746174696f6e206f662074686520616374696f6e20697320646566696e65642062> 20.01953125 <792061206d6978696e>] TJ
 ET
@@ -155058,7 +155077,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-125.80666666666667 303.52600000000035 Td
+125.80666666666667 287.7460000000003 Td
 /F1.0 10.5 Tf
 [<697320616e20696d706c656d656e746174696f6e2064657461696c206f6e6c79> 89.84375 <2e>] TJ
 ET
@@ -155069,7 +155088,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 265.02600000000035 Td
+48.24000000000001 249.24600000000027 Td
 /F2.0 13 Tf
 <342e312e312e20> Tj
 ET
@@ -155080,7 +155099,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-84.83500000000001 265.02600000000035 Td
+84.83500000000001 249.24600000000027 Td
 /F3.0 13 Tf
 <636f6d6d616e6444746f> Tj
 ET
@@ -155091,7 +155110,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24000000000001 238.46600000000035 Td
+48.24000000000001 222.68600000000026 Td
 /F1.0 10.5 Tf
 <54686520> Tj
 ET
@@ -155102,7 +155121,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-69.66000000000001 238.46600000000035 Td
+69.66000000000001 222.68600000000026 Td
 /F3.0 10.5 Tf
 <636f6d6d616e6444746f> Tj
 ET
@@ -155113,7 +155132,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-122.16000000000001 238.46600000000035 Td
+122.16000000000001 222.68600000000026 Td
 /F1.0 10.5 Tf
 <20726f6f7420656c656d656e7420697320646566696e65642061733a> Tj
 ET
@@ -155156,7 +155175,7 @@ endobj
 /F3.0 18 0 R
 /F5.1 43 0 R
 >>
-/XObject << /Stamp1 1053 0 R
+/XObject << /Stamp1 1056 0 R
 >>
 >>
 /Annots [899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R]
@@ -155246,10 +155265,10 @@ endobj
 [897 0 R /XYZ 0 434.6900000000004 null]
 endobj
 907 0 obj
-[897 0 R /XYZ 0 283.7100000000004 null]
+[897 0 R /XYZ 0 267.9300000000003 null]
 endobj
 908 0 obj
-<< /Length 41898
+<< /Length 47827
 >>
 stream
 q
@@ -155259,10 +155278,10 @@ q
 52.240 805.890 m
 543.040 805.890 l
 545.249 805.890 547.040 804.099 547.040 801.890 c
-547.040 404.650 l
-547.040 402.441 545.249 400.650 543.040 400.650 c
-52.240 400.650 l
-50.031 400.650 48.240 402.441 48.240 404.650 c
+547.040 213.030 l
+547.040 210.821 545.249 209.030 543.040 209.030 c
+52.240 209.030 l
+50.031 209.030 48.240 210.821 48.240 213.030 c
 48.240 801.890 l
 48.240 804.099 50.031 805.890 52.240 805.890 c
 h
@@ -155273,10 +155292,10 @@ f
 52.240 805.890 m
 543.040 805.890 l
 545.249 805.890 547.040 804.099 547.040 801.890 c
-547.040 404.650 l
-547.040 402.441 545.249 400.650 543.040 400.650 c
-52.240 400.650 l
-50.031 400.650 48.240 402.441 48.240 404.650 c
+547.040 213.030 l
+547.040 210.821 545.249 209.030 543.040 209.030 c
+52.240 209.030 l
+50.031 209.030 48.240 210.821 48.240 213.030 c
 48.240 801.890 l
 48.240 804.099 50.031 805.890 52.240 805.890 c
 h
@@ -157512,7 +157531,7 @@ ET
 BT
 59.24 473.5249999999999 Td
 /F3.0 11 Tf
-<ca2020202020202020202020> Tj
+<ca202020202020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157521,9 +157540,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-125.24000000000001 473.5249999999999 Td
+147.24 473.5249999999999 Td
 /F3.0 11 Tf
-<3c2f78733a73657175656e63653e> Tj
+<3c78733a656c656d656e74> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157532,20 +157551,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 458.7849999999999 Td
+207.74 473.5249999999999 Td
 /F3.0 11 Tf
-<ca20202020202020> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.310 0.624 0.812 scn
+0.310 0.624 0.812 SCN
 
 BT
-103.24000000000001 458.7849999999999 Td
+213.24 473.5249999999999 Td
 /F3.0 11 Tf
-<3c2f78733a636f6d706c6578547970653e> Tj
+<6e616d65> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157554,64 +157573,42 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 444.0449999999999 Td
-/F3.0 11 Tf
-<ca202020> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
-
-BT
-81.24000000000001 444.0449999999999 Td
+235.24 473.5249999999999 Td
 /F3.0 11 Tf
-<3c2f78733a656c656d656e743e> Tj
+<3d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-59.24 429.3049999999999 Td
+240.74 473.5249999999999 Td
 /F3.0 11 Tf
-<ca202020> Tj
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-81.24000000000001 429.3049999999999 Td
+246.24 473.5249999999999 Td
 /F3.0 11 Tf
-<2e2e2e> Tj
+<74696d696e6773> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-59.24 414.5649999999999 Td
+284.74 473.5249999999999 Td
 /F3.0 11 Tf
-<3c2f78733a736368656d613e> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-51.2745 382.9249999999999 Td
-/F3.1 10.5 Tf
-<21> Tj
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157619,73 +157616,65 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-1.742 Tw
-
 BT
-64.809 382.68599999999986 Td
-/F1.0 10.5 Tf
-<74686520636f6d6d616e6420736368656d61206861732061206e616d65737061636520555249206f662022687474703a2f2f697369732e6170616368652e6f72672f736368656d612f636d64222e2020416c74686f756768> Tj
+290.24 473.5249999999999 Td
+/F3.0 11 Tf
+<20> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.678 Tw
+0.310 0.624 0.812 scn
+0.310 0.624 0.812 SCN
 
 BT
-64.809 366.90599999999984 Td
-/F1.0 10.5 Tf
-<5552497320617265206e6f74207468652073616d652061732055524c732c20796f752077696c6c2066696e6420746861742074686520736368656d61732061726520616c736f20646f776e6c6f616461626c652066726f6d2074686973> Tj
+295.74 473.5249999999999 Td
+/F3.0 11 Tf
+<74797065> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-64.809 351.12599999999986 Td
-/F1.0 10.5 Tf
-<6c6f636174696f6e2e> Tj
+317.74 473.5249999999999 Td
+/F3.0 11 Tf
+<3d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-51.274499999999996 329.58499999999987 Td
-/F3.1 10.5 Tf
+323.24 473.5249999999999 Td
+/F3.0 11 Tf
 <22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-64.809 329.34599999999983 Td
-/F1.0 10.5 Tf
-<7573657320636f6d706c657820747970657320646566696e656420696e2074686520> Tj
+328.74 473.5249999999999 Td
+/F3.0 11 Tf
+<6d656d62657244746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-235.9905 329.34599999999983 Td
-/F1.0 10.5 Tf
-[<22636f6d6d6f6e> 40.0390625 <2220736368656d61>] TJ
+378.24 473.5249999999999 Td
+/F3.0 11 Tf
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157694,20 +157683,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-328.72608984374995 329.34599999999983 Td
-/F1.0 10.5 Tf
-<2e> Tj
+383.74 473.5249999999999 Td
+/F3.0 11 Tf
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.310 0.624 0.812 scn
+0.310 0.624 0.812 SCN
 
 BT
-51.274499999999996 307.8049999999999 Td
-/F3.1 10.5 Tf
-<23> Tj
+389.24 473.5249999999999 Td
+/F3.0 11 Tf
+<6d696e4f6363757273> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157715,92 +157704,65 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.993 Tw
-
-BT
-64.809 307.56599999999986 Td
-/F1.0 10.5 Tf
-<646566696e6974696f6e206f662074686520> Tj
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-0.993 Tw
-
 BT
-151.12689999999998 307.56599999999986 Td
-/F3.0 10.5 Tf
-<636f6d6d616e6444746f> Tj
+438.74 473.5249999999999 Td
+/F3.0 11 Tf
+<3d> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.993 Tw
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-203.6269 307.56599999999986 Td
-/F1.0 10.5 Tf
-<20726f6f7420656c656d656e742e202054686520636f72726573706f6e64696e6720584d4c2077696c6c2075736520746869732061732069747320746f702d6c6576656c> Tj
+444.24 473.5249999999999 Td
+/F3.0 11 Tf
+<22> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-64.809 291.78599999999983 Td
-/F1.0 10.5 Tf
-<656c656d656e742e> Tj
+449.74 473.5249999999999 Td
+/F3.0 11 Tf
+<30> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-51.274499999999996 270.2449999999999 Td
-/F3.1 10.5 Tf
-<24> Tj
+455.24 473.5249999999999 Td
+/F3.0 11 Tf
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.176 Tw
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-64.809 270.00599999999986 Td
-/F1.0 10.5 Tf
-<6561636820696e7374616e6365206f66207468697320736368656d6120696e64696361746573207468652076657273696f6e206f662074686520736368656d6120697420697320636f6d70617469626c6520776974682028666f6c6c6f77696e67> Tj
+460.74 473.5249999999999 Td
+/F3.0 11 Tf
+<2f3e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-64.809 254.22599999999986 Td
-/F1.0 10.5 Tf
-<73656d616e7469632076657273696f6e696e6729> Tj
+471.74 473.5249999999999 Td
+/F3.0 11 Tf
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157809,158 +157771,75 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-51.274499999999996 232.68499999999986 Td
-/F3.1 10.5 Tf
-<25> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-1.318 Tw
-
-BT
-64.809 232.44599999999986 Td
-/F1.0 10.5 Tf
-[<756e69717565206964656e74696669657220666f7220746865207472> 20.01953125 <616e73616374696f6e20696e207768696368207468697320636f6d6d616e6420697320637265617465642e2020546865207472> 20.01953125 <616e73616374696f6e204964206973>] TJ
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.959 Tw
-
-BT
-64.809 216.66599999999985 Td
-/F1.0 10.5 Tf
-<7573656420746f20636f7272656c61746520746f2074686520> Tj
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
-
-0.959 Tw
-
-BT
-187.32930338541667 216.66599999999985 Td
-/F1.0 10.5 Tf
-[<696e746572> 20.01953125 <616374696f6e>] TJ
+477.24 473.5249999999999 Td
+/F3.1 11 Tf
+<29> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.959 Tw
-
-BT
-242.44359830729167 216.66599999999985 Td
-/F1.0 10.5 Tf
-[<20746861742065786563757465732074686520636f6d6d616e642c20616e6420746f20616e> 20.01953125 <7920>] TJ
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
-
-0.959 Tw
-
 BT
-451.0002786458333 216.66599999999985 Td
-/F1.0 10.5 Tf
-<6368616e676573> Tj
+59.24 458.7849999999999 Td
+/F3.0 11 Tf
+<ca2020202020202020202020> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.959 Tw
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-491.49877864583334 216.66599999999985 Td
-/F1.0 10.5 Tf
-<20746f20646f6d61696e> Tj
+125.24000000000001 458.7849999999999 Td
+/F3.0 11 Tf
+<3c2f78733a73657175656e63653e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-64.809 200.88599999999985 Td
-/F1.0 10.5 Tf
-[<6f626a65637473206f6363757272696e67206173206120736964652d656666656374206f66207468617420696e746572> 20.01953125 <616374696f6e2e>] TJ
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-51.274499999999996 179.34499999999986 Td
-/F3.1 10.5 Tf
-<26> Tj
+59.24 444.0449999999999 Td
+/F3.0 11 Tf
+<ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.742 Tw
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-64.809 179.10599999999985 Td
-/F1.0 10.5 Tf
-[<746865206e616d65206f662074686520757365722077686f20637265617465642074686520636f6d6d616e64202877686f736520696e74656e74696f6e20697420697320746f20696e766f6b> 20.01953125 <652074686520616374696f6e2f65646974>] TJ
+103.24000000000001 444.0449999999999 Td
+/F3.0 11 Tf
+<3c2f78733a636f6d706c6578547970653e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-64.809 163.32599999999985 Td
-/F1.0 10.5 Tf
-<7468652070726f7065727479292e> Tj
+59.24 429.3049999999999 Td
+/F3.0 11 Tf
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-51.274499999999996 141.78499999999985 Td
-/F3.1 10.5 Tf
-<27> Tj
+81.24000000000001 429.3049999999999 Td
+/F3.0 11 Tf
+<3c2f78733a656c656d656e743e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -157968,51 +157847,43 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.957 Tw
-
 BT
-64.809 141.54599999999985 Td
-/F1.0 10.5 Tf
-[<74686520746172676574206f626a65637420286f72206f626a656374732920746f20626520696e766f6b> 20.01953125 <65642e20412062756c6b20616374696f6e2077696c6c20637265617465206d756c7469706c6520636f6d6d616e64732c2065616368>] TJ
+59.24 399.8249999999999 Td
+/F3.0 11 Tf
+<ca202020> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-1.637 Tw
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-64.809 125.76599999999985 Td
-/F1.0 10.5 Tf
-[<77697468206f6e6c7920612073696e676c65207461726765742e202841206675747572652076657273696f6e206f6620746865206672> 20.01953125 <616d65776f726b206d61> 20.01953125 <7920616c736f20737570706f727420612073696e676c652062756c6b>] TJ
+81.24000000000001 399.8249999999999 Td
+/F3.0 11 Tf
+<3c78733a656c656d656e74> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-64.809 109.98599999999985 Td
-/F1.0 10.5 Tf
-<636f6d6d616e6420616761696e73742074686973206d756c7469706c6520746172676574732c20696520616c6c2d6f722d6e6f7468696e67292e> Tj
+141.74 399.8249999999999 Td
+/F3.0 11 Tf
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.310 0.624 0.812 scn
+0.310 0.624 0.812 SCN
 
 BT
-51.274499999999996 88.44499999999985 Td
-/F3.1 10.5 Tf
-<28> Tj
+147.24 399.8249999999999 Td
+/F3.0 11 Tf
+<6e616d65> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158021,219 +157892,97 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-64.809 88.20599999999985 Td
-/F1.0 10.5 Tf
-<74686520> Tj
+169.24 399.8249999999999 Td
+/F3.0 11 Tf
+<3d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-83.499 88.20599999999985 Td
-/F3.0 10.5 Tf
-<6d656d62657244746f> Tj
+174.74 399.8249999999999 Td
+/F3.0 11 Tf
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-130.749 88.20599999999985 Td
-/F1.0 10.5 Tf
-[<2c20646566696e65642062656c6f77> 69.82421875 <2c207468652063617074757265732074686520616374696f6e2f70726f706572747920616e6420617267756d656e74732f6e65772076616c75652e>] TJ
+180.24 399.8249999999999 Td
+/F3.0 11 Tf
+<636f6d6d616e647344746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.847 Tw
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-48.239999999999995 60.425999999999846 Td
-/F1.0 10.5 Tf
-<54686520> Tj
+240.74 399.8249999999999 Td
+/F3.0 11 Tf
+<22> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-0.847 Tw
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-70.50710847355768 60.425999999999846 Td
-/F3.0 10.5 Tf
-<436f6d6d616e6444746f> Tj
+246.24 399.8249999999999 Td
+/F3.0 11 Tf
+<3e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.847 Tw
-
 BT
-123.0071084735577 60.425999999999846 Td
-/F1.0 10.5 Tf
-[<2044> 20.01953125 <54> 20.01953125 <4f20636f72726573706f6e64696e6720746f2074686520>] TJ
+251.74 399.8249999999999 Td
+/F3.0 11 Tf
+<2020202020202020202020202020202020202020202020202020202020202020202020202020202020> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
-0.847 Tw
-
-BT
-260.93874068509615 60.425999999999846 Td
-/F3.0 10.5 Tf
-<636f6d6d616e6444746f> Tj
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.847 Tw
-
-BT
-313.43874068509615 60.425999999999846 Td
-/F1.0 10.5 Tf
-<20726f6f7420656c656d656e742063616e206265206d61727368616c6c656420746f2f66726f6d20584d4c> Tj
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-q
-0.000 0.000 0.000 scn
-0.000 0.000 0.000 SCN
-1 w
-0 J
-0 j
-[ ] 0 d
-/Stamp1 Do
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
 BT
-535.978 14.388 Td
-/F1.0 9 Tf
-<3831> Tj
+477.24 399.8249999999999 Td
+/F3.1 11 Tf
+<2a> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-Q
-Q
-
-endstream
-endobj
-909 0 obj
-<< /Type /Page
-/Parent 3 0 R
-/MediaBox [0 0 595.28 841.89]
-/Contents 908 0 R
-/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
-/Font << /F3.0 18 0 R
-/F3.1 141 0 R
-/F1.0 8 0 R
->>
-/XObject << /Stamp1 1053 0 R
->>
->>
-/Annots [910 0 R 911 0 R 912 0 R]
->>
-endobj
-910 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (../rgcms/rgcms.pdf#_rgcms_schema_common)
->>
-/Subtype /Link
-/Rect [235.9905 326.27999999999986 328.72608984374995 340.55999999999983]
-/Type /Annot
->>
-endobj
-911 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (../rgcms/rgcms.pdf#_rgcms_schema_interaction)
->>
-/Subtype /Link
-/Rect [187.32930338541667 213.59999999999985 242.44359830729167 227.87999999999985]
-/Type /Annot
->>
-endobj
-912 0 obj
-<< /Border [0 0 0]
-/A << /Type /Action
-/S /URI
-/URI (../rgcms/rgcms.pdf#_rgcms_schema_changes)
->>
-/Subtype /Link
-/Rect [451.0002786458333 213.59999999999985 491.49877864583334 227.87999999999985]
-/Type /Annot
->>
-endobj
-913 0 obj
-<< /Length 37671
->>
-stream
-q
-/DeviceRGB cs
 0.200 0.200 0.200 scn
-/DeviceRGB CS
 0.200 0.200 0.200 SCN
 
 BT
-48.24 794.6759999999999 Td
-/F1.0 10.5 Tf
-<7573696e672074686520> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-96.813 794.6759999999999 Td
-/F3.0 10.5 Tf
-<436f6d6d616e6444746f5574696c73> Tj
+59.24 385.08499999999987 Td
+/F3.0 11 Tf
+<ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-175.56300000000002 794.6759999999999 Td
-/F1.0 10.5 Tf
-<20636c6173732e> Tj
+103.24000000000001 385.08499999999987 Td
+/F3.0 11 Tf
+<3c78733a616e6e6f746174696f6e3e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158242,31 +157991,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 760.176 Td
-/F2.0 13 Tf
-<342e312e322e20> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-84.83500000000001 760.176 Td
-/F3.0 13 Tf
-<6d656d62657244746f> Tj
+59.24 370.34499999999986 Td
+/F3.0 11 Tf
+<ca2020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-143.335 760.176 Td
-/F2.0 13 Tf
-<20616e64207375627479706573> Tj
+125.24000000000001 370.34499999999986 Td
+/F3.0 11 Tf
+<3c78733a646f63756d656e746174696f6e3e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158274,66 +158012,43 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-0.127 Tw
-
-BT
-48.24 733.6160000000001 Td
-/F1.0 10.5 Tf
-<54686520> Tj
-ET
-
-
-0.000 Tw
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-0.127 Tw
-
 BT
-69.78726067708334 733.6160000000001 Td
-/F3.0 10.5 Tf
-<6d656d62657244746f> Tj
+224.24 370.34499999999986 Td
+/F3.0 11 Tf
+<436f6c6c656374696f6e206f6620636f6d6d616e6444746f2773> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-0.127 Tw
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-117.03726067708334 733.6160000000001 Td
-/F1.0 10.5 Tf
-[<20636f6d706c6578207479706520697320616e206162737472> 20.01953125 <616374207479706520726570726573656e74696e672074686520696e74656e74696f6e20746f2065697468657220696e766f6b> 20.01953125 <6520616e20616374696f6e>] TJ
+367.24 370.34499999999986 Td
+/F3.0 11 Tf
+<3c2f78733a646f63756d656e746174696f6e3e> Tj
 ET
 
-
-0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-48.24 717.8360000000001 Td
-/F1.0 10.5 Tf
-[<6f7220746f206564697420612070726f7065727479> 89.84375 <2e202054686520>] TJ
+59.24 355.60499999999985 Td
+/F3.0 11 Tf
+<ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-177.475640625 717.8360000000001 Td
-/F3.0 10.5 Tf
-<616374696f6e44746f> Tj
+103.24000000000001 355.60499999999985 Td
+/F3.0 11 Tf
+<3c2f78733a616e6e6f746174696f6e3e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158342,20 +158057,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-224.725640625 717.8360000000001 Td
-/F1.0 10.5 Tf
-<20616e6420> Tj
+59.24 340.86499999999984 Td
+/F3.0 11 Tf
+<ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-249.27464062500002 717.8360000000001 Td
-/F3.0 10.5 Tf
-<70726f706572747944746f> Tj
+103.24000000000001 340.86499999999984 Td
+/F3.0 11 Tf
+<3c78733a636f6d706c6578547970653e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158364,47 +158079,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-307.024640625 717.8360000000001 Td
-/F1.0 10.5 Tf
-<206172652074686520636f6e63726574652073756274797065733a> Tj
+59.24 326.12499999999983 Td
+/F3.0 11 Tf
+<ca2020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-q
-0.961 0.961 0.961 scn
-52.240 702.020 m
-543.040 702.020 l
-545.249 702.020 547.040 700.229 547.040 698.020 c
-547.040 227.080 l
-547.040 224.871 545.249 223.080 543.040 223.080 c
-52.240 223.080 l
-50.031 223.080 48.240 224.871 48.240 227.080 c
-48.240 698.020 l
-48.240 700.229 50.031 702.020 52.240 702.020 c
-h
-f
-0.800 0.800 0.800 SCN
-0.75 w
-52.240 702.020 m
-543.040 702.020 l
-545.249 702.020 547.040 700.229 547.040 698.020 c
-547.040 227.080 l
-547.040 224.871 545.249 223.080 543.040 223.080 c
-52.240 223.080 l
-50.031 223.080 48.240 224.871 48.240 227.080 c
-48.240 698.020 l
-48.240 700.229 50.031 702.020 52.240 702.020 c
-h
-S
-Q
 0.184 0.435 0.624 scn
 0.184 0.435 0.624 SCN
 
 BT
-59.24 679.1950000000002 Td
+125.24000000000001 326.12499999999983 Td
 /F3.0 11 Tf
-<3c78733a736368656d61> Tj
+<3c78733a73657175656e6365> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158413,7 +158101,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-114.24000000000001 679.1950000000002 Td
+191.24 326.12499999999983 Td
 /F3.0 11 Tf
 <20> Tj
 ET
@@ -158424,9 +158112,9 @@ ET
 0.310 0.624 0.812 SCN
 
 BT
-119.74000000000001 679.1950000000002 Td
+196.74 326.12499999999983 Td
 /F3.0 11 Tf
-<7461726765744e616d657370616365> Tj
+<6d696e4f6363757273> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158435,7 +158123,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-202.24 679.1950000000002 Td
+246.24 326.12499999999983 Td
 /F3.0 11 Tf
 <3d> Tj
 ET
@@ -158446,7 +158134,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-207.74 679.1950000000002 Td
+251.74 326.12499999999983 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -158457,9 +158145,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-213.24 679.1950000000002 Td
+257.24 326.12499999999983 Td
 /F3.0 11 Tf
-<687474703a2f2f697369732e6170616368652e6f72672f736368656d612f636d64> Tj
+<31> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158468,7 +158156,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-394.74 679.1950000000002 Td
+262.74 326.12499999999983 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -158479,7 +158167,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-400.24 679.1950000000002 Td
+268.24 326.12499999999983 Td
 /F3.0 11 Tf
 <20> Tj
 ET
@@ -158490,31 +158178,9 @@ ET
 0.310 0.624 0.812 SCN
 
 BT
-405.74 679.1950000000002 Td
-/F3.0 11 Tf
-<2e2e2e> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
-
-BT
-422.24 679.1950000000002 Td
-/F3.0 11 Tf
-<3e> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
-
-BT
-59.24 664.4550000000002 Td
+273.74 326.12499999999983 Td
 /F3.0 11 Tf
-<ca202020> Tj
+<6d61784f6363757273> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158523,53 +158189,53 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-81.24000000000001 664.4550000000002 Td
+323.24 326.12499999999983 Td
 /F3.0 11 Tf
-<2e2e2e> Tj
+<3d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-59.24 649.7150000000001 Td
+328.74 326.12499999999983 Td
 /F3.0 11 Tf
-<ca202020> Tj
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-81.24000000000001 649.7150000000001 Td
+334.24 326.12499999999983 Td
 /F3.0 11 Tf
-<3c78733a636f6d706c657854797065> Tj
+<756e626f756e646564> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
 
 BT
-163.74 649.7150000000001 Td
+383.74 326.12499999999983 Td
 /F3.0 11 Tf
-<20> Tj
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-169.24 649.7150000000001 Td
+389.24 326.12499999999983 Td
 /F3.0 11 Tf
-<6e616d65> Tj
+<3e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158578,42 +158244,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-191.24 649.7150000000001 Td
-/F3.0 11 Tf
-<3d> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
-
-BT
-196.74 649.7150000000001 Td
-/F3.0 11 Tf
-<22> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
-
-BT
-202.24 649.7150000000001 Td
+59.24 311.3849999999998 Td
 /F3.0 11 Tf
-<6d656d62657244746f> Tj
+<ca202020202020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-251.74 649.7150000000001 Td
+147.24 311.3849999999998 Td
 /F3.0 11 Tf
-<22> Tj
+<3c78733a656c656d656e74> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158622,7 +158266,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-257.24 649.7150000000001 Td
+207.74 311.3849999999998 Td
 /F3.0 11 Tf
 <20> Tj
 ET
@@ -158633,9 +158277,9 @@ ET
 0.310 0.624 0.812 SCN
 
 BT
-262.74 649.7150000000001 Td
+213.24 311.3849999999998 Td
 /F3.0 11 Tf
-<6162737472616374> Tj
+<726566> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158644,7 +158288,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-306.74 649.7150000000001 Td
+229.74 311.3849999999998 Td
 /F3.0 11 Tf
 <3d> Tj
 ET
@@ -158655,7 +158299,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-312.24 649.7150000000001 Td
+235.24 311.3849999999998 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -158666,9 +158310,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-317.74 649.7150000000001 Td
+240.74 311.3849999999998 Td
 /F3.0 11 Tf
-<74727565> Tj
+<636f6d6d616e6444746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158677,7 +158321,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-339.74 649.7150000000001 Td
+295.74 311.3849999999998 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -158688,9 +158332,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-345.24 649.7150000000001 Td
+301.24 311.3849999999998 Td
 /F3.0 11 Tf
-<3e> Tj
+<2f3e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158699,20 +158343,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-350.74 649.7150000000001 Td
+59.24 296.6449999999998 Td
 /F3.0 11 Tf
-<2020202020202020202020202020202020202020202020> Tj
+<ca2020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-477.24 649.7150000000001 Td
-/F3.1 11 Tf
-<21> Tj
+125.24000000000001 296.6449999999998 Td
+/F3.0 11 Tf
+<3c2f78733a73657175656e63653e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158721,7 +158365,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 634.9750000000003 Td
+59.24 281.9049999999998 Td
 /F3.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -158732,9 +158376,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24000000000001 634.9750000000003 Td
+103.24000000000001 281.9049999999998 Td
 /F3.0 11 Tf
-<3c2f78733a656c656d656e743e> Tj
+<3c2f78733a636f6d706c6578547970653e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158743,9 +158387,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 620.2350000000002 Td
+59.24 267.16499999999985 Td
 /F3.0 11 Tf
-<ca20202020202020> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158754,9 +158398,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24000000000001 620.2350000000002 Td
+81.24000000000001 267.16499999999985 Td
 /F3.0 11 Tf
-<3c78733a73657175656e63653e> Tj
+<3c2f78733a656c656d656e743e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158765,42 +158409,42 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 605.4950000000002 Td
+59.24 237.68499999999983 Td
 /F3.0 11 Tf
-<ca2020202020202020202020> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-125.24000000000001 605.4950000000002 Td
+81.24000000000001 237.68499999999983 Td
 /F3.0 11 Tf
-<3c78733a656c656d656e74> Tj
+<2e2e2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.184 0.435 0.624 scn
+0.184 0.435 0.624 SCN
 
 BT
-185.74 605.4950000000002 Td
+59.24 222.94499999999982 Td
 /F3.0 11 Tf
-<20> Tj
+<3c2f78733a736368656d613e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-191.24 605.4950000000002 Td
-/F3.0 11 Tf
-<6e616d65> Tj
+51.2745 191.30499999999986 Td
+/F3.1 10.5 Tf
+<21> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158808,42 +158452,50 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.742 Tw
+
 BT
-213.24 605.4950000000002 Td
-/F3.0 11 Tf
-<3d> Tj
+64.809 191.06599999999986 Td
+/F1.0 10.5 Tf
+<74686520636f6d6d616e6420736368656d61206861732061206e616d65737061636520555249206f662022687474703a2f2f697369732e6170616368652e6f72672f736368656d612f636d64222e2020416c74686f756768> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.678 Tw
 
 BT
-218.74 605.4950000000002 Td
-/F3.0 11 Tf
-<22> Tj
+64.809 175.28599999999986 Td
+/F1.0 10.5 Tf
+<5552497320617265206e6f74207468652073616d652061732055524c732c20796f752077696c6c2066696e6420746861742074686520736368656d61732061726520616c736f20646f776e6c6f616461626c652066726f6d2074686973> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-224.24 605.4950000000002 Td
-/F3.0 11 Tf
-<6d656d6265724964656e746966696572> Tj
+64.809 159.50599999999986 Td
+/F1.0 10.5 Tf
+<6c6f636174696f6e2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-312.24 605.4950000000002 Td
-/F3.0 11 Tf
+51.274499999999996 137.96499999999986 Td
+/F3.1 10.5 Tf
 <22> Tj
 ET
 
@@ -158853,20 +158505,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-317.74 605.4950000000002 Td
-/F3.0 11 Tf
-<20> Tj
+64.809 137.72599999999986 Td
+/F1.0 10.5 Tf
+<7573657320636f6d706c657820747970657320646566696e656420696e2074686520> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
 
 BT
-323.24 605.4950000000002 Td
-/F3.0 11 Tf
-<74797065> Tj
+235.9905 137.72599999999986 Td
+/F1.0 10.5 Tf
+[<22636f6d6d6f6e> 40.0390625 <2220736368656d61>] TJ
 ET
 
 0.000 0.000 0.000 SCN
@@ -158875,64 +158527,76 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-345.24 605.4950000000002 Td
-/F3.0 11 Tf
-<3d> Tj
+328.72608984374995 137.72599999999986 Td
+/F1.0 10.5 Tf
+<2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-350.74 605.4950000000002 Td
-/F3.0 11 Tf
-<22> Tj
+51.274499999999996 116.18499999999986 Td
+/F3.1 10.5 Tf
+<23> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.258 Tw
 
 BT
-356.24 605.4950000000002 Td
-/F3.0 11 Tf
-<78733a737472696e67> Tj
+64.809 115.94599999999986 Td
+/F1.0 10.5 Tf
+<646566696e6974696f6e206f662074686520> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+1.258 Tw
 
 BT
-405.74 605.4950000000002 Td
-/F3.0 11 Tf
-<22> Tj
+151.92246428571428 115.94599999999986 Td
+/F3.0 10.5 Tf
+<636f6d6d616e6444746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.258 Tw
 
 BT
-411.24 605.4950000000002 Td
-/F3.0 11 Tf
-<2f3e> Tj
+204.42246428571426 115.94599999999986 Td
+/F1.0 10.5 Tf
+<20726f6f7420656c656d656e742e2054686520636f72726573706f6e64696e6720584d4c2077696c6c2075736520746869732061732069747320746f702d6c6576656c> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-422.24 605.4950000000002 Td
-/F3.0 11 Tf
-<20202020202020202020> Tj
+64.809 100.16599999999985 Td
+/F1.0 10.5 Tf
+<656c656d656e742e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158941,9 +158605,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-477.24 605.4950000000002 Td
-/F3.1 11 Tf
-<22> Tj
+51.274499999999996 78.62499999999986 Td
+/F3.1 10.5 Tf
+<24> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158951,43 +158615,94 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.176 Tw
+
 BT
-59.24 590.7550000000002 Td
-/F3.0 11 Tf
-<ca2020202020202020202020> Tj
+64.809 78.38599999999985 Td
+/F1.0 10.5 Tf
+<6561636820696e7374616e6365206f66207468697320736368656d6120696e64696361746573207468652076657273696f6e206f662074686520736368656d6120697420697320636f6d70617469626c6520776974682028666f6c6c6f77696e67> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-125.24000000000001 590.7550000000002 Td
-/F3.0 11 Tf
-<3c78733a656c656d656e74> Tj
+64.809 62.60599999999985 Td
+/F1.0 10.5 Tf
+<73656d616e7469632076657273696f6e696e6729> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+q
+0.000 0.000 0.000 scn
+0.000 0.000 0.000 SCN
+1 w
+0 J
+0 j
+[ ] 0 d
+/Stamp1 Do
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-185.74 590.7550000000002 Td
-/F3.0 11 Tf
-<20> Tj
+535.978 14.388 Td
+/F1.0 9 Tf
+<3831> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+Q
+Q
+
+endstream
+endobj
+909 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 908 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.0 18 0 R
+/F3.1 141 0 R
+/F1.0 8 0 R
+>>
+/XObject << /Stamp1 1056 0 R
+>>
+>>
+/Annots [910 0 R]
+>>
+endobj
+910 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../rgcms/rgcms.pdf#_rgcms_schema_common)
+>>
+/Subtype /Link
+/Rect [235.9905 134.65999999999985 328.72608984374995 148.93999999999986]
+/Type /Annot
+>>
+endobj
+911 0 obj
+<< /Length 10259
+>>
+stream
+q
+/DeviceRGB cs
+0.694 0.129 0.275 scn
+/DeviceRGB CS
+0.694 0.129 0.275 SCN
 
 BT
-191.24 590.7550000000002 Td
-/F3.0 11 Tf
-<6e616d65> Tj
+51.2745 794.165 Td
+/F3.1 10.5 Tf
+<25> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -158995,131 +158710,137 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-BT
-213.24 590.7550000000002 Td
-/F3.0 11 Tf
-<3d> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+1.606 Tw
 
 BT
-218.74 590.7550000000002 Td
-/F3.0 11 Tf
-<22> Tj
+64.809 793.9259999999999 Td
+/F1.0 10.5 Tf
+[<756e69717565206964656e74696669657220666f7220746865207472> 20.01953125 <616e73616374696f6e20696e207768696368207468697320636f6d6d616e6420697320637265617465642e20546865207472> 20.01953125 <616e73616374696f6e204964206973>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.959 Tw
 
 BT
-224.24 590.7550000000002 Td
-/F3.0 11 Tf
-<6c6f676963616c4d656d6265724964656e746966696572> Tj
+64.809 778.146 Td
+/F1.0 10.5 Tf
+<7573656420746f20636f7272656c61746520746f2074686520> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+0.959 Tw
 
 BT
-350.74 590.7550000000002 Td
-/F3.0 11 Tf
-<22> Tj
+187.32930338541667 778.146 Td
+/F1.0 10.5 Tf
+[<696e746572> 20.01953125 <616374696f6e>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.959 Tw
+
 BT
-356.24 590.7550000000002 Td
-/F3.0 11 Tf
-<20> Tj
+242.44359830729167 778.146 Td
+/F1.0 10.5 Tf
+[<20746861742065786563757465732074686520636f6d6d616e642c20616e6420746f20616e> 20.01953125 <7920>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+0.959 Tw
 
 BT
-361.74 590.7550000000002 Td
-/F3.0 11 Tf
-<74797065> Tj
+451.0002786458333 778.146 Td
+/F1.0 10.5 Tf
+<6368616e676573> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
-BT
-383.74 590.7550000000002 Td
-/F3.0 11 Tf
-<3d> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.959 Tw
 
 BT
-389.24 590.7550000000002 Td
-/F3.0 11 Tf
-<22> Tj
+491.49877864583334 778.146 Td
+/F1.0 10.5 Tf
+<20746f20646f6d61696e> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-394.74 590.7550000000002 Td
-/F3.0 11 Tf
-<78733a737472696e67> Tj
+64.809 762.366 Td
+/F1.0 10.5 Tf
+[<6f626a65637473206f6363757272696e67206173206120736964652d656666656374206f66207468617420696e746572> 20.01953125 <616374696f6e2e>] TJ
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-444.24 590.7550000000002 Td
-/F3.0 11 Tf
-<22> Tj
+51.274499999999996 740.8249999999999 Td
+/F3.1 10.5 Tf
+<26> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.742 Tw
 
 BT
-449.74 590.7550000000002 Td
-/F3.0 11 Tf
-<3e> Tj
+64.809 740.5859999999999 Td
+/F1.0 10.5 Tf
+[<746865206e616d65206f662074686520757365722077686f20637265617465642074686520636f6d6d616e64202877686f736520696e74656e74696f6e20697420697320746f20696e766f6b> 20.01953125 <652074686520616374696f6e2f65646974>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-455.24 590.7550000000002 Td
-/F3.0 11 Tf
-<20202020> Tj
+64.809 724.8059999999999 Td
+/F1.0 10.5 Tf
+<7468652070726f7065727479292e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159128,9 +158849,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-477.24 590.7550000000002 Td
-/F3.1 11 Tf
-<23> Tj
+51.274499999999996 703.265 Td
+/F3.1 10.5 Tf
+<27> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159138,43 +158859,51 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.957 Tw
+
 BT
-59.24 576.0150000000002 Td
-/F3.0 11 Tf
-<ca20202020202020> Tj
+64.809 703.026 Td
+/F1.0 10.5 Tf
+[<74686520746172676574206f626a65637420286f72206f626a656374732920746f20626520696e766f6b> 20.01953125 <65642e20412062756c6b20616374696f6e2077696c6c20637265617465206d756c7469706c6520636f6d6d616e64732c2065616368>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.637 Tw
 
 BT
-103.24000000000001 576.0150000000002 Td
-/F3.0 11 Tf
-<3c2f78733a73657175656e63653e> Tj
+64.809 687.246 Td
+/F1.0 10.5 Tf
+[<77697468206f6e6c7920612073696e676c65207461726765742e202841206675747572652076657273696f6e206f6620746865206672> 20.01953125 <616d65776f726b206d61> 20.01953125 <7920616c736f20737570706f727420612073696e676c652062756c6b>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-59.24 561.2750000000002 Td
-/F3.0 11 Tf
-<ca20202020202020> Tj
+64.809 671.466 Td
+/F1.0 10.5 Tf
+<636f6d6d616e6420616761696e73742074686973206d756c7469706c6520746172676574732c20696520616c6c2d6f722d6e6f7468696e67292e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-103.24000000000001 561.2750000000002 Td
-/F3.0 11 Tf
-<3c78733a617474726962757465> Tj
+51.274499999999996 649.925 Td
+/F3.1 10.5 Tf
+<28> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159183,20 +158912,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-174.74 561.2750000000002 Td
-/F3.0 11 Tf
-<2020> Tj
+64.809 649.6859999999999 Td
+/F1.0 10.5 Tf
+<74686520> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-185.74 561.2750000000002 Td
-/F3.0 11 Tf
-<6e616d65> Tj
+83.499 649.6859999999999 Td
+/F3.0 10.5 Tf
+<6d656d62657244746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159205,42 +158934,42 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-207.74 561.2750000000002 Td
-/F3.0 11 Tf
-<3d> Tj
+130.749 649.6859999999999 Td
+/F1.0 10.5 Tf
+[<2c20646566696e65642062656c6f77> 69.82421875 <2c207468652063617074757265732074686520616374696f6e2f70726f706572747920616e6420617267756d656e74732f6e65772076616c75652e>] TJ
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-213.24 561.2750000000002 Td
-/F3.0 11 Tf
-<22> Tj
+51.274499999999996 628.145 Td
+/F3.1 10.5 Tf
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-218.74 561.2750000000002 Td
-/F3.0 11 Tf
-<696e746572616374696f6e54797065> Tj
+64.809 627.906 Td
+/F1.0 10.5 Tf
+<6f7074696f6e616c2074696d696e677320666f722074686520696e766f636174696f6e206f66206120636f6d6d616e642e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-301.24 561.2750000000002 Td
-/F3.0 11 Tf
-<22> Tj
+51.274499999999996 606.365 Td
+/F3.1 10.5 Tf
+<2a> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159249,163 +158978,218 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-306.74 561.2750000000002 Td
-/F3.0 11 Tf
-<20> Tj
+64.809 606.126 Td
+/F1.0 10.5 Tf
+<67726f757073206d756c7469706c6520636f6d6d616e647320746f6765746865722e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.847 Tw
 
 BT
-312.24 561.2750000000002 Td
-/F3.0 11 Tf
-<74797065> Tj
+48.239999999999995 578.346 Td
+/F1.0 10.5 Tf
+<54686520> Tj
+ET
+
+
+0.000 Tw
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.847 Tw
+
+BT
+70.50710847355768 578.346 Td
+/F3.0 10.5 Tf
+<436f6d6d616e6444746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.847 Tw
+
 BT
-334.24 561.2750000000002 Td
-/F3.0 11 Tf
-<3d> Tj
+123.0071084735577 578.346 Td
+/F1.0 10.5 Tf
+[<2044> 20.01953125 <54> 20.01953125 <4f20636f72726573706f6e64696e6720746f2074686520>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.847 Tw
 
 BT
-339.74 561.2750000000002 Td
-/F3.0 11 Tf
-<22> Tj
+260.93874068509615 578.346 Td
+/F3.0 10.5 Tf
+<636f6d6d616e6444746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.847 Tw
 
 BT
-345.24 561.2750000000002 Td
-/F3.0 11 Tf
-<636f6d3a696e746572616374696f6e54797065> Tj
+313.43874068509615 578.346 Td
+/F1.0 10.5 Tf
+<20726f6f7420656c656d656e742063616e206265206d61727368616c6c656420746f2f66726f6d20584d4c> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.020 Tw
 
 BT
-449.74 561.2750000000002 Td
-/F3.0 11 Tf
-<22> Tj
+48.239999999999995 562.566 Td
+/F1.0 10.5 Tf
+<7573696e672074686520> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+1.020 Tw
 
 BT
-455.24 561.2750000000002 Td
-/F3.0 11 Tf
-<2f3e> Tj
+98.85315169270831 562.566 Td
+/F3.0 10.5 Tf
+<436f6d6d616e6444746f5574696c73> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.020 Tw
+
 BT
-466.24 561.2750000000002 Td
-/F3.0 11 Tf
-<2020> Tj
+177.6031516927083 562.566 Td
+/F1.0 10.5 Tf
+<20636c6173732e2054686520> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
+1.020 Tw
+
 BT
-477.24 561.2750000000002 Td
-/F3.1 11 Tf
-<24> Tj
+233.9403792317708 562.566 Td
+/F3.0 10.5 Tf
+<436f6d6d616e647344746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+1.020 Tw
+
 BT
-59.24 546.5350000000002 Td
-/F3.0 11 Tf
-<ca202020> Tj
+291.6903792317708 562.566 Td
+/F1.0 10.5 Tf
+[<2044> 20.01953125 <54> 20.01953125 <4f20616c6c6f7773206d756c7469706c6520636f6d6d616e647320746f206265206d61727368616c6c6564>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+1.047 Tw
 
 BT
-81.24000000000001 546.5350000000002 Td
-/F3.0 11 Tf
-<3c2f78733a636f6d706c6578547970653e> Tj
+48.239999999999995 546.7860000000001 Td
+/F1.0 10.5 Tf
+[<746f6765746865722e20546869732077617320696e74726f647563656420746f20737570706f7274207265706c69636174696f6e206f6620636f6d6d616e647320696e2061206d61737465722f736c61766520617272> 20.01953125 <616e67656d656e74>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-59.24 517.0550000000002 Td
-/F3.0 11 Tf
-<ca202020> Tj
+48.239999999999995 531.0060000000001 Td
+/F1.0 10.5 Tf
+<28656720666f722072656772657373696f6e2074657374696e67292e> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-81.24000000000001 517.0550000000002 Td
-/F3.0 11 Tf
-<3c78733a636f6d706c657854797065> Tj
+48.239999999999995 496.50600000000003 Td
+/F2.0 13 Tf
+<342e312e322e20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.200 0.200 0.200 scn
-0.200 0.200 0.200 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-163.74 517.0550000000002 Td
-/F3.0 11 Tf
-<20> Tj
+84.835 496.50600000000003 Td
+/F3.0 13 Tf
+<6d656d62657244746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.310 0.624 0.812 scn
-0.310 0.624 0.812 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-169.24 517.0550000000002 Td
-/F3.0 11 Tf
-<6e616d65> Tj
+143.33499999999998 496.50600000000003 Td
+/F2.0 13 Tf
+<20616e64207375627479706573> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159413,54 +159197,66 @@ ET
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
+0.127 Tw
+
 BT
-191.24 517.0550000000002 Td
-/F3.0 11 Tf
-<3d> Tj
+48.239999999999995 469.946 Td
+/F1.0 10.5 Tf
+<54686520> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+0.127 Tw
 
 BT
-196.74 517.0550000000002 Td
-/F3.0 11 Tf
-<22> Tj
+69.78726067708332 469.946 Td
+/F3.0 10.5 Tf
+<6d656d62657244746f> Tj
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+0.127 Tw
 
 BT
-202.24 517.0550000000002 Td
-/F3.0 11 Tf
-<616374696f6e44746f> Tj
+117.03726067708332 469.946 Td
+/F1.0 10.5 Tf
+[<20636f6d706c6578207479706520697320616e206162737472> 20.01953125 <616374207479706520726570726573656e74696e672074686520696e74656e74696f6e20746f2065697468657220696e766f6b> 20.01953125 <6520616e20616374696f6e>] TJ
 ET
 
+
+0.000 Tw
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.800 0.200 0.000 scn
-0.800 0.200 0.000 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-251.74 517.0550000000002 Td
-/F3.0 11 Tf
-<22> Tj
+48.239999999999995 454.16600000000005 Td
+/F1.0 10.5 Tf
+[<6f7220746f206564697420612070726f7065727479> 89.84375 <2e2054686520>] TJ
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-257.24 517.0550000000002 Td
-/F3.0 11 Tf
-<3e> Tj
+174.756140625 454.16600000000005 Td
+/F3.0 10.5 Tf
+<616374696f6e44746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159469,9 +159265,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-262.74 517.0550000000002 Td
-/F3.0 11 Tf
-<202020202020202020202020202020202020202020202020202020202020202020202020202020> Tj
+222.006140625 454.16600000000005 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159480,9 +159276,9 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-477.24 517.0550000000002 Td
-/F3.1 11 Tf
-<25> Tj
+246.55514062499998 454.16600000000005 Td
+/F3.0 10.5 Tf
+<70726f706572747944746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159491,42 +159287,122 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 502.31500000000017 Td
-/F3.0 11 Tf
-<ca20202020202020> Tj
+304.30514062500004 454.16600000000005 Td
+/F1.0 10.5 Tf
+<206172652074686520636f6e63726574652073756274797065733a> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
-
-BT
-103.24000000000001 502.31500000000017 Td
-/F3.0 11 Tf
-<3c78733a636f6d706c6578436f6e74656e743e> Tj
-ET
-
-0.000 0.000 0.000 SCN
+q
 0.000 0.000 0.000 scn
+0.000 0.000 0.000 SCN
+1 w
+0 J
+0 j
+[ ] 0 d
+/Stamp1 Do
 0.200 0.200 0.200 scn
 0.200 0.200 0.200 SCN
 
 BT
-59.24 487.57500000000016 Td
-/F3.0 11 Tf
-<ca2020202020202020202020> Tj
+49.24 14.388 Td
+/F1.0 9 Tf
+<3832> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+Q
+Q
+
+endstream
+endobj
+912 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/Contents 911 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F3.1 141 0 R
+/F1.0 8 0 R
+/F3.0 18 0 R
+/F2.0 16 0 R
+>>
+/XObject << /Stamp1 1056 0 R
+>>
+>>
+/Annots [913 0 R 914 0 R]
+>>
+endobj
+913 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../rgcms/rgcms.pdf#_rgcms_schema_interaction)
+>>
+/Subtype /Link
+/Rect [187.32930338541667 775.0799999999999 242.44359830729167 789.36]
+/Type /Annot
+>>
+endobj
+914 0 obj
+<< /Border [0 0 0]
+/A << /Type /Action
+/S /URI
+/URI (../rgcms/rgcms.pdf#_rgcms_schema_changes)
+>>
+/Subtype /Link
+/Rect [451.0002786458333 775.0799999999999 491.49877864583334 789.36]
+/Type /Annot
+>>
+endobj
+915 0 obj
+[912 0 R /XYZ 0 515.19 null]
+endobj
+916 0 obj
+<< /Length 37336
+>>
+stream
+q
+q
+/DeviceRGB cs
+0.961 0.961 0.961 scn
+52.240 805.890 m
+543.040 805.890 l
+545.249 805.890 547.040 804.099 547.040 801.890 c
+547.040 330.950 l
+547.040 328.741 545.249 326.950 543.040 326.950 c
+52.240 326.950 l
+50.031 326.950 48.240 328.741 48.240 330.950 c
+48.240 801.890 l
+48.240 804.099 50.031 805.890 52.240 805.890 c
+h
+f
+/DeviceRGB CS
+0.800 0.800 0.800 SCN
+0.75 w
+52.240 805.890 m
+543.040 805.890 l
+545.249 805.890 547.040 804.099 547.040 801.890 c
+547.040 330.950 l
+547.040 328.741 545.249 326.950 543.040 326.950 c
+52.240 326.950 l
+50.031 326.950 48.240 328.741 48.240 330.950 c
+48.240 801.890 l
+48.240 804.099 50.031 805.890 52.240 805.890 c
+h
+S
+Q
+/DeviceRGB cs
 0.184 0.435 0.624 scn
+/DeviceRGB CS
 0.184 0.435 0.624 SCN
 
 BT
-125.24000000000001 487.57500000000016 Td
+59.24 783.0649999999999 Td
 /F3.0 11 Tf
-<3c78733a657874656e73696f6e> Tj
+<3c78733a736368656d61> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159535,7 +159411,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-196.74 487.57500000000016 Td
+114.24000000000001 783.0649999999999 Td
 /F3.0 11 Tf
 <20> Tj
 ET
@@ -159546,9 +159422,9 @@ ET
 0.310 0.624 0.812 SCN
 
 BT
-202.24 487.57500000000016 Td
+119.74000000000001 783.0649999999999 Td
 /F3.0 11 Tf
-<62617365> Tj
+<7461726765744e616d657370616365> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159557,7 +159433,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-224.24 487.57500000000016 Td
+202.24 783.0649999999999 Td
 /F3.0 11 Tf
 <3d> Tj
 ET
@@ -159568,7 +159444,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-229.74 487.57500000000016 Td
+207.74 783.0649999999999 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -159579,9 +159455,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-235.24 487.57500000000016 Td
+213.24 783.0649999999999 Td
 /F3.0 11 Tf
-<6d656d62657244746f> Tj
+<687474703a2f2f697369732e6170616368652e6f72672f736368656d612f636d64> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159590,18 +159466,40 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-284.74 487.57500000000016 Td
+394.74 783.0649999999999 Td
 /F3.0 11 Tf
 <22> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+400.24 783.0649999999999 Td
+/F3.0 11 Tf
+<20> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.310 0.624 0.812 scn
+0.310 0.624 0.812 SCN
+
+BT
+405.74 783.0649999999999 Td
+/F3.0 11 Tf
+<2e2e2e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
 0.184 0.435 0.624 scn
 0.184 0.435 0.624 SCN
 
 BT
-290.24 487.57500000000016 Td
+422.24 783.0649999999999 Td
 /F3.0 11 Tf
 <3e> Tj
 ET
@@ -159612,20 +159510,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 472.83500000000015 Td
+59.24 768.3249999999999 Td
 /F3.0 11 Tf
-<ca202020202020202020202020202020> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
 
 BT
-147.24 472.83500000000015 Td
+81.24000000000001 768.3249999999999 Td
 /F3.0 11 Tf
-<3c78733a73657175656e63653e> Tj
+<2e2e2e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159634,9 +159532,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 458.09500000000014 Td
+59.24 753.585 Td
 /F3.0 11 Tf
-<ca20202020202020202020202020202020202020> Tj
+<ca202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159645,9 +159543,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-169.24 458.09500000000014 Td
+81.24000000000001 753.585 Td
 /F3.0 11 Tf
-<3c78733a656c656d656e74> Tj
+<3c78733a636f6d706c657854797065> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159656,7 +159554,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-229.74 458.09500000000014 Td
+163.74 753.585 Td
 /F3.0 11 Tf
 <20> Tj
 ET
@@ -159667,7 +159565,7 @@ ET
 0.310 0.624 0.812 SCN
 
 BT
-235.24 458.09500000000014 Td
+169.24 753.585 Td
 /F3.0 11 Tf
 <6e616d65> Tj
 ET
@@ -159678,7 +159576,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-257.24 458.09500000000014 Td
+191.24 753.585 Td
 /F3.0 11 Tf
 <3d> Tj
 ET
@@ -159689,7 +159587,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-262.74 458.09500000000014 Td
+196.74 753.585 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -159700,9 +159598,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-268.24 458.09500000000014 Td
+202.24 753.585 Td
 /F3.0 11 Tf
-<706172616d6574657273> Tj
+<6d656d62657244746f> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159711,7 +159609,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-323.24 458.09500000000014 Td
+251.74 753.585 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -159722,7 +159620,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-328.74 458.09500000000014 Td
+257.24 753.585 Td
 /F3.0 11 Tf
 <20> Tj
 ET
@@ -159733,9 +159631,9 @@ ET
 0.310 0.624 0.812 SCN
 
 BT
-334.24 458.09500000000014 Td
+262.74 753.585 Td
 /F3.0 11 Tf
-<74797065> Tj
+<6162737472616374> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159744,7 +159642,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-356.24 458.09500000000014 Td
+306.74 753.585 Td
 /F3.0 11 Tf
 <3d> Tj
 ET
@@ -159755,7 +159653,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-361.74 458.09500000000014 Td
+312.24 753.585 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -159766,9 +159664,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-367.24 458.09500000000014 Td
+317.74 753.585 Td
 /F3.0 11 Tf
-<706172616d7344746f> Tj
+<74727565> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159777,7 +159675,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-416.74 458.09500000000014 Td
+339.74 753.585 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -159788,9 +159686,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-422.24 458.09500000000014 Td
+345.24 753.585 Td
 /F3.0 11 Tf
-<2f3e> Tj
+<3e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159799,20 +159697,20 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 443.35500000000013 Td
+350.74 753.585 Td
 /F3.0 11 Tf
-<ca202020202020202020202020202020> Tj
+<2020202020202020202020202020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-147.24 443.35500000000013 Td
-/F3.0 11 Tf
-<3c2f78733a73657175656e63653e> Tj
+477.24 753.585 Td
+/F3.1 11 Tf
+<21> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159821,9 +159719,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 428.6150000000002 Td
+59.24 738.845 Td
 /F3.0 11 Tf
-<ca2020202020202020202020> Tj
+<ca20202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159832,9 +159730,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-125.24000000000001 428.6150000000002 Td
+103.24000000000001 738.845 Td
 /F3.0 11 Tf
-<3c2f78733a657874656e73696f6e3e> Tj
+<3c2f78733a656c656d656e743e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159843,7 +159741,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 413.87500000000017 Td
+59.24 724.105 Td
 /F3.0 11 Tf
 <ca20202020202020> Tj
 ET
@@ -159854,9 +159752,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-103.24000000000001 413.87500000000017 Td
+103.24000000000001 724.105 Td
 /F3.0 11 Tf
-<3c2f78733a636f6d706c6578436f6e74656e743e> Tj
+<3c78733a73657175656e63653e> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159865,9 +159763,9 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 399.13500000000016 Td
+59.24 709.365 Td
 /F3.0 11 Tf
-<ca202020> Tj
+<ca2020202020202020202020> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159876,9 +159774,9 @@ ET
 0.184 0.435 0.624 SCN
 
 BT
-81.24000000000001 399.13500000000016 Td
+125.24000000000001 709.365 Td
 /F3.0 11 Tf
-<3c2f78733a636f6d706c6578547970653e> Tj
+<3c78733a656c656d656e74> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159887,20 +159785,64 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-59.24 369.65500000000014 Td
+185.74 709.365 Td
 /F3.0 11 Tf
-<ca202020> Tj
+<20> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.000 0.000 0.000 scn
-0.184 0.435 0.624 scn
-0.184 0.435 0.624 SCN
+0.310 0.624 0.812 scn
+0.310 0.624 0.812 SCN
 
 BT
-81.24000000000001 369.65500000000014 Td
+191.24 709.365 Td
 /F3.0 11 Tf
-<3c78733a636f6d706c657854797065> Tj
+<6e616d65> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.200 0.200 0.200 scn
+0.200 0.200 0.200 SCN
+
+BT
+213.24 709.365 Td
+/F3.0 11 Tf
+<3d> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
+
+BT
+218.74 709.365 Td
+/F3.0 11 Tf
+<22> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
+
+BT
+224.24 709.365 Td
+/F3.0 11 Tf
+<6d656d6265724964656e746966696572> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.000 0.000 0.000 scn
+0.800 0.200 0.000 scn
+0.800 0.200 0.000 SCN
+
+BT
+312.24 709.365 Td
+/F3.0 11 Tf
+<22> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159909,7 +159851,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-163.74 369.65500000000014 Td
+317.74 709.365 Td
 /F3.0 11 Tf
 <20> Tj
 ET
@@ -159920,9 +159862,9 @@ ET
 0.310 0.624 0.812 SCN
 
 BT
-169.24 369.65500000000014 Td
+323.24 709.365 Td
 /F3.0 11 Tf
-<6e616d65> Tj
+<74797065> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -159931,7 +159873,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-191.24 369.65500000000014 Td
+345.24 709.365 Td
 /F3.0 11 Tf
 <3d> Tj
 ET
@@ -159942,7 +159884,7 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-196.74 369.65500000000014 Td
+350.74 709.365 Td
 /F3.0 11 Tf
 <22> Tj
 ET
@@ -159953,9 +159895,9 @@ ET
 0.800 0.200 0.000 SCN
 
 BT
-202.24 369.65500000000014 Td
+356.24 709.365 Td
 /F3.0 11 Tf
-

<TRUNCATED>

[11/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgcms/rgcms.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgcms/rgcms.html b/content/versions/SNAPSHOT/guides/rgcms/rgcms.html
index 0ccd5c0..4a465bd 100644
--- a/content/versions/SNAPSHOT/guides/rgcms/rgcms.html
+++ b/content/versions/SNAPSHOT/guides/rgcms/rgcms.html
@@ -2283,7 +2283,7 @@ table.CodeRay td.code>pre{padding:0}
            </div> 
            <div class="olist arabic"> 
             <ol class="arabic"> 
-             <li> <p><a href="../rgant/rgant.html#_rgant_DomainService_objectType"><code>@DomainService#objectType()</code></a></p> </li> 
+             <li> <p><a href="../rgant/rgant.html#_rgant-DomainService_objectType"><code>@DomainService#objectType()</code></a></p> </li> 
              <li> <p><a href="../rgcms/rgcms.html#_rgcms_methods_reserved_getId"><code>getId()</code></a></p> </li> 
              <li> <p>The fully qualified class name.</p> </li> 
             </ol> 
@@ -4166,7 +4166,7 @@ table.CodeRay td.code>pre{padding:0}
              <tbody>
               <tr> 
                <td><i class="conum" data-value="1"></i><b>1</b></td> 
-               <td>The <code>Default</code> nested static class is the default for the <a href="../rgant/rgant.html#_rgant_Action_domainEvent"><code>@Action#domainEvent()</code></a> annotation attribute. Whether this raises an event or not depends upon the <code>isis.reflector.facet.actionAnnotation.domainEvent.postForDefault</code> configuration property.</td> 
+               <td>The <code>Default</code> nested static class is the default for the <a href="../rgant/rgant.html#_rgant-Action_domainEvent"><code>@Action#domainEvent()</code></a> annotation attribute. Whether this raises an event or not depends upon the <code>isis.reflector.facet.actionAnnotation.domainEvent.postForDefault</code> configuration property.</td> 
               </tr> 
               <tr> 
                <td><i class="conum" data-value="2"></i><b>2</b></td> 
@@ -4251,7 +4251,7 @@ table.CodeRay td.code>pre{padding:0}
              <tbody>
               <tr> 
                <td><i class="conum" data-value="1"></i><b>1</b></td> 
-               <td>The <code>Default</code> nested static class is the default for the <a href="../rgant/rgant.html#_rgant_Collection_domainEvent"><code>@Collection#domainEvent()</code></a> annotation attribute. Whether this raises an event or not depends upon the <code>isis.reflector.facet.collectionAnnotation.domainEvent.postForDefault</code> configuration property.</td> 
+               <td>The <code>Default</code> nested static class is the default for the <a href="../rgant/rgant.html#_rgant-Collection_domainEvent"><code>@Collection#domainEvent()</code></a> annotation attribute. Whether this raises an event or not depends upon the <code>isis.reflector.facet.collectionAnnotation.domainEvent.postForDefault</code> configuration property.</td> 
               </tr> 
               <tr> 
                <td><i class="conum" data-value="2"></i><b>2</b></td> 
@@ -4357,7 +4357,7 @@ table.CodeRay td.code>pre{padding:0}
              <tbody>
               <tr> 
                <td><i class="conum" data-value="1"></i><b>1</b></td> 
-               <td>The <code>Default</code> nested static class is the default for the <a href="../rgant/rgant.html#_rgant_Property_domainEvent"><code>@Property#domainEvent()</code></a> annotation attribute. Whether this raises an event or not depends upon the <code>isis.reflector.facet.propertyAnnotation.domainEvent.postForDefault</code> configuration property.</td> 
+               <td>The <code>Default</code> nested static class is the default for the <a href="../rgant/rgant.html#_rgant-Property_domainEvent"><code>@Property#domainEvent()</code></a> annotation attribute. Whether this raises an event or not depends upon the <code>isis.reflector.facet.propertyAnnotation.domainEvent.postForDefault</code> configuration property.</td> 
               </tr> 
               <tr> 
                <td><i class="conum" data-value="2"></i><b>2</b></td> 
@@ -5195,7 +5195,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
           <div class="imageblock"> 
            <div class="content"> 
-            <a class="image" href="images/value-types/markup/.png"><img src="images/value-types/markup.png" alt="markup" width="px"></a> 
+            <a class="image" href="images/value-types/markup.png"><img src="images/value-types/markup.png" alt="markup" width="px"></a> 
            </div> 
           </div> 
           <div class="paragraph"> 
@@ -6375,7 +6375,7 @@ table.CodeRay td.code>pre{padding:0}
            <p>All of these classes also allow custom CSS to be specified; these are added to the CSS classes for the corresponding <code>&lt;div</code>&gt; in the rendered page. The <a href="../ugvw/ugvw.html#_ugvw_customisation_tweaking-css-classes"><code>application.css</code></a> file can then be used for application-specific CSS, allowing arbitrary fine-tuning of the layout of the page.</p> 
           </div> 
           <div class="paragraph"> 
-           <p>The XSD for these classes is available at <a href="http://isis.apache.org/applib/layout/menus/menubars.xsd" class="bare">http://isis.apache.org/applib/layout/menus/menubars.xsd</a>.</p> 
+           <p>The XSD for these classes is available at <a href="http://isis.apache.org/applib/layout/menubars/bootstrap3/menubars.xsd" class="bare">http://isis.apache.org/applib/layout/menubars/bootstrap3/menubars.xsd</a>.</p> 
           </div> 
          </div> 
          <div class="sect3"> 
@@ -6602,7 +6602,7 @@ table.CodeRay td.code>pre{padding:0}
           </ul>
          </div> 
          <div class="paragraph"> 
-          <p>The command ("cmd") schema defines the serialized form of the <em>intention</em> to invoke an action or to edit a property.</p> 
+          <p>The command ("cmd") schema defines the serialized form of the <em>intention</em> to invoke an action or to edit a property. It can be supplemented with optional timings capturing the actual invocation of a command (introduced to support the replication of commands in a master/slave arrangement).</p> 
          </div> 
          <div class="admonitionblock note"> 
           <table> 
@@ -6645,9 +6645,22 @@ table.CodeRay td.code>pre{padding:0}
                 <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">user</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:string</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>                  <i class="conum" data-value="6"></i><b>(6)</b>
                 <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">targets</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">com:oidsDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>             <i class="conum" data-value="7"></i><b>(7)</b>
                 <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">member</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">memberDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>                <i class="conum" data-value="8"></i><b>(8)</b>
+                <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">timings</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">memberDto</span><span class="delimiter">"</span></span> <span class="attribute-name">minOccurs</span>=<span class="string"><span class="delimiter">"</span><span class="content">0</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span> <i class="conum" data-value="9"></i><b>(9)</b>
             <span class="tag">&lt;/xs:sequence&gt;</span>
         <span class="tag">&lt;/xs:complexType&gt;</span>
     <span class="tag">&lt;/xs:element&gt;</span>
+
+    <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">commandsDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                                         <i class="conum" data-value="10"></i><b>(10)</b>
+        <span class="tag">&lt;xs:annotation&gt;</span>
+            <span class="tag">&lt;xs:documentation&gt;</span>Collection of commandDto's<span class="tag">&lt;/xs:documentation&gt;</span>
+        <span class="tag">&lt;/xs:annotation&gt;</span>
+        <span class="tag">&lt;xs:complexType&gt;</span>
+            <span class="tag">&lt;xs:sequence</span> <span class="attribute-name">minOccurs</span>=<span class="string"><span class="delimiter">"</span><span class="content">1</span><span class="delimiter">"</span></span> <span class="attribute-name">maxOccurs</span>=<span class="string"><span class="delimiter">"</span><span class="content">unbounded</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>
+                <span class="tag">&lt;xs:element</span> <span class="attribute-name">ref</span>=<span class="string"><span class="delimiter">"</span><span class="content">commandDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;/xs:sequence&gt;</span>
+        <span class="tag">&lt;/xs:complexType&gt;</span>
+    <span class="tag">&lt;/xs:element&gt;</span>
+
     ...
 <span class="tag">&lt;/xs:schema&gt;</span></code></pre> 
            </div> 
@@ -6687,11 +6700,19 @@ table.CodeRay td.code>pre{padding:0}
               <td><i class="conum" data-value="8"></i><b>8</b></td> 
               <td>the <code>memberDto</code>, defined below, the captures the action/property and arguments/new value.</td> 
              </tr> 
+             <tr> 
+              <td><i class="conum" data-value="9"></i><b>9</b></td> 
+              <td>optional timings for the invocation of a command.</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="10"></i><b>10</b></td> 
+              <td>groups multiple commands together.</td> 
+             </tr> 
             </tbody>
            </table> 
           </div> 
           <div class="paragraph"> 
-           <p>The <code>CommandDto</code> DTO corresponding to the <code>commandDto</code> root element can be marshalled to/from XML using the <code>CommandDtoUtils</code> class.</p> 
+           <p>The <code>CommandDto</code> DTO corresponding to the <code>commandDto</code> root element can be marshalled to/from XML using the <code>CommandDtoUtils</code> class. The <code>CommandsDto</code> DTO allows multiple commands to be marshalled together. This was introduced to support replication of commands in a master/slave arrangement (eg for regression testing).</p> 
           </div> 
          </div> 
          <div class="sect3"> 
@@ -7134,7 +7155,7 @@ table.CodeRay td.code>pre{padding:0}
           <p>The changes ("chg") schema defines the serialized form identifying which objects have been created, updated or deleted as the result of invoking an action or editing a property. It also captures a number of other metrics counts (number of objects loaded, number of object properties modified), useful for profiling.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>An instance of the DTO (corresponding to this schema) is used within the <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a> SPI, identifying changed objects that are to be published (as per <a href="../rgant/rgant.html#_rgant_DomainObject_publishing"><code>@DomainObject#publishing()</code></a> or equivalent).</p> 
+          <p>An instance of the DTO (corresponding to this schema) is used within the <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a> SPI, identifying changed objects that are to be published (as per <a href="../rgant/rgant.html#_rgant-DomainObject_publishing"><code>@DomainObject#publishing()</code></a> or equivalent).</p> 
          </div> 
          <div class="sect3"> 
           <h4 id="__code_changesdto_code">4.3.1. <code>changesDto</code></h4> 
@@ -7401,7 +7422,28 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__rgcms_schema-common_valueDto">4.5.2. <code>valueDto</code> etc</h4> 
+          <h4 id="__rgcms_schema-common_collectionDto">4.5.2. <code>collectionDto</code> etc</h4> 
+          <div class="paragraph"> 
+           <p>The <code>collectionDto</code> type defines a collection of values, also capturing the type of those values (for example <code>string</code>s, or <code>OidDto</code>s). It is used primarily to model invocations of actions with collection parameters.</p> 
+          </div> 
+          <div class="listingblock"> 
+           <div class="content"> 
+            <pre class="CodeRay highlight"><code data-lang="xml"><span class="tag">&lt;xs:schema</span> <span class="attribute-name">targetNamespace</span>=<span class="string"><span class="delimiter">"</span><span class="content">http://isis.apache.org/schema/common</span><span class="delimiter">"</span></span> <span class="attribute-name">...</span> <span class="tag">&gt;</span>
+    ...
+    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">collectionDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>
+        <span class="tag">&lt;xs:sequence&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">value</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">valueDto</span><span class="delimiter">"</span></span> <span class="attribute-name">minOccurs</span>=<span class="string"><span class="delimiter">"</span><span class="content">1</span><span class="delimiter">"</span></span> <span class="attribute-name">maxOccurs</span>=<span class="string"><span class="delimiter">"</span><span class="content">unbounded</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+        <span class="tag">&lt;/xs:sequence&gt;</span>
+        <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">type</span><span class="delimiter">"</span></span> <span class="attribute-name">use</span>=<span class="string"><span class="delimiter">"</span><span class="content">required</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">valueType</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+        <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">null</span><span class="delimiter">"</span></span> <span class="attribute-name">use</span>=<span class="string"><span class="delimiter">"</span><span class="content">optional</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:boolean</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+    <span class="tag">&lt;/xs:complexType&gt;</span>
+    ...
+<span class="tag">&lt;/xs:schema&gt;</span></code></pre> 
+           </div> 
+          </div> 
+         </div> 
+         <div class="sect3"> 
+          <h4 id="__rgcms_schema-common_valueDto">4.5.3. <code>valueDto</code> etc</h4> 
           <div class="paragraph"> 
            <p>The common schema also defines two types representing values: the <code>valueDto</code> complex type, the <code>valueType</code> simple type and the <code>valueWithTypeDto</code> complex type:</p> 
           </div> 
@@ -7418,6 +7460,9 @@ table.CodeRay td.code>pre{padding:0}
             <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">timestamp</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:dateTime</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
             <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">enum</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">enumDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
             <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">reference</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">oidDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">collection</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">collectionDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">blob</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">blobDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">clob</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">clobDto</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
         <span class="tag">&lt;/xs:choice&gt;</span>
     <span class="tag">&lt;/xs:complexType&gt;</span>
 
@@ -7429,6 +7474,9 @@ table.CodeRay td.code>pre{padding:0}
             ...
             <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">enum</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
             <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">reference</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">collection</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">blob</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">clob</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
             <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">void</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>                          <i class="conum" data-value="3"></i><b>(3)</b>
         <span class="tag">&lt;/xs:restriction&gt;</span>
     <span class="tag">&lt;/xs:simpleType&gt;</span>
@@ -7470,9 +7518,22 @@ table.CodeRay td.code>pre{padding:0}
           <div class="paragraph"> 
            <p>These type definitions are just building blocks, also used within the <a href="../rgcms/rgcms.html#_rgcms_schema-aim">action iInvocation memento</a> schema. The first, <code>valueDto</code> is The second, <code>valueType</code>, enumerates the different types of vales, eg of a formal parameter to an action.</p> 
           </div> 
+          <div class="admonitionblock important"> 
+           <table> 
+            <tbody>
+             <tr> 
+              <td class="icon"> <i class="fa icon-important" title="Important"></i> </td> 
+              <td class="content"> 
+               <div class="paragraph"> 
+                <p>When used as a parameter, blob and clob arguments are <em>not</em> serialized. Instead these are persisted only as references. This is primarily to save storage space if the resultant XML is persisted as a memento (eg <code>CommandDto</code>).</p> 
+               </div> </td> 
+             </tr> 
+            </tbody>
+           </table> 
+          </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__rgcms_schema-common_ancillary">4.5.3. Ancillary types</h4> 
+          <h4 id="__rgcms_schema-common_ancillary">4.5.4. Ancillary types</h4> 
           <div class="paragraph"> 
            <p>The common schema also defines a number of ancillary types, used either by the common schema itself (see above) or by the <a href="../rgcms/rgcms.html#_rgcms_schema_cmd">"cmd"</a> and <a href="../rgcms/rgcms.html#_rgcms_schema_ixn">"ixn"</a> schemas.</p> 
           </div> 
@@ -7487,7 +7548,27 @@ table.CodeRay td.code>pre{padding:0}
         <span class="tag">&lt;/xs:sequence&gt;</span>
     <span class="tag">&lt;/xs:complexType&gt;</span>
 
-    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">periodDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                               <i class="conum" data-value="2"></i><b>(2)</b>
+    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">blobDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                                 <i class="conum" data-value="2"></i><b>(2)</b>
+        <span class="tag">&lt;xs:sequence&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">name</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:string</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">mimeType</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:string</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">bytes</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:hexBinary</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+        <span class="tag">&lt;/xs:sequence&gt;</span>
+        <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">type</span><span class="delimiter">"</span></span> <span class="attribute-name">use</span>=<span class="string"><span class="delimiter">"</span><span class="content">required</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">valueType</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+        <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">null</span><span class="delimiter">"</span></span> <span class="attribute-name">use</span>=<span class="string"><span class="delimiter">"</span><span class="content">optional</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:boolean</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+    <span class="tag">&lt;/xs:complexType&gt;</span>
+
+    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">clobDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                                 <i class="conum" data-value="3"></i><b>(3)</b>
+        <span class="tag">&lt;xs:sequence&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">name</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:string</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">mimeType</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:string</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">chars</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:string</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+        <span class="tag">&lt;/xs:sequence&gt;</span>
+        <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">type</span><span class="delimiter">"</span></span> <span class="attribute-name">use</span>=<span class="string"><span class="delimiter">"</span><span class="content">required</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">valueType</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+        <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">null</span><span class="delimiter">"</span></span> <span class="attribute-name">use</span>=<span class="string"><span class="delimiter">"</span><span class="content">optional</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:boolean</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+    <span class="tag">&lt;/xs:complexType&gt;</span>
+
+    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">periodDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                               <i class="conum" data-value="4"></i><b>(4)</b>
         <span class="tag">&lt;xs:sequence&gt;</span>
             <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">startedAt</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:dateTime</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
             <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">completedAt</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:dateTime</span><span class="delimiter">"</span></span>
@@ -7495,18 +7576,25 @@ table.CodeRay td.code>pre{padding:0}
         <span class="tag">&lt;/xs:sequence&gt;</span>
     <span class="tag">&lt;/xs:complexType&gt;</span>
 
-    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">differenceDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                           <i class="conum" data-value="3"></i><b>(3)</b>
+    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">differenceDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                           <i class="conum" data-value="5"></i><b>(5)</b>
         <span class="tag">&lt;xs:sequence</span><span class="tag">/&gt;</span>
         <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">before</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:int</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
         <span class="tag">&lt;xs:attribute</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">after</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:int</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
     <span class="tag">&lt;/xs:complexType&gt;</span>
 
-    <span class="tag">&lt;xs:simpleType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">interactionType</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                          <i class="conum" data-value="4"></i><b>(4)</b>
+    <span class="tag">&lt;xs:simpleType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">interactionType</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                          <i class="conum" data-value="6"></i><b>(6)</b>
         <span class="tag">&lt;xs:restriction</span> <span class="attribute-name">base</span>=<span class="string"><span class="delimiter">"</span><span class="content">xs:string</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>
             <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">action_invocation</span><span class="delimiter">"</span></span> <span class="tag">/&gt;</span>
             <span class="tag">&lt;xs:enumeration</span> <span class="attribute-name">value</span>=<span class="string"><span class="delimiter">"</span><span class="content">property_edit</span><span class="delimiter">"</span></span> <span class="tag">/&gt;</span>
         <span class="tag">&lt;/xs:restriction&gt;</span>
     <span class="tag">&lt;/xs:simpleType&gt;</span>
+
+    <span class="tag">&lt;xs:complexType</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">oidsDto</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>                                 <i class="conum" data-value="7"></i><b>(7)</b>
+        <span class="tag">&lt;xs:sequence&gt;</span>
+            <span class="tag">&lt;xs:element</span> <span class="attribute-name">name</span>=<span class="string"><span class="delimiter">"</span><span class="content">oid</span><span class="delimiter">"</span></span> <span class="attribute-name">type</span>=<span class="string"><span class="delimiter">"</span><span class="content">oidDto</span><span class="delimiter">"</span></span> <span class="attribute-name">minOccurs</span>=<span class="string"><span class="delimiter">"</span><span class="content">1</span><span class="delimiter">"</span></span> <span class="attribute-name">maxOccurs</span>=<span class="string"><span class="delimiter">"</span><span class="content">unbounded</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
+        <span class="tag">&lt;/xs:sequence&gt;</span>
+    <span class="tag">&lt;/xs:complexType&gt;</span>
+
 <span class="tag">&lt;/xs:schema&gt;</span></code></pre> 
            </div> 
           </div> 
@@ -7519,16 +7607,28 @@ table.CodeRay td.code>pre{padding:0}
              </tr> 
              <tr> 
               <td><i class="conum" data-value="2"></i><b>2</b></td> 
-              <td>Captures a period of time, eg for capturing metrics/timings.</td> 
+              <td>Models a <code>Blob</code></td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="3"></i><b>3</b></td> 
-              <td>Captures a pair of numbers representing a difference. Used for example to capture metrics (number objects modified before and after).</td> 
+              <td>Models a <code>Clob</code></td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="4"></i><b>4</b></td> 
+              <td>Captures a period of time, eg for capturing metrics/timings.</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="5"></i><b>5</b></td> 
+              <td>Captures a pair of numbers representing a difference. Used for example to capture metrics (number objects modified before and after).</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="6"></i><b>6</b></td> 
               <td>Whether this command/interaction with a member is invoking an action, or editing a property. Used by both the <a href="../rgcms/rgcms.html#_rgcms_schema_cmd">"cmd"</a> and <a href="../rgcms/rgcms.html#_rgcms_schema_ixn">"ixn"</a> schemas.</td> 
              </tr> 
+             <tr> 
+              <td><i class="conum" data-value="7"></i><b>7</b></td> 
+              <td>Contains a list of OIDs, eg for use in "bulk" actions that apply to multiple targets.</td> 
+             </tr> 
             </tbody>
            </table> 
           </div> 


[02/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/migration-notes/migration-notes.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/migration-notes/migration-notes.html b/content/versions/SNAPSHOT/migration-notes/migration-notes.html
index 982c193..c2ec72f 100644
--- a/content/versions/SNAPSHOT/migration-notes/migration-notes.html
+++ b/content/versions/SNAPSHOT/migration-notes/migration-notes.html
@@ -527,7 +527,7 @@ table.CodeRay td.code>pre{padding:0}
           </ul> 
          </div> 
          <div class="paragraph"> 
-          <p>As described <a href="../guides/ugbtb/ugbtb.html#_ugbtb_hints-and-tips_replacing-default-service-implementations">here</a>, it is possible to override framework services so that the framework uses the replacement implementation. Previously this required explicitly setting either <a href="../guides/rgant/rgant.html#_rgant_DomainService_menuOrder"><code>@DomainService#menuOrder()</code></a> or <a href="../guides/rgant/rgant.html#_rgant_DomainServiceLayout_menuOrder"><code>@DomainServiceLayout#menuOrder()</code></a>.</p> 
+          <p>As described <a href="../guides/ugbtb/ugbtb.html#_ugbtb_hints-and-tips_replacing-default-service-implementations">here</a>, it is possible to override framework services so that the framework uses the replacement implementation. Previously this required explicitly setting either <a href="../guides/rgant/rgant.html#_rgant-DomainService_menuOrder"><code>@DomainService#menuOrder()</code></a> or <a href="../guides/rgant/rgant.html#_rgant-DomainServiceLayout_menuOrder"><code>@DomainServiceLayout#menuOrder()</code></a>.</p> 
          </div> 
          <div class="paragraph"> 
           <p>In 1.15.0, the default value for <code>menuOrder</code> has been set to a value lower than that of the framework-provided implementations, and so will a custom implementation will always take precedence over the framework implementations without having to remember to also set <code>menuOrder</code>.</p> 
@@ -819,10 +819,10 @@ log4j.additivity.org.apache.wicket.page.XmlPartialPageUpdate=false</code></pre>
           <p>There can be more than one implementation of this new SPI, and a framework-provided implementation (<code>PublisherServiceLogging</code>) will log to a file. The (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s publishmq module also implements the new SPI.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>The new service also supports the notion of published property edits; the new <a href="../guides/rgant/rgant.html#_rgant_Property_publishing"><code>@Property#publishing()</code></a> annotation attribute can be used to specify. The ` isis.services.publish.properties` configuration property can be used to specify a fallback default for properties where the attribute is not set explicitly.</p> 
+          <p>The new service also supports the notion of published property edits; the new <a href="../guides/rgant/rgant.html#_rgant-Property_publishing"><code>@Property#publishing()</code></a> annotation attribute can be used to specify. The ` isis.services.publish.properties` configuration property can be used to specify a fallback default for properties where the attribute is not set explicitly.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>Conversely, neither the <a href="../guides/rgant/rgant.html#_rgant_Action_publishingPayloadFactory"><code>@Action#publishingPayloadFactory()</code></a> nor the <a href="../guides/rgant/rgant.html#_rgant_DomainObject_publishingPayloadFactory"><code>@DomainObject#publishingPayloadFactory()</code></a> are supported by <code>PublisherService</code>; instead the consumers of the events are expected to callback for any additional information, eg using <a href="../guides/ugvro/ugvro.html">Resful Objects</a> viewer.</p> 
+          <p>Conversely, neither the <a href="../guides/rgant/rgant.html#_rgant-Action_publishingPayloadFactory"><code>@Action#publishingPayloadFactory()</code></a> nor the <a href="../guides/rgant/rgant.html#_rgant-DomainObject_publishingPayloadFactory"><code>@DomainObject#publishingPayloadFactory()</code></a> are supported by <code>PublisherService</code>; instead the consumers of the events are expected to callback for any additional information, eg using <a href="../guides/ugvro/ugvro.html">Resful Objects</a> viewer.</p> 
          </div> 
         </div> 
         <div class="sect2"> 
@@ -977,7 +977,7 @@ log4j.additivity.org.apache.wicket.page.XmlPartialPageUpdate=false</code></pre>
           <ul> 
            <li> <p><code>@Nullable</code> annotation<br></p> 
             <div class="paragraph"> 
-             <p>The <a href="../guides/rgant/rgant.html#_rgant_Nullable"><code>@Nullable</code></a> annotation can now be used to specify the optionality of properties and parameters.</p> 
+             <p>The <a href="../guides/rgant/rgant.html#_rgant-Nullable"><code>@Nullable</code></a> annotation can now be used to specify the optionality of properties and parameters.</p> 
             </div> </li> 
            <li> <p><code>ActionDomainEvent</code> for mixins<br></p> 
             <div class="paragraph"> 
@@ -985,7 +985,7 @@ log4j.additivity.org.apache.wicket.page.XmlPartialPageUpdate=false</code></pre>
             </div> </li> 
            <li> <p><code>Blob</code> and <code>Clob</code> file types<br></p> 
             <div class="paragraph"> 
-             <p>The <a href="../guides/rgant/rgant.html#_rgant_Property_fileAccept"><code>@Property#fileAccept()</code></a> and <a href="../guides/rgant/rgant.html#_rgant_Parameter_fileAccept"><code>@Parameter#fileAccept()</code></a> annotation attributes can be used to hint at the file type to upload for a blob or clob.</p> 
+             <p>The <a href="../guides/rgant/rgant.html#_rgant-Property_fileAccept"><code>@Property#fileAccept()</code></a> and <a href="../guides/rgant/rgant.html#_rgant-Parameter-fileAccept"><code>@Parameter#fileAccept()</code></a> annotation attributes can be used to hint at the file type to upload for a blob or clob.</p> 
             </div> </li> 
            <li> <p>Live reloading<br></p> 
             <div class="paragraph"> 
@@ -1069,7 +1069,7 @@ log4j.additivity.org.apache.wicket.page.XmlPartialPageUpdate=false</code></pre>
           <p>The <code>DomainObjectContainer</code> service will continue to be supported until Apache Isis v2.0.0, but in the meantime, consider changing existing application code to use these new domain services.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>Please note that when migrating from _rgsvc_core-domain-api_DomainObjectContainer_object-persistence-api.adoc#_rgsvc_core-domain-api_DomainObjectContainer_object-persistence-api[<code>DomainObjectContainer#persist()</code>] to <a href="../../guides/rgsvc/rgsvc.html#_rgsvc_persistence-layer-api_RepositoryService"><code>RepositoryService#persist()</code></a>, no exception will be thrown if the Domain Object is already persisted, so the behavior of <a href="../guides/rgsvc/rgsvc.html#_rgsvc_persistence-layer-api_RepositoryService"><code>RepositoryService#persist()</code></a> will be the same as that of <a href="rgsvc.html#_rgsvc_core-domain-api_DomainObjectContainer_object-persistence-api"><code>DomainObjectContainer#persistIfNotAlready()</code></a>.</p> 
+          <p>Please note that when migrating from _rgsvc_core-domain-api_DomainObjectContainer_object-persistence-api.adoc#_rgsvc_core-domain-api_DomainObjectContainer_object-persistence-api[<code>DomainObjectContainer#persist()</code>] to <a href="../../guides/rgsvc/rgsvc.html#_rgsvc_persistence-layer-api_RepositoryService"><code>RepositoryService#persist()</code></a>, no exception will be thrown if the Domain Object is already persisted, so the behavior of <a href="../guides/rgsvc/rgsvc.html#_rgsvc_persistence-layer-api_RepositoryService"><code>RepositoryService#persist()</code></a> will be the same as that of <a href="../guides/rgsvc/rgsvc.html#_rgsvc_core-domain-api_DomainObjectContainer_object-persistence-api"><code>DomainObjectContainer#persistIfNotAlready()</code></a>.</p> 
          </div> 
         </div> 
         <div class="sect2"> 
@@ -1180,7 +1180,7 @@ log4j.additivity.org.apache.wicket.page.XmlPartialPageUpdate=false</code></pre>
           <p>The new <a href="../guides/rgsvc/rgsvc.html#_rgsvc_presentation-layer-spi_RoutingService"><code>RoutingService</code></a> SPI service provides a plugin point to the <a href="../guides/ugvw/ugvw.html">Wicket viewer</a> so that a different object than that returned from an action invocation can be rendered.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>The framework provides a default implementation of this service that will - instead of a void or a <code>null</code> result - render the home page (as per the <a href="../guides/rgant/rgant.html#_rgant_HomePage"><code>@HomePage</code></a> annotation) if there is one. This is therefore a subtle change in the UI. If you wish to retain the original behaviour (to return the "no results" page instead), then you should implement your own no-op implementation of this service:</p> 
+          <p>The framework provides a default implementation of this service that will - instead of a void or a <code>null</code> result - render the home page (as per the <a href="../guides/rgant/rgant.html#_rgant-HomePage"><code>@HomePage</code></a> annotation) if there is one. This is therefore a subtle change in the UI. If you wish to retain the original behaviour (to return the "no results" page instead), then you should implement your own no-op implementation of this service:</p> 
          </div> 
          <div class="listingblock"> 
           <div class="content"> 

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/release-notes/release-notes.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/release-notes/release-notes.html b/content/versions/SNAPSHOT/release-notes/release-notes.html
index 9a88be1..79f74e8 100644
--- a/content/versions/SNAPSHOT/release-notes/release-notes.html
+++ b/content/versions/SNAPSHOT/release-notes/release-notes.html
@@ -307,6 +307,25 @@ table.CodeRay td.code>pre{padding:0}
             </div></td> 
           </tr> 
           <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_release-notes_1.16.1">1.16.1</a></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock">xx-02-2018</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>Parented collections with checkboxes, replay module</p> 
+             </div>
+            </div></td> 
+           <td class="tableblock halign-right valign-top"><p class="tableblock">.</p></td> 
+           <td class="tableblock halign-right valign-top"><p class="tableblock">.</p></td> 
+           <td class="tableblock halign-right valign-top"><p class="tableblock">.</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>…​</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
            <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_release-notes_1.16.0">1.16.0</a></p></td> 
            <td class="tableblock halign-left valign-top"><p class="tableblock">08-01-2018</p></td> 
            <td class="tableblock halign-left valign-top">
@@ -920,6 +939,39 @@ table.CodeRay td.code>pre{padding:0}
        </div> 
       </div> 
       <div class="sect1"> 
+       <h2 id="_release-notes_1.16.1">1.16.1</h2>
+       <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
+        <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/release-notes/_release-notes_1.16.1.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
+        <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
+        <ul class="dropdown-menu">
+         <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/release-notes/_release-notes_1.16.1.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
+         <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/release-notes/_release-notes_1.16.1.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
+         <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/release-notes/_release-notes_1.16.1.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
+         <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/release-notes/_release-notes_1.16.1.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
+        </ul>
+       </div> 
+       <div class="sectionbody"> 
+        <div class="paragraph"> 
+         <p>This release is primarily a bug fix release, but does introduce a couple of notable new features and improvements:</p> 
+        </div> 
+        <div class="ulist"> 
+         <ul> 
+          <li> <p><a href="https://issues.apache.org/jira/browse/ISIS-1585">ISIS-1585</a> supports checkboxes on parented (rather than standalone) collections. The selected items are used as the default values for any associated actions with collection parameters.</p> 
+           <div class="paragraph"> 
+            <p>As part of this change, the new <code>@Action(associateWith="…​")</code> attribute can be used instead of <code>@MemberOrder(…​)</code> as a way to associate actions with either collections or properties.</p> 
+           </div> </li> 
+          <li> <p><a href="https://issues.apache.org/jira/browse/ISIS-1569">ISIS-1569</a> provides infrastructure to enable commands to be replayed from master to slave (for regression testing purposes).</p> 
+           <div class="paragraph"> 
+            <p>The majority of the implementation is provided in the (non-ASF) (non-ASF) <a href="http://platform.incode.org">Incode Platform</a>'s new <a href="http://platform.incode.org/modules/spi/command/spi-command-replay.html">command replay</a> library.</p> 
+           </div> </li> 
+         </ul> 
+        </div> 
+        <div class="paragraph"> 
+         <p>Applications written against v1.16.0 should run against v1.16.1 with few if any changes.</p> 
+        </div> 
+       </div> 
+      </div> 
+      <div class="sect1"> 
        <h2 id="_release-notes_1.16.0">1.16.0</h2>
        <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
         <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/release-notes/_release-notes_1.16.0.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/chg/chg-1.1.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/chg/chg-1.1.xsd b/content/versions/SNAPSHOT/schema/chg/chg-1.1.xsd
new file mode 100644
index 0000000..cb55449
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/chg/chg-1.1.xsd
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/chg"
+           elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns="http://isis.apache.org/schema/chg"
+           xmlns:com="http://isis.apache.org/schema/common"
+>
+
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+
+    <xs:element name="changesDto">
+        <xs:annotation>
+            <xs:documentation>Represents v1.1 of this schema (as per majorVersion.minorVersion @default attribute, below).  The changes (create/update/delete) to one or more domain objects within a transaction.  (nb: only published objects are included in these lists).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="majorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The major version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="transactionId" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>Unique identifier of the interaction id within which this change occurred.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="sequence" type="xs:int">
+                    <xs:annotation>
+                        <xs:documentation>Unique sequence number of the set of change within the interaction.  There could be many such events within a single interaction, one for each completed transaction.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="completedAt" type="xs:dateTime" minOccurs="0" maxOccurs="1">
+                    <xs:annotation>
+                        <xs:documentation>The point in time that these changes were completed.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="user" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>The name of the user that performed this transaction.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="objects" type="objectsDto"/>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
+
+    <xs:complexType name="objectsDto">
+        <xs:annotation>
+            <xs:documentation>A set of changes to domain objects.</xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="loaded" type="xs:int">
+                <xs:annotation>
+                    <xs:documentation>The number of objects loaded within the transaction.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="created" type="com:oidsDto">
+                <xs:annotation>
+                    <xs:documentation>The list of objects created within the transaction.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="updated" type="com:oidsDto">
+                <xs:annotation>
+                    <xs:documentation>The list of objects updated within the transaction.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="deleted" type="com:oidsDto">
+                <xs:annotation>
+                    <xs:documentation>The list of objects deleted within the transaction.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="propertiesModified" type="xs:int">
+                <xs:annotation>
+                    <xs:documentation>The number of object properties modified within the transaction.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+</xs:schema>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/chg/chg.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/chg/chg.xsd b/content/versions/SNAPSHOT/schema/chg/chg.xsd
index 41501de..cb55449 100644
--- a/content/versions/SNAPSHOT/schema/chg/chg.xsd
+++ b/content/versions/SNAPSHOT/schema/chg/chg.xsd
@@ -24,11 +24,11 @@
            xmlns:com="http://isis.apache.org/schema/common"
 >
 
-    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.0.xsd"/>
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
 
     <xs:element name="changesDto">
         <xs:annotation>
-            <xs:documentation>The changes (create/update/delete) to one or more domain objects within a transaction.  (nb: only published objects are included in these lists).
+            <xs:documentation>Represents v1.1 of this schema (as per majorVersion.minorVersion @default attribute, below).  The changes (create/update/delete) to one or more domain objects within a transaction.  (nb: only published objects are included in these lists).
             </xs:documentation>
         </xs:annotation>
         <xs:complexType>
@@ -39,7 +39,7 @@
                         </xs:documentation>
                     </xs:annotation>
                 </xs:element>
-                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="0">
+                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="1">
                     <xs:annotation>
                         <xs:documentation>The minor version of the schema that an XML instance was created using.
                         </xs:documentation>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/cmd/cmd-1.2.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/cmd/cmd-1.2.xsd b/content/versions/SNAPSHOT/schema/cmd/cmd-1.2.xsd
new file mode 100644
index 0000000..8073266
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/cmd/cmd-1.2.xsd
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/cmd"
+           elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns="http://isis.apache.org/schema/cmd"
+           xmlns:com="http://isis.apache.org/schema/common">
+
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+
+    <xs:element name="commandDto">
+        <xs:annotation>
+            <xs:documentation>Represents v1.2 of this schema.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="majorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The major version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="minorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="2">
+                    <xs:annotation>
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="transactionId" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>Transaction id for this command, a unique identifier.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="user" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>The name of the user that initiated/created this command.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="targets" type="com:oidsDto">
+                    <xs:annotation>
+                        <xs:documentation>For regular actions, represents the entity/entities or view model(s) upon which the action is to be invoked.  For mixin actions, is the object(s) being mixed-into (the constructor arg to the mixin).  For contributed actions, is the domain service (the contributee object will be one of the action arguments within the payload).  Note that this means that bulk contributed actions cannot be reified as a memento (for this use case, implement as a mixin action instead).
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="member" type="memberDto">
+                    <xs:annotation>
+                        <xs:documentation>The action or property (identifier and parameter arguments) to be invoked on the target object(s).</xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
+
+    <xs:complexType name="memberDto" abstract="true">
+        <xs:annotation>
+            <xs:documentation>Represents the information required to be able to invoke an action or modify a property on the target(s).  Specifically, is the identifier of the action/property, along with the parameter arguments.  Is subclassed by 'actionDto' and 'propertyDto'.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="memberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Formal identifier of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+        <xs:attribute  name="interactionType" type="com:interactionType">
+            <xs:annotation>
+                <xs:documentation>Indicates whether this is an intention to invoke an action, or edit a property.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="actionDto">
+        <xs:annotation>
+            <xs:documentation>Captures the information required to be able to invoke an action on the target(s).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="memberDto">
+                <xs:sequence>
+                    <xs:element name="parameters" type="paramsDto">
+                        <xs:annotation>
+                            <xs:documentation>The list of parameter/argument values for this action invocation.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="propertyDto">
+        <xs:annotation>
+            <xs:documentation>Captures the information required to be able to modify a property on the target(s).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="memberDto">
+                <xs:sequence>
+                    <xs:element name="newValue" type="com:valueWithTypeDto"/>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="paramsDto">
+        <xs:annotation>
+            <xs:documentation>A list of of parameter/argument values.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence minOccurs="0" maxOccurs="unbounded">
+            <xs:element name="parameter" type="paramDto"/>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="paramDto">
+        <xs:annotation>
+            <xs:documentation>Defines an action parameter: its name, type and value (ie provided argument).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="com:valueWithTypeDto">
+                <xs:attribute name="name" use="required" type="xs:string"/>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+
+</xs:schema>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/cmd/cmd-1.3.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/cmd/cmd-1.3.xsd b/content/versions/SNAPSHOT/schema/cmd/cmd-1.3.xsd
new file mode 100644
index 0000000..6f14ad1
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/cmd/cmd-1.3.xsd
@@ -0,0 +1,157 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/cmd"
+           elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns="http://isis.apache.org/schema/cmd"
+           xmlns:com="http://isis.apache.org/schema/common">
+
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+
+    <xs:element name="commandDto">
+        <xs:annotation>
+            <xs:documentation>Represents v1.3 of this schema, adding in 'logicalMemberIdentifier'
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="majorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The major version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="minorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="3">
+                    <xs:annotation>
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="transactionId" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>Transaction id for this command, a unique identifier.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="user" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>The name of the user that initiated/created this command.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="targets" type="com:oidsDto">
+                    <xs:annotation>
+                        <xs:documentation>For regular actions, represents the entity/entities or view model(s) upon which the action is to be invoked.  For mixin actions, is the object(s) being mixed-into (the constructor arg to the mixin).  For contributed actions, is the domain service (the contributee object will be one of the action arguments within the payload).  Note that this means that bulk contributed actions cannot be reified as a memento (for this use case, implement as a mixin action instead).
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="member" type="memberDto">
+                    <xs:annotation>
+                        <xs:documentation>The action or property (identifier and parameter arguments) to be invoked on the target object(s).</xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
+
+    <xs:complexType name="memberDto" abstract="true">
+        <xs:annotation>
+            <xs:documentation>Represents the information required to be able to invoke an action or modify a property on the target(s).  Specifically, is the identifier of the action/property, along with the parameter arguments.  Is subclassed by 'actionDto' and 'propertyDto'.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="logicalMemberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Logical formal identifier (object type, as per @DomainObject(objectType=), and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="memberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Formal identifier (class name and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+        <xs:attribute  name="interactionType" type="com:interactionType">
+            <xs:annotation>
+                <xs:documentation>Indicates whether this is an intention to invoke an action, or edit a property.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="actionDto">
+        <xs:annotation>
+            <xs:documentation>Captures the information required to be able to invoke an action on the target(s).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="memberDto">
+                <xs:sequence>
+                    <xs:element name="parameters" type="paramsDto">
+                        <xs:annotation>
+                            <xs:documentation>The list of parameter/argument values for this action invocation.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="propertyDto">
+        <xs:annotation>
+            <xs:documentation>Captures the information required to be able to modify a property on the target(s).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="memberDto">
+                <xs:sequence>
+                    <xs:element name="newValue" type="com:valueWithTypeDto"/>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="paramsDto">
+        <xs:annotation>
+            <xs:documentation>A list of of parameter/argument values.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence minOccurs="0" maxOccurs="unbounded">
+            <xs:element name="parameter" type="paramDto"/>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="paramDto">
+        <xs:annotation>
+            <xs:documentation>Defines an action parameter: its name, type and value (ie provided argument).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="com:valueWithTypeDto">
+                <xs:attribute name="name" use="required" type="xs:string"/>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+
+</xs:schema>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/cmd/cmd-1.4.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/cmd/cmd-1.4.xsd b/content/versions/SNAPSHOT/schema/cmd/cmd-1.4.xsd
new file mode 100644
index 0000000..3ff2e90
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/cmd/cmd-1.4.xsd
@@ -0,0 +1,192 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/cmd"
+           elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns="http://isis.apache.org/schema/cmd"
+           xmlns:com="http://isis.apache.org/schema/common">
+
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+
+    <xs:element name="commandsDto">
+        <xs:annotation>
+            <xs:documentation>Collection of commandDto's</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence minOccurs="1" maxOccurs="unbounded">
+                <xs:element ref="commandDto"/>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
+
+    <xs:element name="commandDto">
+        <xs:annotation>
+            <xs:documentation>Represents v1.4 of this schema (as per majorVersion.minorVersion @default attribute, below).  Adds in 'commandsDto' and extending 'commandDto' to allow additional implementation-specific fields to be attached in 'userData' (a map).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="majorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The major version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="minorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="4">
+                    <xs:annotation>
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="transactionId" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>Transaction id for this command, a unique identifier.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="user" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>The name of the user that initiated/created this command.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="targets" type="com:oidsDto">
+                    <xs:annotation>
+                        <xs:documentation>For regular actions, represents the entity/entities or view model(s) upon which the action is to be invoked.  For mixin actions, is the object(s) being mixed-into (the constructor arg to the mixin).  For contributed actions, is the domain service (the contributee object will be one of the action arguments within the payload).  Note that this means that bulk contributed actions cannot be reified as a memento (for this use case, implement as a mixin action instead).
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="member" type="memberDto">
+                    <xs:annotation>
+                        <xs:documentation>The action or property (identifier and parameter arguments) to be invoked on the target object(s).</xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="timings" type="com:periodDto" minOccurs="0">
+                    <xs:annotation>
+                        <xs:documentation>The time taken to perform the command.  Used for replaying the command on a replica slave.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="userData" type="mapDto" minOccurs="0">
+                    <xs:annotation>
+                        <xs:documentation>Custom user data.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
+
+    <xs:complexType name="memberDto" abstract="true">
+        <xs:annotation>
+            <xs:documentation>Represents the information required to be able to invoke an action or modify a property on the target(s).  Specifically, is the identifier of the action/property, along with the parameter arguments.  Is subclassed by 'actionDto' and 'propertyDto'.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="logicalMemberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Logical formal identifier (object type, as per @DomainObject(objectType=), and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="memberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Formal identifier (class name and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+        <xs:attribute  name="interactionType" type="com:interactionType">
+            <xs:annotation>
+                <xs:documentation>Indicates whether this is an intention to invoke an action, or edit a property.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="actionDto">
+        <xs:annotation>
+            <xs:documentation>Captures the information required to be able to invoke an action on the target(s).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="memberDto">
+                <xs:sequence>
+                    <xs:element name="parameters" type="paramsDto">
+                        <xs:annotation>
+                            <xs:documentation>The list of parameter/argument values for this action invocation.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="propertyDto">
+        <xs:annotation>
+            <xs:documentation>Captures the information required to be able to modify a property on the target(s).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="memberDto">
+                <xs:sequence>
+                    <xs:element name="newValue" type="com:valueWithTypeDto"/>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="paramsDto">
+        <xs:annotation>
+            <xs:documentation>A list of of parameter/argument values.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence minOccurs="0" maxOccurs="unbounded">
+            <xs:element name="parameter" type="paramDto"/>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="paramDto">
+        <xs:annotation>
+            <xs:documentation>Defines an action parameter: its name, type and value (ie provided argument).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="com:valueWithTypeDto">
+                <xs:attribute name="name" use="required" type="xs:string"/>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="mapDto">
+        <xs:sequence>
+            <xs:element name="entry" minOccurs="0" maxOccurs="unbounded">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="key" type="xs:string"/>
+                        <xs:element name="value" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+</xs:schema>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/cmd/cmd.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/cmd/cmd.xsd b/content/versions/SNAPSHOT/schema/cmd/cmd.xsd
index e3aa0b9..3ff2e90 100644
--- a/content/versions/SNAPSHOT/schema/cmd/cmd.xsd
+++ b/content/versions/SNAPSHOT/schema/cmd/cmd.xsd
@@ -23,11 +23,22 @@
            xmlns="http://isis.apache.org/schema/cmd"
            xmlns:com="http://isis.apache.org/schema/common">
 
-    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.0.xsd"/>
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+
+    <xs:element name="commandsDto">
+        <xs:annotation>
+            <xs:documentation>Collection of commandDto's</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence minOccurs="1" maxOccurs="unbounded">
+                <xs:element ref="commandDto"/>
+            </xs:sequence>
+        </xs:complexType>
+    </xs:element>
 
     <xs:element name="commandDto">
         <xs:annotation>
-            <xs:documentation>Represents v1.0 of this schema.
+            <xs:documentation>Represents v1.4 of this schema (as per majorVersion.minorVersion @default attribute, below).  Adds in 'commandsDto' and extending 'commandDto' to allow additional implementation-specific fields to be attached in 'userData' (a map).
             </xs:documentation>
         </xs:annotation>
         <xs:complexType>
@@ -38,9 +49,9 @@
                         </xs:documentation>
                     </xs:annotation>
                 </xs:element>
-                <xs:element name="minorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="1">
+                <xs:element name="minorVersion" type="xs:string" minOccurs="1" maxOccurs="1" default="4">
                     <xs:annotation>
-                        <xs:documentation>Introduced in v1.1. The minor version of the schema that an XML instance was created using.
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
                         </xs:documentation>
                     </xs:annotation>
                 </xs:element>
@@ -67,6 +78,18 @@
                         <xs:documentation>The action or property (identifier and parameter arguments) to be invoked on the target object(s).</xs:documentation>
                     </xs:annotation>
                 </xs:element>
+                <xs:element name="timings" type="com:periodDto" minOccurs="0">
+                    <xs:annotation>
+                        <xs:documentation>The time taken to perform the command.  Used for replaying the command on a replica slave.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="userData" type="mapDto" minOccurs="0">
+                    <xs:annotation>
+                        <xs:documentation>Custom user data.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
             </xs:sequence>
         </xs:complexType>
     </xs:element>
@@ -77,9 +100,15 @@
             </xs:documentation>
         </xs:annotation>
         <xs:sequence>
+            <xs:element name="logicalMemberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Logical formal identifier (object type, as per @DomainObject(objectType=), and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
             <xs:element name="memberIdentifier" type="xs:string">
                 <xs:annotation>
-                    <xs:documentation>Formal identifier of the member being interacted with (action or property).
+                    <xs:documentation>Formal identifier (class name and member name) of the member being interacted with (action or property).
                     </xs:documentation>
                 </xs:annotation>
             </xs:element>
@@ -147,5 +176,17 @@
         </xs:complexContent>
     </xs:complexType>
 
+    <xs:complexType name="mapDto">
+        <xs:sequence>
+            <xs:element name="entry" minOccurs="0" maxOccurs="unbounded">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="key" type="xs:string"/>
+                        <xs:element name="value" type="xs:string"/>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
 
 </xs:schema>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/common/common-1.1.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/common/common-1.1.xsd b/content/versions/SNAPSHOT/schema/common/common-1.1.xsd
new file mode 100644
index 0000000..ab26815
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/common/common-1.1.xsd
@@ -0,0 +1,204 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/common"
+           elementFormDefault="qualified"
+           xmlns="http://isis.apache.org/schema/common"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema">
+
+    <xs:complexType name="valueDto">
+        <xs:choice minOccurs="0" maxOccurs="1">
+            <xs:element name="string" type="xs:string"/>
+            <xs:element name="byte" type="xs:byte"/>
+            <xs:element name="short" type="xs:short"/>
+            <xs:element name="int" type="xs:int"/>
+            <xs:element name="long" type="xs:long"/>
+            <xs:element name="float" type="xs:float"/>
+            <xs:element name="double" type="xs:double"/>
+            <xs:element name="boolean" type="xs:boolean"/>
+            <xs:element name="char" type="xs:string"/>
+            <xs:element name="bigInteger" type="xs:integer"/>
+            <xs:element name="bigDecimal" type="xs:decimal"/>
+            <xs:element name="dateTime" type="xs:dateTime"/>
+            <xs:element name="localDate" type="xs:date"/>
+            <xs:element name="localDateTime" type="xs:dateTime"/>
+            <xs:element name="localTime" type="xs:time"/>
+            <xs:element name="timestamp" type="xs:dateTime"/>
+            <xs:element name="enum" type="enumDto"/>
+            <xs:element name="reference" type="oidDto"/>
+            <xs:element name="collection" type="collectionDto"/>
+        </xs:choice>
+    </xs:complexType>
+
+    <xs:complexType name="oidDto">
+        <xs:sequence>
+            <xs:element name="objectType" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Deprecated, use the 'objectType' attribute instead.</xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="objectIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Deprecated, use the 'id' attribute instead.</xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+        <xs:attribute name="objectState" type="bookmarkObjectState">
+            <xs:annotation>
+                <xs:documentation>In previous versions of this schema the 'objectState' attribute was defaulted, but is now assumed to be 'persistent'</xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+        <xs:attribute name="type" type="xs:string"/>
+        <xs:attribute name="id" type="xs:string"/>
+    </xs:complexType>
+
+    <xs:complexType name="collectionDto">
+        <xs:annotation>
+            <xs:documentation>A collection of (argument) values
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="value" type="valueDto" minOccurs="1" maxOccurs="unbounded"/>
+        </xs:sequence>
+        <xs:attribute name="type" use="required" type="valueType"/>
+        <xs:attribute name="null" use="optional" type="xs:boolean"/>
+    </xs:complexType>
+
+    <xs:complexType name="oidsDto">
+        <xs:annotation>
+            <xs:documentation>A list of OIDs
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="oid" type="oidDto" minOccurs="1" maxOccurs="unbounded"/>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="enumDto">
+        <xs:sequence>
+            <xs:element name="enumType" type="xs:string"/>
+            <xs:element name="enumName" type="xs:string"/>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:simpleType name="bookmarkObjectState">
+        <xs:restriction base="xs:string">
+            <xs:enumeration value="persistent"/>
+            <xs:enumeration value="transient"/>
+            <xs:enumeration value="viewModel"/>
+        </xs:restriction>
+    </xs:simpleType>
+
+    <xs:simpleType name="valueType">
+        <xs:restriction base="xs:string">
+            <xs:enumeration value="string"/>
+            <xs:enumeration value="byte"/>
+            <xs:enumeration value="short"/>
+            <xs:enumeration value="int"/>
+            <xs:enumeration value="long"/>
+            <xs:enumeration value="float"/>
+            <xs:enumeration value="double"/>
+            <xs:enumeration value="boolean"/>
+            <xs:enumeration value="char"/>
+            <xs:enumeration value="bigInteger"/>
+            <xs:enumeration value="bigDecimal"/>
+            <xs:enumeration value="javaSqlTimestamp"/>
+            <xs:enumeration value="jodaDateTime"/>
+            <xs:enumeration value="jodaLocalDate"/>
+            <xs:enumeration value="jodaLocalTime"/>
+            <xs:enumeration value="jodaLocalDateTime"/>
+            <xs:enumeration value="enum"/>
+            <xs:enumeration value="reference"/>
+            <xs:enumeration value="collection"/>
+            <xs:enumeration value="void">
+                <xs:annotation>
+                    <xs:documentation>Not valid to be used as the parameter type of an action; can be used as its return type.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:enumeration>
+        </xs:restriction>
+    </xs:simpleType>
+
+    <xs:complexType name="periodDto">
+        <xs:annotation>
+            <xs:documentation>Captures a period of time, eg for capturing metrics/timings.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="startedAt" type="xs:dateTime">
+                <xs:annotation>
+                    <xs:documentation>The point in time that this period of time started.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="completedAt" type="xs:dateTime" minOccurs="0" maxOccurs="1">
+                <xs:annotation>
+                    <xs:documentation>The point in time that this period of time completed.  The duration is the difference between 'start' and 'complete'.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="differenceDto">
+        <xs:annotation>
+            <xs:documentation>Captures a pair of numbers representing a difference.  Used for example to capture metrics (number objects modified before and after).
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+        </xs:sequence>
+        <xs:attribute name="before" type="xs:int">
+            <xs:annotation>
+                <xs:documentation>The initial quantity.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+        <xs:attribute name="after" type="xs:int">
+            <xs:annotation>
+                <xs:documentation>The final quantity, once known.  The difference is therefore the computation of (after - before).
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="valueWithTypeDto">
+        <xs:annotation>
+            <xs:documentation>Captures both a value and its corresponding type.  Used for the return value of action invocations, and for the new value in property edits.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexContent>
+            <xs:extension base="valueDto">
+                <xs:attribute name="type" use="required" type="valueType"/>
+                <xs:attribute name="null" use="optional" type="xs:boolean"/>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+
+    <xs:simpleType name="interactionType" >
+        <xs:annotation>
+            <xs:documentation>Whether this interaction with a member is invoking an action, or editing a property.</xs:documentation>
+        </xs:annotation>
+        <xs:restriction base="xs:string">
+            <xs:enumeration value="action_invocation" />
+            <xs:enumeration value="property_edit" />
+        </xs:restriction>
+    </xs:simpleType>
+
+</xs:schema>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/common/common.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/common/common.xsd b/content/versions/SNAPSHOT/schema/common/common.xsd
index 041208c..ab26815 100644
--- a/content/versions/SNAPSHOT/schema/common/common.xsd
+++ b/content/versions/SNAPSHOT/schema/common/common.xsd
@@ -42,6 +42,7 @@
             <xs:element name="timestamp" type="xs:dateTime"/>
             <xs:element name="enum" type="enumDto"/>
             <xs:element name="reference" type="oidDto"/>
+            <xs:element name="collection" type="collectionDto"/>
         </xs:choice>
     </xs:complexType>
 
@@ -67,6 +68,18 @@
         <xs:attribute name="id" type="xs:string"/>
     </xs:complexType>
 
+    <xs:complexType name="collectionDto">
+        <xs:annotation>
+            <xs:documentation>A collection of (argument) values
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="value" type="valueDto" minOccurs="1" maxOccurs="unbounded"/>
+        </xs:sequence>
+        <xs:attribute name="type" use="required" type="valueType"/>
+        <xs:attribute name="null" use="optional" type="xs:boolean"/>
+    </xs:complexType>
+
     <xs:complexType name="oidsDto">
         <xs:annotation>
             <xs:documentation>A list of OIDs
@@ -112,10 +125,10 @@
             <xs:enumeration value="jodaLocalDateTime"/>
             <xs:enumeration value="enum"/>
             <xs:enumeration value="reference"/>
+            <xs:enumeration value="collection"/>
             <xs:enumeration value="void">
                 <xs:annotation>
-                    <xs:documentation>
-                        Not valid to be used as the parameter type of an action; can be used as its return type.
+                    <xs:documentation>Not valid to be used as the parameter type of an action; can be used as its return type.
                     </xs:documentation>
                 </xs:annotation>
             </xs:enumeration>
@@ -188,4 +201,4 @@
         </xs:restriction>
     </xs:simpleType>
 
-</xs:schema>
+</xs:schema>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/schema/ixn/ixn-1.1.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/schema/ixn/ixn-1.1.xsd b/content/versions/SNAPSHOT/schema/ixn/ixn-1.1.xsd
new file mode 100644
index 0000000..e8ccfe5
--- /dev/null
+++ b/content/versions/SNAPSHOT/schema/ixn/ixn-1.1.xsd
@@ -0,0 +1,215 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+         http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+<xs:schema targetNamespace="http://isis.apache.org/schema/ixn"
+           elementFormDefault="qualified"
+           xmlns:xs="http://www.w3.org/2001/XMLSchema"
+           xmlns="http://isis.apache.org/schema/ixn"
+           xmlns:cmd="http://isis.apache.org/schema/cmd"
+           xmlns:com="http://isis.apache.org/schema/common"
+>
+
+    <xs:import namespace="http://isis.apache.org/schema/common" schemaLocation="../common/common-1.1.xsd"/>
+    <xs:import namespace="http://isis.apache.org/schema/cmd" schemaLocation="../cmd/cmd-1.2.xsd"/>
+
+    <xs:element name="interactionDto">
+        <xs:annotation>
+            <xs:documentation>Represents v1.1 of this schema.  This schema replaces and generalizes the earlier 'actionInvocationMemento'.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+            <xs:sequence>
+                <xs:element name="majorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The major version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="minorVersion" type="xs:string" minOccurs="0" maxOccurs="1" default="1">
+                    <xs:annotation>
+                        <xs:documentation>The minor version of the schema that an XML instance was created using.
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="transactionId" type="xs:string">
+                    <xs:annotation>
+                        <xs:documentation>Unique identifier of the interaction which this member was interacted with (action invoked/property edited); can be used to locate the corresponding Command object (which may have been persisted).
+                        </xs:documentation>
+                    </xs:annotation>
+                </xs:element>
+                <xs:element name="execution" type="memberExecutionDto"/>
+            </xs:sequence>
+        </xs:complexType>
+
+    </xs:element>
+
+    <xs:complexType name="memberExecutionDto" abstract="true">
+        <xs:annotation>
+            <xs:documentation>Represents either an action invocation or a property edit.  Is subclassed by both.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="sequence" type="xs:int">
+                <xs:annotation>
+                    <xs:documentation>Unique sequence number of an individual member interaction within the overall interaction.  There could be many such member interactions (within a single transaction) for two reasons: either a single top-level interaction could call sub-interactions (by virtue of WrapperFactory), or there may be a bulk action interaction against many targets.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="target" type="com:oidDto">
+                <xs:annotation>
+                    <xs:documentation>For target domain object being interacted with.  For regular actions/properties, represents the entity or view model upon which the action is to be invoked/property edited.  For mixin actions/properties, is the object being mixed-into (the constructor arg to the mixin).  For contributed actions/properties, is the domain service (the contributee object will be one of the action arguments within the payload).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="memberIdentifier" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>Formal identifier (class name and member name) of the member being interacted with (action or property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="user" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>The name of the user that invoked this action.  Note that this isn't necessarily the user that initiated the original command; the SudoService may be being used to temporarily switch the effective user.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="title" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>User-friendly title of the 'target' object.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="metrics" type="metricsDto">
+                <xs:annotation>
+                    <xs:documentation>Profiling metrics capturng the this time/number of objects affected as a result of performing this member interaction (invoke the action, or edit the property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="threw" type="exceptionDto" minOccurs="0" maxOccurs="1">
+                <xs:annotation>
+                    <xs:documentation>Captures any exception thrown by an action.  Either the 'returned' or the 'threw' element will be populated.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="childExecutions" minOccurs="0" maxOccurs="1">
+                <xs:complexType>
+                    <xs:sequence>
+                        <xs:element name="execution" type="memberExecutionDto" minOccurs="0" maxOccurs="unbounded">
+                            <xs:annotation>
+                                <xs:documentation>Capture interactions with other members from this interaction, using the WrapperFactory service.  Typically this will be actions invoking other actions, but it is also possible for an action to perform a property edit, and - much rarer - for a property edit to invoke an action.  Whatever; these interactions nest together into a call/stack, more generally into a graph.
+                                </xs:documentation>
+                            </xs:annotation>
+                        </xs:element>
+                    </xs:sequence>
+                </xs:complexType>
+            </xs:element>
+        </xs:sequence>
+        <xs:attribute  name="interactionType" type="com:interactionType">
+            <xs:annotation>
+                <xs:documentation>Indicates whether this is an intention to invoke an action, or edit a property.
+                </xs:documentation>
+            </xs:annotation>
+        </xs:attribute>
+    </xs:complexType>
+
+    <xs:complexType name="actionInvocationDto">
+        <xs:complexContent>
+            <xs:extension base="memberExecutionDto">
+                <xs:sequence>
+                    <xs:element name="parameters" type="cmd:paramsDto">
+                        <xs:annotation>
+                            <xs:documentation>The list of parameter/argument values for this action invocation.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                    <xs:element name="returned" type="com:valueWithTypeDto" minOccurs="0" maxOccurs="1">
+                        <xs:annotation>
+                            <xs:documentation>The value returned by this action (including the type of that returned value).  Either the 'returned' or the 'threw' element (from 'memberExecutionDto') will be populated.
+                            </xs:documentation>
+                        </xs:annotation>
+                    </xs:element>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="propertyEditDto">
+        <xs:complexContent>
+            <xs:extension base="memberExecutionDto">
+                <xs:sequence>
+                    <xs:element name="newValue" type="com:valueWithTypeDto"/>
+                </xs:sequence>
+            </xs:extension>
+        </xs:complexContent>
+    </xs:complexType>
+
+    <xs:complexType name="metricsDto">
+        <xs:sequence>
+            <xs:element name="timings" type="com:periodDto">
+                <xs:annotation>
+                    <xs:documentation>The time taken to perform the member interaction (invoke the action, or edit the property).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="objectCounts" type="objectCountsDto">
+                <xs:annotation>
+                    <xs:documentation>How many objets were affected by the member interaction.
+                    </xs:documentation>
+                </xs:annotation>
+
+            </xs:element>
+        </xs:sequence>
+    </xs:complexType>
+
+    <xs:complexType name="objectCountsDto">
+        <xs:sequence>
+            <xs:element name="loaded" type="com:differenceDto">
+                <xs:annotation>
+                    <xs:documentation>The number of objects loaded.
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="dirtied" type="com:differenceDto">
+                <xs:annotation>
+                    <xs:documentation>The number of objects dirtied (ie updated).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+        </xs:sequence>
+
+    </xs:complexType>
+
+    <xs:complexType name="exceptionDto">
+        <xs:annotation>
+            <xs:documentation>Captures any exception thrown by an action invocation.  Use as the xsd:type of the 'threw' element.
+            </xs:documentation>
+        </xs:annotation>
+        <xs:sequence>
+            <xs:element name="message" type="xs:string"/>
+            <xs:element name="stackTrace" type="xs:string">
+                <xs:annotation>
+                    <xs:documentation>A formatted stack trace.  (A future version of the 'exceptionDto' element might refine this to more easily parseable stack trace elements).
+                    </xs:documentation>
+                </xs:annotation>
+            </xs:element>
+            <xs:element name="causedBy" type="exceptionDto" minOccurs="0" maxOccurs="1"/>
+        </xs:sequence>
+    </xs:complexType>
+
+</xs:schema>
\ No newline at end of file


[19/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
publishes 1.16.1-SNAPSHOT


Project: http://git-wip-us.apache.org/repos/asf/isis-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis-site/commit/f27adae8
Tree: http://git-wip-us.apache.org/repos/asf/isis-site/tree/f27adae8
Diff: http://git-wip-us.apache.org/repos/asf/isis-site/diff/f27adae8

Branch: refs/heads/asf-site
Commit: f27adae8d2e258b1eabc607eba24da6c52a5bb94
Parents: ba59f85
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Tue Feb 13 13:48:06 2018 +0000
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Tue Feb 13 13:48:06 2018 +0000

----------------------------------------------------------------------
 content/index.html                              |      4 +-
 .../layout/grid/bootstrap3/bootstrap3.xsd       |      1 +
 .../versions/SNAPSHOT/elasticlunr/index.json    |      2 +-
 .../versions/SNAPSHOT/guides/cgcom/cgcom.html   |      2 +-
 .../versions/SNAPSHOT/guides/cgcom/cgcom.pdf    |      4 +-
 content/versions/SNAPSHOT/guides/dg/dg.html     |     55 +-
 content/versions/SNAPSHOT/guides/dg/dg.pdf      |   3439 +-
 content/versions/SNAPSHOT/guides/htg.html       |     12 +-
 content/versions/SNAPSHOT/guides/htg.pdf        |    422 +-
 .../versions/SNAPSHOT/guides/rgant/rgant.html   |    678 +-
 .../versions/SNAPSHOT/guides/rgant/rgant.pdf    | 203319 +++++++++-------
 .../versions/SNAPSHOT/guides/rgcfg/rgcfg.html   |     33 +
 .../versions/SNAPSHOT/guides/rgcfg/rgcfg.pdf    |   2087 +-
 .../versions/SNAPSHOT/guides/rgcms/rgcms.html   |    132 +-
 .../versions/SNAPSHOT/guides/rgcms/rgcms.pdf    |  30040 ++-
 .../versions/SNAPSHOT/guides/rgfis/rgfis.pdf    |      4 +-
 .../versions/SNAPSHOT/guides/rgmvn/rgmvn.pdf    |      4 +-
 .../kitchensink-example.png                     |    Bin 28043 -> 180602 bytes
 .../versions/SNAPSHOT/guides/rgsvc/rgsvc.html   |    373 +-
 .../versions/SNAPSHOT/guides/rgsvc/rgsvc.pdf    |  26607 +-
 .../versions/SNAPSHOT/guides/ugbtb/ugbtb.pdf    |      4 +-
 .../versions/SNAPSHOT/guides/ugfun/ugfun.html   |     58 +-
 .../versions/SNAPSHOT/guides/ugfun/ugfun.pdf    |   2186 +-
 .../versions/SNAPSHOT/guides/ugodn/ugodn.pdf    |      4 +-
 .../versions/SNAPSHOT/guides/ugsec/ugsec.pdf    |      4 +-
 .../versions/SNAPSHOT/guides/ugtst/ugtst.html   |     38 +-
 .../versions/SNAPSHOT/guides/ugtst/ugtst.pdf    |   3294 +-
 .../versions/SNAPSHOT/guides/ugvro/ugvro.pdf    |      4 +-
 content/versions/SNAPSHOT/guides/ugvw/ugvw.html |     61 +-
 content/versions/SNAPSHOT/guides/ugvw/ugvw.pdf  |   4344 +-
 .../migration-notes/migration-notes.html        |     14 +-
 .../SNAPSHOT/release-notes/release-notes.html   |     52 +
 .../versions/SNAPSHOT/schema/chg/chg-1.1.xsd    |    115 +
 content/versions/SNAPSHOT/schema/chg/chg.xsd    |      6 +-
 .../versions/SNAPSHOT/schema/cmd/cmd-1.2.xsd    |    151 +
 .../versions/SNAPSHOT/schema/cmd/cmd-1.3.xsd    |    157 +
 .../versions/SNAPSHOT/schema/cmd/cmd-1.4.xsd    |    192 +
 content/versions/SNAPSHOT/schema/cmd/cmd.xsd    |     51 +-
 .../SNAPSHOT/schema/common/common-1.1.xsd       |    204 +
 .../versions/SNAPSHOT/schema/common/common.xsd  |     19 +-
 .../versions/SNAPSHOT/schema/ixn/ixn-1.1.xsd    |    215 +
 .../versions/SNAPSHOT/schema/ixn/ixn-1.2.xsd    |    221 +
 .../versions/SNAPSHOT/schema/ixn/ixn-1.3.xsd    |    221 +
 content/versions/SNAPSHOT/schema/ixn/ixn.xsd    |     14 +-
 pom.xml                                         |     33 +
 45 files changed, 153435 insertions(+), 125445 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index 601896c..f399bb6 100644
--- a/content/index.html
+++ b/content/index.html
@@ -176,11 +176,11 @@ table.CodeRay td.code>pre{padding:0}
   <!-- Navbar that will collapse on mobile screens -->
   <div id="navbar" class="navbar-collapse collapse">
    <ul class="nav navbar-nav">
-    <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Documentation<span class="caret"></span></a>
+    <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Versions<span class="caret"></span></a>
      <ul class="dropdown-menu">
       <li><a href="documentation.html">1.16.0 (current)</a></li>
       <li role="separator" class="divider"></li>
-      <li><a href="versions/SNAPSHOT/documentation.html">2.0.0-M1-SNAPSHOT</a></li>
+      <li><a href="versions/SNAPSHOT/documentation.html">1.16.1-SNAPSHOT</a></li>
       <li role="separator" class="divider"></li>
       <li class="dropdown-header">Archive</li>
       <li><a href="versions/1.15.1/documentation.html">1.15.1</a></li>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/applib/layout/grid/bootstrap3/bootstrap3.xsd
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/applib/layout/grid/bootstrap3/bootstrap3.xsd b/content/versions/SNAPSHOT/applib/layout/grid/bootstrap3/bootstrap3.xsd
index f494e81..67b2f93 100644
--- a/content/versions/SNAPSHOT/applib/layout/grid/bootstrap3/bootstrap3.xsd
+++ b/content/versions/SNAPSHOT/applib/layout/grid/bootstrap3/bootstrap3.xsd
@@ -96,6 +96,7 @@
                     <xs:element maxOccurs="unbounded" minOccurs="0" name="tab" type="tns:tab"/>
                     <xs:element minOccurs="0" name="metadataError" type="xs:string"/>
                 </xs:sequence>
+                <xs:attribute name="collapseIfOne" type="xs:boolean"/>
                 <xs:attribute name="unreferencedCollections" type="xs:boolean"/>
             </xs:extension>
         </xs:complexContent>


[07/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugbtb/ugbtb.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugbtb/ugbtb.pdf b/content/versions/SNAPSHOT/guides/ugbtb/ugbtb.pdf
index 821a916..69d1db9 100644
--- a/content/versions/SNAPSHOT/guides/ugbtb/ugbtb.pdf
+++ b/content/versions/SNAPSHOT/guides/ugbtb/ugbtb.pdf
@@ -4,8 +4,8 @@
 << /Title (Beyond the Basics)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108230852+00'00')
-/ModDate (D:20180108230852+00'00')
+/CreationDate (D:20180213131144+00'00')
+/ModDate (D:20180213131144+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugfun/ugfun.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugfun/ugfun.html b/content/versions/SNAPSHOT/guides/ugfun/ugfun.html
index d4a7cc0..ffc27a8 100644
--- a/content/versions/SNAPSHOT/guides/ugfun/ugfun.html
+++ b/content/versions/SNAPSHOT/guides/ugfun/ugfun.html
@@ -1978,7 +1978,7 @@ table.CodeRay td.code>pre{padding:0}
            <p>Domain events are fired — through the internal <a href="../rgsvc/rgsvc.html#_rgsvc_core-domain-api_EventBusService">event bus</a> — for every user interaction with each object member (property, collection or action).</p> 
           </div> 
           <div class="paragraph"> 
-           <p>By default, rendering a property causes a <code>PropertyDomainEvent</code> to be fired, though the <a href="../rgant/rgant.html#_rgant_Property_domainEvent"><code>@Property#domainEvent()</code></a> attribute allows a custom subclass to be specified if necessary. Similarly, rendering a collection causes a <code>CollectionDomainEvent</code> to be fired, and rendering an action causes an <code>ActionDomainEvent</code> to be fired.</p> 
+           <p>By default, rendering a property causes a <code>PropertyDomainEvent</code> to be fired, though the <a href="../rgant/rgant.html#_rgant-Property_domainEvent"><code>@Property#domainEvent()</code></a> attribute allows a custom subclass to be specified if necessary. Similarly, rendering a collection causes a <code>CollectionDomainEvent</code> to be fired, and rendering an action causes an <code>ActionDomainEvent</code> to be fired.</p> 
           </div> 
           <div class="paragraph"> 
            <p>In fact, each event can be fired up to five times, with the event’s <code>getEventPhase()</code> method indicating to the subscriber the phase:</p> 
@@ -2039,7 +2039,7 @@ table.CodeRay td.code>pre{padding:0}
            <p><a href="../ugfun/ugfun.html#_ugfun_ui-hints_object-titles-and-icons">Normally</a> the code to return title and icon of an object is part of the domain object’s implementation. However, UI events allow this title and icon to be provided instead by a subscriber. UI events have higher precedence than the other mechanisms of supplying a title.</p> 
           </div> 
           <div class="paragraph"> 
-           <p>If annotated with <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_titleUiEvent"><code>@DomainObjectLayout#titleUiEvent()</code></a>, the appropriate (subclass of) <code>TitleUiEvent</code> will be emitted. Similarly for <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_iconUiEvent"><code>iconUiEvent()</code></a> and <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_cssClassUiEvent"><code>cssClassUiEvent()</code></a>.</p> 
+           <p>If annotated with <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_titleUiEvent"><code>@DomainObjectLayout#titleUiEvent()</code></a>, the appropriate (subclass of) <code>TitleUiEvent</code> will be emitted. Similarly for <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_iconUiEvent"><code>iconUiEvent()</code></a> and <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_cssClassUiEvent"><code>cssClassUiEvent()</code></a>.</p> 
           </div> 
           <div class="paragraph"> 
            <p>This can be particularly useful for <a href="../ugfun/ugfun.html#_ugfun_programming-model_view-models_jaxb">JAXB-style view models</a> which are used as DTOs and so must have no dependencies on the rest of the Apache Isis framework.</p> 
@@ -2097,7 +2097,7 @@ table.CodeRay td.code>pre{padding:0}
            <p>There is no lifecycle event for object creating because the framework doesn’t know about newly created objects until they have been created; and there is no lifecycle event for obejcts removed because it is not valid to "touch" a domain entity once deleted.</p> 
           </div> 
           <div class="paragraph"> 
-           <p>For example, if annotated with <a href="../rgant/rgant.html#_rgant_DomainObject_updatingLifecycleEvent"><code>@DomainObjectLayout#updatingLifecycleEvent()</code></a>, the appropriate (subclass of) <code>ObjectUpdatingEvent</code> will be emitted. Similarly for <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_iconUiEvent"><code>iconUiEvent()</code></a> and <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_cssClassUiEvent"><code>cssClassUiEvent()</code></a>.</p> 
+           <p>For example, if annotated with <a href="../rgant/rgant.html#_rgant_DomainObject_updatingLifecycleEvent"><code>@DomainObjectLayout#updatingLifecycleEvent()</code></a>, the appropriate (subclass of) <code>ObjectUpdatingEvent</code> will be emitted. Similarly for <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_iconUiEvent"><code>iconUiEvent()</code></a> and <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_cssClassUiEvent"><code>cssClassUiEvent()</code></a>.</p> 
           </div> 
          </div> 
         </div> 
@@ -3081,7 +3081,7 @@ mvn clean install</code></pre>
            </div> 
           </div> 
           <div class="paragraph"> 
-           <p>Here the <code>BootstrappingGlue</code> glue class inherits from the framework’s <code>CukeGlueBootstrappingAbstract</code> class, and bootstraps using the <code>DomainAppApplicationModule</code> mentioned above.</p> 
+           <p>Here the <code>BootstrappingGlue</code> glue class inherits from the framework’s <code>HeadlessWithBootstrappingAbstract</code> class, and bootstraps using the <code>DomainAppApplicationModule</code> mentioned above.</p> 
           </div> 
           <div class="paragraph"> 
            <p>There is just one feature file: <code>SimpleObjectSpec_listAllAndCreate.feature</code>, which is pretty simple:</p> 
@@ -3303,7 +3303,7 @@ WEB-INF/
     <span class="tag">&lt;filter-class&gt;</span>org.apache.wicket.protocol.http.WicketFilter<span class="tag">&lt;/filter-class&gt;</span>
     <span class="tag">&lt;init-param&gt;</span>
       <span class="tag">&lt;param-name&gt;</span>applicationClassName<span class="tag">&lt;/param-name&gt;</span>
-      <span class="tag">&lt;param-value&gt;</span>ie.welfare.apps.rtrm.webapp.DomainApplication<span class="tag">&lt;/param-value&gt;</span>
+      <span class="tag">&lt;param-value&gt;</span>domainapp.webapp.DomainApplication<span class="tag">&lt;/param-value&gt;</span>
     <span class="tag">&lt;/init-param&gt;</span>
   <span class="tag">&lt;/filter&gt;</span>
   ...
@@ -3777,7 +3777,7 @@ mvn clean install</code></pre>
     <span class="annotation">@javax</span>.jdo.annotations.Query(                                           <i class="conum" data-value="1"></i><b>(1)</b>
         name = <span class="string"><span class="delimiter">"</span><span class="content">findByName</span><span class="delimiter">"</span></span>,                                                <i class="conum" data-value="2"></i><b>(2)</b>
         value = <span class="string"><span class="delimiter">"</span><span class="content">SELECT </span><span class="delimiter">"</span></span>                                                   <i class="conum" data-value="3"></i><b>(3)</b>
-                + <span class="string"><span class="delimiter">"</span><span class="content">FROM domainapp.modules.simple.dom.impl.simple.SimpleObject </span><span class="delimiter">"</span></span>    <i class="conum" data-value="4"></i><b>(4)</b>
+                + <span class="string"><span class="delimiter">"</span><span class="content">FROM domainapp.modules.simple.dom.impl.SimpleObject </span><span class="delimiter">"</span></span>    <i class="conum" data-value="4"></i><b>(4)</b>
                 + <span class="string"><span class="delimiter">"</span><span class="content">WHERE name.indexOf(:name) &gt;= 0 </span><span class="delimiter">"</span></span>)                        <i class="conum" data-value="5"></i><b>(5)</b>
 })
 ...
@@ -4069,19 +4069,19 @@ RepositoryService repositoryService;</code></pre>
             <tbody>
              <tr> 
               <td><i class="conum" data-value="1"></i><b>1</b></td> 
-              <td>The (Apache Isis) <a href="../rgant/rgant.html#_rgant_DomainService"><code>@DomainService</code></a> annotation is used to identify the class as a domain service. Apache Isis scans the classpath looking for classes with this annotation, so there very little configuration other than to tell the framework which packages to scan underneath. The <code>VIEW_MENU_ONLY</code> nature indicates that this service’s actions should be exposed as menu items.</td> 
+              <td>The (Apache Isis) <a href="../rgant/rgant.html#_rgant-DomainService"><code>@DomainService</code></a> annotation is used to identify the class as a domain service. Apache Isis scans the classpath looking for classes with this annotation, so there very little configuration other than to tell the framework which packages to scan underneath. The <code>VIEW_MENU_ONLY</code> nature indicates that this service’s actions should be exposed as menu items.</td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="2"></i><b>2</b></td> 
-              <td>The <a href="../rgant/rgant.html#_rgant_DomainServiceLayout"><code>@DomainServiceLayout</code></a> annotation provides UI hints. The menu is named "Customers" (otherwise it would have defaulted to "Customer Menu", based on the class name, while the <a href="../rgant/rgant.html#_rgant_DomainServiceLayout_menuOrder"><code>menuOrder</code></a> attribute determines the order of the menu with respect to other menu services.</td> 
+              <td>The <a href="../rgant/rgant.html#_rgant-DomainServiceLayout"><code>@DomainServiceLayout</code></a> annotation provides UI hints. The menu is named "Customers" (otherwise it would have defaulted to "Customer Menu", based on the class name, while the <a href="../rgant/rgant.html#_rgant-DomainServiceLayout_menuOrder"><code>menuOrder</code></a> attribute determines the order of the menu with respect to other menu services.</td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="3"></i><b>3</b></td> 
-              <td>The <code>findByName</code> method is annotated with various Apache Isis annotations (<a href="../rgant/rgant.html#_rgant_Action"><code>@Action</code></a>, <a href="../rgant/rgant.html#_rgant_ActionLayout"><code>@ActionLayout</code></a> and <a href="../rgant/rgant.html#_rgant_MemberOrder"><code>@MemberOrder</code></a> and is itself rendered in the UI as a "Find By Name" menu item underneath the "Simple Objects" menu.</td> 
+              <td>The <code>findByName</code> method is annotated with various Apache Isis annotations (<a href="../rgant/rgant.html#_rgant-Action"><code>@Action</code></a>, <a href="../rgant/rgant.html#_rgant-ActionLayout"><code>@ActionLayout</code></a> and <a href="../rgant/rgant.html#_rgant-MemberOrder"><code>@MemberOrder</code></a> and is itself rendered in the UI as a "Find By Name" menu item underneath the "Simple Objects" menu.</td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="4"></i><b>4</b></td> 
-              <td>The <a href="../rgant/rgant.html#_rgant_ParameterLayout"><code>@ParameterLayout</code></a> provides metadata for the parameter itself, in this case its name.</td> 
+              <td>The <a href="../rgant/rgant.html#_rgant-ParameterLayout"><code>@ParameterLayout</code></a> provides metadata for the parameter itself, in this case its name.</td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="5"></i><b>5</b></td> 
@@ -4089,7 +4089,7 @@ RepositoryService repositoryService;</code></pre>
              </tr> 
              <tr> 
               <td><i class="conum" data-value="6"></i><b>6</b></td> 
-              <td><a href="../rgant/rgant.html#_rgant_Action_restrictTo">Prototype</a> actions are rendered only in prototyping mode. A "list all" action such as this can be useful when exploring the domain with a small dataset.</td> 
+              <td><a href="../rgant/rgant.html#_rgant-Action_restrictTo">Prototype</a> actions are rendered only in prototyping mode. A "list all" action such as this can be useful when exploring the domain with a small dataset.</td> 
              </tr> 
             </tbody>
            </table> 
@@ -4101,7 +4101,7 @@ RepositoryService repositoryService;</code></pre>
               <td class="icon"> <i class="fa icon-tip" title="Tip"></i> </td> 
               <td class="content"> 
                <div class="paragraph"> 
-                <p>Annotating action parameters with <a href="../rgant/rgant.html#_rgant_ParameterLayout_named"><code>@ParameterLayout#named()</code></a> can become somewhat tiresome. You can avoid doing this by configuring the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s paraname8 metamodel extension.</p> 
+                <p>Annotating action parameters with <a href="../rgant/rgant.html#_rgant-ParameterLayout_named"><code>@ParameterLayout#named()</code></a> can become somewhat tiresome. You can avoid doing this by configuring the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s paraname8 metamodel extension.</p> 
                </div> </td> 
              </tr> 
             </tbody>
@@ -5102,7 +5102,7 @@ ProductRepository productRepository;</code></pre>
              </tr> 
              <tr> 
               <td><i class="conum" data-value="2"></i><b>2</b></td> 
-              <td>The <a href="../rgant/rgant.html#_rgant_MinLength"><code>@MinLength</code></a> annotation defines how many characters the end-user must enter before performing a search.</td> 
+              <td>The <a href="../rgant/rgant.html#_rgant-MinLength"><code>@MinLength</code></a> annotation defines how many characters the end-user must enter before performing a search.</td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="3"></i><b>3</b></td> 
@@ -5206,13 +5206,13 @@ ProductRepository productRepository;</code></pre>
            </div> 
           </div> 
           <div class="paragraph"> 
-           <p>As the example suggests, any collection parameter type must provide a way to select items, either by way of a "choices" or "autoComplete" supporting method or alternatively defined globally using <a href="../rgant/rgant.html#_rgant_DomainObject"><code>@DomainObject</code></a> on the referenced type (described <a href="../ugfun/ugfun.html#__ugfun_programming-model_actions_reference-parameter-types_removing-boilerplate">above</a>).</p> 
+           <p>As the example suggests, any collection parameter type must provide a way to select items, either by way of a "choices" or "autoComplete" supporting method or alternatively defined globally using <a href="../rgant/rgant.html#_rgant-DomainObject"><code>@DomainObject</code></a> on the referenced type (described <a href="../ugfun/ugfun.html#__ugfun_programming-model_actions_reference-parameter-types_removing-boilerplate">above</a>).</p> 
           </div> 
          </div> 
          <div class="sect3"> 
           <h4 id="__ugfun_programming-model_actions_optional-parameters">6.5.4. Optional Parameters</h4> 
           <div class="paragraph"> 
-           <p>Whereas the <a href="../ugfun/ugfun.html#__ugfun_programming-model_properties_optional-properties">optionality of properties</a> is defined using <a href="../rgant/rgant.html#_rgant_Column_allowsNull"><code>@javax.jdo.annotations.Column#allowsNull()</code></a>, that JDO annotation cannot be applied to parameter types. Instead, either the <a href="../rgant/rgant.html#_rgant_Nullable"><code>@Nullable</code></a> annotation or the <a href="../rgant/rgant.html#_rgant_Parameter_optionality"><code>@Parameter#optionality()</code></a> annotation/attribute is used.</p> 
+           <p>Whereas the <a href="../ugfun/ugfun.html#__ugfun_programming-model_properties_optional-properties">optionality of properties</a> is defined using <a href="../rgant/rgant.html#_rgant-Column_allowsNull"><code>@javax.jdo.annotations.Column#allowsNull()</code></a>, that JDO annotation cannot be applied to parameter types. Instead, either the <a href="../rgant/rgant.html#_rgant-Nullable"><code>@Nullable</code></a> annotation or the <a href="../rgant/rgant.html#_rgant_Parameter_optionality"><code>@Parameter#optionality()</code></a> annotation/attribute is used.</p> 
           </div> 
           <div class="paragraph"> 
            <p>For example:</p> 
@@ -5255,7 +5255,7 @@ ProductRepository productRepository;</code></pre>
          <div class="sect3"> 
           <h4 id="__ugfun_programming-model_actions_string-parameters">6.5.5. <code>String</code> Parameters (Length)</h4> 
           <div class="paragraph"> 
-           <p>Whereas the <a href="../ugfun/ugfun.html#__ugfun_programming-model_properties_datatypes_strings">length of string properties</a> is defined using <a href="../rgant/rgant.html#_rgant_Column_length"><code>@javax.jdo.annotations.Column#length()</code></a>, that JDO annotation cannot be applied to parameter types. Instead, the <a href="../rgant/rgant.html#_rgant_Parameter_maxLength"><code>@Parameter#maxLength()</code></a> annotation/attribute is used.</p> 
+           <p>Whereas the <a href="../ugfun/ugfun.html#__ugfun_programming-model_properties_datatypes_strings">length of string properties</a> is defined using <a href="../rgant/rgant.html#_rgant-Column_length"><code>@javax.jdo.annotations.Column#length()</code></a>, that JDO annotation cannot be applied to parameter types. Instead, the <a href="../rgant/rgant.html#_rgant-Parameter_maxLength"><code>@Parameter#maxLength()</code></a> annotation/attribute is used.</p> 
           </div> 
           <div class="paragraph"> 
            <p>For example:</p> 
@@ -5288,11 +5288,11 @@ ProductRepository productRepository;</code></pre>
             <tbody>
              <tr> 
               <td><i class="conum" data-value="1"></i><b>1</b></td> 
-              <td>Specifies the property length using the JDO <a href="../rgant/rgant.html#_rgant_Column_length"><code>@Column#length()</code></a> annotation</td> 
+              <td>Specifies the property length using the JDO <a href="../rgant/rgant.html#_rgant-Column_length"><code>@Column#length()</code></a> annotation</td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="2"></i><b>2</b></td> 
-              <td>Specifies the parameter length using the (Apache Isis) <a href="../rgant/rgant.html#_rgant_Parameter_maxLength"><code>@Parameter#maxLength()</code></a> annotation</td> 
+              <td>Specifies the parameter length using the (Apache Isis) <a href="../rgant/rgant.html#_rgant-Parameter_maxLength"><code>@Parameter#maxLength()</code></a> annotation</td> 
              </tr> 
             </tbody>
            </table> 
@@ -5317,7 +5317,7 @@ ProductRepository productRepository;</code></pre>
          <div class="sect3"> 
           <h4 id="__ugfun_programming-model_actions_bigdecimal-parameters">6.5.6. <code>BigDecimal</code>s (Precision)</h4> 
           <div class="paragraph"> 
-           <p>Whereas the <a href="../ugfun/ugfun.html#__ugfun_programming-model_properties_datatypes_bigdecimals">precision of BigDecimal properties</a> is defined using <a href="../rgant/rgant.html#_rgant_Column_scale"><code>@javax.jdo.annotations.Column#scale()</code></a>, that JDO annotation cannot be applied to parameter types. Instead, the <a href="../rgant/rgant.html#_rgant_Digits_fraction"><code>@javax.validation.constraints.Digits#fraction()</code></a> annotation/attribute is used.</p> 
+           <p>Whereas the <a href="../ugfun/ugfun.html#__ugfun_programming-model_properties_datatypes_bigdecimals">precision of BigDecimal properties</a> is defined using <a href="../rgant/rgant.html#_rgant-Column_scale"><code>@javax.jdo.annotations.Column#scale()</code></a>, that JDO annotation cannot be applied to parameter types. Instead, the <a href="../rgant/rgant.html#_rgant-Digits_fraction"><code>@javax.validation.constraints.Digits#fraction()</code></a> annotation/attribute is used.</p> 
           </div> 
           <div class="paragraph"> 
            <p>For example:</p> 
@@ -5342,11 +5342,11 @@ ProductRepository productRepository;</code></pre>
             <tbody>
              <tr> 
               <td><i class="conum" data-value="1"></i><b>1</b></td> 
-              <td>Specifies the property precision using <a href="../rgant/rgant.html#_rgant_Column_scale"><code>@Column#scale()</code></a></td> 
+              <td>Specifies the property precision using <a href="../rgant/rgant.html#_rgant-Column_scale"><code>@Column#scale()</code></a></td> 
              </tr> 
              <tr> 
               <td><i class="conum" data-value="2"></i><b>2</b></td> 
-              <td>Specifies the corresponding parameter precision using <a href="../rgant/rgant.html#_rgant_Digits_fraction"><code>@Digits#fraction()</code></a>.</td> 
+              <td>Specifies the corresponding parameter precision using <a href="../rgant/rgant.html#_rgant-Digits_fraction"><code>@Digits#fraction()</code></a>.</td> 
              </tr> 
             </tbody>
            </table> 
@@ -5375,7 +5375,7 @@ ProductRepository productRepository;</code></pre>
           <p>Sometimes there may be multiple services that implement a single type. This is common for example for SPI service, whereby one module defines an SPI service, and other module(s) in the application implement that service. To support this, the framework also allows lists of services to be injected.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>When there are multiple service implementations of a given type, the framework will inject the service with highest priority, as defined through <a href="../rgant/rgant.html#_rgant_DomainService_menuOrder"><code>@DomainService#menuOrder()</code></a> (even for domain services that are not menus), lowest first. If a list of services is injected, then that list will be ordered according to <code>menuOrder</code>, again lowest first.</p> 
+          <p>When there are multiple service implementations of a given type, the framework will inject the service with highest priority, as defined through <a href="../rgant/rgant.html#_rgant-DomainService_menuOrder"><code>@DomainService#menuOrder()</code></a> (even for domain services that are not menus), lowest first. If a list of services is injected, then that list will be ordered according to <code>menuOrder</code>, again lowest first.</p> 
          </div> 
          <div class="admonitionblock note"> 
           <table> 
@@ -6573,7 +6573,7 @@ public <span class="type">class</span> <span class="class">ToDoItemV1_1</span> <
           <p>A <a href="../ugfun/ugfun.html#_ugfun_building-blocks_types-of-domain-objects_mixins">mixin</a> acts like a trait or extension method, allowing one module to contribute behaviour or derived state to another object.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>Syntactically, a mixin is defined using either the <a href="../rgant/rgant.html#_rgant_Mixin"><code>@Mixin</code></a> annotation or using <a href="../rgant/rgant.html#_rgant_DomainObject_nature"><code>@DomainObject#nature()</code></a> attribute (specifying a nature of <code>Nature.MIXIN</code>).</p> 
+          <p>Syntactically, a mixin is defined using either the <a href="../rgant/rgant.html#_rgant-Mixin"><code>@Mixin</code></a> annotation or using <a href="../rgant/rgant.html#_rgant-DomainObject_nature"><code>@DomainObject#nature()</code></a> attribute (specifying a nature of <code>Nature.MIXIN</code>).</p> 
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
@@ -6820,7 +6820,7 @@ public <span class="type">class</span> <span class="class">ToDoItemV1_1</span> <
            </div> 
           </div> 
           <div class="paragraph"> 
-           <p>Alternatively, if the <a href="../rgant/rgant.html#_rgant_Mixin_method"><code>@Mixin#method()</code></a> attribute is specified, then this can nominate a different abbreviation.</p> 
+           <p>Alternatively, if the <a href="../rgant/rgant.html#_rgant-Mixin_method"><code>@Mixin#method()</code></a> attribute is specified, then this can nominate a different abbreviation.</p> 
           </div> 
           <div class="paragraph"> 
            <p>The examples above (for <a href="../ugfun/ugfun.html#_ugfun_programming-model_mixins_contributed-property">property</a>, <a href="../ugfun/ugfun.html#_ugfun_programming-model_mixins_contributed-collection">collection</a> and <a href="../ugfun/ugfun.html#_ugfun_programming-model_mixins_contributed-action">action</a>) demonstrate this.</p> 
@@ -7179,7 +7179,7 @@ public <span class="type">class</span> <span class="class">ToDoItemV1_1</span> <
             <p>A third alternative is to move the responsibility for deriving the title into a separate subscriber object.</p> 
            </div> 
            <div class="paragraph"> 
-            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_titleUiEvent"><code>@DomainObjectLayout#titleUiEvent()</code></a> attribute to specify:</p> 
+            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_titleUiEvent"><code>@DomainObjectLayout#titleUiEvent()</code></a> attribute to specify:</p> 
            </div> 
            <div class="listingblock"> 
             <div class="content"> 
@@ -7290,7 +7290,7 @@ public <span class="type">class</span> <span class="class">ToDoItemV1_1</span> <
             <p>As for title, the determination of which image file to use for the icon can be externalized into a UI event subscriber.</p> 
            </div> 
            <div class="paragraph"> 
-            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_iconUiEvent"><code>@DomainObjectLayout#iconUiEvent()</code></a> attribute to specify.</p> 
+            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_iconUiEvent"><code>@DomainObjectLayout#iconUiEvent()</code></a> attribute to specify.</p> 
            </div> 
            <div class="paragraph"> 
             <p>For example</p> 
@@ -7386,7 +7386,7 @@ public <span class="type">class</span> <span class="class">ToDoItemV1_1</span> <
             <p>As for title and icon, the determination of which CSS class to render can be externalized into a UI event subscriber.</p> 
            </div> 
            <div class="paragraph"> 
-            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant_DomainObjectLayout_cssClassUiEvent"><code>@DomainObjectLayout#cssClassUiEvent()</code></a> attribute to specify.</p> 
+            <p>In the target object, we define an appropriate event type and use the <a href="../rgant/rgant.html#_rgant-DomainObjectLayout_cssClassUiEvent"><code>@DomainObjectLayout#cssClassUiEvent()</code></a> attribute to specify.</p> 
            </div> 
            <div class="paragraph"> 
             <p>For example</p> 
@@ -7735,7 +7735,7 @@ public <span class="type">class</span> <span class="class">ToDoItemV1_1</span> <
           </div> 
          </div> 
          <div class="paragraph"> 
-          <p>For this we annotate the collection using <a href="../rgant/rgant.html#_rgant_CollectionLayout_defaultView"><code>@CollectionLayout#defaultView()</code></a>; for example</p> 
+          <p>For this we annotate the collection using <a href="../rgant/rgant.html#_rgant-CollectionLayout_defaultView"><code>@CollectionLayout#defaultView()</code></a>; for example</p> 
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
@@ -7757,7 +7757,7 @@ public <span class="type">class</span> <span class="class">ToDoItemV1_1</span> <
              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
              <td class="content"> 
               <div class="paragraph"> 
-               <p>The <code>defaultView()</code> attribute replaces the deprecated approach of using <a href="../rgant/rgant.html#_rgant_CollectionLayout_render"><code>@CollectionLayout#render()</code></a> eagerly.</p> 
+               <p>The <code>defaultView()</code> attribute replaces the deprecated approach of using <a href="../rgant/rgant.html#_rgant-CollectionLayout_render"><code>@CollectionLayout#render()</code></a> eagerly.</p> 
               </div> </td> 
             </tr> 
            </tbody>


[17/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/cgcom/cgcom.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/cgcom/cgcom.html b/content/versions/SNAPSHOT/guides/cgcom/cgcom.html
index 8d77f92..8b963a8 100644
--- a/content/versions/SNAPSHOT/guides/cgcom/cgcom.html
+++ b/content/versions/SNAPSHOT/guides/cgcom/cgcom.html
@@ -1148,7 +1148,7 @@ env | grep ISIS | sort</code></pre>
               <div class="ulist"> 
                <ul> 
                 <li> <p>mainClass=<code>org.apache.isis.WebServer</code></p> </li> 
-                <li> <p>args=<code>-m ie.welfare.apps.rtrm.application.manifest.DomainAppAppManifestWithFixtures</code></p> </li> 
+                <li> <p>args=<code>-m domainapp.application.manifest.DomainAppAppManifestWithFixtures</code></p> </li> 
                 <li> <p>run before: <code>mvn -f pom-jdo-enhance-all.xml datanucleus:enhance -o</code> in the root module</p> </li> 
                </ul> 
               </div> </li> 

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/cgcom/cgcom.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/cgcom/cgcom.pdf b/content/versions/SNAPSHOT/guides/cgcom/cgcom.pdf
index 7f453fb..d8f6fd1 100644
--- a/content/versions/SNAPSHOT/guides/cgcom/cgcom.pdf
+++ b/content/versions/SNAPSHOT/guides/cgcom/cgcom.pdf
@@ -4,8 +4,8 @@
 << /Title (Committers' Guide)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108225741+00'00')
-/ModDate (D:20180108225741+00'00')
+/CreationDate (D:20180213130912+00'00')
+/ModDate (D:20180213130912+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/dg/dg.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/dg/dg.html b/content/versions/SNAPSHOT/guides/dg/dg.html
index 96720a7..0d24548 100644
--- a/content/versions/SNAPSHOT/guides/dg/dg.html
+++ b/content/versions/SNAPSHOT/guides/dg/dg.html
@@ -1440,7 +1440,7 @@ gradle -t --offline -b liveReload.gradle &amp;</code></pre>
          <div class="sect3"> 
           <h4 id="__dg_ide_eclipse_configure-lombok">2.2.2. Install Project Lombok</h4> 
           <div class="paragraph"> 
-           <p>The <a href="ugfun.html#_ugfun_getting-started_simpleapp-archetype">SimpleApp archetype</a> uses <a href="http://projectlombok.org">Project Lombok</a> annotations (<code>@Getter</code> and <code>@Setter</code> and so on) to reduce the boilerplate. For Eclipse IDE this requires an <a href="https://projectlombok.org/setup/eclipse">installation step</a>:</p> 
+           <p>The <a href="../ugfun/ugfun.html#_ugfun_getting-started_simpleapp-archetype">SimpleApp archetype</a> uses <a href="http://projectlombok.org">Project Lombok</a> annotations (<code>@Getter</code> and <code>@Setter</code> and so on) to reduce the boilerplate. For Eclipse IDE this requires an <a href="https://projectlombok.org/setup/eclipse">installation step</a>:</p> 
           </div> 
           <div class="ulist"> 
            <ul> 
@@ -1746,7 +1746,7 @@ gradle -t --offline -b liveReload.gradle &amp;</code></pre>
           <p>If working from the Maven command line, JDO enhancement is done using the <code>maven-datanucleus-plugin</code>.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>Both the <a href="ugfun.html#_ugfun_getting-started_helloworld-archetype">HelloWorld</a> and <a href="ugfun.html#_ugfun_getting-started_simpleapp-archetype">SimpleApp</a> Maven archetypes generate applications that have this plugin pre-configured.</p> 
+          <p>Both the <a href="../ugfun/ugfun.html#_ugfun_getting-started_helloworld-archetype">HelloWorld</a> and <a href="../ugfun/ugfun.html#_ugfun_getting-started_simpleapp-archetype">SimpleApp</a> Maven archetypes generate applications that have this plugin pre-configured.</p> 
          </div> 
          <div class="sect3"> 
           <h4 id="_meta_inf_persistence_xml">3.1.1. META-INF/persistence.xml</h4> 
@@ -4406,13 +4406,7 @@ public class SomeClass
           </div> 
          </div> 
          <div class="paragraph"> 
-          <p>will render as:</p> 
-         </div> 
-         <div class="paragraph"> 
-          <p><span class="image"><img src="_images/vscode.png" alt="vscode"></span></p> 
-         </div> 
-         <div class="paragraph"> 
-          <p>to make the image clickable, add in the <code>link</code> attribute:</p> 
+          <p>To make the image clickable, add in the <code>link</code> attribute:</p> 
          </div> 
          <div class="literalblock"> 
           <div class="content"> 
@@ -4420,16 +4414,15 @@ public class SomeClass
           </div> 
          </div> 
          <div class="paragraph"> 
-          <p>will render as:</p> 
-         </div> 
-         <div class="paragraph"> 
-          <p><span class="image"><a class="image" href="_images/vscode.png"><img src="_images/vscode.png" alt="vscode"></a></span></p> 
+          <p>It’s also possible to specify the width using <code>scaledwidth</code> (for PDF/HTML) or <code>width</code> and <code>height</code> (for HTML only).</p> 
          </div> 
          <div class="paragraph"> 
-          <p>to make the image clickable, add in the <code>link</code> attribute:</p> 
+          <p>For example:</p> 
          </div> 
-         <div class="paragraph"> 
-          <p>It’s also possible to specify the width using <code>scaledwidth</code> (for PDF/HTML) or <code>width</code> and <code>height</code> (for HTML only).</p> 
+         <div class="literalblock"> 
+          <div class="content"> 
+           <pre>image:_images/vscode.png[link="_images/vscode.png",width="800px"]</pre> 
+          </div> 
          </div> 
         </div> 
         <div class="sect2"> 
@@ -4438,14 +4431,15 @@ public class SomeClass
           <p>Use the <code>include:</code> macro to break up a document into multiple sections.</p> 
          </div> 
          <div class="paragraph"> 
-          <p>For example, the <a href="../../setting-up/concepts/concepts.html">concepts</a> document is broken into several files:</p> 
+          <p>For example, this <a href="#">developers' guide</a> document is broken into several files:</p> 
          </div> 
          <div class="literalblock"> 
           <div class="content"> 
-           <pre>concepts.adoc
-_concepts_why-a-new-platform.adoc
-_concepts_ci-as-a-service.adoc
-_concepts_git-intro.adoc</pre> 
+           <pre>dg.adoc
+_dg_ide.adoc
+_dg_hints-and-tips.adoc
+_dg_building-isis.adoc
+...</pre> 
           </div> 
          </div> 
          <div class="paragraph"> 
@@ -4456,9 +4450,10 @@ _concepts_git-intro.adoc</pre>
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
-           <pre class="CodeRay highlight"><code data-lang="asciidoc">include::_concepts_why-a-new-platform.adoc[leveloffset=+1]
-include::_concepts_ci-as-a-service.adoc[leveloffset=+1]
-include::_concepts_git-intro.adoc[leveloffset=+1]</code></pre> 
+           <pre class="CodeRay highlight"><code data-lang="asciidoc">include::_dg_ide.adoc[leveloffset=+1]
+include::_dg_hints-and-tips.adoc[leveloffset=+1]
+include::_dg_building-isis.adoc[leveloffset=+1]
+...</code></pre> 
           </div> 
          </div> 
          <div class="paragraph"> 
@@ -4477,22 +4472,22 @@ include::_concepts_git-intro.adoc[leveloffset=+1]</code></pre>
           </ul> 
          </div> 
          <div class="paragraph"> 
-          <p>For example, <code>concepts.adoc</code> is:</p> 
+          <p>For example, <code>dg.adoc</code> is:</p> 
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
-           <pre class="CodeRay highlight"><code data-lang="asciidoc">[[concepts]]
-= Concepts
+           <pre class="CodeRay highlight"><code data-lang="asciidoc">[[dg]]
+= Developers' Guide
 ...</code></pre> 
           </div> 
          </div> 
          <div class="paragraph"> 
-          <p>while its child document <code>_concepts_why-a-new-platform.adoc</code> starts with:</p> 
+          <p>while its child document <code>_dg_ide.adoc</code> starts with:</p> 
          </div> 
          <div class="listingblock"> 
           <div class="content"> 
-           <pre class="CodeRay highlight"><code data-lang="asciidoc">[[_concepts_why-a-new-platform]]
-= Why a new platform?
+           <pre class="CodeRay highlight"><code data-lang="asciidoc">[[_dg_ide]]
+= Using an IDE
 ...</code></pre> 
           </div> 
          </div> 


[04/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugvro/ugvro.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugvro/ugvro.pdf b/content/versions/SNAPSHOT/guides/ugvro/ugvro.pdf
index 37e8d9b..4bc7389 100644
--- a/content/versions/SNAPSHOT/guides/ugvro/ugvro.pdf
+++ b/content/versions/SNAPSHOT/guides/ugvro/ugvro.pdf
@@ -4,8 +4,8 @@
 << /Title (Restful Objects Viewer)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108231509+00'00')
-/ModDate (D:20180108231509+00'00')
+/CreationDate (D:20180213131254+00'00')
+/ModDate (D:20180213131254+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/ugvw/ugvw.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/ugvw/ugvw.html b/content/versions/SNAPSHOT/guides/ugvw/ugvw.html
index 227deef..347824f 100644
--- a/content/versions/SNAPSHOT/guides/ugvw/ugvw.html
+++ b/content/versions/SNAPSHOT/guides/ugvw/ugvw.html
@@ -1365,24 +1365,39 @@ table.CodeRay td.code>pre{padding:0}
          <div class="paragraph"> 
           <p>The <code>Xxx.layout.xml</code> file is just the serialized form of a <a href="../rgcms/rgcms.html#_rgcms_classes_layout"><code>Grid</code></a> layout class defined within Apache Isis' applib. These are JAXB-annotated classes with corresponding XSD schemas; the upshot of that is that IDEs such as IntelliJ and Eclipse can provide "intellisense", making iteasy to author such layout files.</p> 
          </div> 
-         <div class="admonitionblock note"> 
-          <table> 
-           <tbody>
-            <tr> 
-             <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
-             <td class="content"> 
-              <div class="paragraph"> 
-               <p>It is also possible to describe layouts using a <code>.layout.json</code> file. However, <code>.layout.json</code> support is deprecated; the <code>.layout.xml</code> file also enables much more sophisticated layouts than those afforded by <code>.layout.json</code>.</p> 
-              </div> 
-              <div class="paragraph"> 
-               <p>If you have an application with older <code>.layout.json</code> files, then it is possible to download initial <code>.layout.xml</code> files using the <a href="../rgsvc/rgsvc.html#_rgsvc_metadata-api_LayoutService"><code>LayoutService</code></a> (exposed as an action on the prototyping menu). The <code>.layout.json</code> file will be ignored once a <code>.layout.xml</code> file is present.</p> 
-              </div> </td> 
-            </tr> 
-           </tbody>
-          </table> 
+         <div class="sect3"> 
+          <h4 id="_search_algorithm_library_support">3.2.1. Search Algorithm (Library Support)</h4> 
+          <div class="paragraph"> 
+           <p>For a given domain object <code>Xxx</code> the framework initially searches for a file (on the classpath) called <code>Xxx.layout.xml</code>.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>If this can’t be found, then the framework will search for a file named <code>Xxx.layout.fallback.xml</code>. If present, this will be used instead.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>This therefore allows libraries that provide a domain entities/view models (for example, the (non-ASF) <a href="http://platform.incode.org">Incode Platform</a> modules) to define the UI of these objects using a layout file, while still allowing the consuming application to override that layout if it so requires.</p> 
+          </div> 
+          <div class="admonitionblock note"> 
+           <table> 
+            <tbody>
+             <tr> 
+              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+              <td class="content"> 
+               <div class="paragraph"> 
+                <p>It is also possible to describe layouts using a <code>.layout.json</code> file. However, <code>.layout.json</code> support is deprecated; the <code>.layout.xml</code> file also enables much more sophisticated layouts than those afforded by <code>.layout.json</code>.</p> 
+               </div> 
+               <div class="paragraph"> 
+                <p>If you have an application with older <code>.layout.json</code> files, then it is possible to download initial <code>.layout.xml</code> files using the <a href="../rgsvc/rgsvc.html#_rgsvc_metadata-api_LayoutService"><code>LayoutService</code></a> (exposed as an action on the prototyping menu).</p> 
+               </div> 
+               <div class="paragraph"> 
+                <p>The <code>.layout.json</code> file will be ignored once a <code>.layout.xml</code> file is present.</p> 
+               </div> </td> 
+             </tr> 
+            </tbody>
+           </table> 
+          </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_grids_vs_components">3.2.1. Grids vs Components</h4> 
+          <h4 id="_grids_vs_components">3.2.2. Grids vs Components</h4> 
           <div class="paragraph"> 
            <p>The layout file distinguishes between two types of element:</p> 
           </div> 
@@ -1400,13 +1415,13 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_screencast">3.2.2. Screencast</h4> 
+          <h4 id="_screencast">3.2.3. Screencast</h4> 
           <div class="paragraph"> 
            <p>This <a href="https://www.youtube.com/watch?v=MxewC5Pve5k">screencast</a> describes the feature.</p> 
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_examples">3.2.3. Examples</h4> 
+          <h4 id="_examples">3.2.4. Examples</h4> 
           <div class="paragraph"> 
            <p>Probably the easiest way to understand dynamic XML layouts is by example. For this we’ll use the <code>ToDoItem</code> from the (non-ASF) <a href="http://github.com/isisaddons/isis-app-todoapp">Isis addons' todoapp</a>:</p> 
           </div> 
@@ -1570,7 +1585,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__ugvw_layout_file-based_unreferenced">3.2.4. Unreferenced Members</h4> 
+          <h4 id="__ugvw_layout_file-based_unreferenced">3.2.5. Unreferenced Members</h4> 
           <div class="paragraph"> 
            <p>As noted in the preceding discussion, several of the grid’s regions have either an <code>unreferencedActions</code>, <code>unreferencedCollections</code> or <code>unreferencedProperties</code> attribute.</p> 
           </div> 
@@ -1598,7 +1613,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_more_advanced_features">3.2.5. More advanced features</h4> 
+          <h4 id="_more_advanced_features">3.2.6. More advanced features</h4> 
           <div class="paragraph"> 
            <p>This section decribes a number of more features useful in more complex layouts.</p> 
           </div> 
@@ -1731,7 +1746,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_migrating_from_earlier_versions">3.2.6. Migrating from earlier versions</h4> 
+          <h4 id="_migrating_from_earlier_versions">3.2.7. Migrating from earlier versions</h4> 
           <div class="paragraph"> 
            <p>As noted earlier on, it is possible to download layout XML files using the <a href="../rgsvc/rgsvc.html#_rgsvc_metadata-api_LayoutService"><code>LayoutService</code></a> (exposed on the prototyping menu); this will download a ZIP file of layout XML files for all domain entities and view models. Alternatively the layout XML for a single domain object can be downloaded using the <a href="../rgcms/rgcms.html#_rgcms_classes_mixins_Object">mixin action</a> (contributed to every domain object).</p> 
           </div> 
@@ -1803,7 +1818,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_domain_services">3.2.7. Domain Services</h4> 
+          <h4 id="_domain_services">3.2.8. Domain Services</h4> 
           <div class="paragraph"> 
            <p>For more information about layouts, see:</p> 
           </div> 
@@ -1816,7 +1831,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_required_updates_to_the_dom_project_s_pom_xml">3.2.8. Required updates to the dom project’s pom.xml</h4> 
+          <h4 id="_required_updates_to_the_dom_project_s_pom_xml">3.2.9. Required updates to the dom project’s pom.xml</h4> 
           <div class="paragraph"> 
            <p>Any <code>.layout.xml</code> files must be compiled and available in the classpath. Ensure the following is defined in the dom project’s <code>pom.xml</code>:</p> 
           </div> 


[12/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.html b/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.html
index d57005e..c71d9d0 100644
--- a/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.html
+++ b/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.html
@@ -1239,6 +1239,39 @@ table.CodeRay td.code>pre{padding:0}
             <td class="tableblock halign-left valign-top">
              <div>
               <div class="paragraph"> 
+               <p><code>isis.reflector.validator.</code><br> <code>checkModuleExtent</code></p> 
+              </div>
+             </div></td> 
+            <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br> (<code>true</code>)</p></td> 
+            <td class="tableblock halign-left valign-top">
+             <div>
+              <div class="paragraph"> 
+               <p>Whether to check that all domain objects discovered reside under the top-level module of the app manifest.</p> 
+              </div> 
+              <div class="paragraph"> 
+               <p>Note that the application must be bootstrapped using an <code>AppManifest2</code>.</p> 
+              </div>
+             </div></td> 
+           </tr> 
+           <tr> 
+            <td class="tableblock halign-left valign-top">
+             <div>
+              <div class="paragraph"> 
+               <p><code>isis.reflector.validator.</code><br> <code>ensureUniqueObjectTypes</code></p> 
+              </div>
+             </div></td> 
+            <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br> (<code>true</code>)</p></td> 
+            <td class="tableblock halign-left valign-top">
+             <div>
+              <div class="paragraph"> 
+               <p>Whether to ensure that all classes in the metamodel map to a different object type (typically either as explicitly specified using <code>@DomainObject(objectType=…​)</code>, or their class name as a fallback).</p> 
+              </div>
+             </div></td> 
+           </tr> 
+           <tr> 
+            <td class="tableblock halign-left valign-top">
+             <div>
+              <div class="paragraph"> 
                <p><code>isis.reflector.validator.</code><br> <code>explicitObjectType</code></p> 
               </div>
              </div></td> 

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.pdf b/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.pdf
index 723d9bb..7be9a3d 100644
--- a/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.pdf
+++ b/content/versions/SNAPSHOT/guides/rgcfg/rgcfg.pdf
@@ -4,8 +4,8 @@
 << /Title <feff0043006f0072006500200043006f006e0066006900672019006e002000500072006f0070006500720074006900650073>
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108230304+00'00')
-/ModDate (D:20180108230304+00'00')
+/CreationDate (D:20180213131030+00'00')
+/ModDate (D:20180213131030+00'00')
 >>
 endobj
 2 0 obj
@@ -13126,7 +13126,7 @@ endobj
 >>
 endobj
 113 0 obj
-<< /Length 23745
+<< /Length 26892
 >>
 stream
 q
@@ -14028,6 +14028,18 @@ f
 297.640 165.065 249.400 94.680 re
 f
 0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+48.240 98.945 166.267 66.120 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+214.507 98.945 83.133 66.120 re
+f
+0.000 0.000 0.000 scn
+0.976 0.976 0.976 scn
+297.640 98.945 249.400 66.120 re
+f
+0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
 48.240 498.110 m
@@ -14785,6 +14797,217 @@ BT
 ET
 
 0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 165.065 m
+214.507 165.065 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 98.945 m
+214.507 98.945 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 165.315 m
+48.240 98.695 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 165.315 m
+214.507 98.695 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+51.24 149.318 Td
+/F3.0 10.5 Tf
+<697369732e7265666c6563746f722e76616c696461746f722e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+51.24 135.038 Td
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+51.24 135.038 Td
+/F3.0 10.5 Tf
+<636865636b4d6f64756c65457874656e74> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 165.065 m
+297.640 165.065 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 98.945 m
+297.640 98.945 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 165.315 m
+214.507 98.695 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 165.315 m
+297.640 98.695 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+217.50650040000002 149.318 Td
+/F3.0 10.5 Tf
+<74727565> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+238.50650040000002 149.318 Td
+/F1.0 10.5 Tf
+<2c> Tj
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+241.13150040000002 149.318 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+217.50650040000002 135.038 Td
+/F1.0 10.5 Tf
+<28> Tj
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+221.13950040000003 135.038 Td
+/F3.0 10.5 Tf
+<74727565> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+242.13950040000003 135.038 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 165.065 m
+547.040 165.065 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 98.945 m
+547.040 98.945 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 165.315 m
+297.640 98.695 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+547.040 165.315 m
+547.040 98.695 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+300.6395012 149.318 Td
+/F1.0 10.5 Tf
+<5768657468657220746f20636865636b207468617420616c6c20646f6d61696e206f626a65637473> Tj
+ET
+
+
+BT
+300.6395012 135.038 Td
+/F1.0 10.5 Tf
+<646973636f76657265642072657369646520756e6465722074686520746f702d6c6576656c206d6f64756c65206f66> Tj
+ET
+
+
+BT
+300.6395012 120.75800000000001 Td
+/F1.0 10.5 Tf
+<74686520617070206d616e69666573742e204e6f7465207468617420746865206170706c69636174696f6e206d757374> Tj
+ET
+
+
+BT
+300.6395012 106.47800000000001 Td
+/F1.0 10.5 Tf
+[<626520626f6f74737472> 20.01953125 <6170706564207573696e6720616e20>] TJ
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+429.652796121875 106.47800000000001 Td
+/F3.0 10.5 Tf
+<4170704d616e696665737432> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+492.652796121875 106.47800000000001 Td
+/F1.0 10.5 Tf
+<2e> Tj
+ET
+
+0.000 0.000 0.000 scn
 q
 0.000 0.000 0.000 scn
 0.000 0.000 0.000 SCN
@@ -14874,7 +15097,7 @@ endobj
 >>
 endobj
 120 0 obj
-<< /Length 28220
+<< /Length 28430
 >>
 stream
 q
@@ -14892,87 +15115,87 @@ f
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 488.010 166.267 266.040 re
+48.240 673.650 166.267 80.400 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.507 488.010 83.133 266.040 re
+214.507 673.650 83.133 80.400 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.640 488.010 249.400 266.040 re
+297.640 673.650 249.400 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-48.240 436.170 166.267 51.840 re
+48.240 407.610 166.267 266.040 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-214.507 436.170 83.133 51.840 re
+214.507 407.610 83.133 266.040 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-297.640 436.170 249.400 51.840 re
+297.640 407.610 249.400 266.040 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 384.330 166.267 51.840 re
+48.240 355.770 166.267 51.840 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.507 384.330 83.133 51.840 re
+214.507 355.770 83.133 51.840 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.640 384.330 249.400 51.840 re
+297.640 355.770 249.400 51.840 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-48.240 318.210 166.267 66.120 re
+48.240 303.930 166.267 51.840 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-214.507 318.210 83.133 66.120 re
+214.507 303.930 83.133 51.840 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-297.640 318.210 249.400 66.120 re
+297.640 303.930 249.400 51.840 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 252.090 166.267 66.120 re
+48.240 237.810 166.267 66.120 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.507 252.090 83.133 66.120 re
+214.507 237.810 83.133 66.120 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.640 252.090 249.400 66.120 re
+297.640 237.810 249.400 66.120 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-48.240 185.970 166.267 66.120 re
+48.240 171.690 166.267 66.120 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-214.507 185.970 83.133 66.120 re
+214.507 171.690 83.133 66.120 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-297.640 185.970 249.400 66.120 re
+297.640 171.690 249.400 66.120 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 105.570 166.267 80.400 re
+48.240 105.570 166.267 66.120 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.507 105.570 83.133 80.400 re
+214.507 105.570 83.133 66.120 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.640 105.570 249.400 80.400 re
+297.640 105.570 249.400 66.120 re
 f
 0.000 0.000 0.000 scn
 0.5 w
@@ -15103,20 +15326,20 @@ S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 488.010 m
-214.507 488.010 l
+48.240 673.650 m
+214.507 673.650 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 48.240 754.300 m
-48.240 487.760 l
+48.240 673.400 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 214.507 754.300 m
-214.507 487.760 l
+214.507 673.400 l
 S
 [ ] 0 d
 1 w
@@ -15126,7 +15349,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 738.3029999999999 Td
+51.24 738.3030000000001 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -15135,16 +15358,16 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 724.0229999999999 Td
+51.24 724.0230000000001 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 724.0229999999999 Td
+51.24 724.0230000000001 Td
 /F3.0 10.5 Tf
-<6578706c696369744f626a65637454797065> Tj
+<656e73757265556e697175654f626a6563745479706573> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -15158,20 +15381,20 @@ S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 488.010 m
-297.640 488.010 l
+214.507 673.650 m
+297.640 673.650 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 214.507 754.300 m
-214.507 487.760 l
+214.507 673.400 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 297.640 754.300 m
-297.640 487.760 l
+297.640 673.400 l
 S
 [ ] 0 d
 1 w
@@ -15181,7 +15404,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 738.3029999999999 Td
+217.50650040000002 738.3030000000001 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -15190,7 +15413,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 738.3029999999999 Td
+238.50650040000002 738.3030000000001 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -15199,7 +15422,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 738.3029999999999 Td
+241.13150040000002 738.3030000000001 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -15208,7 +15431,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 724.0229999999999 Td
+217.50650040000002 724.0230000000001 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -15217,16 +15440,16 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 724.0229999999999 Td
+221.13950040000003 724.0230000000001 Td
 /F3.0 10.5 Tf
-<66616c7365> Tj
+<74727565> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.200 0.200 0.200 scn
 
 BT
-247.38950040000003 724.0229999999999 Td
+242.13950040000003 724.0230000000001 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -15240,20 +15463,20 @@ S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 488.010 m
-547.040 488.010 l
+297.640 673.650 m
+547.040 673.650 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 297.640 754.300 m
-297.640 487.760 l
+297.640 673.400 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 547.040 754.300 m
-547.040 487.760 l
+547.040 673.400 l
 S
 [ ] 0 d
 1 w
@@ -15261,78 +15484,311 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 738.3029999999999 Td
+300.6395012 738.3030000000001 Td
 /F1.0 10.5 Tf
-<5768657468657220746f20636865636b20746861742074686520636c6173732068617320616e206f626a656374> Tj
+<5768657468657220746f20656e73757265207468617420616c6c20636c617373657320696e20746865> Tj
 ET
 
 
 BT
-300.6395012 724.0229999999999 Td
+300.6395012 724.0230000000001 Td
 /F1.0 10.5 Tf
-[<74797065206578706c696369746c792073706563696669656420736f6d65686f77> 69.82421875 <2e20546865206f626a656374>] TJ
+<6d6574616d6f64656c206d617020746f206120646966666572656e74206f626a6563742074797065> Tj
 ET
 
 
 BT
-300.6395012 709.7429999999999 Td
+300.6395012 709.7430000000002 Td
 /F1.0 10.5 Tf
-[<7479706520697320757365642062> 20.01953125 <7920746865206672> 20.01953125 <616d65776f726b20617320616e20616c69617320666f7220746865>] TJ
+<287479706963616c6c7920656974686572206173206578706c696369746c7920737065636966696564207573696e67> Tj
 ET
 
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-300.6395012 695.463 Td
-/F1.0 10.5 Tf
-<6f626a656374d57320636f6e637265746520636c6173733b206974206973206f6e652070617274206f6620746865> Tj
+300.6395012 695.4630000000002 Td
+/F3.0 10.5 Tf
+<40446f6d61696e4f626a656374286f626a656374547970653d> Tj
 ET
 
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-300.6395012 681.183 Td
-/F1.0 10.5 Tf
-<6f626a656374d573204f494420616e642063616e206265207365656e20696e207468652055524c73206f6620746865> Tj
+431.8895012 695.4630000000002 Td
+/F6.0 10.5 Tf
+<c9> Tj
 ET
 
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-300.6395012 666.9029999999999 Td
-/F1.0 10.5 Tf
-[<5769636b> 20.01953125 <657420766965776572>] TJ
+442.3895012 695.4630000000002 Td
+/F3.0 10.5 Tf
+<29> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.200 0.200 0.200 scn
 
 BT
-372.742796121875 666.9029999999999 Td
+447.6395012 695.4630000000002 Td
 /F1.0 10.5 Tf
-<20616e6420> Tj
+<2c206f7220746865697220636c617373> Tj
 ET
 
-0.259 0.545 0.792 scn
-0.259 0.545 0.792 SCN
 
 BT
-397.291796121875 666.9029999999999 Td
+300.6395012 681.1830000000002 Td
 /F1.0 10.5 Tf
-<5265737466756c204f626a6563747320766965776572> Tj
+<6e616d6520617320612066616c6c6261636b292e> Tj
 ET
 
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-508.675796121875 666.9029999999999 Td
-/F1.0 10.5 Tf
-<2c20616e64206973> Tj
-ET
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 673.650 m
+214.507 673.650 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 407.610 m
+214.507 407.610 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 673.900 m
+48.240 407.360 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 673.900 m
+214.507 407.360 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+51.24 657.903 Td
+/F3.0 10.5 Tf
+<697369732e7265666c6563746f722e76616c696461746f722e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+51.24 643.623 Td
+ET
 
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
-300.6395012 652.6229999999999 Td
+51.24 643.623 Td
+/F3.0 10.5 Tf
+<6578706c696369744f626a65637454797065> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 673.650 m
+297.640 673.650 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 407.610 m
+297.640 407.610 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 673.900 m
+214.507 407.360 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 673.900 m
+297.640 407.360 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+217.50650040000002 657.903 Td
+/F3.0 10.5 Tf
+<74727565> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+238.50650040000002 657.903 Td
+/F1.0 10.5 Tf
+<2c> Tj
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+241.13150040000002 657.903 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+217.50650040000002 643.623 Td
+/F1.0 10.5 Tf
+<28> Tj
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+221.13950040000003 643.623 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+247.38950040000003 643.623 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 673.650 m
+547.040 673.650 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 407.610 m
+547.040 407.610 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 673.900 m
+297.640 407.360 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+547.040 673.900 m
+547.040 407.360 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+300.6395012 657.903 Td
+/F1.0 10.5 Tf
+<5768657468657220746f20636865636b20746861742074686520636c6173732068617320616e206f626a656374> Tj
+ET
+
+
+BT
+300.6395012 643.623 Td
+/F1.0 10.5 Tf
+[<74797065206578706c696369746c792073706563696669656420736f6d65686f77> 69.82421875 <2e20546865206f626a656374>] TJ
+ET
+
+
+BT
+300.6395012 629.3430000000001 Td
+/F1.0 10.5 Tf
+[<7479706520697320757365642062> 20.01953125 <7920746865206672> 20.01953125 <616d65776f726b20617320616e20616c69617320666f7220746865>] TJ
+ET
+
+
+BT
+300.6395012 615.0630000000001 Td
+/F1.0 10.5 Tf
+<6f626a656374d57320636f6e637265746520636c6173733b206974206973206f6e652070617274206f6620746865> Tj
+ET
+
+
+BT
+300.6395012 600.7830000000001 Td
+/F1.0 10.5 Tf
+<6f626a656374d573204f494420616e642063616e206265207365656e20696e207468652055524c73206f6620746865> Tj
+ET
+
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+BT
+300.6395012 586.503 Td
+/F1.0 10.5 Tf
+[<5769636b> 20.01953125 <657420766965776572>] TJ
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+372.742796121875 586.503 Td
+/F1.0 10.5 Tf
+<20616e6420> Tj
+ET
+
+0.259 0.545 0.792 scn
+0.259 0.545 0.792 SCN
+
+BT
+397.291796121875 586.503 Td
+/F1.0 10.5 Tf
+<5265737466756c204f626a6563747320766965776572> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+508.675796121875 586.503 Td
+/F1.0 10.5 Tf
+<2c20616e64206973> Tj
+ET
+
+
+BT
+300.6395012 572.2230000000001 Td
 /F1.0 10.5 Tf
 <656e636f64656420696e2074686520> Tj
 ET
@@ -15341,7 +15797,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-376.9955012 652.6229999999999 Td
+376.9955012 572.2230000000001 Td
 /F3.0 10.5 Tf
 <426f6f6b6d61726b> Tj
 ET
@@ -15350,7 +15806,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-418.9955012 652.6229999999999 Td
+418.9955012 572.2230000000001 Td
 /F1.0 10.5 Tf
 [<732072657475726e65642062> 20.01953125 <7920746865>] TJ
 ET
@@ -15359,7 +15815,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-300.6395012 638.343 Td
+300.6395012 557.9430000000001 Td
 /F3.0 10.5 Tf
 <426f6f6b6d61726b53657276696365> Tj
 ET
@@ -15368,77 +15824,77 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-379.3895012 638.343 Td
+379.3895012 557.9430000000001 Td
 /F1.0 10.5 Tf
 [<2e20496e207468697320776173206974206d61> 20.01953125 <7920616c736f206265>] TJ
 ET
 
 
 BT
-300.6395012 624.0629999999999 Td
+300.6395012 543.663 Td
 /F1.0 10.5 Tf
 <7065727369737465642c20666f72206578616d706c6520696e20706f6c796d6f7270686963> Tj
 ET
 
 
 BT
-300.6395012 609.7829999999999 Td
+300.6395012 529.383 Td
 /F1.0 10.5 Tf
 <6173736f63696174696f6e73206f7220636f6d6d616e64206f72206175646974696e67207461626c65732e204966> Tj
 ET
 
 
 BT
-300.6395012 595.5029999999999 Td
+300.6395012 515.1030000000001 Td
 /F1.0 10.5 Tf
 [<746865206f626a6563742074797065206973206e6f7420737065636966696564206578706c696369746c79> 89.84375 <2c207468656e>] TJ
 ET
 
 
 BT
-300.6395012 581.223 Td
+300.6395012 500.8230000000001 Td
 /F1.0 10.5 Tf
 [<746869732063616e2063617573652064617461206d696772> 20.01953125 <6174696f6e206973737565732069662074686520636c617373>] TJ
 ET
 
 
 BT
-300.6395012 566.943 Td
+300.6395012 486.54300000000006 Td
 /F1.0 10.5 Tf
 <69732073756273657175656e746c79207265666163746f726564202865672072656e616d65642c206f72> Tj
 ET
 
 
 BT
-300.6395012 552.6629999999999 Td
+300.6395012 472.26300000000003 Td
 /F1.0 10.5 Tf
 <6d6f76656420746f206120646966666572656e74207061636b616765292e2054686973> Tj
 ET
 
 
 BT
-300.6395012 538.3829999999999 Td
+300.6395012 457.98300000000006 Td
 /F1.0 10.5 Tf
 [<636f6e6669677572> 20.01953125 <6174696f6e2070726f70657274792063616e206265207573656420746f20656e666f7263652061>] TJ
 ET
 
 
 BT
-300.6395012 524.103 Td
+300.6395012 443.7030000000001 Td
 /F1.0 10.5 Tf
 [<72756c65207468617420746865206f626a6563742074797065206d75737420616c7761> 20.01953125 <7973206265>] TJ
 ET
 
 
 BT
-300.6395012 509.8229999999999 Td
+300.6395012 429.42300000000006 Td
 /F1.0 10.5 Tf
 <7370656369666965642028666f722070657273697374656e7420656e74697469657320616e642076696577> Tj
 ET
 
 
 BT
-300.6395012 495.5429999999999 Td
+300.6395012 415.14300000000003 Td
 /F1.0 10.5 Tf
 <6d6f64656c73292e> Tj
 ET
@@ -15446,26 +15902,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 488.010 m
-214.507 488.010 l
+48.240 407.610 m
+214.507 407.610 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 436.170 m
-214.507 436.170 l
+48.240 355.770 m
+214.507 355.770 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 488.260 m
-48.240 435.920 l
+48.240 407.860 m
+48.240 355.520 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 488.260 m
-214.507 435.920 l
+214.507 407.860 m
+214.507 355.520 l
 S
 [ ] 0 d
 1 w
@@ -15475,7 +15931,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 472.263 Td
+51.24 391.8630000000001 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -15484,14 +15940,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 457.98299999999995 Td
+51.24 377.5830000000001 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 457.98299999999995 Td
+51.24 377.5830000000001 Td
 /F3.0 10.5 Tf
 <6a617862566965774d6f64656c> Tj
 ET
@@ -15500,14 +15956,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 443.703 Td
+51.24 363.3030000000001 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 443.703 Td
+51.24 363.3030000000001 Td
 /F3.0 10.5 Tf
 <4e6f744162737472616374> Tj
 ET
@@ -15517,26 +15973,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 488.010 m
-297.640 488.010 l
+214.507 407.610 m
+297.640 407.610 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 436.170 m
-297.640 436.170 l
+214.507 355.770 m
+297.640 355.770 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 488.260 m
-214.507 435.920 l
+214.507 407.860 m
+214.507 355.520 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 488.260 m
-297.640 435.920 l
+297.640 407.860 m
+297.640 355.520 l
 S
 [ ] 0 d
 1 w
@@ -15546,7 +16002,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 472.263 Td
+217.50650040000002 391.8630000000001 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -15555,7 +16011,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 472.263 Td
+238.50650040000002 391.8630000000001 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -15564,7 +16020,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 472.263 Td
+241.13150040000002 391.8630000000001 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -15573,7 +16029,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 457.98299999999995 Td
+217.50650040000002 377.5830000000001 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -15582,7 +16038,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 457.98299999999995 Td
+221.13950040000003 377.5830000000001 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -15591,7 +16047,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-242.13950040000003 457.98299999999995 Td
+242.13950040000003 377.5830000000001 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -15599,26 +16055,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 488.010 m
-547.040 488.010 l
+297.640 407.610 m
+547.040 407.610 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 436.170 m
-547.040 436.170 l
+297.640 355.770 m
+547.040 355.770 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 488.260 m
-297.640 435.920 l
+297.640 407.860 m
+297.640 355.520 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-547.040 488.260 m
-547.040 435.920 l
+547.040 407.860 m
+547.040 355.520 l
 S
 [ ] 0 d
 1 w
@@ -15626,7 +16082,7 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 472.263 Td
+300.6395012 391.8630000000001 Td
 /F1.0 10.5 Tf
 <456e7375726573207468617420616c6c20> Tj
 ET
@@ -15635,7 +16091,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-381.1640012 472.263 Td
+381.1640012 391.8630000000001 Td
 /F1.0 10.5 Tf
 <4a4158422076696577206d6f64656c> Tj
 ET
@@ -15644,7 +16100,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-466.8965012 472.263 Td
+466.8965012 391.8630000000001 Td
 /F1.0 10.5 Tf
 <7320617265206e6f74> Tj
 ET
@@ -15653,7 +16109,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-300.6395012 457.98299999999995 Td
+300.6395012 377.5830000000001 Td
 /F3.0 10.5 Tf
 <6162737472616374> Tj
 ET
@@ -15662,7 +16118,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-342.6395012 457.98299999999995 Td
+342.6395012 377.5830000000001 Td
 /F1.0 10.5 Tf
 <2028736f2063616e20626520696e7374616e746961746564292e> Tj
 ET
@@ -15670,26 +16126,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 436.170 m
-214.507 436.170 l
+48.240 355.770 m
+214.507 355.770 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 384.330 m
-214.507 384.330 l
+48.240 303.930 m
+214.507 303.930 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 436.420 m
-48.240 384.080 l
+48.240 356.020 m
+48.240 303.680 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 436.420 m
-214.507 384.080 l
+214.507 356.020 m
+214.507 303.680 l
 S
 [ ] 0 d
 1 w
@@ -15699,7 +16155,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 420.42299999999994 Td
+51.24 340.0230000000001 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -15708,14 +16164,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 406.1429999999999 Td
+51.24 325.74300000000005 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 406.1429999999999 Td
+51.24 325.74300000000005 Td
 /F3.0 10.5 Tf
 <6a617862566965774d6f64656c> Tj
 ET
@@ -15724,14 +16180,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 391.86299999999994 Td
+51.24 311.4630000000001 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 391.86299999999994 Td
+51.24 311.4630000000001 Td
 /F3.0 10.5 Tf
 <4e6f74496e6e6572436c617373> Tj
 ET
@@ -15741,26 +16197,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 436.170 m
-297.640 436.170 l
+214.507 355.770 m
+297.640 355.770 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 384.330 m
-297.640 384.330 l
+214.507 303.930 m
+297.640 303.930 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 436.420 m
-214.507 384.080 l
+214.507 356.020 m
+214.507 303.680 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 436.420 m
-297.640 384.080 l
+297.640 356.020 m
+297.640 303.680 l
 S
 [ ] 0 d
 1 w
@@ -15770,7 +16226,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 420.42299999999994 Td
+217.50650040000002 340.0230000000001 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -15779,7 +16235,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 420.42299999999994 Td
+238.50650040000002 340.0230000000001 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -15788,7 +16244,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 420.42299999999994 Td
+241.13150040000002 340.0230000000001 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -15797,7 +16253,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 406.1429999999999 Td
+217.50650040000002 325.74300000000005 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -15806,7 +16262,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 406.1429999999999 Td
+221.13950040000003 325.74300000000005 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -15815,7 +16271,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-242.13950040000003 406.1429999999999 Td
+242.13950040000003 325.74300000000005 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -15823,26 +16279,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 436.170 m
-547.040 436.170 l
+297.640 355.770 m
+547.040 355.770 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 384.330 m
-547.040 384.330 l
+297.640 303.930 m
+547.040 303.930 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 436.420 m
-297.640 384.080 l
+297.640 356.020 m
+297.640 303.680 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-547.040 436.420 m
-547.040 384.080 l
+547.040 356.020 m
+547.040 303.680 l
 S
 [ ] 0 d
 1 w
@@ -15850,7 +16306,7 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 420.42299999999994 Td
+300.6395012 340.0230000000001 Td
 /F1.0 10.5 Tf
 <456e7375726573207468617420616c6c20> Tj
 ET
@@ -15859,7 +16315,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-381.1640012 420.42299999999994 Td
+381.1640012 340.0230000000001 Td
 /F1.0 10.5 Tf
 <4a4158422076696577206d6f64656c> Tj
 ET
@@ -15868,14 +16324,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-466.8965012 420.42299999999994 Td
+466.8965012 340.0230000000001 Td
 /F1.0 10.5 Tf
 <7320617265206e6f7420696e6e6572> Tj
 ET
 
 
 BT
-300.6395012 406.1429999999999 Td
+300.6395012 325.74300000000005 Td
 /F1.0 10.5 Tf
 <636c61737365732028736f2063616e20626520696e7374616e746961746564292e> Tj
 ET
@@ -15883,26 +16339,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 384.330 m
-214.507 384.330 l
+48.240 303.930 m
+214.507 303.930 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 318.210 m
-214.507 318.210 l
+48.240 237.810 m
+214.507 237.810 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 384.580 m
-48.240 317.960 l
+48.240 304.180 m
+48.240 237.560 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 384.580 m
-214.507 317.960 l
+214.507 304.180 m
+214.507 237.560 l
 S
 [ ] 0 d
 1 w
@@ -15912,7 +16368,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 368.5829999999999 Td
+51.24 288.18300000000005 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -15921,14 +16377,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 354.3029999999999 Td
+51.24 273.903 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 354.3029999999999 Td
+51.24 273.903 Td
 /F3.0 10.5 Tf
 <6a617862566965774d6f64656c> Tj
 ET
@@ -15937,14 +16393,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 340.0229999999999 Td
+51.24 259.62300000000005 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 340.0229999999999 Td
+51.24 259.62300000000005 Td
 /F3.0 10.5 Tf
 <4e6f417267436f6e7374727563746f72> Tj
 ET
@@ -15954,26 +16410,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 384.330 m
-297.640 384.330 l
+214.507 303.930 m
+297.640 303.930 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 318.210 m
-297.640 318.210 l
+214.507 237.810 m
+297.640 237.810 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 384.580 m
-214.507 317.960 l
+214.507 304.180 m
+214.507 237.560 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 384.580 m
-297.640 317.960 l
+297.640 304.180 m
+297.640 237.560 l
 S
 [ ] 0 d
 1 w
@@ -15983,7 +16439,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 368.5829999999999 Td
+217.50650040000002 288.18300000000005 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -15992,7 +16448,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 368.5829999999999 Td
+238.50650040000002 288.18300000000005 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -16001,7 +16457,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 368.5829999999999 Td
+241.13150040000002 288.18300000000005 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -16010,7 +16466,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 354.3029999999999 Td
+217.50650040000002 273.903 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -16019,7 +16475,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 354.3029999999999 Td
+221.13950040000003 273.903 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -16028,7 +16484,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-247.38950040000003 354.3029999999999 Td
+247.38950040000003 273.903 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -16036,26 +16492,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 384.330 m
-547.040 384.330 l
+297.640 303.930 m
+547.040 303.930 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 318.210 m
-547.040 318.210 l
+297.640 237.810 m
+547.040 237.810 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 384.580 m
-297.640 317.960 l
+297.640 304.180 m
+297.640 237.560 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-547.040 384.580 m
-547.040 317.960 l
+547.040 304.180 m
+547.040 237.560 l
 S
 [ ] 0 d
 1 w
@@ -16063,7 +16519,7 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 368.5829999999999 Td
+300.6395012 288.18300000000005 Td
 /F1.0 10.5 Tf
 <456e7375726573207468617420616c6c20> Tj
 ET
@@ -16072,7 +16528,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-381.1640012 368.5829999999999 Td
+381.1640012 288.18300000000005 Td
 /F1.0 10.5 Tf
 <4a4158422076696577206d6f64656c> Tj
 ET
@@ -16081,7 +16537,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-466.8965012 368.5829999999999 Td
+466.8965012 288.18300000000005 Td
 /F1.0 10.5 Tf
 <732068617665206120> Tj
 ET
@@ -16090,7 +16546,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-509.9465012 368.5829999999999 Td
+509.9465012 288.18300000000005 Td
 /F3.0 10.5 Tf
 <7075626c6963> Tj
 ET
@@ -16099,26 +16555,26 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-541.4465012000001 368.5829999999999 Td
+541.4465012000001 288.18300000000005 Td
 ET
 
 
 BT
-300.6395012 354.3029999999999 Td
+300.6395012 273.903 Td
 /F1.0 10.5 Tf
 <6e6f2d61726720636f6e7374727563746f722e> Tj
 ET
 
 
 BT
-300.6395012 340.0229999999999 Td
+300.6395012 259.62300000000005 Td
 /F1.0 10.5 Tf
 <546869732069736ed5742061637475616c6c79207265717569726564202868656e6365206e6f7420656e61626c6564> Tj
 ET
 
 
 BT
-300.6395012 325.74299999999994 Td
+300.6395012 245.34300000000005 Td
 /F1.0 10.5 Tf
 [<62> 20.01953125 <792064656661756c742920627574206973206172677561626c7920676f6f64207072> 20.01953125 <6163746963652e>] TJ
 ET
@@ -16126,26 +16582,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 318.210 m
-214.507 318.210 l
+48.240 237.810 m
+214.507 237.810 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 252.090 m
-214.507 252.090 l
+48.240 171.690 m
+214.507 171.690 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 318.460 m
-48.240 251.840 l
+48.240 238.060 m
+48.240 171.440 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 318.460 m
-214.507 251.840 l
+214.507 238.060 m
+214.507 171.440 l
 S
 [ ] 0 d
 1 w
@@ -16155,7 +16611,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 302.4629999999999 Td
+51.24 222.06300000000007 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -16164,14 +16620,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 288.1829999999999 Td
+51.24 207.78300000000007 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 288.1829999999999 Td
+51.24 207.78300000000007 Td
 /F3.0 10.5 Tf
 <6a617862566965774d6f64656c> Tj
 ET
@@ -16180,14 +16636,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 273.9029999999999 Td
+51.24 193.50300000000007 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 273.9029999999999 Td
+51.24 193.50300000000007 Td
 /F3.0 10.5 Tf
 <5265666572656e63655479706541646170746572> Tj
 ET
@@ -16197,26 +16653,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 318.210 m
-297.640 318.210 l
+214.507 237.810 m
+297.640 237.810 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 252.090 m
-297.640 252.090 l
+214.507 171.690 m
+297.640 171.690 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 318.460 m
-214.507 251.840 l
+214.507 238.060 m
+214.507 171.440 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 318.460 m
-297.640 251.840 l
+297.640 238.060 m
+297.640 171.440 l
 S
 [ ] 0 d
 1 w
@@ -16226,7 +16682,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 302.4629999999999 Td
+217.50650040000002 222.06300000000007 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -16235,7 +16691,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 302.4629999999999 Td
+238.50650040000002 222.06300000000007 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -16244,7 +16700,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 302.4629999999999 Td
+241.13150040000002 222.06300000000007 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -16253,7 +16709,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 288.1829999999999 Td
+217.50650040000002 207.78300000000007 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -16262,7 +16718,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 288.1829999999999 Td
+221.13950040000003 207.78300000000007 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -16271,7 +16727,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-242.13950040000003 288.1829999999999 Td
+242.13950040000003 207.78300000000007 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -16279,26 +16735,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 318.210 m
-547.040 318.210 l
+297.640 237.810 m
+547.040 237.810 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 252.090 m
-547.040 252.090 l
+297.640 171.690 m
+547.040 171.690 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 318.460 m
-297.640 251.840 l
+297.640 238.060 m
+297.640 171.440 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-547.040 318.460 m
-547.040 251.840 l
+547.040 238.060 m
+547.040 171.440 l
 S
 [ ] 0 d
 1 w
@@ -16306,7 +16762,7 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 302.4629999999999 Td
+300.6395012 222.06300000000007 Td
 /F1.0 10.5 Tf
 <456e7375726573207468617420666f7220616c6c20> Tj
 ET
@@ -16315,7 +16771,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-398.7620012 302.4629999999999 Td
+398.7620012 222.06300000000007 Td
 /F1.0 10.5 Tf
 <4a4158422076696577206d6f64656c> Tj
 ET
@@ -16324,21 +16780,21 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-484.4945012 302.4629999999999 Td
+484.4945012 222.06300000000007 Td
 /F1.0 10.5 Tf
 <732077697468> Tj
 ET
 
 
 BT
-300.6395012 288.1829999999999 Td
+300.6395012 207.78300000000007 Td
 /F1.0 10.5 Tf
 <70726f706572746965732074686174207265666572656e63652070657273697374656e7420656e7469746965732c2074686174> Tj
 ET
 
 
 BT
-300.6395012 273.9029999999999 Td
+300.6395012 193.50300000000007 Td
 /F1.0 10.5 Tf
 <74686f736520656e7469746965732061726520616e6e6f74617465642077697468> Tj
 ET
@@ -16347,7 +16803,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-300.6395012 259.62299999999993 Td
+300.6395012 179.22300000000007 Td
 /F3.0 10.5 Tf
 <40586d6c4a6176615479706541646170746572> Tj
 ET
@@ -16356,7 +16812,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-400.3895012 259.62299999999993 Td
+400.3895012 179.22300000000007 Td
 /F1.0 10.5 Tf
 <2e> Tj
 ET
@@ -16364,26 +16820,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 252.090 m
-214.507 252.090 l
+48.240 171.690 m
+214.507 171.690 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 185.970 m
-214.507 185.970 l
+48.240 105.570 m
+214.507 105.570 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 252.340 m
-48.240 185.720 l
+48.240 171.940 m
+48.240 105.320 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 252.340 m
-214.507 185.720 l
+214.507 171.940 m
+214.507 105.320 l
 S
 [ ] 0 d
 1 w
@@ -16393,7 +16849,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 236.34299999999993 Td
+51.24 155.94300000000007 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -16402,14 +16858,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 222.06299999999993 Td
+51.24 141.66300000000007 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 222.06299999999993 Td
+51.24 141.66300000000007 Td
 /F3.0 10.5 Tf
 <6a617862566965774d6f64656c> Tj
 ET
@@ -16418,14 +16874,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 207.78299999999993 Td
+51.24 127.38300000000007 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 207.78299999999993 Td
+51.24 127.38300000000007 Td
 /F3.0 10.5 Tf
 <4461746554696d655479706541646170746572> Tj
 ET
@@ -16435,26 +16891,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 252.090 m
-297.640 252.090 l
+214.507 171.690 m
+297.640 171.690 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 185.970 m
-297.640 185.970 l
+214.507 105.570 m
+297.640 105.570 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 252.340 m
-214.507 185.720 l
+214.507 171.940 m
+214.507 105.320 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 252.340 m
-297.640 185.720 l
+297.640 171.940 m
+297.640 105.320 l
 S
 [ ] 0 d
 1 w
@@ -16464,7 +16920,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 236.34299999999993 Td
+217.50650040000002 155.94300000000007 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -16473,7 +16929,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 236.34299999999993 Td
+238.50650040000002 155.94300000000007 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -16482,7 +16938,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 236.34299999999993 Td
+241.13150040000002 155.94300000000007 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -16491,7 +16947,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 222.06299999999993 Td
+217.50650040000002 141.66300000000007 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -16500,7 +16956,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 222.06299999999993 Td
+221.13950040000003 141.66300000000007 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -16509,7 +16965,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-242.13950040000003 222.06299999999993 Td
+242.13950040000003 141.66300000000007 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -16517,26 +16973,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 252.090 m
-547.040 252.090 l
+297.640 171.690 m
+547.040 171.690 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 185.970 m
-547.040 185.970 l
+297.640 105.570 m
+547.040 105.570 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 252.340 m
-297.640 185.720 l
+297.640 171.940 m
+297.640 105.320 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-547.040 252.340 m
-547.040 185.720 l
+547.040 171.940 m
+547.040 105.320 l
 S
 [ ] 0 d
 1 w
@@ -16544,7 +17000,7 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 236.34299999999993 Td
+300.6395012 155.94300000000007 Td
 /F1.0 10.5 Tf
 <456e7375726573207468617420666f7220616c6c20> Tj
 ET
@@ -16553,7 +17009,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-398.7620012 236.34299999999993 Td
+398.7620012 155.94300000000007 Td
 /F1.0 10.5 Tf
 <4a4158422076696577206d6f64656c> Tj
 ET
@@ -16562,21 +17018,21 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-484.4945012 236.34299999999993 Td
+484.4945012 155.94300000000007 Td
 /F1.0 10.5 Tf
 <732077697468> Tj
 ET
 
 
 BT
-300.6395012 222.06299999999993 Td
+300.6395012 141.66300000000007 Td
 /F1.0 10.5 Tf
 <70726f70657274696573207468617420617265206461746573206f722074696d65732c20746861742074686f7365> Tj
 ET
 
 
 BT
-300.6395012 207.78299999999993 Td
+300.6395012 127.38300000000007 Td
 /F1.0 10.5 Tf
 <70726f706572746965732061726520616e6e6f74617465642077697468> Tj
 ET
@@ -16585,7 +17041,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-300.6395012 193.50299999999993 Td
+300.6395012 113.10300000000007 Td
 /F3.0 10.5 Tf
 <40586d6c4a6176615479706541646170746572> Tj
 ET
@@ -16594,223 +17050,12 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-400.3895012 193.50299999999993 Td
+400.3895012 113.10300000000007 Td
 /F1.0 10.5 Tf
 <2e> Tj
 ET
 
 0.000 0.000 0.000 scn
-0.5 w
-0.867 0.867 0.867 SCN
-48.240 185.970 m
-214.507 185.970 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-48.240 105.570 m
-214.507 105.570 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-48.240 186.220 m
-48.240 105.320 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-214.507 186.220 m
-214.507 105.320 l
-S
-[ ] 0 d
-1 w
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-51.24 170.22299999999993 Td
-/F3.0 10.5 Tf
-<697369732e7265666c6563746f722e76616c696461746f722e> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-51.24 155.94299999999993 Td
-ET
-
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-51.24 155.94299999999993 Td
-/F3.0 10.5 Tf
-<6a646f716c46726f6d436c61757365> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-0.000 0.000 0.000 scn
-0.5 w
-0.867 0.867 0.867 SCN
-214.507 185.970 m
-297.640 185.970 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-214.507 105.570 m
-297.640 105.570 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-214.507 186.220 m
-214.507 105.320 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-297.640 186.220 m
-297.640 105.320 l
-S
-[ ] 0 d
-1 w
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-217.50650040000002 170.22299999999993 Td
-/F3.0 10.5 Tf
-<74727565> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-238.50650040000002 170.22299999999993 Td
-/F1.0 10.5 Tf
-<2c> Tj
-ET
-
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-241.13150040000002 170.22299999999993 Td
-/F3.0 10.5 Tf
-<66616c7365> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-217.50650040000002 155.94299999999993 Td
-/F1.0 10.5 Tf
-<28> Tj
-ET
-
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-221.13950040000003 155.94299999999993 Td
-/F3.0 10.5 Tf
-<74727565> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-242.13950040000003 155.94299999999993 Td
-/F1.0 10.5 Tf
-<29> Tj
-ET
-
-0.000 0.000 0.000 scn
-0.5 w
-0.867 0.867 0.867 SCN
-297.640 185.970 m
-547.040 185.970 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-297.640 105.570 m
-547.040 105.570 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-297.640 186.220 m
-297.640 105.320 l
-S
-[ ] 0 d
-0.5 w
-0.867 0.867 0.867 SCN
-547.040 186.220 m
-547.040 105.320 l
-S
-[ ] 0 d
-1 w
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-300.6395012 170.22299999999993 Td
-/F1.0 10.5 Tf
-<5768657468657220746f20636865636b20746861742074686520636c617373206e616d6520696e204a444f514c> Tj
-ET
-
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-300.6395012 155.94299999999993 Td
-/F3.0 10.5 Tf
-<46524f4d> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-321.6395012 155.94299999999993 Td
-/F1.0 10.5 Tf
-<20636c61757365206d617463686573206f72206973206120737570657274797065206f662074686520636c617373> Tj
-ET
-
-
-BT
-300.6395012 141.66299999999993 Td
-/F1.0 10.5 Tf
-<6f6e20776869636820697420697320616e6e6f74617465642e> Tj
-ET
-
-
-BT
-300.6395012 127.38299999999992 Td
-/F1.0 10.5 Tf
-[<4f6e6c79202253454c454354222071756572696573206172652076616c6964617465643b2022555044> 20.01953125 <41> 60.05859375 <544522>] TJ
-ET
-
-
-BT
-300.6395012 113.10299999999992 Td
-/F1.0 10.5 Tf
-<7175657269657320657463206172652073696d706c792069676e6f7265642e> Tj
-ET
-
-0.000 0.000 0.000 scn
 q
 0.000 0.000 0.000 scn
 0.000 0.000 0.000 SCN
@@ -16844,6 +17089,7 @@ endobj
 /Font << /F2.0 16 0 R
 /F3.0 17 0 R
 /F1.0 8 0 R
+/F6.0 110 0 R
 >>
 /XObject << /Stamp1 202 0 R
 >>
@@ -16858,7 +17104,7 @@ endobj
 /URI (../ugvw/ugvw.pdf)
 >>
 /Subtype /Link
-/Rect [300.6395012 663.837 372.742796121875 678.117]
+/Rect [300.6395012 583.4370000000001 372.742796121875 597.7170000000001]
 /Type /Annot
 >>
 endobj
@@ -16869,7 +17115,7 @@ endobj
 /URI (../ugvro/ugvro.pdf)
 >>
 /Subtype /Link
-/Rect [397.291796121875 663.837 508.675796121875 678.117]
+/Rect [397.291796121875 583.4370000000001 508.675796121875 597.7170000000001]
 /Type /Annot
 >>
 endobj
@@ -16880,7 +17126,7 @@ endobj
 /URI (../rgsvc/rgsvc.pdf#_rgsvc_integration-api_BookmarkService)
 >>
 /Subtype /Link
-/Rect [300.6395012 636.8729999999999 379.3895012 647.3729999999999]
+/Rect [300.6395012 556.4730000000001 379.3895012 566.9730000000001]
 /Type /Annot
 >>
 endobj
@@ -16891,7 +17137,7 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_programming-model_view-models_jaxb)
 >>
 /Subtype /Link
-/Rect [381.1640012 469.197 466.8965012 483.477]
+/Rect [381.1640012 388.79700000000014 466.8965012 403.0770000000001]
 /Type /Annot
 >>
 endobj
@@ -16902,7 +17148,7 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_programming-model_view-models_jaxb)
 >>
 /Subtype /Link
-/Rect [381.1640012 417.35699999999997 466.8965012 431.63699999999994]
+/Rect [381.1640012 336.9570000000001 466.8965012 351.2370000000001]
 /Type /Annot
 >>
 endobj
@@ -16913,7 +17159,7 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_programming-model_view-models_jaxb)
 >>
 /Subtype /Link
-/Rect [381.1640012 365.51699999999994 466.8965012 379.7969999999999]
+/Rect [381.1640012 285.1170000000001 466.8965012 299.39700000000005]
 /Type /Annot
 >>
 endobj
@@ -16924,7 +17170,7 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_programming-model_view-models_jaxb)
 >>
 /Subtype /Link
-/Rect [398.7620012 299.39699999999993 484.4945012 313.6769999999999]
+/Rect [398.7620012 218.99700000000007 484.4945012 233.27700000000007]
 /Type /Annot
 >>
 endobj
@@ -16935,12 +17181,12 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_programming-model_view-models_jaxb)
 >>
 /Subtype /Link
-/Rect [398.7620012 233.27699999999993 484.4945012 247.55699999999993]
+/Rect [398.7620012 152.87700000000007 484.4945012 167.15700000000007]
 /Type /Annot
 >>
 endobj
 130 0 obj
-<< /Length 17619
+<< /Length 20953
 >>
 stream
 q
@@ -16970,39 +17216,51 @@ f
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-48.240 564.690 166.267 108.960 re
+48.240 593.250 166.267 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-214.507 564.690 83.133 108.960 re
+214.507 593.250 83.133 80.400 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-297.640 564.690 249.400 108.960 re
+297.640 593.250 249.400 80.400 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-48.240 398.610 166.267 166.080 re
+48.240 484.290 166.267 108.960 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-214.507 398.610 83.133 166.080 re
+214.507 484.290 83.133 108.960 re
 f
 0.000 0.000 0.000 scn
 1.000 1.000 1.000 scn
-297.640 398.610 249.400 166.080 re
+297.640 484.290 249.400 108.960 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-48.240 289.650 166.267 108.960 re
+48.240 318.210 166.267 166.080 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-214.507 289.650 83.133 108.960 re
+214.507 318.210 83.133 166.080 re
 f
 0.000 0.000 0.000 scn
 0.976 0.976 0.976 scn
-297.640 289.650 249.400 108.960 re
+297.640 318.210 249.400 166.080 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+48.240 209.250 166.267 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+214.507 209.250 83.133 108.960 re
+f
+0.000 0.000 0.000 scn
+1.000 1.000 1.000 scn
+297.640 209.250 249.400 108.960 re
 f
 0.000 0.000 0.000 scn
 0.5 w
@@ -17174,7 +17432,7 @@ ET
 BT
 51.24 724.0229999999999 Td
 /F3.0 10.5 Tf
-<6a646f716c5661726961626c6573436c61757365> Tj
+<6a646f716c46726f6d436c61757365> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -17302,55 +17560,37 @@ ET
 BT
 300.6395012 724.0229999999999 Td
 /F3.0 10.5 Tf
-<5641524941424c4553> Tj
+<46524f4d> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.200 0.200 0.200 scn
 
 BT
-347.8895012 724.0229999999999 Td
+321.6395012 724.0229999999999 Td
 /F1.0 10.5 Tf
-<20636c617573652069732061207265636f676e697a656420636c6173732e> Tj
+<20636c61757365206d617463686573206f72206973206120737570657274797065206f662074686520636c617373> Tj
 ET
 
 
 BT
 300.6395012 709.7429999999999 Td
 /F1.0 10.5 Tf
-<4e6f7465207468617420616c74686f756768204a444f514c2073796e74617820737570706f727473> Tj
+<6f6e20776869636820697420697320616e6e6f74617465642e> Tj
 ET
 
 
 BT
 300.6395012 695.463 Td
 /F1.0 10.5 Tf
-<6d756c7469706c6520> Tj
-ET
-
-0.694 0.129 0.275 scn
-0.694 0.129 0.275 SCN
-
-BT
-345.5375012 695.463 Td
-/F3.0 10.5 Tf
-<5641524941424c4553> Tj
-ET
-
-0.000 0.000 0.000 SCN
-0.200 0.200 0.200 scn
-
-BT
-392.78750119999995 695.463 Td
-/F1.0 10.5 Tf
-<20636c61737365732c2063757272656e746c7920746865> Tj
+[<4f6e6c79202253454c454354222071756572696573206172652076616c6964617465643b2022555044> 20.01953125 <41> 60.05859375 <544522>] TJ
 ET
 
 
 BT
 300.6395012 681.183 Td
 /F1.0 10.5 Tf
-<76616c696461746f72206f6e6c7920636865636b732074686520666972737420636c617373206e616d6520666f756e642e> Tj
+<7175657269657320657463206172652073696d706c792069676e6f7265642e> Tj
 ET
 
 0.000 0.000 0.000 scn
@@ -17362,20 +17602,20 @@ S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 564.690 m
-214.507 564.690 l
+48.240 593.250 m
+214.507 593.250 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 48.240 673.900 m
-48.240 564.440 l
+48.240 593.000 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 214.507 673.900 m
-214.507 564.440 l
+214.507 593.000 l
 S
 [ ] 0 d
 1 w
@@ -17403,7 +17643,7 @@ ET
 BT
 51.24 643.6229999999998 Td
 /F3.0 10.5 Tf
-<6d6978696e734f6e6c79> Tj
+<6a646f716c5661726961626c6573436c61757365> Tj
 ET
 
 0.000 0.000 0.000 SCN
@@ -17417,20 +17657,20 @@ S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 564.690 m
-297.640 564.690 l
+214.507 593.250 m
+297.640 593.250 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 214.507 673.900 m
-214.507 564.440 l
+214.507 593.000 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 297.640 673.900 m
-297.640 564.440 l
+297.640 593.000 l
 S
 [ ] 0 d
 1 w
@@ -17478,14 +17718,14 @@ ET
 BT
 221.13950040000003 643.6229999999998 Td
 /F3.0 10.5 Tf
-<66616c7365> Tj
+<74727565> Tj
 ET
 
 0.000 0.000 0.000 SCN
 0.200 0.200 0.200 scn
 
 BT
-247.38950040000003 643.6229999999998 Td
+242.13950040000003 643.6229999999998 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -17499,20 +17739,20 @@ S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 564.690 m
-547.040 564.690 l
+297.640 593.250 m
+547.040 593.250 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 297.640 673.900 m
-297.640 564.440 l
+297.640 593.000 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
 547.040 673.900 m
-547.040 564.440 l
+547.040 593.000 l
 S
 [ ] 0 d
 1 w
@@ -17522,47 +17762,276 @@ S
 BT
 300.6395012 657.9029999999998 Td
 /F1.0 10.5 Tf
-[<4d6978696e732070726f7669646520612073696d706c65722070726f6772> 20.01953125 <616d6d696e67206d6f64656c20746f>] TJ
+<5768657468657220746f20636865636b20746861742074686520636c617373206e616d6520696e204a444f514c> Tj
 ET
 
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
 
 BT
 300.6395012 643.6229999999998 Td
+/F3.0 10.5 Tf
+<5641524941424c4553> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+347.8895012 643.6229999999998 Td
 /F1.0 10.5 Tf
-<636f6e747269627574656420646f6d61696e2073657276696365732e> Tj
+<20636c617573652069732061207265636f676e697a656420636c6173732e> Tj
 ET
 
 
 BT
 300.6395012 629.3429999999998 Td
 /F1.0 10.5 Tf
-[<496620656e61626c65642c207468697320636f6e6669677572> 20.01953125 <6174696f6e2070726f70657274792077696c6c207472656174>] TJ
+<4e6f7465207468617420616c74686f756768204a444f514c2073796e74617820737570706f727473> Tj
 ET
 
 
 BT
 300.6395012 615.0629999999999 Td
 /F1.0 10.5 Tf
-[<616e> 20.01953125 <7920636f6e7472696275746564207365727669636520617320696e76616c69642e20546869732069732062> 20.01953125 <79>] TJ
+<6d756c7469706c6520> Tj
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+345.5375012 615.0629999999999 Td
+/F3.0 10.5 Tf
+<5641524941424c4553> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+392.78750119999995 615.0629999999999 Td
+/F1.0 10.5 Tf
+<20636c61737365732c2063757272656e746c7920746865> Tj
 ET
 
 
 BT
 300.6395012 600.7829999999999 Td
 /F1.0 10.5 Tf
+<76616c696461746f72206f6e6c7920636865636b732074686520666972737420636c617373206e616d6520666f756e642e> Tj
+ET
+
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 593.250 m
+214.507 593.250 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 484.290 m
+214.507 484.290 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+48.240 593.500 m
+48.240 484.040 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 593.500 m
+214.507 484.040 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+51.24 577.5029999999997 Td
+/F3.0 10.5 Tf
+<697369732e7265666c6563746f722e76616c696461746f722e> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+51.24 563.2229999999997 Td
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+51.24 563.2229999999997 Td
+/F3.0 10.5 Tf
+<6d6978696e734f6e6c79> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 593.250 m
+297.640 593.250 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 484.290 m
+297.640 484.290 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+214.507 593.500 m
+214.507 484.040 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 593.500 m
+297.640 484.040 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+217.50650040000002 577.5029999999997 Td
+/F3.0 10.5 Tf
+<74727565> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+238.50650040000002 577.5029999999997 Td
+/F1.0 10.5 Tf
+<2c> Tj
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+241.13150040000002 577.5029999999997 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+217.50650040000002 563.2229999999997 Td
+/F1.0 10.5 Tf
+<28> Tj
+ET
+
+0.694 0.129 0.275 scn
+0.694 0.129 0.275 SCN
+
+BT
+221.13950040000003 563.2229999999997 Td
+/F3.0 10.5 Tf
+<66616c7365> Tj
+ET
+
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+247.38950040000003 563.2229999999997 Td
+/F1.0 10.5 Tf
+<29> Tj
+ET
+
+0.000 0.000 0.000 scn
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 593.250 m
+547.040 593.250 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 484.290 m
+547.040 484.290 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+297.640 593.500 m
+297.640 484.040 l
+S
+[ ] 0 d
+0.5 w
+0.867 0.867 0.867 SCN
+547.040 593.500 m
+547.040 484.040 l
+S
+[ ] 0 d
+1 w
+0.000 0.000 0.000 SCN
+0.200 0.200 0.200 scn
+
+BT
+300.6395012 577.5029999999997 Td
+/F1.0 10.5 Tf
+[<4d6978696e732070726f7669646520612073696d706c65722070726f6772> 20.01953125 <616d6d696e67206d6f64656c20746f>] TJ
+ET
+
+
+BT
+300.6395012 563.2229999999997 Td
+/F1.0 10.5 Tf
+<636f6e747269627574656420646f6d61696e2073657276696365732e> Tj
+ET
+
+
+BT
+300.6395012 548.9429999999998 Td
+/F1.0 10.5 Tf
+[<496620656e61626c65642c207468697320636f6e6669677572> 20.01953125 <6174696f6e2070726f70657274792077696c6c207472656174>] TJ
+ET
+
+
+BT
+300.6395012 534.6629999999998 Td
+/F1.0 10.5 Tf
+[<616e> 20.01953125 <7920636f6e7472696275746564207365727669636520617320696e76616c69642e20546869732069732062> 20.01953125 <79>] TJ
+ET
+
+
+BT
+300.6395012 520.3829999999998 Td
+/F1.0 10.5 Tf
 [<7761> 20.01953125 <79206f6620706f737369626c79206465707265636174696e6720616e64206576656e7475616c6c79>] TJ
 ET
 
 
 BT
-300.6395012 586.5029999999998 Td
+300.6395012 506.1029999999997 Td
 /F1.0 10.5 Tf
 <6d6f76696e6720636f6e74726962757465642073657276696365732066726f6d2074686520417061636865> Tj
 ET
 
 
 BT
-300.6395012 572.2229999999998 Td
+300.6395012 491.82299999999975 Td
 /F1.0 10.5 Tf
 [<497369732070726f6772> 20.01953125 <616d6d696e67206d6f64656c2e>] TJ
 ET
@@ -17570,26 +18039,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 564.690 m
-214.507 564.690 l
+48.240 484.290 m
+214.507 484.290 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 398.610 m
-214.507 398.610 l
+48.240 318.210 m
+214.507 318.210 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 564.940 m
-48.240 398.360 l
+48.240 484.540 m
+48.240 317.960 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 564.940 m
-214.507 398.360 l
+214.507 484.540 m
+214.507 317.960 l
 S
 [ ] 0 d
 1 w
@@ -17599,7 +18068,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 548.9429999999998 Td
+51.24 468.5429999999997 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -17608,14 +18077,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 534.6629999999998 Td
+51.24 454.2629999999997 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 534.6629999999998 Td
+51.24 454.2629999999997 Td
 /F3.0 10.5 Tf
 <6e6f506172616d734f6e6c79> Tj
 ET
@@ -17625,26 +18094,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 564.690 m
-297.640 564.690 l
+214.507 484.290 m
+297.640 484.290 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 398.610 m
-297.640 398.610 l
+214.507 318.210 m
+297.640 318.210 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 564.940 m
-214.507 398.360 l
+214.507 484.540 m
+214.507 317.960 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 564.940 m
-297.640 398.360 l
+297.640 484.540 m
+297.640 317.960 l
 S
 [ ] 0 d
 1 w
@@ -17654,7 +18123,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 548.9429999999998 Td
+217.50650040000002 468.5429999999997 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -17663,7 +18132,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 548.9429999999998 Td
+238.50650040000002 468.5429999999997 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -17672,7 +18141,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 548.9429999999998 Td
+241.13150040000002 468.5429999999997 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -17681,7 +18150,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 534.6629999999998 Td
+217.50650040000002 454.2629999999997 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -17690,7 +18159,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 534.6629999999998 Td
+221.13950040000003 454.2629999999997 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -17699,7 +18168,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-247.38950040000003 534.6629999999998 Td
+247.38950040000003 454.2629999999997 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -17707,26 +18176,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 564.690 m
-547.040 564.690 l
+297.640 484.290 m
+547.040 484.290 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 398.610 m
-547.040 398.610 l
+297.640 318.210 m
+547.040 318.210 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 564.940 m
-297.640 398.360 l
+297.640 484.540 m
+297.640 317.960 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-547.040 564.940 m
-547.040 398.360 l
+547.040 484.540 m
+547.040 317.960 l
 S
 [ ] 0 d
 1 w
@@ -17734,7 +18203,7 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 548.9429999999998 Td
+300.6395012 468.5429999999997 Td
 /F1.0 10.5 Tf
 <5768656e20736561726368696e6720666f722020> Tj
 ET
@@ -17743,7 +18212,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-405.21950119999997 548.9429999999998 Td
+405.21950119999997 468.5429999999997 Td
 /F3.0 10.5 Tf
 <64697361626c655878782829> Tj
 ET
@@ -17752,7 +18221,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-468.21950119999997 548.9429999999998 Td
+468.21950119999997 468.5429999999997 Td
 /F1.0 10.5 Tf
 <206f7220> Tj
 ET
@@ -17761,7 +18230,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-484.6625012 548.9429999999998 Td
+484.6625012 468.5429999999997 Td
 /F3.0 10.5 Tf
 <686964655878782829> Tj
 ET
@@ -17770,68 +18239,68 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-531.9125012 548.9429999999998 Td
+531.9125012 468.5429999999997 Td
 ET
 
 
 BT
-300.6395012 534.6629999999998 Td
+300.6395012 454.2629999999997 Td
 /F1.0 10.5 Tf
 <6d6574686f64732c207768657468657220746f20736561726368206f6e6c7920666f7220746865206e6f2d> Tj
 ET
 
 
 BT
-300.6395012 520.3829999999998 Td
+300.6395012 439.9829999999997 Td
 /F1.0 10.5 Tf
 [<706172> 20.01953125 <616d2076657273696f6e20286f7220616c736f20666f7220737570706f7274696e67206d6574686f6473>] TJ
 ET
 
 
 BT
-300.6395012 506.10299999999984 Td
+300.6395012 425.70299999999975 Td
 /F1.0 10.5 Tf
 [<74686174206d617463682074686520706172> 20.01953125 <616d65746572207479706573206f662074686520616374696f6e292e>] TJ
 ET
 
 
 BT
-300.6395012 491.8229999999998 Td
+300.6395012 411.4229999999997 Td
 /F1.0 10.5 Tf
 <496620656e61626c6564207468656e2077696c6c206e6f742073656172636820666f7220737570706f7274696e67> Tj
 ET
 
 
 BT
-300.6395012 477.5429999999998 Td
+300.6395012 397.1429999999997 Td
 /F1.0 10.5 Tf
 <6d6574686f647320776974682074686520657861637420736574206f6620617267756d656e747320617320746865> Tj
 ET
 
 
 BT
-300.6395012 463.2629999999998 Td
+300.6395012 382.8629999999997 Td
 /F1.0 10.5 Tf
 [<6d6574686f642069742077617320737570706f7274696e672028616e6420616e> 20.01953125 <7920737570706f7274696e67>] TJ
 ET
 
 
 BT
-300.6395012 448.98299999999983 Td
+300.6395012 368.58299999999974 Td
 /F1.0 10.5 Tf
 [<6d6574686f647320746861742068617665206164646974696f6e616c20706172> 20.01953125 <616d65746572732077696c6c206265>] TJ
 ET
 
 
 BT
-300.6395012 434.7029999999998 Td
+300.6395012 354.3029999999997 Td
 /F1.0 10.5 Tf
 <7472656174656420617320696e76616c6964292e204e6f74652074686174207468697320696e20656666656374206d65616e73> Tj
 ET
 
 
 BT
-300.6395012 420.4229999999998 Td
+300.6395012 340.0229999999997 Td
 /F1.0 10.5 Tf
 <7468617420> Tj
 ET
@@ -17840,7 +18309,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-323.3090012 420.4229999999998 Td
+323.3090012 340.0229999999997 Td
 /F1.0 10.5 Tf
 <6d6978696e73> Tj
 ET
@@ -17849,7 +18318,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-357.4970012 420.4229999999998 Td
+357.4970012 340.0229999999997 Td
 /F1.0 10.5 Tf
 <206d757374206265207573656420696e7374656164206f6620> Tj
 ET
@@ -17858,7 +18327,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-480.7565012 420.4229999999998 Td
+480.7565012 340.0229999999997 Td
 /F1.0 10.5 Tf
 <636f6e7472696275746564> Tj
 ET
@@ -17869,7 +18338,7 @@ ET
 0.259 0.545 0.792 SCN
 
 BT
-300.6395012 406.1429999999998 Td
+300.6395012 325.7429999999997 Td
 /F1.0 10.5 Tf
 <7365727669636573> Tj
 ET
@@ -17878,7 +18347,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-340.8860012 406.1429999999998 Td
+340.8860012 325.7429999999997 Td
 /F1.0 10.5 Tf
 <2e> Tj
 ET
@@ -17886,26 +18355,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 398.610 m
-214.507 398.610 l
+48.240 318.210 m
+214.507 318.210 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 289.650 m
-214.507 289.650 l
+48.240 209.250 m
+214.507 209.250 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-48.240 398.860 m
-48.240 289.400 l
+48.240 318.460 m
+48.240 209.000 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 398.860 m
-214.507 289.400 l
+214.507 318.460 m
+214.507 209.000 l
 S
 [ ] 0 d
 1 w
@@ -17915,7 +18384,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-51.24 382.8629999999999 Td
+51.24 302.4629999999998 Td
 /F3.0 10.5 Tf
 <697369732e7265666c6563746f722e76616c696461746f722e> Tj
 ET
@@ -17924,14 +18393,14 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-51.24 368.58299999999986 Td
+51.24 288.18299999999977 Td
 ET
 
 0.694 0.129 0.275 scn
 0.694 0.129 0.275 SCN
 
 BT
-51.24 368.58299999999986 Td
+51.24 288.18299999999977 Td
 /F3.0 10.5 Tf
 <73657276696365416374696f6e734f6e6c79> Tj
 ET
@@ -17941,26 +18410,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 398.610 m
-297.640 398.610 l
+214.507 318.210 m
+297.640 318.210 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 289.650 m
-297.640 289.650 l
+214.507 209.250 m
+297.640 209.250 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-214.507 398.860 m
-214.507 289.400 l
+214.507 318.460 m
+214.507 209.000 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 398.860 m
-297.640 289.400 l
+297.640 318.460 m
+297.640 209.000 l
 S
 [ ] 0 d
 1 w
@@ -17970,7 +18439,7 @@ S
 0.694 0.129 0.275 SCN
 
 BT
-217.50650040000002 382.8629999999999 Td
+217.50650040000002 302.4629999999998 Td
 /F3.0 10.5 Tf
 <74727565> Tj
 ET
@@ -17979,7 +18448,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-238.50650040000002 382.8629999999999 Td
+238.50650040000002 302.4629999999998 Td
 /F1.0 10.5 Tf
 <2c> Tj
 ET
@@ -17988,7 +18457,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-241.13150040000002 382.8629999999999 Td
+241.13150040000002 302.4629999999998 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -17997,7 +18466,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-217.50650040000002 368.58299999999986 Td
+217.50650040000002 288.18299999999977 Td
 /F1.0 10.5 Tf
 <28> Tj
 ET
@@ -18006,7 +18475,7 @@ ET
 0.694 0.129 0.275 SCN
 
 BT
-221.13950040000003 368.58299999999986 Td
+221.13950040000003 288.18299999999977 Td
 /F3.0 10.5 Tf
 <66616c7365> Tj
 ET
@@ -18015,7 +18484,7 @@ ET
 0.200 0.200 0.200 scn
 
 BT
-247.38950040000003 368.58299999999986 Td
+247.38950040000003 288.18299999999977 Td
 /F1.0 10.5 Tf
 <29> Tj
 ET
@@ -18023,26 +18492,26 @@ ET
 0.000 0.000 0.000 scn
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 398.610 m
-547.040 398.610 l
+297.640 318.210 m
+547.040 318.210 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 289.650 m
-547.040 289.650 l
+297.640 209.250 m
+547.040 209.250 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-297.640 398.860 m
-297.640 289.400 l
+297.640 318.460 m
+297.640 209.000 l
 S
 [ ] 0 d
 0.5 w
 0.867 0.867 0.867 SCN
-547.040 398.860 m
-547.040 289.400 l
+547.040 318.460 m
+547.040 209.000 l
 S
 [ ] 0 d
 1 w
@@ -18050,49 +18519,49 @@ S
 0.200 0.200 0.200 scn
 
 BT
-300.6395012 382.8629999999999 Td
+300.6395012 302.4629999999998 Td
 /F1.0 10.5 Tf
 <446f6d61696e207365727669636573206172652073746174656c65737320286174206c65617374> Tj
 ET
 
 
 BT
-300.6395012 368.58299999999986 Td
+300.6395012 288.18299999999977 Td
 /F1.0 10.5 Tf
 [<636f6e6365707475616c6c792920616e6420736f2073686f756c64206e6f74206861766520616e> 20.01953125 <79>] TJ
 ET
 
 
 BT
-300.6395012 354.3029999999999 Td
+300.6395012 273.9029999999998 Td
 /F1.0 10.5 Tf
 [<70726f70657274696573206f7220636f6c6c656374696f6e733b20616e> 20.01953125 <7920746861742061726520646566696e6564>] TJ
 ET
 
 
 BT
-300.6395012 340.0229999999999 Td
+300.6395012 259.6229999999998 Td
 /F1.0 10.5 Tf
 [<77696c6c206e6f742062652072656e64657265642062> 20.01953125 <792074686520766965776572732e>] TJ
 ET
 
 
 BT
-300.6395012 325.7429999999999 Td
+300.6395012 245.3429999999998 Td
 /F1.0 10.5 Tf
 [<496620656e61626c65642c207468697320636f6e6669677572> 20.01953125 <6174696f6e2070726f70657274792077696c6c>] TJ
 ET
 
 
 BT
-300.6395012 311.46299999999985 Td
+300.6395012 231.0629999999998 Td
 /F1.0 10.5 Tf
 <656e73757265207468617420646f6d61696e207365727669636573206f6e6c79206465636c617265> Tj
 ET
 
 
 BT
-300.6395012 297.1829999999999 Td
+300.6395012 216.7829999999998 Td
 /F1.0 10.5 Tf
 <616374696f6e732e> Tj
 ET
@@ -18102,7 +18571,7 @@ ET
 0.200 0.200 0.200 SCN
 
 BT
-48.24 265.68599999999986 Td
+48.24 185.2859999999998 Td
 /F1.0 10.5 Tf
 <416c736f3a> Tj
 ET
@@ -18156,7 +18625,7 @@ endobj
 /URI (../rgcms/rgcms.pdf#_rgcms_methods_prefixes_disable)
 >>
 /Subtype /Link
-/Rect [405.21950119999997 547.4729999999998 468.21950119999997 557.9729999999998]
+/Rect [405.21950119999997 467.07299999999975 468.21950119999997 477.57299999999975]
 /Type /Annot
 >>
 endobj
@@ -18167,7 +18636,7 @@ endobj
 /URI (../rgcms/rgcms.pdf#_rgcms_methods_prefixes_hide)
 >>
 /Subtype /Link
-/Rect [484.6625012 547.4729999999998 531.9125012 557.9729999999998]
+/Rect [484.6625012 467.07299999999975 531.9125012 477.57299999999975]
 /Type /Annot
 >>
 endobj
@@ -18178,7 +18647,7 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_building-blocks_types-of-domain-objects_mixins)
 >>
 /Subtype /Link
-/Rect [323.3090012 417.3569999999998 357.4970012 431.63699999999983]
+/Rect [323.3090012 336.9569999999997 357.4970012 351.23699999999974]
 /Type /Annot
 >>
 endobj
@@ -18189,7 +18658,7 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_programming-model_domain-services_contributions)
 >>
 /Subtype /Link
-/Rect [480.7565012 417.3569999999998 539.5880012 431.63699999999983]
+/Rect [480.7565012 336.9569999999997 539.5880012 351.23699999999974]
 /Type /Annot
 >>
 endobj
@@ -18200,7 +18669,7 @@ endobj
 /URI (../ugfun/ugfun.pdf#_ugfun_programming-model_domain-services_contributions)
 >>
 /Subtype /Link
-/Rect [300.6395012 403.0769999999998 340.8860012 417.3569999999998]
+/Rect [300.6395012 322.67699999999974 340.8860012 336.9569999999997]
 /Type /Annot
 >>
 endobj
@@ -23585,146 +24054,146 @@ xref
 0000210452 00000 n 
 0000210682 00000 n 
 0000210919 00000 n 
-0000234719 00000 n 
-0000235015 00000 n 
-0000235232 00000 n 
-0000235449 00000 n 
-0000235674 00000 n 
-0000235731 00000 n 
-0000235961 00000 n 
-0000264236 00000 n 
-0000264551 00000 n 
-0000264726 00000 n 
-0000264908 00000 n 
-0000265139 00000 n 
-0000265353 00000 n 
-0000265589 00000 n 
-0000265824 00000 n 
-0000266059 00000 n 
-0000266295 00000 n 
-0000283969 00000 n 
-0000284260 00000 n 
-0000284498 00000 n 
-0000284719 00000 n 
-0000284966 00000 n 
-0000285214 00000 n 
-0000285461 00000 n 
-0000303175 00000 n 
-0000303471 00000 n 
-0000303529 00000 n 
-0000303737 00000 n 
-0000303967 00000 n 
-0000304196 00000 n 
-0000304425 00000 n 
-0000304482 00000 n 
-0000328891 00000 n 
-0000329211 00000 n 
-0000329434 00000 n 
-0000329649 00000 n 
-0000329864 00000 n 
-0000330084 00000 n 
-0000330329 00000 n 
-0000330387 00000 n 
-0000330608 00000 n 
-0000330846 00000 n 
-0000346997 00000 n 
-0000347301 00000 n 
-0000347535 00000 n 
-0000347581 00000 n 
-0000347786 00000 n 
-0000347988 00000 n 
-0000348194 00000 n 
-0000348445 00000 n 
-0000354037 00000 n 
-0000354304 00000 n 
-0000354350 00000 n 
-0000354480 00000 n 
-0000354601 00000 n 
-0000354726 00000 n 
-0000354852 00000 n 
-0000355007 00000 n 
-0000355155 00000 n 
-0000355312 00000 n 
-0000355460 00000 n 
-0000355621 00000 n 
-0000355773 00000 n 
-0000355935 00000 n 
-0000356090 00000 n 
-0000356259 00000 n 
-0000356421 00000 n 
-0000356584 00000 n 
-0000356748 00000 n 
-0000356911 00000 n 
-0000357067 00000 n 
-0000357235 00000 n 
-0000357394 00000 n 
-0000357567 00000 n 
-0000357741 00000 n 
-0000357915 00000 n 
-0000358092 00000 n 
-0000358260 00000 n 
-0000358430 00000 n 
-0000358598 00000 n 
-0000358777 00000 n 
-0000358967 00000 n 
-0000359157 00000 n 
-0000359329 00000 n 
-0000359501 00000 n 
-0000359689 00000 n 
-0000359877 00000 n 
-0000360055 00000 n 
-0000360233 00000 n 
-0000360520 00000 n 
-0000360598 00000 n 
-0000360803 00000 n 
-0000360995 00000 n 
-0000361288 00000 n 
-0000361463 00000 n 
-0000361724 00000 n 
-0000361957 00000 n 
-0000362209 00000 n 
-0000362459 00000 n 
-0000362703 00000 n 
-0000362984 00000 n 
-0000363180 00000 n 
-0000363427 00000 n 
-0000363620 00000 n 
-0000363840 00000 n 
-0000364032 00000 n 
-0000364209 00000 n 
-0000364445 00000 n 
-0000364706 00000 n 
-0000364930 00000 n 
-0000365097 00000 n 
-0000365348 00000 n 
-0000373510 00000 n 
-0000373726 00000 n 
-0000375089 00000 n 
-0000376153 00000 n 
-0000383019 00000 n 
-0000383240 00000 n 
-0000384603 00000 n 
-0000385690 00000 n 
-0000390641 00000 n 
-0000390855 00000 n 
-0000392218 00000 n 
-0000393286 00000 n 
-0000394508 00000 n 
-0000394719 00000 n 
-0000395027 00000 n 
-0000395942 00000 n 
-0000401488 00000 n 
-0000401714 00000 n 
-0000403077 00000 n 
-0000404165 00000 n 
-0000405561 00000 n 
-0000405779 00000 n 
-0000407142 00000 n 
+0000237866 00000 n 
+0000238162 00000 n 
+0000238379 00000 n 
+0000238596 00000 n 
+0000238821 00000 n 
+0000238878 00000 n 
+0000239108 00000 n 
+0000267593 00000 n 
+0000267922 00000 n 
+0000268117 00000 n 
+0000268319 00000 n 
+0000268550 00000 n 
+0000268785 00000 n 
+0000269019 00000 n 
+0000269254 00000 n 
+0000269490 00000 n 
+0000269726 00000 n 
+0000290734 00000 n 
+0000291025 00000 n 
+0000291265 00000 n 
+0000291488 00000 n 
+0000291735 00000 n 
+0000291983 00000 n 
+0000292231 00000 n 
+0000309945 00000 n 
+0000310241 00000 n 
+0000310299 00000 n 
+0000310507 00000 n 
+0000310737 00000 n 
+0000310966 00000 n 
+0000311195 00000 n 
+0000311252 00000 n 
+0000335661 00000 n 
+0000335981 00000 n 
+0000336204 00000 n 
+0000336419 00000 n 
+0000336634 00000 n 
+0000336854 00000 n 
+0000337099 00000 n 
+0000337157 00000 n 
+0000337378 00000 n 
+0000337616 00000 n 
+0000353767 00000 n 
+0000354071 00000 n 
+0000354305 00000 n 
+0000354351 00000 n 
+0000354556 00000 n 
+0000354758 00000 n 
+0000354964 00000 n 
+0000355215 00000 n 
+0000360807 00000 n 
+0000361074 00000 n 
+0000361120 00000 n 
+0000361250 00000 n 
+0000361371 00000 n 
+0000361496 00000 n 
+0000361622 00000 n 
+0000361777 00000 n 
+0000361925 00000 n 
+0000362082 00000 n 
+0000362230 00000 n 
+0000362391 00000 n 
+0000362543 00000 n 
+0000362705 00000 n 
+0000362860 00000 n 
+0000363029 00000 n 
+0000363191 00000 n 
+0000363354 00000 n 
+0000363518 00000 n 
+0000363681 00000 n 
+0000363837 00000 n 
+0000364005 00000 n 
+0000364164 00000 n 
+0000364337 00000 n 
+0000364511 00000 n 
+0000364685 00000 n 
+0000364862 00000 n 
+0000365030 00000 n 
+0000365200 00000 n 
+0000365368 00000 n 
+0000365547 00000 n 
+0000365737 00000 n 
+0000365927 00000 n 
+0000366099 00000 n 
+0000366271 00000 n 
+0000366459 00000 n 
+0000366647 00000 n 
+0000366825 00000 n 
+0000367003 00000 n 
+0000367290 00000 n 
+0000367368 00000 n 
+0000367573 00000 n 
+0000367765 00000 n 
+0000368058 00000 n 
+0000368233 00000 n 
+0000368494 00000 n 
+0000368727 00000 n 
+0000368979 00000 n 
+0000369229 00000 n 
+0000369473 00000 n 
+0000369754 00000 n 
+0000369950 00000 n 
+0000370197 00000 n 
+0000370390 00000 n 
+0000370610 00000 n 
+0000370802 00000 n 
+0000370979 00000 n 
+0000371215 00000 n 
+0000371476 00000 n 
+0000371700 00000 n 
+0000371867 00000 n 
+0000372118 00000 n 
+0000380280 00000 n 
+0000380496 00000 n 
+0000381859 00000 n 
+0000382923 00000 n 
+0000389789 00000 n 
+0000390010 00000 n 
+0000391373 00000 n 
+0000392460 00000 n 
+0000397411 00000 n 
+0000397625 00000 n 
+0000398988 00000 n 
+0000400056 00000 n 
+0000401278 00000 n 
+0000401489 00000 n 
+0000401797 00000 n 
+0000402712 00000 n 
+0000408258 00000 n 
+0000408484 00000 n 
+0000409847 00000 n 
+0000410935 00000 n 
+0000412331 00000 n 
+0000412549 00000 n 
+0000413912 00000 n 
 trailer
 << /Size 249
 /Root 2 0 R
 /Info 1 0 R
 >>
 startxref
-408281
+415051
 %%EOF


[09/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgfis/rgfis.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgfis/rgfis.pdf b/content/versions/SNAPSHOT/guides/rgfis/rgfis.pdf
index 35a0634..d6f3396 100644
--- a/content/versions/SNAPSHOT/guides/rgfis/rgfis.pdf
+++ b/content/versions/SNAPSHOT/guides/rgfis/rgfis.pdf
@@ -4,8 +4,8 @@
 << /Title (Framework Internal Services)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108230453+00'00')
-/ModDate (D:20180108230453+00'00')
+/CreationDate (D:20180213131057+00'00')
+/ModDate (D:20180213131057+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgmvn/rgmvn.pdf
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgmvn/rgmvn.pdf b/content/versions/SNAPSHOT/guides/rgmvn/rgmvn.pdf
index 1f4e0a5..dbd3172 100644
--- a/content/versions/SNAPSHOT/guides/rgmvn/rgmvn.pdf
+++ b/content/versions/SNAPSHOT/guides/rgmvn/rgmvn.pdf
@@ -4,8 +4,8 @@
 << /Title (Apache Isis Maven plugin)
 /Creator (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
 /Producer (Asciidoctor PDF 1.5.0.alpha.11, based on Prawn 1.3.0)
-/CreationDate (D:20180108230526+00'00')
-/ModDate (D:20180108230526+00'00')
+/CreationDate (D:20180213131101+00'00')
+/ModDate (D:20180213131101+00'00')
 >>
 endobj
 2 0 obj

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgsvc/images/reference-services-spi/ErrorReportingService/kitchensink-example.png
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgsvc/images/reference-services-spi/ErrorReportingService/kitchensink-example.png b/content/versions/SNAPSHOT/guides/rgsvc/images/reference-services-spi/ErrorReportingService/kitchensink-example.png
index 04a613b..da8617e 100644
Binary files a/content/versions/SNAPSHOT/guides/rgsvc/images/reference-services-spi/ErrorReportingService/kitchensink-example.png and b/content/versions/SNAPSHOT/guides/rgsvc/images/reference-services-spi/ErrorReportingService/kitchensink-example.png differ

http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.html b/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.html
index c679a2e..6c4d9b9 100644
--- a/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.html
+++ b/content/versions/SNAPSHOT/guides/rgsvc/rgsvc.html
@@ -1220,40 +1220,46 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementations">4.1.2. Implementations</h4> 
+          <h4 id="_rgsvc_presentation-layer-spi_ContentMappingService_implementations">4.1.2. Implementations</h4>
+          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
+           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_presentation-layer-spi_ContentMappingService_implementations.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
+           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
+           <ul class="dropdown-menu">
+            <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_presentation-layer-spi_ContentMappingService_implementations.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
+            <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_presentation-layer-spi_ContentMappingService_implementations.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
+            <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_presentation-layer-spi_ContentMappingService_implementations.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
+            <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_presentation-layer-spi_ContentMappingService_implementations.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
+           </ul>
+          </div> 
+          <div class="paragraph"> 
+           <p>The framework provides two implementations of this service, both in support of the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a> SPI.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>By way of background: implementations of the SPI <code>CommandService</code> work with custom implementations of the <code>Command</code> interface, typically being persisted to a datastore. The <code>CommandWithDto</code> interface is a subtype of <code>Command</code> for implementations that can be reified into <a href="../rgcms/rgcms.html#_rgcms_schema-cmd"><code>CommandDto</code></a> XML instances. One implementation that does this is the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s command module.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>For framework implementations of <code>ContentMappingService</code> allow domain service actions that return <code>CommandDto</code>s (either singularly or in a list) to be converted into XML documents:</p> 
+          </div> 
+          <div class="ulist"> 
+           <ul> 
+            <li> <p><code>o.a.i.applib.conmap.ContentMappingServiceForCommandDto</code> will map any single instnce of a <code>CommandWithDto</code> into a <code>CommandDto</code> XML document</p> </li> 
+            <li> <p><code>o.a.i.applib.conmap.ContentMappingServiceForCommandsDto</code> will map list of <code>CommandWithDto</code>s into a <code>CommandsDto</code> XML document, and will wrap any single instance of a <code>CommandWithDto</code> into a singleton list and thence into a <code>CommandsDto</code> XML document.</p> </li> 
+           </ul> 
+          </div> 
           <div class="paragraph"> 
-           <p>No default implementations are provided by Apache Isis framework itself.</p> 
+           <p>If the action invocation or property edit represent provides an implementation of a <code>CommandDtoProcessor</code> (by way of <a href="../rgant/rgant.html#_rgant-Action_command"><code>@Action#commandDtoProcessor()</code></a> or <a href="../rgant/rgant.html#_rgant-Property_command"><code>@Property#commandDtoProcessor()</code></a>) then this is also called to post-process the persisted <code>CommandDto</code> if required. A typical use case for this is to dynamically add in serialized <code>Blob</code>s or <code>Clob</code>s, the values of which are not captured by default in <code>CommandDto</code>.</p> 
           </div> 
           <div class="paragraph"> 
-           <p>However, the (non-ASF) <a href="http://github.com/isisaddons/isis-app-todoapp">Isis addons' todoapp</a> includes a sample implementation to convert its <code>ToDoItem</code> entity into a (JAXB annotated) <code>ToDoItemDto</code>. The source code is:</p> 
+           <p>To support the writing of custom implementations of this interface, the framework also provides <code>ContentMappingService.Util</code> which includes a couple of convenience utilities:</p> 
           </div> 
           <div class="listingblock"> 
            <div class="content"> 
-            <pre class="CodeRay highlight"><code data-lang="java"><span class="annotation">@DomainService</span>(nature = NatureOfService.DOMAIN)
-<span class="directive">public</span> <span class="type">class</span> <span class="class">ContentMappingServiceForToDoItem</span> <span class="directive">implements</span> ContentMappingService {
-    <span class="annotation">@Override</span>
-    <span class="directive">public</span> <span class="predefined-type">Object</span> map(
-            <span class="directive">final</span> <span class="predefined-type">Object</span> object,
-            <span class="directive">final</span> <span class="predefined-type">List</span>&lt;MediaType&gt; acceptableMediaTypes) {
-        <span class="keyword">if</span>(object <span class="keyword">instanceof</span> ToDoItem) {
-            <span class="keyword">for</span> (MediaType acceptableMediaType : acceptableMediaTypes) {
-                <span class="directive">final</span> <span class="predefined-type">Map</span>&lt;<span class="predefined-type">String</span>, <span class="predefined-type">String</span>&gt; parameters = acceptableMediaType.getParameters();
-                <span class="directive">final</span> <span class="predefined-type">String</span> className = parameters.get(<span class="string"><span class="delimiter">"</span><span class="content">x-ro-domain-type</span><span class="delimiter">"</span></span>);
-                <span class="keyword">if</span>(className.eqausl(ToDoItemV1_1.class.getName())) {
-                    <span class="keyword">return</span> newToDoItemV1_1((ToDoItem) object);
-                }
-            }
-        }
-        <span class="keyword">return</span> <span class="predefined-constant">null</span>;
-    }
-    <span class="directive">private</span> ToDoItemV1_1 newToDoItemV1_1(<span class="directive">final</span> ToDoItem toDoItem) {
-        <span class="directive">final</span> ToDoItemV1_1 dto = <span class="keyword">new</span> ToDoItemV1_1();
-        dto.setToDoItem(toDoItem);
-        dto.setDescription(toDoItem.getDescription());
-        ...
-        return dto;
-    }
-    ...
+            <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="directive">static</span> <span class="type">class</span> <span class="class">Util</span> {
+    <span class="directive">public</span> <span class="directive">static</span> <span class="predefined-type">String</span> determineDomainType(
+        <span class="directive">final</span> <span class="predefined-type">List</span>&lt;MediaType&gt; acceptableMediaTypes) { ... }
+    <span class="directive">public</span> <span class="directive">static</span> <span class="type">boolean</span> isSupported(
+            <span class="directive">final</span> <span class="predefined-type">Class</span>&lt;?&gt; clazz,
+            <span class="directive">final</span> <span class="predefined-type">List</span>&lt;MediaType&gt; acceptableMediaTypes) { ... }
 }</code></pre> 
            </div> 
           </div> 
@@ -1263,6 +1269,9 @@ table.CodeRay td.code>pre{padding:0}
           <div class="paragraph"> 
            <p>This service is a companion to the default implementation of the <a href="../rgfis/rgfis.html#_rgfis_presentation-layer_ContentNegotiationService"><code>ContentNegotiationService</code></a>.</p> 
           </div> 
+          <div class="paragraph"> 
+           <p>The framework implementations of <code>ContentMappingService</code> use the <a href="#_rgsvc_metadata-api_MetamodelService"><code>MetaModelService</code></a> to lookup any custom implementations of <code>CommandDtoProcessor</code>.</p> 
+          </div> 
          </div> 
         </div> 
         <div class="sect2"> 
@@ -1381,7 +1390,7 @@ table.CodeRay td.code>pre{padding:0}
           </ul>
          </div> 
          <div class="paragraph"> 
-          <p>The <code>ErrorReportingService</code> service is an optional SPI that provides the ability to record any errors/exceptions that might occur in the application into an external incident recording system (such as JIRA). The service also allows a user-friendly (jargon-free) error message to be returned and rendered to the end-user, along with an optional incident reference (eg a JIRA issue <code>XXX-1234</code>).</p> 
+          <p>The <code>ErrorReportingService</code> service is an optional SPI that provides the ability to record any errors/exceptions that might occur in the application into an external incident recording system (such as JIRA or Slack). The service also allows a user-friendly (jargon-free) error message to be returned and rendered to the end-user, along with an optional incident reference (eg a JIRA issue <code>XXX-1234</code>). The service can also return a URL for an external image. For example, this could be to a comic strip or (as a bit of fun) a picture of a random kitten.</p> 
          </div> 
          <div class="sect3"> 
           <h4 id="_spi_3">4.3.1. SPI</h4> 
@@ -1439,7 +1448,9 @@ table.CodeRay td.code>pre{padding:0}
     <span class="directive">public</span> Ticket(
         <span class="directive">final</span> <span class="predefined-type">String</span> reference,             <i class="conum" data-value="1"></i><b>(1)</b>
         <span class="directive">final</span> <span class="predefined-type">String</span> userMessage,           <i class="conum" data-value="2"></i><b>(2)</b>
-        <span class="directive">final</span> <span class="predefined-type">String</span> details) { ... }       <i class="conum" data-value="3"></i><b>(3)</b>
+        <span class="directive">final</span> <span class="predefined-type">String</span> details,               <i class="conum" data-value="3"></i><b>(3)</b>
+        <span class="directive">final</span> StackTracePolicy policy,      <i class="conum" data-value="4"></i><b>(4)</b>
+        <span class="directive">final</span> <span class="predefined-type">String</span> kittenUrl) { ... }     <i class="conum" data-value="5"></i><b>(5)</b>
 }</code></pre> 
            </div> 
           </div> 
@@ -1458,6 +1469,14 @@ table.CodeRay td.code>pre{padding:0}
               <td><i class="conum" data-value="3"></i><b>3</b></td> 
               <td>is optional additional details to show. For example, these might include text on how to recover from the error, or workarounds, or just further details on contacting the help desk if the issue is severe and requires immediate attention.</td> 
              </tr> 
+             <tr> 
+              <td><i class="conum" data-value="4"></i><b>4</b></td> 
+              <td>is optional, specifying whether to show a button to view details of the stack trace. By default a stack trace button is not shown if a ticket is returned (but <em>is</em> shown if there is no <code>ErrorReportingService</code> configured, or if it returns no ticket).</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="5"></i><b>5</b></td> 
+              <td>is optioal, specifying an external URL of an image to display for the end user.</td> 
+             </tr> 
             </tbody>
            </table> 
           </div> 
@@ -1479,13 +1498,12 @@ table.CodeRay td.code>pre{padding:0}
     <span class="directive">public</span> Ticket reportError(<span class="directive">final</span> ErrorDetails errorDetails) {
         <span class="keyword">return</span> <span class="keyword">new</span> Ticket(
                 nextTicketReference(),
-                <span class="string"><span class="delimiter">"</span><span class="content">The Kitchen sink app is sorry to report that: </span><span class="delimiter">"</span></span> + errorDetails.getMainMessage(),
-                  <span class="string"><span class="delimiter">"</span><span class="content">These are additional details for the end-user to read.</span><span class="char">\n</span><span class="delimiter">"</span></span>
-                + <span class="string"><span class="delimiter">"</span><span class="content">This content should be able to span many lines.</span><span class="char">\n</span><span class="delimiter">"</span></span>
-                + <span class="string"><span class="delimiter">"</span><span class="content">More detail.</span><span class="char">\n</span><span class="delimiter">"</span></span>
-                + <span class="string"><span class="delimiter">"</span><span class="content">Some suggested work-arounds.</span><span class="char">\n</span><span class="delimiter">"</span></span>
-                + <span class="string"><span class="delimiter">"</span><span class="content">Details of how to contact help desk.</span><span class="char">\n</span><span class="delimiter">"</span></span>
-                + <span class="string"><span class="delimiter">"</span><span class="content">And so on</span><span class="delimiter">"</span></span>);
+                errorDetails.getMainMessage(),
+                  <span class="string"><span class="delimiter">"</span><span class="content">By way of an apology, </span><span class="char">\n</span><span class="delimiter">"</span></span>
+                          + <span class="string"><span class="delimiter">"</span><span class="content">here's a picture of a </span><span class="char">\n</span><span class="delimiter">"</span></span>
+                          + <span class="string"><span class="delimiter">"</span><span class="content">kitten for you to look at.</span><span class="delimiter">"</span></span>,
+                <span class="string"><span class="delimiter">"</span><span class="content">http://www.randomkittengenerator.com/cats/rotator.php</span><span class="delimiter">"</span></span>
+                );
     }
     <span class="predefined-type">String</span> nextTicketReference() {
         <span class="keyword">return</span> <span class="string"><span class="delimiter">"</span><span class="delimiter">"</span></span> + ticketNumber++;
@@ -2418,7 +2436,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementations_2">4.13.2. Implementations</h4> 
+          <h4 id="_implementations">4.13.2. Implementations</h4> 
           <div class="paragraph"> 
            <p>The framework provides an implementation, <code>SessionLoggingService.Stderr</code> that just prints out to standard error. This is not registered by default, but can be easily registered manually using <code>AppManifestAbstract.Builder#withAdditionalServices(…​)</code>.</p> 
           </div> 
@@ -2476,7 +2494,7 @@ table.CodeRay td.code>pre{padding:0}
            </table> 
           </div> 
           <div class="paragraph"> 
-           <p>There can be multiple implementations of <code>TableColumnOrderService</code> registered, ordered as per <a href="../rgant/rgant.html#_rgant_DomainServiceLayout_menuOrder"><code>@DomainServiceLayout#menuOrder()</code></a>. The ordering provided by the first such service that returns a non-<code>null</code> value will be used. If all provided implementations return <code>null</code>, then the framework will fallback to a default implementation.</p> 
+           <p>There can be multiple implementations of <code>TableColumnOrderService</code> registered, ordered as per <a href="../rgant/rgant.html#_rgant-DomainServiceLayout_menuOrder"><code>@DomainServiceLayout#menuOrder()</code></a>. The ordering provided by the first such service that returns a non-<code>null</code> value will be used. If all provided implementations return <code>null</code>, then the framework will fallback to a default implementation.</p> 
           </div> 
          </div> 
          <div class="sect3"> 
@@ -2904,7 +2922,7 @@ table.CodeRay td.code>pre{padding:0}
               <p>Programmatic persistence of commands to be persisted (so can be executed by a background mechanism, eg scheduler)</p> 
              </div>
             </div></td> 
-           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>BackgroundServiceDefault</code><br> <code>o.a.i.core</code><br> <code>isis-core-runtime</code></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>BackgroundService-</code> <code>Default</code><br> <code>o.a.i.core</code><br> <code>isis-core-runtime</code></p></td> 
            <td class="tableblock halign-left valign-top"><p class="tableblock">depends on:<br> <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_BackgroundCommandService"><code>BackgroundCommand-Service</code></a></p></td> 
           </tr> 
           <tr> 
@@ -2919,6 +2937,17 @@ table.CodeRay td.code>pre{padding:0}
            <td class="tableblock halign-left valign-top"><p class="tableblock">API is also a concrete class.<br> depends on:<br> <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a> for persistent <code>Command</code>, else in-memory impl. used. </p><p class="tableblock">The <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_InteractionContext"><code>InteractionContext</code></a> manages the actual execution of the command.</p></td> 
           </tr> 
           <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandExecutorService"><code>o.a.i.applib.</code><br> <code>services.command</code><br> <code>CommandExecutorService</code></a></p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>Executes the specified <code>Command</code>.</p> 
+             </div>
+            </div></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>CommandExecutorService-</code> <code>Default</code><br> <code>o.a.i.core</code><br> <code>isis-core-runtime</code></p></td> 
+           <td class="tableblock halign-left valign-top"></td> 
+          </tr> 
+          <tr> 
            <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_DtoMappingHelper"><code>o.a.i.applib.</code><br> <code>services.dto</code><br> <code>DtoMappingHelper</code></a></p></td> 
            <td class="tableblock halign-left valign-top">
             <div>
@@ -3009,7 +3038,7 @@ table.CodeRay td.code>pre{padding:0}
          </ul> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_ActionInvocationContext">5.1. <code>ActionInvocationContext</code></h3>
+         <h3 id="_rgsvc_application-layer-api_ActionInvocationContext">5.1. <code>ActionInvocationContext</code> (deprecated)</h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_ActionInvocationContext.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -3026,6 +3055,22 @@ table.CodeRay td.code>pre{padding:0}
          <div class="paragraph"> 
           <p>When an action is invoked in this way, this service allows each object instance to "know where it is" in the collection; it acts a little like an iterator. In particular, an object can determine if it is the last object to be called, and so can perform special processing, eg to return a summary calculated result.</p> 
          </div> 
+         <div class="admonitionblock warning"> 
+          <table> 
+           <tbody>
+            <tr> 
+             <td class="icon"> <i class="fa icon-warning" title="Warning"></i> </td> 
+             <td class="content"> 
+              <div class="paragraph"> 
+               <p>Bulk actions are now deprecated, which means that this service is also deprecated.</p> 
+              </div> 
+              <div class="paragraph"> 
+               <p>Instead, the recommended technique is to define a view model to wrap around the collection, and then to use an action on the view model, associated with the collection and with a collection parameter), to act upon the selected items of the collection.</p> 
+              </div> </td> 
+            </tr> 
+           </tbody>
+          </table> 
+         </div> 
          <div class="sect3"> 
           <h4 id="_api_implementation_5">5.1.1. API &amp; Implementation</h4> 
           <div class="paragraph"> 
@@ -3491,44 +3536,40 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
  <span class="tag">&lt;/servlet&gt;</span></code></pre> 
            </div> 
           </div> 
-         </div> 
-        </div> 
-        <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_CommandContext">5.3. <code>CommandContext</code></h3>
-         <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
-          <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_CommandContext.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
-          <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
-          <ul class="dropdown-menu">
-           <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_CommandContext.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
-           <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_CommandContext.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
-           <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_CommandContext.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
-           <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_CommandContext.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
-          </ul>
-         </div> 
-         <div class="paragraph"> 
-          <p>The <code>CommandContext</code> service is a <a href="../rgant/rgant.html#_rgant-RequestScoped">request-scoped</a> service that reifies the invocation of an action on a domain object into an object itself. This reified information is encapsulated within the <code>Command</code> object.</p> 
-         </div> 
-         <div class="paragraph"> 
-          <p>By default, the <code>Command</code> is held in-memory only; once the action invocation has completed, the <code>Command</code> object is gone. The optional supporting <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a> enables the implementation of <code>Command</code> to be pluggable. With an appropriate implementation (eg as provided by the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s command module’s <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a>) the <code>Command</code> may then be persisted.</p> 
-         </div> 
-         <div class="paragraph"> 
-          <p>The primary use case for persistent <code>Command</code>s is in support of background commands; they act as a parent to any background commands that can be persisted either explicitly using the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_BackgroundService"><code>BackgroundService</code></a>, or implicitly by way of the <a href="../rgant/rgant.html#_rgant-Action_command"><code>@Action#command()</code></a> annotation.</p> 
-         </div> 
-         <div class="paragraph"> 
-          <p>There are a number of related use cases:</p> 
-         </div> 
-         <div class="ulist"> 
-          <ul> 
-           <li> <p>to enable profiling of the running application (which actions are invoked then most often, what is their response time)</p> </li> 
-           <li> <p>if a <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a> or <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublishingService"><code>PublishingService</code></a> (the latter now deprecated) is configured, they provide better traceability as the <code>Command</code> is also correlated with any published events, again through the unique <code>transactionId</code> GUID</p> </li> 
-           <li> <p>if a <a href="../rgsvc/rgsvc.html#_rgsvc_spi_AuderService"><code>AuditerService</code></a> or <a href="../rgsvc/rgsvc.html#_rgsvc_spi_AuditService"><code>AuditingService</code></a> (the latter now deprecated) is configured, they provide better audit information, since the <code>Command</code> (the 'cause' of an action) can be correlated to the audit records (the "effect" of the action) through the <code>transactionId</code> GUID</p> </li> 
-          </ul> 
-         </div> 
-         <div class="paragraph"> 
-          <p>However, while persistent <code>Command</code>s <em>can</em> be used for these use cases, it is recommended instead to use the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_InteractionContext"><code>InteractionContext</code></a> service and persistent implementations of the <code>Interaction</code> object, eg as provided by the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s publishmq module.</p> 
+          <div class="literalblock"> 
+           <div class="content"> 
+            <pre>    [[_rgsvc_application-layer-api_CommandContext]]
+= `CommandContext`
+:Notice: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at. http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR  CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
+:_basedir: ../../
+:_imagesdir: images/</pre> 
+           </div> 
+          </div> 
+          <div class="paragraph"> 
+           <p>The <code>CommandContext</code> service is a <a href="../rgant/rgant.html#_rgant-RequestScoped">request-scoped</a> service that reifies the invocation of an action on a domain object into an object itself. This reified information is encapsulated within the <code>Command</code> object.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>By default, the <code>Command</code> is held in-memory only; once the action invocation has completed, the <code>Command</code> object is gone. The optional supporting <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a> enables the implementation of <code>Command</code> to be pluggable. With an appropriate implementation (eg as provided by the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s command module’s <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a>) the <code>Command</code> may then be persisted.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>The primary use case for persistent <code>Command</code>s is in support of background commands; they act as a parent to any background commands that can be persisted either explicitly using the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_BackgroundService"><code>BackgroundService</code></a>, or implicitly by way of the <a href="../rgant/rgant.html#_rgant-Action_command"><code>@Action#command()</code></a> annotation.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>There are a number of related use cases:</p> 
+          </div> 
+          <div class="ulist"> 
+           <ul> 
+            <li> <p>to enable profiling of the running application (which actions are invoked then most often, what is their response time)</p> </li> 
+            <li> <p>if a <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a> or <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublishingService"><code>PublishingService</code></a> (the latter now deprecated) is configured, they provide better traceability as the <code>Command</code> is also correlated with any published events, again through the unique <code>transactionId</code> GUID</p> </li> 
+            <li> <p>if a <a href="../rgsvc/rgsvc.html#_rgsvc_spi_AuderService"><code>AuditerService</code></a> or <a href="../rgsvc/rgsvc.html#_rgsvc_spi_AuditService"><code>AuditingService</code></a> (the latter now deprecated) is configured, they provide better audit information, since the <code>Command</code> (the 'cause' of an action) can be correlated to the audit records (the "effect" of the action) through the <code>transactionId</code> GUID</p> </li> 
+           </ul> 
+          </div> 
+          <div class="paragraph"> 
+           <p>However, while persistent <code>Command</code>s <em>can</em> be used for these use cases, it is recommended instead to use the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_InteractionContext"><code>InteractionContext</code></a> service and persistent implementations of the <code>Interaction</code> object, eg as provided by the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s publishmq module.</p> 
+          </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__rgsvc_application-layer-api_CommandContext_screencast">5.3.1. Screencast</h4> 
+          <h4 id="__rgsvc_application-layer-api_CommandContext_screencast">5.2.7. Screencast</h4> 
           <div class="paragraph"> 
            <p>The <a href="https://www.youtube.com/watch?v=tqXUZkPB3EI">screencast</a> provides a run-through of the command (profiling) service, auditing service, publishing service. It also shows how commands can be run in the background either explicitly by scheduling through the background service or implicitly by way of a framework annotation.</p> 
           </div> 
@@ -3547,7 +3588,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_implementation_7">5.3.2. API &amp; Implementation</h4> 
+          <h4 id="_api_implementation_7">5.2.8. API &amp; Implementation</h4> 
           <div class="paragraph"> 
            <p>The <code>CommandContext</code> request-scoped service defines the following very simple API:</p> 
           </div> 
@@ -3677,7 +3718,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_usage_5">5.3.3. Usage</h4> 
+          <h4 id="_usage_5">5.2.9. Usage</h4> 
           <div class="paragraph"> 
            <p>The typical way to indicate that an action should be treated as a command is to annotate it with the <a href="../rgant/rgant.html#_rgant-Action_command"><code>@Action#command()</code></a> annotation.</p> 
           </div> 
@@ -3730,7 +3771,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_interacting_with_the_services">5.3.4. Interacting with the services</h4> 
+          <h4 id="_interacting_with_the_services">5.2.10. Interacting with the services</h4> 
           <div class="paragraph"> 
            <p>Typically domain objects will have little need to interact with the <code>CommandContext</code> and <code>Command</code> directly; what is more useful is that these are persisted in support of the various use cases identified above.</p> 
           </div> 
@@ -3781,7 +3822,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_12">5.3.5. Related Services</h4> 
+          <h4 id="_related_services_12">5.2.11. Related Services</h4> 
           <div class="paragraph"> 
            <p>The <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandContext"><code>CommandContext</code></a> service is very similar in nature to the <a href="../rgsvc/rgsvc.html#_rgsvc_api_InteactionContext"><code>InteactionContext</code></a>, in that the <code>Command</code> object accessed through it is very similar to the <code>Interaction</code> object obtained from the <code>InteractionContext</code>. The principle distinction is that while <code>Command</code> represents the <em>intention</em> to invoke an action or edit a property, the <code>Interaction</code> (and contained <code>Execution</code>s) represents the actual execution.</p> 
           </div> 
@@ -3794,7 +3835,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_DtoMappingHelper">5.4. <code>DtoMappingHelper</code></h3>
+         <h3 id="_rgsvc_application-layer-api_DtoMappingHelper">5.3. <code>DtoMappingHelper</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_DtoMappingHelper.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -3809,7 +3850,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           <p>The <code>DtoMappingHelper</code> converts the domain object’s internal identifier into a serializable <code>OidDto</code> for use in the <a href="../rgcms/rgcms.html#_rgcms_schema-cmd">command</a> and <a href="../rgcms/rgcms.html#_rgcms_schema-ixn">interaction</a> schemas.</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_and_usage">5.4.1. API and Usage</h4> 
+          <h4 id="_api_and_usage">5.3.1. API and Usage</h4> 
           <div class="paragraph"> 
            <p>The API of <code>DtoMappingHelper</code> is:</p> 
           </div> 
@@ -3837,7 +3878,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_InteractionContext">5.5. <code>InteractionContext</code></h3>
+         <h3 id="_rgsvc_application-layer-api_InteractionContext">5.4. <code>InteractionContext</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_InteractionContext.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -3867,7 +3908,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </ul> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_implementation_8">5.5.1. API &amp; Implementation</h4> 
+          <h4 id="_api_implementation_8">5.4.1. API &amp; Implementation</h4> 
           <div class="paragraph"> 
            <p>The public API of the service consists of several related classes:</p> 
           </div> 
@@ -4093,13 +4134,13 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_interacting_with_the_services_2">5.5.2. Interacting with the services</h4> 
+          <h4 id="_interacting_with_the_services_2">5.4.2. Interacting with the services</h4> 
           <div class="paragraph"> 
            <p>Typically domain objects will have little need to interact with the <code>InteractionContext</code> and <code>Interaction</code> directly. The services are used within the framework however, primarily to support the <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a> SPI, and to emit domain events over the <a href="../rgsvc/rgsvc.html#_rgsvc_core-domain-api_EventBusService"><code>EventBusService</code></a>.</p> 
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__rgsvc_application-layer-api_InteractionContext_Related-Classes">5.5.3. Related Classes</h4> 
+          <h4 id="__rgsvc_application-layer-api_InteractionContext_Related-Classes">5.4.3. Related Classes</h4> 
           <div class="paragraph"> 
            <p>This service is very similar in nature to <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandContext"><code>CommandContext</code></a>, in that the <code>Interaction</code> object accessed through it is very similar to the <code>Command</code> object obtained from the <code>CommandContext</code>. The principle distinction is that while <code>Command</code> represents the <em>intention</em> to invoke an action or edit a property, the <code>Interaction</code> (and contained <code>Execution</code>s) represents the actual execution.</p> 
           </div> 
@@ -4109,7 +4150,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_MessageService">5.6. <code>MessageService</code></h3>
+         <h3 id="_rgsvc_application-layer-api_MessageService">5.5. <code>MessageService</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_MessageService.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -4137,7 +4178,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_and_usage_2">5.6.1. API and Usage</h4> 
+          <h4 id="_api_and_usage_2">5.5.1. API and Usage</h4> 
           <div class="paragraph"> 
            <p>The API of <code>MessageService</code> is:</p> 
           </div> 
@@ -4203,14 +4244,14 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_15">5.6.2. Implementation</h4> 
+          <h4 id="_implementation_15">5.5.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The core framework provides a default implementation of this service, <code>o.a.i.core.runtime.services.message.MessageServiceDefault</code>.</p> 
           </div> 
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_SessionManagementService">5.7. <code>SessionManagementService</code></h3>
+         <h3 id="_rgsvc_application-layer-api_SessionManagementService">5.6. <code>SessionManagementService</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_SessionManagementService.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -4225,7 +4266,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           <p>The <code>SessionManagementService</code> provides the ability to programmatically manage sessions. The primary use case is for fixture scripts or other routines that are invoked from the UI and which create or modify large amounts of data. A classic example is migrating data from one system to another.</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api">5.7.1. API</h4> 
+          <h4 id="_api">5.6.1. API</h4> 
           <div class="paragraph"> 
            <p>The API of <code>SessionManagementService</code> is:</p> 
           </div> 
@@ -4257,14 +4298,14 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_16">5.7.2. Implementation</h4> 
+          <h4 id="_implementation_16">5.6.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The core framework provides a default implementation of this service (<code>o.a.i.core.runtime.services.xactn.SessionManagementServiceDefault</code>).</p> 
           </div> 
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_TitleService">5.8. <code>TitleService</code></h3>
+         <h3 id="_rgsvc_application-layer-api_TitleService">5.7. <code>TitleService</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_TitleService.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -4292,7 +4333,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_2">5.8.1. API</h4> 
+          <h4 id="_api_2">5.7.1. API</h4> 
           <div class="paragraph"> 
            <p>The API of <code>TitleService</code> is:</p> 
           </div> 
@@ -4320,7 +4361,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_usage_6">5.8.2. Usage</h4> 
+          <h4 id="_usage_6">5.7.2. Usage</h4> 
           <div class="paragraph"> 
            <p>By way of example, here’s some code based on a system for managing government benefits:</p> 
           </div> 
@@ -4345,14 +4386,14 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_17">5.8.3. Implementation</h4> 
+          <h4 id="_implementation_17">5.7.3. Implementation</h4> 
           <div class="paragraph"> 
            <p>The core framework provides a default implementation of this service (<code>o.a.i.core.metamodel.services.title.TitleServiceDefault</code>).</p> 
           </div> 
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_TransactionService">5.9. <code>TransactionService3</code></h3>
+         <h3 id="_rgsvc_application-layer-api_TransactionService">5.8. <code>TransactionService3</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_TransactionService.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -4380,7 +4421,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_3">5.9.1. API</h4> 
+          <h4 id="_api_3">5.8.1. API</h4> 
           <div class="paragraph"> 
            <p>The API of <code>TransactionService3</code> is:</p> 
           </div> 
@@ -4545,14 +4586,14 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_18">5.9.2. Implementation</h4> 
+          <h4 id="_implementation_18">5.8.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The core framework provides a default implementation of this service, <code>o.a.i.core.metamodel.services.xactn.TransactionServiceDefault</code>.</p> 
           </div> 
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_application-layer-api_WrapperFactory">5.10. <code>WrapperFactory</code></h3>
+         <h3 id="_rgsvc_application-layer-api_WrapperFactory">5.9. <code>WrapperFactory</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_application-layer-api_WrapperFactory.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -4589,7 +4630,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           <p>This capability is frequently used within <a href="../ugtst/ugtst.html#_ugtst_integ-test-support">integration tests</a>, but can also be used in production code. (There are analogies that can be drawn here with the way that JEE beans can interact through an EJB local interface).</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_4">5.10.1. API</h4> 
+          <h4 id="_api_4">5.9.1. API</h4> 
           <div class="paragraph"> 
            <p>The API provided by the service is:</p> 
           </div> 
@@ -4688,7 +4729,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_usage_7">5.10.2. Usage</h4> 
+          <h4 id="_usage_7">5.9.2. Usage</h4> 
           <div class="paragraph"> 
            <p>The caller will typically obtain the target object (eg from some repository) and then use the injected <code>WrapperFactory</code> to wrap it before interacting with it.</p> 
           </div> 
@@ -4748,7 +4789,7 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_listener_api">5.10.3. Listener API</h4> 
+          <h4 id="_listener_api">5.9.3. Listener API</h4> 
           <div class="paragraph"> 
            <p>The <code>WrapperFactory</code> also provides a listener API to allow other services to listen in on interactions.</p> 
           </div> 
@@ -5062,6 +5103,9 @@ org.quartz.plugin.jobInitializer.failOnFileNotFound = true</code></pre>
           <p>The primary use case for persistent <code>Command</code>s is in support of background commands; they act as a parent to any background commands that can be persisted either explicitly using the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_BackgroundService"><code>BackgroundService</code></a>, or implicitly by way of the <a href="../rgant/rgant.html#_rgant-Action_command"><code>@Action#command()</code></a> annotation.</p> 
          </div> 
          <div class="paragraph"> 
+          <p>Persistent <code>Command</code>s also support the ability to replicate from a master to a slave instance of an application. One use case for this is for regression testing, allowing a production usages to be replayed against a new release candidate, eg after upgrading that application to a new version of Apache Isis itself (or some other dependency).</p> 
+         </div> 
+         <div class="paragraph"> 
           <p>There are a number of related use cases:</p> 
          </div> 
          <div class="ulist"> 
@@ -8639,7 +8683,7 @@ Element customerXsd = snapshot.getXsdElement();</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgsvc_metadata-api_MetamodelService">9.3. <code>MetaModelService4</code></h3>
+         <h3 id="_rgsvc_metadata-api_MetamodelService">9.3. <code>MetaModelService5</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -8651,23 +8695,33 @@ Element customerXsd = snapshot.getXsdElement();</code></pre>
           </ul>
          </div> 
          <div class="paragraph"> 
-          <p>The <code>MetaModelService4</code> service (and its various supertypes) provides access to a number of aspects of Apache Isis' internal metamodel.</p> 
+          <p>The <code>MetaModelService5</code> service (and its various supertypes) provides access to a number of aspects of Apache Isis' internal metamodel.</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_8">9.3.1. API</h4> 
+          <h4 id="_rgsvc_metadata-api_MetamodelService_api">9.3.1. API</h4>
+          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
+           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_api.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
+           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
+           <ul class="dropdown-menu">
+            <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_api.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
+            <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_api.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
+            <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_api.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
+            <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_api.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
+           </ul>
+          </div> 
           <div class="paragraph"> 
            <p>The API defined by the service is:</p> 
           </div> 
           <div class="listingblock"> 
            <div class="content"> 
             <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">interface</span> <span class="class">MetaModelService4</span> {
-    <span class="predefined-type">Class</span>&lt;?&gt; fromObjectType(<span class="predefined-type">String</span> objectType);   <i class="conum" data-value="1"></i><b>(1)</b>
-    <span class="predefined-type">String</span> toObjectType(<span class="predefined-type">Class</span>&lt;?&gt; domainType);     <i class="conum" data-value="2"></i><b>(2)</b>
-    <span class="type">void</span> rebuild(<span class="predefined-type">Class</span>&lt;?&gt; domainType);            <i class="conum" data-value="3"></i><b>(3)</b>
-    <span class="predefined-type">List</span>&lt;DomainMember&gt; <span class="keyword">export</span>();                  <i class="conum" data-value="4"></i><b>(4)</b>
+    <span class="predefined-type">Class</span>&lt;?&gt; fromObjectType(<span class="predefined-type">String</span> objectType);         <i class="conum" data-value="1"></i><b>(1)</b>
+    <span class="predefined-type">String</span> toObjectType(<span class="predefined-type">Class</span>&lt;?&gt; domainType);           <i class="conum" data-value="2"></i><b>(2)</b>
+    <span class="type">void</span> rebuild(<span class="predefined-type">Class</span>&lt;?&gt; domainType);                  <i class="conum" data-value="3"></i><b>(3)</b>
+    <span class="predefined-type">List</span>&lt;DomainMember&gt; <span class="keyword">export</span>();                        <i class="conum" data-value="4"></i><b>(4)</b>
 
     <span class="comment">// introduced in MetaModelService2</span>
-    <span class="type">enum</span> Sort {                                   <i class="conum" data-value="5"></i><b>(5)</b>
+    <span class="type">enum</span> Sort {                                         <i class="conum" data-value="5"></i><b>(5)</b>
         VIEW_MODEL, JDO_ENTITY, DOMAIN_SERVICE,
         MIXIN, VALUE, COLLECTION, UNKNOWN;
     }
@@ -8675,7 +8729,7 @@ Element customerXsd = snapshot.getXsdElement();</code></pre>
         STRICT,
         RELAXED
     }
-    Sort sortOf(<span class="predefined-type">Class</span>&lt;?&gt; domainType);             <i class="conum" data-value="6"></i><b>(6)</b>
+    Sort sortOf(<span class="predefined-type">Class</span>&lt;?&gt; domainType);                   <i class="conum" data-value="6"></i><b>(6)</b>
     Sort sortOf(Bookmark bookmark);
 
     <span class="comment">// introduced in MetaModelService3</span>
@@ -8683,8 +8737,13 @@ Element customerXsd = snapshot.getXsdElement();</code></pre>
     Sort sortOf(Bookmark bookmark, Mode mode);
 
     <span class="comment">// introduced in MetaModelService4</span>
-    AppManifest getAppManifest();                 <i class="conum" data-value="7"></i><b>(7)</b>
+    AppManifest getAppManifest();                       <i class="conum" data-value="7"></i><b>(7)</b>
     AppManifest2 getAppManifest2();
+
+    <span class="comment">// introduced in MetaModelService5</span>
+    CommandDtoProcessor commandDtoProcessorFor(         <i class="conum" data-value="8"></i><b>(8)</b>
+                        <span class="predefined-type">String</span> memberIdentifier);
+
 }</code></pre> 
            </div> 
           </div> 
@@ -8719,18 +8778,42 @@ Element customerXsd = snapshot.getXsdElement();</code></pre>
               <td><i class="conum" data-value="7"></i><b>7</b></td> 
               <td>returns the <code>AppManifest</code> used to bootstrap the application. If an <code>AppManifest2</code> was used (from a <code>Module</code>), then this is also returned (else just <code>null</code>).</td> 
              </tr> 
+             <tr> 
+              <td><i class="conum" data-value="8"></i><b>8</b></td> 
+              <td>obtain an implementation of <code>CommandDtoProcessor</code> (if any) as per an <a href="../rgant/rgant.html#_rgant-Action_command"><code>@Action#commandDtoProcessor()</code></a> or <a href="../rgant/rgant.html#_rgant-Property_command"><code>@Property#commandDtoProcessor()</code></a>.</td> 
+             </tr> 
             </tbody>
            </table> 
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_27">9.3.2. Implementation</h4> 
+          <h4 id="_rgsvc_metadata-api_MetamodelService_implementation">9.3.2. Implementation</h4>
+          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
+           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_implementation.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
+           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
+           <ul class="dropdown-menu">
+            <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_implementation.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
+            <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_implementation.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
+            <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_implementation.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
+            <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_implementation.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
+           </ul>
+          </div> 
           <div class="paragraph"> 
            <p>The framework provides a default implementation of this service, <code>o.a.i.c.m.services.metamodel.MetaModelServiceDefault</code>.</p> 
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_22">9.3.3. Related Services</h4> 
+          <h4 id="_rgsvc_metadata-api_MetamodelService_related_services">9.3.3. Related Services</h4>
+          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
+           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_related_services.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
+           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
+           <ul class="dropdown-menu">
+            <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_related_services.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
+            <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_related_services.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
+            <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_related_services.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
+            <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/guides/rgsvc/_rgsvc_metadata-api_MetamodelService_related_services.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
+           </ul>
+          </div> 
           <div class="paragraph"> 
            <p>The <code>MetaModelServiceMenu</code> provides a method to download all domain members as a CSV. Internally this calls <code>MetaModelService#export()</code>. Under the covers this uses the API provided by the <a href="../rgsvc/rgsvc.html#_rgsvc_metadata-api_ApplicationFeatureRepository"><code>ApplicationFeatureRepository</code></a> domain service.</p> 
           </div> 
@@ -8765,7 +8848,7 @@ Element customerXsd = snapshot.getXsdElement();</code></pre>
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_9">9.4.1. API</h4> 
+          <h4 id="_api_8">9.4.1. API</h4> 
           <div class="paragraph"> 
            <p>The API of <code>ServiceRegistry2</code> is:</p> 
           </div> 
@@ -8826,7 +8909,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_28">9.4.3. Implementation</h4> 
+          <h4 id="_implementation_27">9.4.3. Implementation</h4> 
           <div class="paragraph"> 
            <p>The core framework provides a default implementation of this service (<code>o.a.i.core.runtime.services.registry.ServiceRegistryDefault</code>).</p> 
           </div> 
@@ -8917,7 +9000,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_23">9.5.3. Related Services</h4> 
+          <h4 id="_related_services_22">9.5.3. Related Services</h4> 
           <div class="paragraph"> 
            <p>A <code>SwaggerServiceMenu</code> domain service provides a prototype action that enables the swagger spec to be downloaded from the Wicket viewer’s UI.</p> 
           </div> 
@@ -9098,7 +9181,7 @@ repositoryService.persist(cust);</code></pre>
           <p>The default implementation of this service, <code>FixtureScriptsDefault</code>, uses the associated <a href="../rgsvc/rgsvc.html#_rgsvc_testing_FixtureScriptsSpecificationProvider"><code>FixtureScriptsSpecificationProvider</code></a> to obtain a <code>FixtureScriptsSpecification</code>. This configures this service, for example telling it which package to search for <code>FixtureScript</code> classes, how to execute those classes, and hints that influence the UI.</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_10">10.2.1. API</h4> 
+          <h4 id="_api_9">10.2.1. API</h4> 
           <div class="paragraph"> 
            <p>The API for the service is:</p> 
           </div> 
@@ -9114,7 +9197,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_29">10.2.2. Implementation</h4> 
+          <h4 id="_implementation_28">10.2.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The default implementation is <code>o.a.i.applib.services.fixturespec.FixtureScriptsDefault</code></p> 
           </div> 
@@ -9162,7 +9245,7 @@ repositoryService.persist(cust);</code></pre>
            </table> 
           </div> 
           <div class="sect4"> 
-           <h5 id="_related_services_24">Related Services</h5> 
+           <h5 id="_related_services_23">Related Services</h5> 
            <div class="paragraph"> 
             <p>The default implementation of this domain service interacts with <a href="../rgsvc/rgsvc.html#_rgsvc_testing_FixtureScriptsSpecificationProvider"><code>FixtureScriptsSpecificationProvider</code></a>.</p> 
            </div> 
@@ -9234,7 +9317,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_30">10.3.2. Implementation</h4> 
+          <h4 id="_implementation_29">10.3.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The <a href="../ugfun/ugfun.html#_ugfun_getting-started_simpleapp-archetype">SimpleApp archetype</a> has a simple implementation of this service:</p> 
           </div> 
@@ -9273,7 +9356,7 @@ repositoryService.persist(cust);</code></pre>
           <p>The <code>SudoService</code> allows the current user reported by the <a href="../rgsvc/rgsvc.html#_rgsvc_core-domain-api_UserService"><code>UserService</code></a> to be temporarily changed to some other user. This is useful both for <a href="../ugtst/ugtst.html#_ugtst_integ-test-support">integration testing</a> (eg if testing a workflow system whereby objects are moved from one user to another) and while running <a href="../ugtst/ugtst.html#_ugtst_fixture-scripts">fixture scripts</a> (eg setting up objects that would normally require several users to have acted upon the objects).</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_11">10.4.1. API</h4> 
+          <h4 id="_api_10">10.4.1. API</h4> 
           <div class="paragraph"> 
            <p>The API provided by the service is:</p> 
           </div> 
@@ -9312,7 +9395,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_31">10.4.2. Implementation</h4> 
+          <h4 id="_implementation_30">10.4.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The core framework provides a default implementation of this service (<code>o.a.i.core.runtime.services.sudo.SudoServiceDefault</code>).</p> 
           </div> 
@@ -9442,7 +9525,7 @@ repositoryService.persist(cust);</code></pre>
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_12">10.5.1. API</h4> 
+          <h4 id="_api_11">10.5.1. API</h4> 
           <div class="paragraph"> 
            <p>The API of this service:</p> 
           </div> 
@@ -9466,7 +9549,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_32">10.5.2. Implementation</h4> 
+          <h4 id="_implementation_31">10.5.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The framework provides a default implementation of this service: <code>SwitchUserServiceImpl</code> in <code>isis-core-runtime</code></p> 
           </div> 
@@ -9992,7 +10075,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_25">11.3.2. Related Services</h4> 
+          <h4 id="_related_services_24">11.3.2. Related Services</h4> 
           <div class="paragraph"> 
            <p>The <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a> also captures the metrics gathered by the <code>MetricsService</code> and publishes them as part of the <code>PublishedObjects</code> class (part of its SPI).</p> 
           </div> 
@@ -10135,7 +10218,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_26">11.4.3. Related Services</h4> 
+          <h4 id="_related_services_25">11.4.3. Related Services</h4> 
           <div class="paragraph"> 
            <p>The <a href="../rgsvc/rgsvc.html#_rgsvc_core-domain-api_Scratchpad"><code>Scratchpad</code></a> service is also intended for actions that are called many times, allowing arbitrary information to be shared between them. Those methods could be called from some outer loop in domain code, or by the framework itself if the action invoked has the <a href="../rgant/rgant.html#_rgant-Action_invokeOn"><code>@Action#invokeOn()</code></a> annotation attribute set to <code>OBJECT_AND_COLLECTION</code> or <code>COLLECTION_ONLY</code>.</p> 
           </div> 
@@ -10176,7 +10259,7 @@ repositoryService.persist(cust);</code></pre>
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_api_13">11.5.1. API</h4> 
+          <h4 id="_api_12">11.5.1. API</h4> 
           <div class="paragraph"> 
            <p>The API of <code>RepositoryService</code> is:</p> 
           </div> 
@@ -10495,7 +10578,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_33">11.5.3. Implementation</h4> 
+          <h4 id="_implementation_32">11.5.3. Implementation</h4> 
           <div class="paragraph"> 
            <p>The default implementation of this domain service is <code>o.a.i.core.metamodel.services.repository.RepositoryServiceDefault</code>.</p> 
           </div> 
@@ -10749,7 +10832,7 @@ repositoryService.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementations_3">12.1.2. Implementations</h4> 
+          <h4 id="_implementations_2">12.1.2. Implementations</h4> 
           <div class="paragraph"> 
            <p>The framework allows multiple implementations of this service to be registered; all will be called. The framework provides one implementation of its own, <code>AuditerServiceLogging</code> (in <code>o.a.i.applib.services.audit</code> package); this logs simple messages to an SLF4J logger.</p> 
           </div> 
@@ -10798,7 +10881,7 @@ log4j.additivity.org.apache.isis.applib.services.audit.AuditerServiceLogging=fal
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_27">12.1.5. Related Services</h4> 
+          <h4 id="_related_services_26">12.1.5. Related Services</h4> 
           <div class="paragraph"> 
            <p>The auditing service works very well with implementations of <a href="../rgsvc/rgsvc.html#<em>rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a> that persist the <code>Interaction.Execution</code> objects obtained from the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_InteractionContext"><code>InteractionContext</code></a> service. The interaction execution captures the _cause of an interaction (an action was invoked, a property was edited), while the <code>AuditerService</code> audit entries capture the <em>effect</em> of that interaction in terms of changed state.</p> 
           </div> 
@@ -10861,7 +10944,7 @@ log4j.additivity.org.apache.isis.applib.services.audit.AuditerServiceLogging=fal
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_34">12.2.2. Implementation</h4> 
+          <h4 id="_implementation_33">12.2.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The most full-featured available implementation is the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s audit module. This creates an audit records for each changed property (ie every time that <code>AuditingService3#audit(…​)</code> is called. The implementation is <code>org.isisaddons.module.audit.dom.AuditingService</code>.</p> 
           </div> 
@@ -10895,7 +10978,7 @@ log4j.additivity.org.apache.isis.applib.services.audit.AuditerServiceLogging=fal
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_28">12.2.5. Related Services</h4> 
+          <h4 id="_related_services_27">12.2.5. Related Services</h4> 
           <div class="paragraph"> 
            <p>This service has been deprecated and replaced by the equivalent <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_AuditerService"><code>AuditerService</code></a>.</p> 
           </div> 
@@ -10970,7 +11053,7 @@ log4j.additivity.org.apache.isis.applib.services.audit.AuditerServiceLogging=fal
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_35">12.3.2. Implementation</h4> 
+          <h4 id="_implementation_34">12.3.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>There is no default implementation of this service provided by the core Apache Isis framework.</p> 
           </div> 
@@ -11004,7 +11087,7 @@ log4j.additivity.org.apache.isis.applib.services.audit.AuditerServiceLogging=fal
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_29">12.3.3. Related Services</h4> 
+          <h4 id="_related_services_28">12.3.3. Related Services</h4> 
           <div class="paragraph"> 
            <p>This service is intended (though not mandated) to be used by implementations of <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublishingService"><code>PublishingService</code></a>. The (non-ASF) <a href="http://github.com/isisaddons-legacy/isis-module-publishing">Isis addons' publishing</a> module does use it (though the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a> publishmq module does not).</p> 
           </div> 
@@ -11108,7 +11191,7 @@ log4j.additivity.org.apache.isis.applib.services.audit.AuditerServiceLogging=fal
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementations_4">12.4.2. Implementations</h4> 
+          <h4 id="_implementations_3">12.4.2. Implementations</h4> 
           <div class="paragraph"> 
            <p>The framework allows multiple implementations of this service to be registered; all will be called. The framework provides one implementation of its own, <code>PublisherServiceLogging</code> (in <code>o.a.i.applib.services.publish</code> package); this logs "deep" serializations to an SLF4J logger.</p> 
           </div> 
@@ -11153,7 +11236,7 @@ log4j.additivity.org.apache.isis.applib.services.publish.PublisherServiceLogging
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_30">12.4.5. Related Services</h4> 
+          <h4 id="_related_services_29">12.4.5. Related Services</h4> 
           <div class="paragraph"> 
            <p>This service supports two main use cases:</p> 
           </div> 
@@ -11269,7 +11352,7 @@ log4j.additivity.org.apache.isis.applib.services.publish.PublisherServiceLogging
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_36">12.5.2. Implementation</h4> 
+          <h4 id="_implementation_35">12.5.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>There is no default implementation of this service provided by the core Apache Isis framework.</p> 
           </div> 
@@ -11392,7 +11475,7 @@ log4j.additivity.org.apache.isis.applib.services.publish.PublisherServiceLogging
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_31">12.5.4. Related Services</h4> 
+          <h4 id="_related_services_30">12.5.4. Related Services</h4> 
           <div class="paragraph"> 
            <p>The <code>PublishingService</code> is intended for coarse-grained publish/subscribe for system-to-system interactions, from Apache Isis to some other system. Here the only events published are those that action invocations (for actions annotated with <a href="../rgant/rgant.html#_rgant-Action_publishing"><code>@Action#publishing()</code></a>) and of changed objects (for objects annotated with <a href="../rgant/rgant.html#_rgant-DomainObject_publishing"><code>@DomainObject#publishing()</code></a>.</p> 
           </div> 
@@ -11501,7 +11584,7 @@ log4j.additivity.org.apache.isis.applib.services.publish.PublisherServiceLogging
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_37">12.6.2. Implementation</h4> 
+          <h4 id="_implementation_36">12.6.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>The core Apache Isis framework itself defines only an API; there is no default implementation. Rather, the implementation will depend on the security mechanism being used.</p> 
           </div> 
@@ -11534,7 +11617,7 @@ log4j.additivity.org.apache.isis.applib.services.publish.PublisherServiceLogging
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_32">12.6.3. Related Services</h4> 
+          <h4 id="_related_services_31">12.6.3. Related Services</h4> 
           <div class="paragraph"> 
            <p>The most common use case is to allow users to sign-up through Apache Isis' Wicket viewer. Because the process requires email to be sent, the following services must be configured:</p> 
           </div> 
@@ -11663,7 +11746,7 @@ log4j.additivity.org.apache.isis.applib.services.publish.PublisherServiceLogging
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_implementation_38">13.1.2. Implementation</h4> 
+          <h4 id="_implementation_37">13.1.2. Implementation</h4> 
           <div class="paragraph"> 
            <p>Isis provides an implementation of this service, namely <code>o.a.i.applib.services.classdiscovery.ClassDiscoveryServiceUsingReflections</code>.</p> 
           </div> 
@@ -11682,7 +11765,7 @@ log4j.additivity.org.apache.isis.applib.services.publish.PublisherServiceLogging
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_related_services_33">13.1.3. Related Services</h4> 
+          <h4 id="_related_services_32">13.1.3. Related Services</h4> 
           <div class="paragraph"> 
            <p>The <a href="#_rgsvc_testing_FixtureScripts"><code>FixtureScripts</code></a> domain service uses <code>ClassDiscoveryService</code> to discover <code>FixtureScript</code>s implementations to present in the UI.</p> 
           </div> 


[14/19] isis-site git commit: publishes 1.16.1-SNAPSHOT

Posted by da...@apache.org.
http://git-wip-us.apache.org/repos/asf/isis-site/blob/f27adae8/content/versions/SNAPSHOT/guides/rgant/rgant.html
----------------------------------------------------------------------
diff --git a/content/versions/SNAPSHOT/guides/rgant/rgant.html b/content/versions/SNAPSHOT/guides/rgant/rgant.html
index 939bfcb..d9575e8 100644
--- a/content/versions/SNAPSHOT/guides/rgant/rgant.html
+++ b/content/versions/SNAPSHOT/guides/rgant/rgant.html
@@ -2084,6 +2084,26 @@ table.CodeRay td.code>pre{padding:0}
          </thead> 
          <tbody> 
           <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgant/rgant.html#_rgant-Action_associateWith"><code>associateWith()</code></a></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><em>memberId</em><br> ("")</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>associates an action with another property or collection of the action.</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgant/rgant.html#_rgant-Action_associateWith"><code>associateWith-Sequence()</code></a></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><em>memberId</em><br> ("")</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>associates an action with another property or collection of the action.</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
            <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgant/rgant.html#_rgant-Action_command"><code>command()</code></a></p></td> 
            <td class="tableblock halign-left valign-top"><p class="tableblock"><code>AS_CONFIGURED</code>, <code>ENABLED</code>, <code>DISABLED</code><br> (<code>AS_CONFIGURED</code>)</p></td> 
            <td class="tableblock halign-left valign-top">
@@ -2114,6 +2134,16 @@ table.CodeRay td.code>pre{padding:0}
             </div></td> 
           </tr> 
           <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>commandDtoProcessor()</code></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock">Implementation of <code>CommandDtoProcessor</code> interface<br> (null)</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>If the <code>Command</code> also implements <code>CommandWithDto</code> (meaning that it can return a <code>CommandDto</code>, in other words be converted into an XML memento), then optionally specifies a processor that can refine this XML.</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
            <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgant/rgant.html#_rgant-Action_domainEvent"><code>domainEvent()</code></a></p></td> 
            <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>ActionDomainEvent</code><br> (<code>ActionDomainEvent.Default</code>)</p></td> 
            <td class="tableblock halign-left valign-top">
@@ -2139,6 +2169,9 @@ table.CodeRay td.code>pre{padding:0}
            <td class="tableblock halign-left valign-top">
             <div>
              <div class="paragraph"> 
+              <p>(deprecated - use view models and associated actions instead).</p> 
+             </div> 
+             <div class="paragraph"> 
               <p>whether an action can be invoked on a single object and/or on many objects in a collection.</p> 
              </div> 
              <div class="paragraph"> 
@@ -2162,6 +2195,9 @@ table.CodeRay td.code>pre{padding:0}
            <td class="tableblock halign-left valign-top">
             <div>
              <div class="paragraph"> 
+              <p>(deprecated).</p> 
+             </div> 
+             <div class="paragraph"> 
               <p>specifies that a custom implementation of <code>PublishingPayloadFactoryForAction</code> be used to create the (payload of the) published event representing the action invocation</p> 
              </div>
             </div></td> 
@@ -2245,7 +2281,93 @@ table.CodeRay td.code>pre{padding:0}
          </table> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_command">3.1. <code>command()</code></h3>
+         <h3 id="_rgant-Action_associateWith">3.1. <code>associateWith()</code></h3>
+         <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
+          <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_associateWith.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
+          <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
+          <ul class="dropdown-menu">
+           <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_associateWith.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
+           <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_associateWith.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
+           <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_associateWith.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
+           <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_associateWith.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
+          </ul>
+         </div> 
+         <div class="paragraph"> 
+          <p>The <code>associateWith</code> attribute allows an action to be associated with other properties or collections of the same domain object. The optional <code>associateWithSequence</code> attribute specifies the order of the action in the UI.</p> 
+         </div> 
+         <div class="paragraph"> 
+          <p>For example, an <code>Order</code> could have a collection of <code>OrderItem</code>s, and might provide actions to add and remove items:</p> 
+         </div> 
+         <div class="listingblock"> 
+          <div class="content"> 
+           <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
+
+    <span class="annotation">@Collection</span>
+    <span class="predefined-type">SortedSet</span>&lt;OrderItem&gt; getItems() { ... }
+
+    <span class="annotation">@Action</span>(associateWith=<span class="string"><span class="delimiter">"</span><span class="content">items</span><span class="delimiter">"</span></span>, associateWithSequence=<span class="string"><span class="delimiter">"</span><span class="content">1</span><span class="delimiter">"</span></span>)
+    <span class="directive">public</span> Order addItem(Product p, <span class="type">int</span> quantity) { ... }
+
+    <span class="annotation">@Action</span>(associateWith=<span class="string"><span class="delimiter">"</span><span class="content">items</span><span class="delimiter">"</span></span>, associateWithSequence=<span class="string"><span class="delimiter">"</span><span class="content">2</span><span class="delimiter">"</span></span>)
+    <span class="directive">public</span> Order removeItem(OrderItem item) { ... }
+    ...
+}</code></pre> 
+          </div> 
+         </div> 
+         <div class="paragraph"> 
+          <p>These actions - <code>addItem()</code> and <code>removeItem()</code> can be thought of as associated with with the <code>items</code> collection because that is the state that they primarily affect.</p> 
+         </div> 
+         <div class="paragraph"> 
+          <p>In the user interface associated actions are rendered close to the member to which they relate.</p> 
+         </div> 
+         <div class="admonitionblock note"> 
+          <table> 
+           <tbody>
+            <tr> 
+             <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+             <td class="content"> 
+              <div class="paragraph"> 
+               <p>The same effect can be accomplished using <code>@MemberOrder</code> or with the <code>.layout.xml</code> file.</p> 
+              </div> </td> 
+            </tr> 
+           </tbody>
+          </table> 
+         </div> 
+         <div class="sect3"> 
+          <h4 id="_inferred_defaults_and_choices">3.1.1. Inferred Defaults and Choices</h4> 
+          <div class="paragraph"> 
+           <p>If an action is associated with a collection, then any scalar or collection parameter of the action that is the same type as that collection will automatically have a list of choices provided for it, being the items of the associated collection.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>This is only done provided that there isn’t already an explicit <code>choicesNXxx()</code> or <code>autoCompleteNXxx()</code> supporting method. However, this list of choices <em>does</em> take priority over any choices that are inferred from the parameter type itself (as per either an <code>@DomainObject(autoCompleteRepository=…​)</code> or <code>@DomainObject(bounded=…​)</code>).</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>In addition, if the action has a collection parameter of the same type as the associated collection, then the Wicket viewer will render the collection with checkboxes. The user can use these checkboxes can be used to select the items of the action parameter.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>For example, suppose we have a "removeItems(…​)" action:</p> 
+          </div> 
+          <div class="listingblock"> 
+           <div class="content"> 
+            <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
+
+    <span class="annotation">@Collection</span>
+    <span class="predefined-type">SortedSet</span>&lt;OrderItem&gt; getItems() { ... }
+
+    ...
+
+    <span class="annotation">@Action</span>(associateWith=<span class="string"><span class="delimiter">"</span><span class="content">items</span><span class="delimiter">"</span></span>, associateWithSequence=<span class="string"><span class="delimiter">"</span><span class="content">2</span><span class="delimiter">"</span></span>)
+    <span class="directive">public</span> Order removeItems(<span class="predefined-type">SortedSet</span>&lt;OrderItem&gt; items) { ... }
+}</code></pre> 
+           </div> 
+          </div> 
+          <div class="paragraph"> 
+           <p>The Wicket viewer will then render the "items" collection with checkboxes, and any selected items will be used as the pre-selected set of items if the action is invoked.</p> 
+          </div> 
+         </div> 
+        </div> 
+        <div class="sect2"> 
+         <h3 id="_rgant-Action_command">3.2. <code>command()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_command.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -2257,7 +2379,7 @@ table.CodeRay td.code>pre{padding:0}
           </ul>
          </div> 
          <div class="paragraph"> 
-          <p>The <code>@Action(command=…​)</code> attribute (and the related <code>@Action(commandPersistence=…​)</code> and <code>@Action(commandExecuteIn=…​)</code> attributes) allows an action invocation to be made into a concrete object such that it can be inspected and persisted. The primary use case for this is enhanced profiling/auditing, and it also supports the deferring the execution of the action such that it can be invoked in the background.</p> 
+          <p>The <code>@Action(command=…​)</code> attribute (and the related <code>@Action(commandXxx=…​)</code> attributes) allows an action invocation to be made into a concrete object such that it can be inspected and persisted. The primary use case for this are to support the deferring the execution of the action such that it can be invoked in the background, and to replay commands in a master/slave configuration.</p> 
          </div> 
          <div class="paragraph"> 
           <p>The annotation works with (and is influenced by the behaviour of) a number of domain services:</p> 
@@ -2296,26 +2418,26 @@ table.CodeRay td.code>pre{padding:0}
           <p>The <code>command()</code> attribute determines whether the action invocation should be reified into a <code>Command</code> object (by the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandContext"><code>CommandContext</code></a> service).</p> 
          </div> 
          <div class="paragraph"> 
-          <p>The default is <code>AS_CONFIGURED</code>, meaning that the <a href="../rgcfg/rgcfg.html#_rgcfg_configuring-core">configuration property</a> <code>isis.services.command.actions</code> is used to determine the whether the action is reified:</p> 
+          <p>The default is <code>AS_CONFIGURED</code>, meaning that the <a href="../rgcfg/rgcfg.html#_rgcfg_configuring-core">configuration property</a> <code>isis.services.command.actions</code> is used to determine whether the action invocation is reified:</p> 
          </div> 
          <div class="ulist"> 
           <ul> 
            <li> <p><code>all</code><br></p> 
             <div class="paragraph"> 
-             <p>all actions are reified</p> 
+             <p>all action invocations are reified</p> 
             </div> </li> 
            <li> <p><code>ignoreSafe</code> (or <code>ignoreQueryOnly</code>)<br></p> 
             <div class="paragraph"> 
-             <p>actions with safe (read-only) semantics are ignored, but actions which may modify data are not ignored</p> 
+             <p>invocations of actions with safe (read-only) semantics are ignored, but actions which may modify data are not ignored</p> 
             </div> </li> 
            <li> <p><code>none</code><br></p> 
             <div class="paragraph"> 
-             <p>no actions are reified.</p> 
+             <p>no action invocations are reified.</p> 
             </div> </li> 
           </ul> 
          </div> 
          <div class="paragraph"> 
-          <p>If there is no configuration property in <code>isis.properties</code> then all actions are reified into <code>Command</code>s.</p> 
+          <p>If there is no configuration property in <code>isis.properties</code> then all action invocations are reified into <code>Command</code>s.</p> 
          </div> 
          <div class="admonitionblock note"> 
           <table> 
@@ -2331,7 +2453,7 @@ table.CodeRay td.code>pre{padding:0}
           </table> 
          </div> 
          <div class="paragraph"> 
-          <p>This default can be overridden on an action-by-action basis; if <code>command()</code> is set to <code>ENABLED</code> then the action is reified irrespective of the configured value; if set to <code>DISABLED</code> then the action is NOT reified irrespective of the configured value.</p> 
+          <p>This default can be overridden on an action-by-action basis; if <code>command()</code> is set to <code>ENABLED</code> then the action is reified irrespective of the configured value; if set to <code>DISABLED</code> then the action invocation is NOT reified irrespective of the configured value.</p> 
          </div> 
          <div class="paragraph"> 
           <p>For example:</p> 
@@ -2348,9 +2470,9 @@ table.CodeRay td.code>pre{padding:0}
           <p>corresponds to the behaviour described above; the <code>Command</code> object is persisted (assuming an appropriate <code>CommandService</code> is defined, and executed immediately in the foreground).</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__code_commandpersistence_code">3.1.1. <code>commandPersistence()</code></h4> 
+          <h4 id="__code_commandpersistence_code">3.2.1. <code>commandPersistence()</code></h4> 
           <div class="paragraph"> 
-           <p>If the action has been reified, then the <code>commandPersistence()</code> attribute determines whether that <code>Command</code> object should then also be persisted (the default), or not persisted, or only if hinted.</p> 
+           <p>If the action invocation has been reified, then the <code>commandPersistence()</code> attribute determines whether that <code>Command</code> object should then also be persisted (the default), or not persisted, or only if hinted.</p> 
           </div> 
           <div class="paragraph"> 
            <p>To explain this last alternative:</p> 
@@ -2377,7 +2499,6 @@ table.CodeRay td.code>pre{padding:0}
             <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
     <span class="annotation">@Action</span>(
         command=CommandReification.ENABLED,
-        commandExecuteIn=CommandExecuteIn.FOREGROUND,
         commandPersistence=CommandPersistence.NOT_PERSISTED
     )
     <span class="directive">public</span> Invoice generateInvoice(...) { ... }
@@ -2389,7 +2510,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__code_commandexecutein_code">3.1.2. <code>commandExecuteIn()</code></h4> 
+          <h4 id="__code_commandexecutein_code">3.2.2. <code>commandExecuteIn()</code></h4> 
           <div class="paragraph"> 
            <p>For persisted commands, the <code>commandExecuteIn()</code> attribute determines whether the <code>Command</code> should be executed in the foreground (the default) or executed in the background.</p> 
           </div> 
@@ -2404,18 +2525,162 @@ table.CodeRay td.code>pre{padding:0}
             <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
     <span class="annotation">@Action</span>(
         command=CommandReification.ENABLED,
-        commandExecuteIn=CommandExecuteIn.BACKGROUND)
+        commandExecuteIn=CommandExecuteIn.BACKGROUND
+    )
     <span class="directive">public</span> Invoice generateInvoice(...) { ... }
 }</code></pre> 
            </div> 
           </div> 
           <div class="paragraph"> 
-           <p>will result in the <code>Command</code> being persisted but its execution deferred to a background execution mechanism. The returned object from this action is the persisted <code>Command</code> itself.</p> 
+           <p>will result in the <code>Command</code> being persisted but its execution deferred to a background execution mechanism. The returned object from this action invocation is the persisted <code>Command</code> itself.</p> 
+          </div> 
+         </div> 
+         <div class="sect3"> 
+          <h4 id="__code_commanddtoprocessor_code">3.2.3. <code>commandDtoProcessor()</code></h4> 
+          <div class="paragraph"> 
+           <p>The <code>commandDtoProcessor()</code> attribute allows an implementation of <code>CommandDtoProcessor</code> to be specified. This interface has the following API:</p> 
+          </div> 
+          <div class="listingblock"> 
+           <div class="content"> 
+            <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">interface</span> <span class="class">CommandDtoProcessor</span> {
+    CommandDto process(             <i class="conum" data-value="1"></i><b>(1)</b>
+            Command command,        <i class="conum" data-value="2"></i><b>(2)</b>
+            CommandDto dto);        <i class="conum" data-value="3"></i><b>(3)</b>
+}</code></pre> 
+           </div> 
+          </div> 
+          <div class="colist arabic"> 
+           <table> 
+            <tbody>
+             <tr> 
+              <td><i class="conum" data-value="1"></i><b>1</b></td> 
+              <td>The returned <code>CommandDto</code>. This will typically be the <code>CommandDto</code> passed in, but supplemented in some way.</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="2"></i><b>2</b></td> 
+              <td>The <code>Command</code> being processed</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="3"></i><b>3</b></td> 
+              <td>The <code>CommandDto</code> (XML) obtained already from the <code>Command</code> (by virtue of it also implementing <code>CommandWithDto</code>, see discussion below).</td> 
+             </tr> 
+            </tbody>
+           </table> 
+          </div> 
+          <div class="paragraph"> 
+           <p>This interface is used by the framework-provided implementations of <code>ContentMappingService</code> for the REST API, allowing <code>Command</code>s implementations that also implement <code>CommandWithDto</code> to be further customised as they are serialized out. The primary use case for this capability is in support of master/slave replication.</p> 
+          </div> 
+          <div class="ulist"> 
+           <ul> 
+            <li> <p>on the master, <code>Command</code>s are serialized to XML. This includes the identity of the target object and the argument values of all parameters.</p> 
+             <div class="admonitionblock important"> 
+              <table> 
+               <tbody>
+                <tr> 
+                 <td class="icon"> <i class="fa icon-important" title="Important"></i> </td> 
+                 <td class="content"> 
+                  <div class="paragraph"> 
+                   <p>However, any <code>Blob</code>s and <code>Clob</code>s are deliberately excluded from this XML (they are instead stored as references). This is to prevent the storage requirements for <code>Command</code> from becoming excessive. A <code>CommandDtoProcessor</code> can be provided to re-attach blob information if required.</p> 
+                  </div> </td> 
+                </tr> 
+               </tbody>
+              </table> 
+             </div> </li> 
+            <li> <p>replaying <code>Command</code>s requires this missing parameter information to be reinstated. The <code>CommandDtoProcessor</code> therefore offers a hook to dynamically re-attach the missing <code>Blob</code> or <code>Clob</code> argument.</p> </li> 
+           </ul> 
+          </div> 
+          <div class="paragraph"> 
+           <p>As a special case, returning <code>null</code> means that the command’s DTO is effectively excluded when retrieving the list of commands. If replicating from master to slave, this effectively allows certain commands to be ignored. The <code>CommandDtoProcessor.Null</code> class provides a convenience implementation for this requirement.</p> 
+          </div> 
+          <div class="admonitionblock note"> 
+           <table> 
+            <tbody>
+             <tr> 
+              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+              <td class="content"> 
+               <div class="paragraph"> 
+                <p>If <code>commandDtoProcessor()</code> is specified, then <code>command()</code> is assumed to be ENABLED.</p> 
+               </div> </td> 
+             </tr> 
+            </tbody>
+           </table> 
+          </div> 
+          <div class="sect4"> 
+           <h5 id="_example_implementation">Example implementation</h5> 
+           <div class="paragraph"> 
+            <p>Consider the following method:</p> 
+           </div> 
+           <div class="listingblock"> 
+            <div class="content"> 
+             <pre class="CodeRay highlight"><code data-lang="java"><span class="annotation">@Action</span>(
+    domainEvent = IncomingDocumentRepository.UploadDomainEvent.class,
+    commandDtoProcessor = DeriveBlobArg0FromReturnedDocument.class
+)
+<span class="directive">public</span> <span class="predefined-type">Document</span> upload(<span class="directive">final</span> <span class="predefined-type">Blob</span> blob) {
+    <span class="directive">final</span> <span class="predefined-type">String</span> name = blob.getName();
+    <span class="directive">final</span> DocumentType type = DocumentTypeData.INCOMING.findUsing(documentTypeRepository);
+    <span class="directive">final</span> ApplicationUser me = meService.me();
+    <span class="predefined-type">String</span> atPath = me != <span class="predefined-constant">null</span> ? me.getAtPath() : <span class="predefined-constant">null</span>;
+    <span class="keyword">if</span> (atPath == <span class="predefined-constant">null</span>) {
+        atPath = <span class="string"><span class="delimiter">"</span><span class="content">/</span><span class="delimiter">"</span></span>;
+    }
+    <span class="keyword">return</span> incomingDocumentRepository.upsertAndArchive(type, atPath, name, blob);
+}</code></pre> 
+            </div> 
+           </div> 
+           <div class="paragraph"> 
+            <p>The <code>Blob</code> argument will not be persisted in the memento of the <code>Command</code>, but the information is implicitly available in the <code>Document</code> that is returned by the action. The <code>DeriveBlobArg0FromReturnedDocument</code> processor retrieves this information and dynamically adds:</p> 
+           </div> 
+           <div class="listingblock"> 
+            <div class="content"> 
+             <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">DeriveBlobArg0FromReturnedDocument</span>
+        <span class="directive">extends</span> CommandDtoProcessorForActionAbstract {
+
+    <span class="annotation">@Override</span>
+    <span class="directive">public</span> CommandDto process(Command command, CommandDto commandDto) {
+        <span class="directive">final</span> Bookmark result = commandWithDto.getResult();
+        <span class="keyword">if</span>(result == <span class="predefined-constant">null</span>) {
+            <span class="keyword">return</span> commandDto;
+        }
+        <span class="keyword">try</span> {
+            <span class="directive">final</span> <span class="predefined-type">Document</span> document = bookmarkService.lookup(result, <span class="predefined-type">Document</span>.class);
+            <span class="keyword">if</span> (document != <span class="predefined-constant">null</span>) {
+                ParamDto paramDto = getParamDto(commandDto, <span class="integer">0</span>);
+                CommonDtoUtils.setValueOn(paramDto, ValueType.BLOB, document.getBlob(), bookmarkService);
+            }
+        } <span class="keyword">catch</span>(<span class="exception">Exception</span> ex) {
+            <span class="keyword">return</span> commandDto;
+        }
+        <span class="keyword">return</span> commandDto;
+    }
+    <span class="annotation">@Inject</span>
+    BookmarkService bookmarkService;
+}</code></pre> 
+            </div> 
+           </div> 
+          </div> 
+          <div class="sect4"> 
+           <h5 id="_null_implementation">Null implementation</h5> 
+           <div class="paragraph"> 
+            <p>The null implementation can be used to simply indicate that no DTO should be returned for a <code>Command</code>. The effect is to ignore it for replay purposes:</p> 
+           </div> 
+           <div class="listingblock"> 
+            <div class="content"> 
+             <pre class="CodeRay highlight"><code data-lang="xml">pubc interface CommandDtoProcessor {
+    ...
+    class Null implements CommandDtoProcessor {
+        public CommandDto process(Command command, CommandDto commandDto) {
+            return null;
+        }
+    }
+}</code></pre> 
+            </div> 
+           </div> 
           </div> 
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_domainEvent">3.2. domainEvent()</h3>
+         <h3 id="_rgant-Action_domainEvent">3.3. domainEvent()</h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_domainEvent.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -2485,7 +2750,7 @@ table.CodeRay td.code>pre{padding:0}
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_subscribers">3.2.1. Subscribers</h4> 
+          <h4 id="_subscribers">3.3.1. Subscribers</h4> 
           <div class="paragraph"> 
            <p>Subscribers (which must be domain services) subscribe using either the <a href="https://github.com/google/guava">Guava</a> API or (if the <a href="../rgsvc/rgsvc.html#_rgsvc_core-domain-api_EventBusService"><code>EventBusService</code></a> has been appropriately configured) using the <a href="http://www.axonframework.org/">Axon Framework</a> API. The examples below use the Guava API.</p> 
           </div> 
@@ -2574,7 +2839,7 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_default_doop_and_noop_events">3.2.2. Default, Doop and Noop events</h4> 
+          <h4 id="_default_doop_and_noop_events">3.3.2. Default, Doop and Noop events</h4> 
           <div class="paragraph"> 
            <p>If the <code>domainEvent</code> attribute is not explicitly specified (is left as its default value, <code>ActionDomainEvent.Default</code>), then the framework will, by default, post an event.</p> 
           </div> 
@@ -2589,14 +2854,14 @@ table.CodeRay td.code>pre{padding:0}
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_raising_events_programmatically">3.2.3. Raising events programmatically</h4> 
+          <h4 id="_raising_events_programmatically">3.3.3. Raising events programmatically</h4> 
           <div class="paragraph"> 
            <p>Normally events are only raised for interactions through the UI. However, events can be raised programmatically either by calling the <a href="../rgsvc/rgsvc.html#_rgsvc_core-domain-api_EventBusService"><code>EventBusService</code></a> API directly, or by emulating the UI by wrapping the target object using the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_WrapperFactory"><code>WrapperFactory</code></a> domain service.</p> 
           </div> 
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_hidden">3.3. <code>hidden()</code></h3>
+         <h3 id="_rgant-Action_hidden">3.4. <code>hidden()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_hidden.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -2668,7 +2933,7 @@ table.CodeRay td.code>pre{padding:0}
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_invokeOn">3.4. <code>invokeOn()</code></h3>
+         <h3 id="_rgant-Action_invokeOn">3.5. <code>invokeOn()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_invokeOn.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -2751,7 +3016,7 @@ table.CodeRay td.code>pre{padding:0}
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_publishing">3.5. <code>publishing()</code></h3>
+         <h3 id="_rgant-Action_publishing">3.6. <code>publishing()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_publishing.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -2763,7 +3028,7 @@ table.CodeRay td.code>pre{padding:0}
           </ul>
          </div> 
          <div class="paragraph"> 
-          <p>The <code>publishing()</code> attribute determines whether and how an action invocation is published via the registered implementation of a <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublishingService"><code>PublishingService</code></a>) or <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a>. This attribute is also supported for <a href="../rgant/rgant.html#_rgant-DomainObject_publishing">domain objects</a>, where it controls whether changed objects are published as events, and for <a href="../rgant/rgant.html#_rgant_Property_publishing"><code>@Property#publishing()</code></a>, where it controls whether property edits are published as events.</p> 
+          <p>The <code>publishing()</code> attribute determines whether and how an action invocation is published via the registered implementation of a <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublishingService"><code>PublishingService</code></a>) or <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a>. This attribute is also supported for <a href="../rgant/rgant.html#_rgant-DomainObject_publishing">domain objects</a>, where it controls whether changed objects are published as events, and for <a href="../rgant/rgant.html#_rgant-Property_publishing"><code>@Property#publishing()</code></a>, where it controls whether property edits are published as events.</p> 
          </div> 
          <div class="paragraph"> 
           <p>A common use case is to notify external "downstream" systems of changes in the state of the Isis application. The default value for the attribute is <code>AS_CONFIGURED</code>, meaning that the <a href="../rgcfg/rgcfg.html#_rgcfg_configuring-core">configuration property</a> <code>isis.services.publish.actions</code> is used to determine the whether the action is published:</p> 
@@ -2812,7 +3077,7 @@ table.CodeRay td.code>pre{padding:0}
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="__code_publishingpayloadfactory_code">3.5.1. <code>publishingPayloadFactory()</code></h4> 
+          <h4 id="__code_publishingpayloadfactory_code">3.6.1. <code>publishingPayloadFactory()</code></h4> 
           <div class="paragraph"> 
            <p>The (optional) related <code>publishingPayloadFactory()</code> specifies the class to use to create the (payload of the) event to be published by the publishing factory.</p> 
           </div> 
@@ -2835,7 +3100,7 @@ table.CodeRay td.code>pre{padding:0}
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_restrictTo">3.6. <code>restrictTo()</code></h3>
+         <h3 id="_rgant-Action_restrictTo">3.7. <code>restrictTo()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_restrictTo.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -2869,7 +3134,7 @@ table.CodeRay td.code>pre{padding:0}
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_semantics">3.7. <code>semantics()</code></h3>
+         <h3 id="_rgant-Action_semantics">3.8. <code>semantics()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_semantics.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -2988,7 +3253,7 @@ WrapperFactory wrapperFactory;</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Action_typeOf">3.8. <code>typeOf()</code></h3>
+         <h3 id="_rgant-Action_typeOf">3.9. <code>typeOf()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Action_typeOf.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -5631,9 +5896,9 @@ WrapperFactory wrapperFactory;</code></pre>
          </div> 
          <div class="olist arabic"> 
           <ol class="arabic"> 
-           <li> <p><a href="../rgant/rgant.html#_rgant_Discriminator"><code>@Discriminator</code></a></p> </li> 
+           <li> <p><a href="../rgant/rgant.html#_rgant-Discriminator"><code>@Discriminator</code></a></p> </li> 
            <li> <p><code>@DomainObject#objectType</code></p> </li> 
-           <li> <p><a href="../rgant/rgant.html#_rgant_PersistenceCapable"><code>@PersistenceCapable</code></a>, if at least the <code>schema</code> attribute is defined. <br></p> 
+           <li> <p><a href="../rgant/rgant.html#_rgant-PersistenceCapable"><code>@PersistenceCapable</code></a>, if at least the <code>schema</code> attribute is defined. <br></p> 
             <div class="paragraph"> 
              <p>If both <code>schema</code> and <code>table</code> are defined, then the value is “schema.table�?. If only <code>schema</code> is defined, then the value is “schema.className�?.</p> 
             </div> </li> 
@@ -6070,7 +6335,7 @@ WrapperFactory wrapperFactory;</code></pre>
            </table> 
           </div> 
           <div class="paragraph"> 
-           <p>The autocomplete action can also be a regular method, annotated using <a href="../rgant/rgant.html#_rgant_Programmatic"><code>@Programmatic</code></a>:</p> 
+           <p>The autocomplete action can also be a regular method, annotated using <a href="../rgant/rgant.html#_rgant-Programmatic"><code>@Programmatic</code></a>:</p> 
           </div> 
           <div class="listingblock"> 
            <div class="content"> 
@@ -6930,9 +7195,9 @@ WrapperFactory wrapperFactory;</code></pre>
           </div> 
           <div class="olist arabic"> 
            <ol class="arabic"> 
-            <li> <p><a href="../rgant/rgant.html#_rgant_Discriminator"><code>@Discriminator</code></a></p> </li> 
+            <li> <p><a href="../rgant/rgant.html#_rgant-Discriminator"><code>@Discriminator</code></a></p> </li> 
             <li> <p><code>@DomainObject#objectType</code>, or <a href="../rgant/rgant.html#_rgant_aaa_deprecated"><code>@ObjectType</code></a> (deprecated)</p> </li> 
-            <li> <p><a href="../rgant/rgant.html#_rgant_PersistenceCapable"><code>@PersistenceCapable</code></a>, if at least the <code>schema</code> attribute is defined. <br></p> 
+            <li> <p><a href="../rgant/rgant.html#_rgant-PersistenceCapable"><code>@PersistenceCapable</code></a>, if at least the <code>schema</code> attribute is defined. <br></p> 
              <div class="paragraph"> 
               <p>If both <code>schema</code> and <code>table</code> are defined, then the value is “schema.table�?. If only <code>schema</code> is defined, then the value is “schema.className�?.</p> 
              </div> </li> 
@@ -6983,7 +7248,7 @@ WrapperFactory wrapperFactory;</code></pre>
           </ul>
          </div> 
          <div class="paragraph"> 
-          <p>The <code>publishing()</code> attribute determines whether and how a modified object instance is published via the registered implementation of a <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublishingService"><code>PublishingService</code></a>) or <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a>. This attribute is also supported for <a href="../rgant/rgant.html#_rgant-Action_publishing">actions</a>, where it controls whether action invocations are published as events, and for <a href="../rgant/rgant.html#_rgant_Property_publishing"><code>@Property#publishing()</code></a>, where it controls whether property edits are published as events.</p> 
+          <p>The <code>publishing()</code> attribute determines whether and how a modified object instance is published via the registered implementation of a <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublishingService"><code>PublishingService</code></a>) or <a href="../rgsvc/rgsvc.html#_rgsvc_persistence-layer-spi_PublisherService"><code>PublisherService</code></a>. This attribute is also supported for <a href="../rgant/rgant.html#_rgant-Action_publishing">actions</a>, where it controls whether action invocations are published as events, and for <a href="../rgant/rgant.html#_rgant-Property_publishing"><code>@Property#publishing()</code></a>, where it controls whether property edits are published as events.</p> 
          </div> 
          <div class="paragraph"> 
           <p>A common use case is to notify external "downstream" systems of changes in the state of the Isis application.</p> 
@@ -8450,7 +8715,7 @@ WrapperFactory wrapperFactory;</code></pre>
            <td class="tableblock halign-left valign-top">
             <div>
              <div class="paragraph"> 
-              <p>equivalent to <a href="../rgant/rgant.html#_rgant_DomainObject_objectType"><code>@DomainObject#objectType()</code></a>, specifies the objectType of the service.</p> 
+              <p>equivalent to <a href="../rgant/rgant.html#_rgant-DomainObject_objectType"><code>@DomainObject#objectType()</code></a>, specifies the objectType of the service.</p> 
              </div> 
              <div class="paragraph"> 
               <p>The instanceId for services is always "1".</p> 
@@ -9656,7 +9921,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="paragraph"> 
-         <p>Apache Isis does provide several other ways to specify optionality: using the <a href="../rgant/rgant.html#_rgant_Property_optionality"><code>@Property#optionality()</code></a> / <a href="../rgant/rgant.html#_rgant_Parameter_optionality"><code>@Parameter#optionality()</code></a> annotation. For properties, the optionality can also be inferred from the <a href="../rgant/rgant.html#_rgant_Column_allowsNull"><code>@Column#allowsNull()</code></a> attribute.</p> 
+         <p>Apache Isis does provide several other ways to specify optionality: using the <a href="../rgant/rgant.html#_rgant-Property_optionality"><code>@Property#optionality()</code></a> / <a href="../rgant/rgant.html#_rgant-Parameter_optionality"><code>@Parameter#optionality()</code></a> annotation. For properties, the optionality can also be inferred from the <a href="../rgant/rgant.html#_rgant-Column_allowsNull"><code>@Column#allowsNull()</code></a> attribute.</p> 
         </div> 
         <div class="admonitionblock tip"> 
          <table> 
@@ -9665,7 +9930,7 @@ container.persist(cust);</code></pre>
             <td class="icon"> <i class="fa icon-tip" title="Tip"></i> </td> 
             <td class="content"> 
              <div class="paragraph"> 
-              <p>See the <a href="../rgant/rgant.html#_rgant_Property_optionality"><code>@Property#optionality()</code></a> documentation for a much fuller discussion on the relationship between using the Apache Isis annotations vs <a href="../rgant/rgant.html#_rgant_Column_allowsNull"><code>@Column#allowsNull()</code></a>.</p> 
+              <p>See the <a href="../rgant/rgant.html#_rgant-Property_optionality"><code>@Property#optionality()</code></a> documentation for a much fuller discussion on the relationship between using the Apache Isis annotations vs <a href="../rgant/rgant.html#_rgant-Column_allowsNull"><code>@Column#allowsNull()</code></a>.</p> 
              </div> </td> 
            </tr> 
           </tbody>
@@ -9818,7 +10083,7 @@ container.persist(cust);</code></pre>
            <td class="tableblock halign-left valign-top">
             <div>
              <div class="paragraph"> 
-              <p>Deprecated; use <a href="../rgant/rgant.html#_rgant_minLength"><code>@MinLength</code></a> instead.<br></p> 
+              <p>Deprecated; use <a href="../rgant/rgant.html#_rgant-MinLength"><code>@MinLength</code></a> instead.<br></p> 
              </div> 
              <div class="paragraph"> 
               <p>Can be used to specify the minimum length for <a href="../rgcms/rgcms.html#<em>rgcms_methods_prefixes_autoComplete"><code>autoComplete…​()</code></a> supporting method; but because this _is a supporting method rather than the action method itself, we now feel it is misleading to use the <code>@Parameter</code> annotation in this situation.</p> 
@@ -10158,7 +10423,7 @@ container.persist(cust);</code></pre>
              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
              <td class="content"> 
               <div class="paragraph"> 
-               <p>It is also possible to specify optionality using <a href="../rgant/rgant.html#_rgant_Nullable"><code>@Nullable</code></a> annotation.</p> 
+               <p>It is also possible to specify optionality using <a href="../rgant/rgant.html#_rgant-Nullable"><code>@Nullable</code></a> annotation.</p> 
               </div> </td> 
             </tr> 
            </tbody>
@@ -10811,9 +11076,9 @@ container.persist(cust);</code></pre>
          </div> 
          <div class="olist arabic"> 
           <ol class="arabic"> 
-           <li> <p><a href="../rgant/rgant.html#_rgant_Discriminator"><code>@Discriminator</code></a></p> </li> 
+           <li> <p><a href="../rgant/rgant.html#_rgant-Discriminator"><code>@Discriminator</code></a></p> </li> 
            <li> <p><code>@DomainObject#objectType</code></p> </li> 
-           <li> <p><a href="../rgant/rgant.html#_rgant_PersistenceCapable"><code>@PersistenceCapable</code></a>, if at least the <code>schema</code> attribute is defined. <br></p> 
+           <li> <p><a href="../rgant/rgant.html#_rgant-PersistenceCapable"><code>@PersistenceCapable</code></a>, if at least the <code>schema</code> attribute is defined. <br></p> 
             <div class="paragraph"> 
              <p>If both <code>schema</code> and <code>table</code> are defined, then the value is “schema.table�?. If only <code>schema</code> is defined, then the value is “schema.className�?.</p> 
             </div> </li> 
@@ -11160,6 +11425,46 @@ container.persist(cust);</code></pre>
          </thead> 
          <tbody> 
           <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgant/rgant.html#_rgant-Property_command"><code>command()</code></a></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>AS_CONFIGURED</code>, <code>ENABLED</code>, <code>DISABLED</code><br> (<code>AS_CONFIGURED</code>)</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>whether the property edit should be reified into a <code>o.a.i.applib.</code><br> <code>services.command.Command</code> object through the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandContext"><code>CommandContext</code></a> service.</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>commandExecuteIn()</code></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>FOREGROUND</code>,<code>BACKGROUND</code><br> (<code>FOREGROUND</code>)</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>whether to execute the command immediately, or to persist it (assuming that an appropriate implementation of <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a> has been configured) such that a background scheduler can execute the command asynchronously</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>commandPersistence()</code></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>PERSISTED</code>, <code>NOT_PERSISTED</code>, <code>IF_HINTED</code><br> (<code>PERSISTED</code>)</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>whether the reified <code>Command</code> (as provided by the <code>CommandContext</code> domain service) should actually be persisted (assuming an appropriate implementation of <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a> has been configured).</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock"><code>commandDtoProcessor()</code></p></td> 
+           <td class="tableblock halign-left valign-top"><p class="tableblock">Implementation of <code>CommandDtoProcessor</code> interface<br> (null)</p></td> 
+           <td class="tableblock halign-left valign-top">
+            <div>
+             <div class="paragraph"> 
+              <p>If the <code>Command</code> also implements <code>CommandWithDto</code> (meaning that it can return a <code>CommandDto</code>, in other words be converted into an XML memento), then optionally specifies a processor that can refine this XML.</p> 
+             </div>
+            </div></td> 
+          </tr> 
+          <tr> 
            <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="../rgant/rgant.html#_rgant-Property_domainEvent"><code>domainEvent()</code></a></p></td> 
            <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>PropertyDomainEvent</code><br> (<code>PropertyDomainEvent.Default</code>)</p></td> 
            <td class="tableblock halign-left valign-top">
@@ -11334,7 +11639,264 @@ container.persist(cust);</code></pre>
          </table> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_domainEvent">30.1. <code>domainEvent()</code></h3>
+         <h3 id="_rgant-Property_command">30.1. <code>command()</code></h3>
+         <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
+          <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_command.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
+          <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
+          <ul class="dropdown-menu">
+           <li><a href="https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_command.adoc" target="_blank"><i class="fa fa-pencil-square-o fa-fw" aria-hidden="true"></i>&nbsp; Edit</a></li>
+           <li><a href="https://github.com/apache/isis/commits/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_command.adoc" target="_blank"><i class="fa fa-clock-o fa-fw" aria-hidden="true"></i>&nbsp; History</a></li>
+           <li><a href="https://github.com/apache/isis/raw/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_command.adoc" target="_blank"><i class="fa fa-file-text-o fa-fw" aria-hidden="true"></i>&nbsp; Raw</a></li>
+           <li><a href="https://github.com/apache/isis/blame/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_command.adoc" target="_blank"><i class="fa fa-hand-o-right fa-fw" aria-hidden="true"></i>&nbsp; Blame</a></li>
+          </ul>
+         </div> 
+         <div class="paragraph"> 
+          <p>The <code>@Property(command=…​)</code> attribute (and the related <code>@Property(commandXxx=…​)</code> attributes) allows a property edit to be made into a concrete object such that it can be inspected and persisted. The primary use case for this are to support the deferring the execution of the action such that it can be invoked in the background, and to replay commands in a master/slave configuration.</p> 
+         </div> 
+         <div class="paragraph"> 
+          <p>The annotation works with (and is influenced by the behaviour of) a number of domain services:</p> 
+         </div> 
+         <div class="ulist"> 
+          <ul> 
+           <li> <p><a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandContext"><code>CommandContext</code></a></p> </li> 
+           <li> <p><a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a></p> </li> 
+           <li> <p><a href="../rgsvc/rgsvc.html#_rgsvc_spi_BackgroundService"><code>BackgroundService</code></a> and</p> </li> 
+           <li> <p><a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_BackgroundCommandService"><code>BackgroundCommandService</code></a></p> </li> 
+          </ul> 
+         </div> 
+         <div class="paragraph"> 
+          <p>Each property edit is reified by the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandContext"><code>CommandContext</code></a> service into a <code>Command</code> object, capturing details of the target object, the property, the proposed new value fo the property, the user, a timestamp and so on.</p> 
+         </div> 
+         <div class="paragraph"> 
+          <p>If an appropriate <code>CommandService</code> is configured (for example using (non-ASF) <a href="http://platform.incode.org/modules/spi/command/spi-command.html">Incode Platform’s command</a> module), then the <code>Command</code> itself is persisted.</p> 
+         </div> 
+         <div class="paragraph"> 
+          <p>By default, actions are invoked in directly in the thread of the invocation. If there is an implementation of <code>BackgroundCommandService</code> (as the (non-ASF) <a href="http://platform.incode.org" target="_blank">Incode Platform</a>'s command module does provide), then this means in turn that the <code>BackgroundService</code> can be used by the domain object code to programmatically create background <code>Command</code>s.</p> 
+         </div> 
+         <div class="admonitionblock note"> 
+          <table> 
+           <tbody>
+            <tr> 
+             <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+             <td class="content"> 
+              <div class="paragraph"> 
+               <p>If background <code>Command</code>s are used, then an external scheduler, using <a href="../ugbtb/ugbtb.html#_ugbtb_headless-access_BackgroundCommandExecution">headless access</a>, must also be configured.</p> 
+              </div> </td> 
+            </tr> 
+           </tbody>
+          </table> 
+         </div> 
+         <div class="paragraph"> 
+          <p>The <code>command()</code> attribute determines whether the property edit should be reified into a <code>Command</code> object (by the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_CommandContext"><code>CommandContext</code></a> service).</p> 
+         </div> 
+         <div class="paragraph"> 
+          <p>The default is <code>AS_CONFIGURED</code>, meaning that the <a href="../rgcfg/rgcfg.html#_rgcfg_configuring-core">configuration property</a> <code>isis.services.command.properties</code> is used to determine whether the property edit is reified:</p> 
+         </div> 
+         <div class="ulist"> 
+          <ul> 
+           <li> <p><code>all</code><br></p> 
+            <div class="paragraph"> 
+             <p>all property edits are reified</p> 
+            </div> </li> 
+           <li> <p><code>none</code><br></p> 
+            <div class="paragraph"> 
+             <p>no property edits are reified.</p> 
+            </div> </li> 
+          </ul> 
+         </div> 
+         <div class="paragraph"> 
+          <p>If there is no configuration property in <code>isis.properties</code> then all property edits are reified into <code>Command</code>s.</p> 
+         </div> 
+         <div class="admonitionblock note"> 
+          <table> 
+           <tbody>
+            <tr> 
+             <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+             <td class="content"> 
+              <div class="paragraph"> 
+               <p>Note: <code>Command</code> reification does not necessarily imply that <code>Command</code> objects will be persisted; that depends on whether there is a <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_CommandService"><code>CommandService</code></a> configured that will persist said <code>Command</code>s.</p> 
+              </div> </td> 
+            </tr> 
+           </tbody>
+          </table> 
+         </div> 
+         <div class="paragraph"> 
+          <p>This default can be overridden on an property-by-property basis; if <code>command()</code> is set to <code>ENABLED</code> then the action is reified irrespective of the configured value; if set to <code>DISABLED</code> then the property edit is NOT reified irrespective of the configured value.</p> 
+         </div> 
+         <div class="paragraph"> 
+          <p>For example:</p> 
+         </div> 
+         <div class="listingblock"> 
+          <div class="content"> 
+           <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
+    <span class="annotation">@Property</span>(command=CommandReification.ENABLED)
+    <span class="directive">public</span> Product getProduct() { ... }
+    <span class="directive">public</span> <span class="type">void</span> setProduct(Product p) { ... }
+}</code></pre> 
+          </div> 
+         </div> 
+         <div class="paragraph"> 
+          <p>corresponds to the behaviour described above; the <code>Command</code> object is persisted (assuming an appropriate <code>CommandService</code> is defined, and executed immediately in the foreground).</p> 
+         </div> 
+         <div class="sect3"> 
+          <h4 id="__code_commandpersistence_code_2">30.1.1. <code>commandPersistence()</code></h4> 
+          <div class="paragraph"> 
+           <p>If the property edit has been reified, then the <code>commandPersistence()</code> attribute determines whether that <code>Command</code> object should then also be persisted (the default), or not persisted, or only if hinted.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>To explain this last alternative:</p> 
+          </div> 
+          <div class="listingblock"> 
+           <div class="content"> 
+            <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
+    <span class="annotation">@Property</span>(
+        command=CommandReification.ENABLED,
+        commandPersistence=CommandPersistence.IF_HINTED
+    )
+    <span class="directive">public</span> Product getProduct() { ... }
+    <span class="directive">public</span> <span class="type">void</span> setProduct(Product p) { ... }
+}</code></pre> 
+           </div> 
+          </div> 
+          <div class="paragraph"> 
+           <p>will suppress the persistence of the <code>Command</code> object <em>unless</em> a child background <code>Command</code> has been created in the body of the property by way of the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_BackgroundService"><code>BackgroundService</code></a>.</p> 
+          </div> 
+          <div class="admonitionblock note"> 
+           <table> 
+            <tbody>
+             <tr> 
+              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+              <td class="content"> 
+               <div class="paragraph"> 
+                <p>Unlike actions, where this is quite feasible, it is rather unlikely to occur as a side-effect of editing a property.</p> 
+               </div> </td> 
+             </tr> 
+            </tbody>
+           </table> 
+          </div> 
+          <div class="paragraph"> 
+           <p>On the other hand:</p> 
+          </div> 
+          <div class="listingblock"> 
+           <div class="content"> 
+            <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
+    <span class="annotation">@Property</span>(
+        command=CommandReification.ENABLED,
+        commandPersistence=CommandPersistence.NOT_PERSISTED
+    )
+    <span class="directive">public</span> Product getProduct() { ... }
+    <span class="directive">public</span> <span class="type">void</span> setProduct(Product p) { ... }
+}</code></pre> 
+           </div> 
+          </div> 
+          <div class="paragraph"> 
+           <p>will prevent the parent <code>Command</code> object from being persisted, <em>even if</em> a child background <code>Command</code> is created.</p> 
+          </div> 
+         </div> 
+         <div class="sect3"> 
+          <h4 id="__code_commandexecutein_code_2">30.1.2. <code>commandExecuteIn()</code></h4> 
+          <div class="paragraph"> 
+           <p>For persisted commands, the <code>commandExecuteIn()</code> attribute determines whether the <code>Command</code> should be executed in the foreground (the default) or executed in the background.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>Background execution means that the command is not executed immediately, but is available for a configured <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-spi_BackgroundCommandService"><code>BackgroundCommandService</code></a> to execute, eg by way of an in-memory scheduler such as Quartz. See <a href="../ugbtb/ugbtb.html#_ugbtb_headless-access_BackgroundCommandExecution">here</a> for further information on this topic.</p> 
+          </div> 
+          <div class="paragraph"> 
+           <p>For example:</p> 
+          </div> 
+          <div class="listingblock"> 
+           <div class="content"> 
+            <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">class</span> <span class="class">Order</span> {
+    <span class="annotation">@Property</span>(
+        command=CommandReification.ENABLED,
+        commandExecuteIn=CommandExecuteIn.BACKGROUND
+    )
+    <span class="directive">public</span> Product getProduct() { ... }
+    <span class="directive">public</span> <span class="type">void</span> setProduct(Product p) { ... }
+}</code></pre> 
+           </div> 
+          </div> 
+          <div class="paragraph"> 
+           <p>will result in the <code>Command</code> being persisted but its execution deferred to a background execution mechanism. The returned object from this property edit is the persisted <code>Command</code> itself.</p> 
+          </div> 
+         </div> 
+         <div class="sect3"> 
+          <h4 id="__code_commanddtoprocessor_code_2">30.1.3. <code>commandDtoProcessor()</code></h4> 
+          <div class="paragraph"> 
+           <p>The <code>commandDtoProcessor()</code> attribute allows an implementation of <code>CommandDtoProcessor</code> to be specified. This interface has the following API:</p> 
+          </div> 
+          <div class="listingblock"> 
+           <div class="content"> 
+            <pre class="CodeRay highlight"><code data-lang="java"><span class="directive">public</span> <span class="type">interface</span> <span class="class">CommandDtoProcessor</span> {
+    CommandDto process(             <i class="conum" data-value="1"></i><b>(1)</b>
+            Command command,        <i class="conum" data-value="2"></i><b>(2)</b>
+            CommandDto dto);        <i class="conum" data-value="3"></i><b>(3)</b>
+}</code></pre> 
+           </div> 
+          </div> 
+          <div class="colist arabic"> 
+           <table> 
+            <tbody>
+             <tr> 
+              <td><i class="conum" data-value="1"></i><b>1</b></td> 
+              <td>The returned <code>CommandDto</code>. This will typically be the <code>CommandDto</code> passed in, but supplemented in some way.</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="2"></i><b>2</b></td> 
+              <td>The <code>Command</code> being processed</td> 
+             </tr> 
+             <tr> 
+              <td><i class="conum" data-value="3"></i><b>3</b></td> 
+              <td>The <code>CommandDto</code> (XML) obtained already from the <code>Command</code> (by virtue of it also implementing <code>CommandWithDto</code>, see discussion below).</td> 
+             </tr> 
+            </tbody>
+           </table> 
+          </div> 
+          <div class="paragraph"> 
+           <p>This interface is used by the framework-provided implementations of <code>ContentMappingService</code> for the REST API, allowing <code>Command</code>s implementations that also implement <code>CommandWithDto</code> to be further customised as they are serialized out. The primary use case for this capability is in support of master/slave replication.</p> 
+          </div> 
+          <div class="ulist"> 
+           <ul> 
+            <li> <p>on the master, <code>Command</code>s are serialized to XML. This includes the identity of the target object and the intended new value of the property.</p> 
+             <div class="admonitionblock important"> 
+              <table> 
+               <tbody>
+                <tr> 
+                 <td class="icon"> <i class="fa icon-important" title="Important"></i> </td> 
+                 <td class="content"> 
+                  <div class="paragraph"> 
+                   <p>However, any <code>Blob</code>s and <code>Clob</code>s are deliberately excluded from this XML (they are instead stored as references). This is to prevent the storage requirements for <code>Command</code> from becoming excessive. A <code>CommandDtoProcessor</code> can be provided to re-attach blob information if required.</p> 
+                  </div> </td> 
+                </tr> 
+               </tbody>
+              </table> 
+             </div> </li> 
+            <li> <p>replaying <code>Command</code>s requires this missing parameter information to be reinstated. The <code>CommandDtoProcessor</code> therefore offers a hook to dynamically re-attach the missing <code>Blob</code> or <code>Clob</code> argument.</p> </li> 
+           </ul> 
+          </div> 
+          <div class="paragraph"> 
+           <p>As a special case, returning <code>null</code> means that the command’s DTO is effectively excluded when retrieving the list of commands. If replicating from master to slave, this effectively allows certain commands to be ignored. The <code>CommandDtoProcessor.Null</code> class provides a convenience implementation for this requirement.</p> 
+          </div> 
+          <div class="admonitionblock note"> 
+           <table> 
+            <tbody>
+             <tr> 
+              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
+              <td class="content"> 
+               <div class="paragraph"> 
+                <p>If <code>commandDtoProcessor()</code> is specified, then <code>command()</code> is assumed to be ENABLED.</p> 
+               </div> </td> 
+             </tr> 
+            </tbody>
+           </table> 
+          </div> 
+          <div class="paragraph"> 
+           <p>For an example application, see <a href="#_rgant-Action_command"><code>Action#command()</code></a>.</p> 
+          </div> 
+         </div> 
+        </div> 
+        <div class="sect2"> 
+         <h3 id="_rgant-Property_domainEvent">30.2. <code>domainEvent()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_domainEvent.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11415,7 +11977,7 @@ container.persist(cust);</code></pre>
           </table> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_subscribers_13">30.1.1. Subscribers</h4> 
+          <h4 id="_subscribers_13">30.2.1. Subscribers</h4> 
           <div class="paragraph"> 
            <p>Subscribers (which must be domain services) subscribe using either the <a href="https://github.com/google/guava">Guava</a> API or (if the <a href="../rgsvc/rgsvc.html#_rgsvc_core-domain-api_EventBusService"><code>EventBusService</code></a> has been appropriately configured) using the <a href="http://www.axonframework.org/">Axon Framework</a> API. The examples below use the Guava API.</p> 
           </div> 
@@ -11504,7 +12066,7 @@ container.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_default_doop_and_noop_events_13">30.1.2. Default, Doop and Noop events</h4> 
+          <h4 id="_default_doop_and_noop_events_13">30.2.2. Default, Doop and Noop events</h4> 
           <div class="paragraph"> 
            <p>If the <code>domainEvent</code> attribute is not explicitly specified (is left as its default value, <code>PropertyDomainEvent.Default</code>), then the framework will, by default, post an event.</p> 
           </div> 
@@ -11519,14 +12081,14 @@ container.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_raising_events_programmatically_6">30.1.3. Raising events programmatically</h4> 
+          <h4 id="_raising_events_programmatically_6">30.2.3. Raising events programmatically</h4> 
           <div class="paragraph"> 
            <p>Normally events are only raised for interactions through the UI. However, events can be raised programmatically by wrapping the target object using the <a href="../rgsvc/rgsvc.html#_rgsvc_application-layer-api_WrapperFactory"><code>WrapperFactory</code></a> service.</p> 
           </div> 
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_editing">30.2. <code>editing()</code></h3>
+         <h3 id="_rgant-Property_editing">30.3. <code>editing()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_editing.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11584,7 +12146,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_fileAccept">30.3. <code>fileAccept()</code></h3>
+         <h3 id="_rgant-Property_fileAccept">30.4. <code>fileAccept()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_fileAccept.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11624,7 +12186,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_hidden">30.4. <code>hidden()</code></h3>
+         <h3 id="_rgant-Property_hidden">30.5. <code>hidden()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_hidden.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11718,7 +12280,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_maxLength">30.5. <code>maxLength()</code></h3>
+         <h3 id="_rgant-Property_maxLength">30.6. <code>maxLength()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_maxLength.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11752,7 +12314,7 @@ container.persist(cust);</code></pre>
           <p>In this case there is therefore no need for the <code>@Property#maxLength()</code> attribute.</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_non_persistent_properties">30.5.1. Non-persistent properties</h4> 
+          <h4 id="_non_persistent_properties">30.6.1. Non-persistent properties</h4> 
           <div class="paragraph"> 
            <p>Of course, not every property is persistent (it could instead be derived), and neither is every domain object an entity (it could be a view model). For these non persistable properties the <code>maxLength()</code> attribute is still required.</p> 
           </div> 
@@ -11791,7 +12353,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_mustSatisfy">30.6. <code>mustSatisfy()</code></h3>
+         <h3 id="_rgant-Property_mustSatisfy">30.7. <code>mustSatisfy()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_mustSatisfy.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11878,7 +12440,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_notPersisted">30.7. <code>notPersisted()</code></h3>
+         <h3 id="_rgant-Property_notPersisted">30.8. <code>notPersisted()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_notPersisted.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11962,7 +12524,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_optionality">30.8. <code>optionality()</code></h3>
+         <h3 id="_rgant-Property_optionality">30.9. <code>optionality()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_optionality.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -11999,7 +12561,7 @@ container.persist(cust);</code></pre>
           <p>In this case there is no need for the <code>@Property#optionality()</code> attribute.</p> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_mismatched_defaults">30.8.1. Mismatched defaults</h4> 
+          <h4 id="_mismatched_defaults">30.9.1. Mismatched defaults</h4> 
           <div class="paragraph"> 
            <p>If the <code>@Column#allowsNull()</code> attribute is omitted and the `@Property#optionality() attribute is also omitted, then note that Isis' defaults and JDO’s defaults differ. Specifically, Isis always assumes properties are mandatory, whereas JDO specifies that primitives are mandatory, but all reference types are optional.</p> 
           </div> 
@@ -12008,7 +12570,7 @@ container.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_superclass_inheritance_type">30.8.2. Superclass inheritance type</h4> 
+          <h4 id="_superclass_inheritance_type">30.9.2. Superclass inheritance type</h4> 
           <div class="paragraph"> 
            <p>There is one case (at least) it may be necessary to annotate the property with both <code>@Column#allowsNull</code> and also <code>@Property#optionality()</code>. If the property is logically mandatory and is in a subclass, but the mapping of the class hierarchy is to store both the superclass and subclass(es) into a single table (ie a "roll-up" mapping using <code>javax.jdo.annotations.InheritanceStrategy#SUPERCLASS_TABLE</code>), then JDO requires that the property is annotated as <code>@Column#allowsNull="true"</code>: its value will be not defined for other subclasses.</p> 
           </div> 
@@ -12055,7 +12617,7 @@ container.persist(cust);</code></pre>
           </div> 
          </div> 
          <div class="sect3"> 
-          <h4 id="_non_persistent_properties_2">30.8.3. Non-persistent properties</h4> 
+          <h4 id="_non_persistent_properties_2">30.9.3. Non-persistent properties</h4> 
           <div class="paragraph"> 
            <p>Of course, not every property is persistent (it could instead be derived), and neither is every domain object an entity (it could be a view model). For these non persistable properties the <code>optionality()</code> attribute is still required.</p> 
           </div> 
@@ -12133,7 +12695,7 @@ container.persist(cust);</code></pre>
               <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
               <td class="content"> 
                <div class="paragraph"> 
-                <p>It is also possible to specify optionality using <a href="../rgant/rgant.html#_rgant_Nullable"><code>@Nullable</code></a> annotation.</p> 
+                <p>It is also possible to specify optionality using <a href="../rgant/rgant.html#_rgant-Nullable"><code>@Nullable</code></a> annotation.</p> 
                </div> </td> 
              </tr> 
             </tbody>
@@ -12142,7 +12704,7 @@ container.persist(cust);</code></pre>
          </div> 
         </div> 
         <div class="sect2"> 
-         <h3 id="_rgant-Property_regexPattern">30.9. <code>regexPattern()</code></h3>
+         <h3 id="_rgant-Property_regexPattern">30.10. <code>regexPattern()</code></h3>
          <div class="btn-group" style="float: right; font-size: small; padding: 6px; margin-top: -55px; ">
           <button type="button" class="btn btn-xs btn-default" onclick="window.location.href=&quot;https://github.com/apache/isis/edit/master/adocs/documentation/src/main/asciidoc/guides/rgant/_rgant-Property_regexPattern.adoc&quot;"><i class="fa fa-pencil-square-o"></i>&nbsp;Edit</button>
           <button type="button" class="btn btn-xs btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><span class="caret"></span><span class="sr-only">Toggle Dropdown</span></button>
@@ -12989,7 +13551,7 @@ container.persist(cust);</code></pre>
              <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> 
              <td class="content"> 
               <div class="paragraph"> 
-               <p>Design note: we considered implementing this an "immutable" flag on the <a href="#_rgant_Property"><code>@Property</code></a> annotation (because this flag is typically appropriate for immutable/unchanging properties of a domain object). However, we decided not to do that, on the basis that it might be interpreted as having a deeper impact within the framework than simply a hint for rendering.</p> 
+               <p>Design note: we considered implementing this an "immutable" flag on the <a href="#_rgant-Property"><code>@Property</code></a> annotation (because this flag is typically appropriate for immutable/unchanging properties of a domain object). However, we decided not to do that, on the basis that it might be interpreted as having a deeper impact within the framework than simply a hint for rendering.</p> 
               </div> </td> 
             </tr> 
            </tbody>
@@ -13268,7 +13830,7 @@ serviceRegistry.injectServicesInto(vm);</code></pre>
               <p>The <code>@ViewModel</code> does not allow the objectType to be specified, meaning that it is incompatible with the metamodel validation check ennabled by the <a href="../rgcfg/rgcfg.html#__rgcfg_configuring-core_metamodel-validation"><code>explicitObjectType</code></a> configuration property.</p> 
              </div> 
              <div class="paragraph"> 
-              <p>Instead, use <a href="../rgant/rgant.html#_rgant_DomainObject_nature"><code>@DomainObject#nature()</code></a> with <code>Nature.VIEW_MODEL</code>, and specify <a href="../rgant/rgant.html#_rgant_DomainObject_objectType"><code>@DomainObject#objectType()</code></a>.</p> 
+              <p>Instead, use <a href="../rgant/rgant.html#_rgant-DomainObject_nature"><code>@DomainObject#nature()</code></a> with <code>Nature.VIEW_MODEL</code>, and specify <a href="../rgant/rgant.html#_rgant-DomainObject_objectType"><code>@DomainObject#objectType()</code></a>.</p> 
              </div> </td> 
            </tr> 
           </tbody>