produce an initial version of named.xml, with just placeholders but also with properly computed offsets (walking ann_morphosyntactic)

Change-Id: I127274e51bf6abdcf0bcda8e8cbfe45c5b919dce
diff --git a/nkjp2korap.xsl b/nkjp2korap.xsl
index 4aae734..e220a05 100644
--- a/nkjp2korap.xsl
+++ b/nkjp2korap.xsl
@@ -66,7 +66,10 @@
     <xsl:accumulator-rule match="tei:*[ancestor-or-self::tei:text]" select="$value + 1" phase="start"/>
   </xsl:accumulator>
   
-  <xsl:accumulator name="elem-offset-seq" as="map(xs:string, item()+)+" initial-value="(map{'null':(0,0)})">
+  
+  
+  <!--I think I may be able to actually merge the two accumulators, but let's see-->
+  <xsl:accumulator name="morpho-offsets" as="map(xs:string, item()+)+" initial-value="(map{'null':(0,0)})">
  
     <xsl:accumulator-rule match="tei:body/tei:p" phase="start">
       <xsl:variable name="preceding_index" as="xs:integer">
@@ -83,7 +86,7 @@
         string(@xml:id): ($preceding_index,$our_base)
         }"/>
     </xsl:accumulator-rule>
- 
+                                                                            <!-- this is morpho-offsets -->
     <xsl:accumulator-rule match="tei:s" phase="start">
       <xsl:variable name="preceding_index" as="xs:integer">
         <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
@@ -97,21 +100,27 @@
         string(@xml:id): ($preceding_index,$our_base)
         }"/>
     </xsl:accumulator-rule>
- 
-    <xsl:accumulator-rule match="tei:w[parent::tei:seg[count(@nkjp:rejected) eq 0]]" phase="end">
+                                                                            <!-- this is morpho-offsets -->
+    
+<!--   I want something that won't be matched in other layers, for efficiency - that 
+      may allow me to merge the accumulators, eventually;
+      but I also want to filter out the rejected tokenization alternatives already here -->
+    <xsl:accumulator-rule match="tei:seg[tei:fs[@type eq 'morph' and tei:f[@name eq 'disamb']]]" phase="end">
+      
       <xsl:variable name="preceding_index" as="xs:integer">
         <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
         <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
       </xsl:variable>
-      <xsl:variable name="our_base" as="xs:integer" select="$preceding_index + xs:integer(f:is_preceded_by_ws(parent::tei:seg,true()))"/>
+      <xsl:variable name="our_base" as="xs:integer" select="$preceding_index + xs:integer(f:is_preceded_by_ws(.,true()))"/>
 
       <xsl:sequence select="
-          $value,
-          map {
-            string(parent::tei:seg/@xml:id): ($our_base,$our_base + string-length())
-          }"/>
+        $value,
+        map {
+        string(@xml:id): ($our_base,$our_base + string-length(tei:fs/tei:f[@name eq 'orth']/tei:string))
+        }"/>
+      
     </xsl:accumulator-rule>
-    
+                                                                            <!-- this is morpho-offsets -->
     <xsl:accumulator-rule match="tei:s" phase="end">
       <xsl:variable name="preceding_index" as="xs:integer">
         <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
@@ -129,7 +138,7 @@
         string(@xml:id): ($our_base,$preceding_index)
         }"/>
     </xsl:accumulator-rule>
-    
+                                                                            <!-- this is morpho-offsets -->
     <xsl:accumulator-rule match="tei:body/tei:p" phase="end">
       <xsl:variable name="preceding_index" as="xs:integer">
         <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
@@ -147,18 +156,103 @@
         string(@xml:id): ($our_base,$preceding_index)
         }"/>
     </xsl:accumulator-rule>
+  </xsl:accumulator>
+  
+  
+
+  <xsl:accumulator name="segmentation-offsets" as="map(xs:string, item()+)+" initial-value="(map{'null':(0,0)})">
+    
+    <xsl:accumulator-rule match="tei:body/tei:p" phase="start">
+      <xsl:variable name="preceding_index" as="xs:integer">
+        <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
+        <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
+      </xsl:variable>
+      
+      <xsl:variable name="our_base" as="xs:integer" select="if($preceding_index eq 0) then $preceding_index else $preceding_index + 1"/>
+      <!--  for paragraphs, it's in either being initial or not    -->
+      
+      <xsl:sequence select="
+        $value,
+        map {
+        string(@xml:id): ($preceding_index,$our_base)
+        }"/>
+    </xsl:accumulator-rule>
+    
+    <xsl:accumulator-rule match="tei:s" phase="start">
+      <xsl:variable name="preceding_index" as="xs:integer">
+        <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
+        <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
+      </xsl:variable>
+      <xsl:variable name="our_base" as="xs:integer" select="if($preceding_index eq 0) then $preceding_index else $preceding_index + xs:integer(f:is_preceded_by_ws(.,true()))"/>
+      
+      <xsl:sequence select="
+        $value,
+        map {
+        string(@xml:id): ($preceding_index,$our_base)
+        }"/>
+    </xsl:accumulator-rule>
+    
+    <xsl:accumulator-rule match="tei:w[parent::tei:seg[count(@nkjp:rejected) eq 0]]" phase="end">
+      <xsl:variable name="preceding_index" as="xs:integer">
+        <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
+        <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
+      </xsl:variable>
+      <xsl:variable name="our_base" as="xs:integer" select="$preceding_index + xs:integer(f:is_preceded_by_ws(parent::tei:seg,true()))"/>
+      
+      <xsl:sequence select="
+        $value,
+        map {
+        string(parent::tei:seg/@xml:id): ($our_base,$our_base + string-length())
+        }"/>
+    </xsl:accumulator-rule>
+    
+    <xsl:accumulator-rule match="tei:s" phase="end">
+      <xsl:variable name="preceding_index" as="xs:integer">
+        <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
+        <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
+        
+      </xsl:variable>
+      <xsl:variable name="our_base" as="xs:integer">
+        <xsl:variable name="incomplete" select="map:find($value,string(@xml:id))(1)" as="xs:integer+"/>
+        <xsl:sequence select="$incomplete[2]"/>
+      </xsl:variable>
+      
+      <xsl:sequence select="
+        $value,
+        map {
+        string(@xml:id): ($our_base,$preceding_index)
+        }"/>
+    </xsl:accumulator-rule>
+    
+    <xsl:accumulator-rule match="tei:body/tei:p" phase="end">
+      <xsl:variable name="preceding_index" as="xs:integer">
+        <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
+        <xsl:sequence select="map:get($the_tail,map:keys($the_tail)[1])[2]"/>
+        
+      </xsl:variable>
+      <xsl:variable name="our_base" as="xs:integer">
+        <xsl:variable name="incomplete" select="map:find($value,string(@xml:id))(1)" as="xs:integer+"/>
+        <xsl:sequence select="$incomplete[2]"/>
+      </xsl:variable>
+      
+      <xsl:sequence select="
+        $value,
+        map {
+        string(@xml:id): ($our_base,$preceding_index)
+        }"/>
+    </xsl:accumulator-rule>
     
     <xsl:accumulator-rule match="tei:body" phase="end">
       <xsl:variable name="preceding_index" as="xs:integer">
         <xsl:variable name="the_tail" as="map(*)" select="head(reverse($value))"/>
         <xsl:sequence select="map:get($the_tail, map:keys($the_tail)[1])[2]"/>
       </xsl:variable>
-
+      
       <xsl:sequence select="
-          $value,
-          map {
-            string(@xml:id): (0, $preceding_index)
-          }"/>
+        $value,
+        map {
+        string(@xml:id): (0, $preceding_index)
+        }"/>
     </xsl:accumulator-rule>
     
     <xsl:accumulator-rule match="tei:text" phase="end">
@@ -195,6 +289,10 @@
           <xsl:when test="$node/@nkjp:nps">
             <xsl:sequence select="fn:false()"/>
           </xsl:when>
+          <xsl:when test="$node/tei:fs/tei:f[@name eq 'nps']">
+            <!--added for traversing ann_morphosyntax-->
+            <xsl:sequence select="fn:false()"/>
+          </xsl:when>
           <xsl:when
             test="$node/ancestor::tei:s[count(preceding-sibling::tei:s) eq 0] and $node/ancestor::tei:p[count(preceding-sibling::tei:p) eq 0] and not($node/preceding::tei:seg[count(@nkjp:rejected) eq 0])">
             <xsl:sequence select="fn:false()"/>
@@ -205,6 +303,11 @@
             <!--  I forget how node identity works now, so let me just compare the IDs        -->
             <xsl:sequence select="fn:false()"/>
           </xsl:when>
+          <xsl:when
+            test="$suppress_initial and $node/ancestor::tei:s/descendant::tei:seg[tei:fs/tei:f[@name eq 'disamb']][1]/@xml:id eq $node/@xml:id">
+            <!--added for traversing ann_morphosyntax-->
+            <xsl:sequence select="fn:false()"/>
+          </xsl:when>
           <xsl:otherwise>
             <xsl:sequence select="fn:true()"/>
           </xsl:otherwise>
@@ -429,7 +532,7 @@
   
   <xsl:template match="tei:*" mode="struct">
     <xsl:variable name="offsets" as="xs:integer+">
-      <xsl:sequence select="map:get(fn:accumulator-after('elem-offset-seq')[last()], string(@xml:id))"/>
+      <xsl:sequence select="map:get(fn:accumulator-after('segmentation-offsets')[last()], string(@xml:id))"/>
     </xsl:variable>
     
     <xsl:variable name="my_name" select="local-name()" as="xs:string"/>
@@ -498,7 +601,7 @@
       constituent values, should anything go wrong; it might get compacted at some point, but 
       the increase in efficiency will probably be minimal, compared to the decrease of readability   -->
     <xsl:variable name="offsets" as="xs:integer+">
-      <xsl:sequence select="map:get(fn:accumulator-after('elem-offset-seq')[last()], string(@xml:id))"/>
+      <xsl:sequence select="map:get(fn:accumulator-after('segmentation-offsets')[last()], string(@xml:id))"/>
     </xsl:variable>
     <xsl:variable name="my_name" select="local-name()" as="xs:string"/>
     <xsl:variable name="my_id" select="@xml:id" as="xs:string"/>
@@ -551,7 +654,7 @@
   
   <xsl:template name="create_named">
     <xsl:param name="compoundID" as="xs:string"/>
-    <xsl:param name="ann_segmentation.xml" as="document-node()"/>
+    <xsl:param name="ann_segmentation.xml" as="document-node()"/>   <!-- probably out -->
     <xsl:param name="ann_morphosyntax.xml" as="document-node()"/>
     <xsl:param name="ann_named.xml" as="document-node()"/>
     <xsl:param name="target" as="xs:string"/>
@@ -564,14 +667,47 @@
         <xsl:attribute name="version" select="$KorAP-XML_version"/>
         
         <xsl:element name="spanList" namespace="{$KorAP_namespace}">
-          <!--<xsl:apply-templates select="$ann_segmentation.xml//tei:text" mode="named">
-            <xsl:with-param name="ann_morphosyntax.xml" select="$ann_morphosyntax.xml" as="document-node()" tunnel="yes"/>
+          <xsl:apply-templates select="$ann_morphosyntax.xml//tei:text" mode="named">
+            <!--<xsl:with-param name="ann_segmentation.xml" select="$ann_segmentation.xml" as="document-node()" tunnel="yes"/>-->
             <xsl:with-param name="ann_named.xml" select="$ann_named.xml" as="document-node()" tunnel="yes"/>
-          </xsl:apply-templates>-->          
+          </xsl:apply-templates>          
         </xsl:element>
       </xsl:element>
     </xsl:result-document>
   </xsl:template>
+  
+  <xsl:template match="tei:seg" mode="named"/>
+  
+  <xsl:template match="tei:seg[tei:fs[tei:f[@name eq 'disamb']]]" mode="named">
+    <xsl:param name="ann_named.xml" as="document-node()" tunnel="yes"/>
+
+    <xsl:variable name="offsets" as="xs:integer+">
+      <xsl:sequence select="map:get(fn:accumulator-after('morpho-offsets')[last()], string(@xml:id))"/>
+    </xsl:variable>
+
+    <xsl:variable name="my_id" select="@xml:id" as="xs:string"/>
+    <xsl:variable name="my_index" select="fn:accumulator-before('element-index')" as="xs:integer"/>
+    
+    <xsl:element name="span" namespace="{$KorAP_namespace}">
+      <xsl:attribute name="id" select="'n' || $my_index"/>
+      <xsl:attribute name="from" select="$offsets[1]"/>
+      <xsl:attribute name="to" select="$offsets[2]"/>
+      <xsl:attribute name="l" select="f:compute_nesting(.)"/>
+      <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
+        <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
+          <xsl:attribute name="name" select="'ne'"/>
+          <xsl:comment select="(if(tei:fs/tei:f[@name eq 'nps']) then ' ' else '_') || tei:fs/tei:f[@name eq 'orth']/tei:string"/>
+          <xsl:element name="fs" namespace="http://www.tei-c.org/ns/1.0">
+            <xsl:element name="f" namespace="http://www.tei-c.org/ns/1.0">
+              <xsl:attribute name="name" select="'ent'"/>
+              <xsl:value-of select="'placeholder'"/>
+            </xsl:element>
+          </xsl:element>
+        </xsl:element>
+      </xsl:element>
+    </xsl:element>
+  </xsl:template>
+  
 
   <!--   **************************        syntactic chunks      *******************      -->
   
diff --git a/test/output/NKJP/NKJP/KOT/nkjp/named.xml b/test/output/NKJP/NKJP/KOT/nkjp/named.xml
new file mode 100644
index 0000000..7f64768
--- /dev/null
+++ b/test/output/NKJP/NKJP/KOT/nkjp/named.xml
@@ -0,0 +1,52370 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-model href="span.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
+<layer xmlns="http://ids-mannheim.de/ns/KorAP"
+       docid="NKJP_NKJP.KOT"
+       version="KorAP-0.4">
+   <spanList>
+      <span id="n5" from="0" to="7" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Magazyn-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26" from="8" to="11" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78" from="11" to="12" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99" from="13" to="23" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podarowany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125" from="24" to="25" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146" from="26" to="35" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezencie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n176" from="36" to="44" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_członkom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n198" from="45" to="50" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klubu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n217" from="50" to="51" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n238" from="52" to="59" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cieszył-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n260" from="60" to="63" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n279" from="64" to="72" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogromnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n311" from="73" to="84" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powodzeniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n339" from="85" to="86" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n372" from="87" to="90" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n407" from="91" to="100" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_problemów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n426" from="101" to="110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znajdował-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n448" from="111" to="122" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n469" from="123" to="124" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n497" from="125" to="133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_polskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n545" from="134" to="144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_korzeniach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n578" from="144" to="145" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n599" from="146" to="152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n620" from="153" to="163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tłumaczyli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n639" from="164" to="170" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_teksty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n661" from="171" to="173" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n689" from="174" to="183" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hebrajski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n725" from="183" to="184" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n747" from="185" to="192" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wystawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n766" from="193" to="194" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n787" from="195" to="198" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tel-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n806" from="199" to="205" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Awiwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n827" from="206" to="218" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyciągnęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n846" from="219" to="224" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n874" from="225" to="226" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_5-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n893" from="227" to="234" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tysięcy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n914" from="235" to="248" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwiedzających-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n981" from="248" to="249" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1002" from="250" to="258" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokazano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1021" from="259" to="261" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1042" from="262" to="264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_we-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1063" from="265" to="275" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1103" from="276" to="287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_izraelskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1133" from="288" to="299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_telewizjach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1152" from="299" to="300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1173" from="301" to="307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pisały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1196" from="308" to="309" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1224" from="310" to="314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1251" from="315" to="324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1285" from="325" to="331" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gazety-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1308" from="331" to="332" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1330" from="333" to="336" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Być-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1385" from="337" to="341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_może-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1418" from="342" to="346" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1461" from="347" to="353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cieszą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1487" from="354" to="357" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1506" from="358" to="361" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1539" from="362" to="367" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_takim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1571" from="368" to="379" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powodzeniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1599" from="379" to="380" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1620" from="381" to="385" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdyż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1639" from="386" to="394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrafią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1660" from="395" to="397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1712" from="397" to="398" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1733" from="399" to="404" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1759" from="405" to="414" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Izraelowi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1780" from="415" to="422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_brakuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1799" from="423" to="432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ostatnimi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1837" from="433" to="438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czasy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1860" from="439" to="450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najbardziej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1879" from="451" to="452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1898" from="453" to="461" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrafią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1919" from="462" to="471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spokojnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1938" from="472" to="479" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mruczeć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1957" from="480" to="483" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n1991" from="484" to="493" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szabasowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2025" from="494" to="500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pieśni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2052" from="500" to="501" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2075" from="502" to="503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_A-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2115" from="504" to="508" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2139" from="509" to="515" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Joasia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2158" from="515" to="516" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2180" from="517" to="520" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2212" from="521" to="530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tymczasem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2238" from="531" to="536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wciąż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2257" from="537" to="551" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezmordowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2285" from="552" to="555" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2304" from="556" to="561" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2323" from="562" to="567" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2344" from="568" to="569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2372" from="570" to="579" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozwianym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2404" from="580" to="586" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_włosem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2423" from="586" to="587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2444" from="588" to="596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_błyskiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2463" from="597" to="598" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2484" from="599" to="602" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2507" from="603" to="604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2540" from="605" to="617" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kontenerkiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2566" from="618" to="619" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2587" from="620" to="625" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dłoni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2611" from="626" to="627" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2632" from="628" to="640" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poszukiwaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2662" from="641" to="650" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kolejnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2687" from="651" to="655" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_raju-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2709" from="656" to="659" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2728" from="660" to="666" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2767" from="667" to="680" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czworonożnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2797" from="681" to="694" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podopiecznych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2846" from="694" to="695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2868" from="696" to="699" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Oby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2897" from="700" to="703" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2951" from="704" to="713" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najdłużej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2970" from="713" to="714" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n2992" from="715" to="717" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3025" from="718" to="726" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_redakcji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3048" from="726" to="727" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3069" from="728" to="729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3097" from="730" to="743" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjemnością-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3116" from="744" to="755" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_informujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3135" from="755" to="756" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3156" from="757" to="759" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3182" from="760" to="769" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bohaterka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3201" from="770" to="780" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powyższego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3233" from="781" to="787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tekstu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3252" from="787" to="788" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3273" from="789" to="797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tytułowa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3294" from="798" to="802" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3318" from="803" to="809" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Joasia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3337" from="809" to="810" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3358" from="811" to="813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3410" from="814" to="818" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nikt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3429" from="819" to="823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_inny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3464" from="823" to="824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3485" from="825" to="828" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3539" from="829" to="839" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nominowana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3562" from="840" to="845" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3581" from="846" to="857" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3602" from="858" to="862" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3642" from="863" to="865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3682" from="866" to="872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tytułu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3701" from="873" to="881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kociarza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3722" from="882" to="886" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3753" from="887" to="891" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2007-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3772" from="892" to="896" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3796" from="897" to="903" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Joanna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3815" from="904" to="911" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zaremba-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3836" from="912" to="913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3864" from="914" to="921" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Katowic-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3883" from="921" to="922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3906" from="923" to="930" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kolejna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3927" from="931" to="939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opowieść-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3948" from="940" to="944" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mówi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3967" from="944" to="945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n3988" from="946" to="948" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4014" from="949" to="954" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kiedy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4040" from="955" to="962" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mahomet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4059" from="963" to="969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_został-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4081" from="970" to="977" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wybrany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4130" from="978" to="980" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4158" from="981" to="988" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_proroka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4179" from="989" to="994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4198" from="995" to="1002" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Allacha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4219" from="1002" to="1003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4240" from="1004" to="1007" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bóg-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4259" from="1008" to="1014" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_posłał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4281" from="1015" to="1017" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4321" from="1018" to="1023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4348" from="1024" to="1025" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4369" from="1026" to="1030" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nocy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4393" from="1031" to="1037" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_anioły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4425" from="1037" to="1038" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4446" from="1039" to="1044" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4480" from="1045" to="1051" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjęły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4503" from="1052" to="1054" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4533" from="1055" to="1056" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4561" from="1057" to="1062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_serca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4584" from="1063" to="1069" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piętno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4606" from="1070" to="1077" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szatana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4629" from="1077" to="1078" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4650" from="1079" to="1080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4690" from="1081" to="1088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_włożyły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4713" from="1089" to="1095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Sakinę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4739" from="1096" to="1097" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4758" from="1097" to="1106" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- dosłownie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4779" from="1106" to="1107" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4800" from="1108" to="1109" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4819" from="1109" to="1114" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- pokój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4842" from="1115" to="1119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_boży-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4877" from="1119" to="1120" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4898" from="1121" to="1126" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4919" from="1127" to="1132" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_duszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4941" from="1132" to="1133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4962" from="1133" to="1134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n4983" from="1134" to="1135" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5005" from="1136" to="1142" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nadano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5024" from="1143" to="1146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5054" from="1147" to="1154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kształt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5075" from="1155" to="1160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5098" from="1161" to="1168" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_białego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5132" from="1169" to="1173" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5162" from="1173" to="1174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5184" from="1175" to="1176" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_I-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5224" from="1177" to="1179" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5276" from="1180" to="1187" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_właśnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5309" from="1188" to="1194" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_postać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5337" from="1195" to="1202" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_białego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5371" from="1203" to="1207" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5401" from="1208" to="1218" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przybierał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5423" from="1219" to="1225" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Allach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5442" from="1225" to="1226" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5463" from="1227" to="1232" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kiedy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5489" from="1233" to="1239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chciał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5511" from="1240" to="1247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_objawić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5530" from="1248" to="1258" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mahometowi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5549" from="1259" to="1264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5577" from="1265" to="1273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obecność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5598" from="1273" to="1274" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5620" from="1275" to="1285" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Muzułmanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5650" from="1286" to="1292" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wierzą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5669" from="1293" to="1300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zresztą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5688" from="1300" to="1301" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5709" from="1302" to="1304" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5735" from="1305" to="1309" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5778" from="1310" to="1312" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5797" from="1313" to="1321" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_istotami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5816" from="1322" to="1323" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5844" from="1324" to="1330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_natury-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5867" from="1331" to="1338" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dobrymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5907" from="1338" to="1339" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5928" from="1340" to="1349" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zesłanymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5978" from="1350" to="1355" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n5997" from="1356" to="1363" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Allacha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6018" from="1363" to="1364" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6039" from="1365" to="1368" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6065" from="1369" to="1377" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomagały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6105" from="1378" to="1385" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ludziom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6124" from="1385" to="1386" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6147" from="1387" to="1396" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Całkowity-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6173" from="1397" to="1403" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dochód-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6194" from="1404" to="1406" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6222" from="1407" to="1418" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprzedanych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6252" from="1419" to="1421" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6280" from="1422" to="1429" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokazie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6301" from="1430" to="1437" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_biletów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6320" from="1437" to="1438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6341" from="1439" to="1440" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6362" from="1441" to="1447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ramach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6388" from="1448" to="1453" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akcji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6411" from="1454" to="1455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6430" from="1455" to="1462" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Rasowce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6454" from="1463" to="1464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6473" from="1465" to="1474" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dachowcom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6492" from="1474" to="1475" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6513" from="1475" to="1476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6534" from="1477" to="1483" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_został-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6556" from="1484" to="1485" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6577" from="1486" to="1493" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imieniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6609" from="1494" to="1506" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_warszawskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6639" from="1507" to="1513" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klubów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6658" from="1514" to="1530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_felinologicznych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6684" from="1531" to="1541" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przekazany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6710" from="1542" to="1552" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_schronisku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6731" from="1553" to="1554" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6750" from="1554" to="1556" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6780" from="1557" to="1564" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Paluchu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6814" from="1564" to="1565" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6835" from="1565" to="1566" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6857" from="1567" to="1576" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wieczorem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6890" from="1577" to="1584" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obchody-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6912" from="1585" to="1592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6937" from="1593" to="1599" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_święta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n6978" from="1600" to="1610" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeniosły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7001" from="1611" to="1614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7020" from="1615" to="1617" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7060" from="1618" to="1622" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Sali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7097" from="1623" to="1634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Koncertowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7119" from="1634" to="1635" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7140" from="1636" to="1641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7166" from="1642" to="1647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7185" from="1648" to="1655" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7207" from="1656" to="1660" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gala-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7251" from="1661" to="1671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Światowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7285" from="1672" to="1676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dnia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7304" from="1677" to="1681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7344" from="1681" to="1682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7366" from="1683" to="1684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7387" from="1685" to="1690" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_foyer-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7420" from="1691" to="1695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Sali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7457" from="1696" to="1707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Koncertowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7479" from="1708" to="1713" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7507" from="1714" to="1718" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7526" from="1719" to="1728" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podziwiać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7545" from="1729" to="1736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7564" from="1737" to="1738" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7583" from="1738" to="1741" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7637" from="1742" to="1743" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7670" from="1744" to="1752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_człowiek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7689" from="1752" to="1753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7710" from="1753" to="1754" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7731" from="1755" to="1765" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_składającą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7752" from="1766" to="1769" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7771" from="1770" to="1771" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7799" from="1772" to="1787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_profesjonalnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7829" from="1788" to="1793" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdjęć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7862" from="1794" to="1803" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_autorstwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7885" from="1804" to="1820" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_współpracujących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7915" from="1821" to="1822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7943" from="1823" to="1828" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTEM-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7973" from="1829" to="1839" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fotografów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n7994" from="1839" to="1840" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8017" from="1841" to="1846" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wiele-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8097" from="1847" to="1854" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pochwał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8116" from="1855" to="1861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zebrał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8138" from="1862" to="1867" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokaz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8159" from="1868" to="1872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mody-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8192" from="1873" to="1885" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_inspirowanej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8214" from="1886" to="1892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8242" from="1893" to="1894" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8261" from="1895" to="1904" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_autorstwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8284" from="1905" to="1908" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ewy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8317" from="1909" to="1919" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Włodarczyk-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8351" from="1919" to="1920" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8373" from="1921" to="1927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Modele-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8417" from="1928" to="1929" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8450" from="1930" to="1937" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_modelki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8473" from="1938" to="1941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8523" from="1942" to="1947" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8549" from="1948" to="1960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezentowały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8572" from="1961" to="1968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciekawe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8606" from="1969" to="1978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cętkowane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8662" from="1979" to="1986" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kreacje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8684" from="1986" to="1987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8705" from="1988" to="1991" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8738" from="1992" to="1999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_również-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8757" from="2000" to="2006" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nosili-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8776" from="2007" to="2019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_transparenty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8798" from="2020" to="2021" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8826" from="2022" to="2023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8845" from="2023" to="2032" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- prokocimi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8878" from="2032" to="2033" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8899" from="2034" to="2041" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hasłami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8918" from="2041" to="2042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8940" from="2043" to="2048" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Druga-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8970" from="2049" to="2054" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_część-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n8991" from="2055" to="2061" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokazu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9010" from="2061" to="2062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9031" from="2063" to="2066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9086" from="2067" to="2072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_razem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9112" from="2073" to="2077" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mody-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9145" from="2078" to="2089" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wieczorowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9167" from="2089" to="2090" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9188" from="2091" to="2096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9207" from="2097" to="2104" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9229" from="2105" to="2112" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podczas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9248" from="2113" to="2117" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9285" from="2118" to="2119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9306" from="2120" to="2127" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_teatrze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9327" from="2127" to="2128" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9350" from="2129" to="2146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Niekwestionowanym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9382" from="2147" to="2156" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przebojem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9401" from="2157" to="2168" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tegorocznej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9423" from="2169" to="2175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_edycji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9446" from="2176" to="2180" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_była-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9483" from="2181" to="2188" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9502" from="2189" to="2202" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akwarystyczna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9523" from="2202" to="2203" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9544" from="2204" to="2206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9572" from="2207" to="2213" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_której-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9594" from="2214" to="2228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaprezentowano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9613" from="2229" to="2234" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9641" from="2235" to="2237" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_60-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9660" from="2238" to="2248" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zbiorników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9679" from="2249" to="2262" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słodkowodnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9709" from="2263" to="2264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9742" from="2265" to="2273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_morskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9772" from="2273" to="2274" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9794" from="2275" to="2282" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Biorące-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9828" from="2283" to="2289" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udział-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9859" from="2290" to="2291" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9880" from="2292" to="2299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_targach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9906" from="2300" to="2305" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_firmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9929" from="2305" to="2306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9950" from="2307" to="2321" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stowarzyszenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n9983" from="2322" to="2326" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10009" from="2327" to="2332" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osoby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10032" from="2333" to="2345" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_indywidualne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10066" from="2346" to="2359" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przedstawiały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10089" from="2360" to="2367" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akwaria-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10111" from="2368" to="2375" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_różnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10141" from="2376" to="2385" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozmiarów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10160" from="2385" to="2386" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10181" from="2387" to="2389" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10207" from="2390" to="2401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niewielkich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10237" from="2401" to="2402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10258" from="2403" to="2410" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_modnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10288" from="2411" to="2412" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10309" from="2413" to="2421" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ostatnim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10361" from="2422" to="2428" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czasie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10382" from="2429" to="2441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miniakwariów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10401" from="2442" to="2444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10423" from="2445" to="2449" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_duże-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10466" from="2450" to="2453" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_500-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10485" from="2454" to="2455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10518" from="2456" to="2467" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_600-litrowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10552" from="2468" to="2477" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zbiorniki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10574" from="2477" to="2478" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10596" from="2479" to="2485" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Niemal-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10615" from="2486" to="2495" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10649" from="2496" to="2497" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10677" from="2498" to="2512" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezentowanych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10707" from="2513" to="2521" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akwariów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10726" from="2522" to="2535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uczestniczyły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10749" from="2536" to="2537" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10770" from="2538" to="2547" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_konkursie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10791" from="2548" to="2550" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10819" from="2551" to="2563" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najciekawsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10853" from="2564" to="2572" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akwarium-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10879" from="2573" to="2579" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_targów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10905" from="2579" to="2580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10927" from="2581" to="2591" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zwyciężyło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10946" from="2592" to="2600" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akwarium-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n10972" from="2601" to="2608" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_morskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11006" from="2609" to="2614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_firmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11029" from="2615" to="2621" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Morski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11074" from="2622" to="2627" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Świat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11119" from="2628" to="2629" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11147" from="2630" to="2634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Piły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11192" from="2634" to="2635" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11215" from="2636" to="2639" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11241" from="2640" to="2644" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11277" from="2645" to="2653" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chodziła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11296" from="2653" to="2654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11317" from="2655" to="2664" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprzątnąć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11336" from="2665" to="2676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pojemniczek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11357" from="2677" to="2679" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11379" from="2680" to="2685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mleku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11400" from="2685" to="2686" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11421" from="2687" to="2693" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zawsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11440" from="2694" to="2703" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zastawała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11459" from="2703" to="2704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11480" from="2705" to="2707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_go-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11527" from="2708" to="2709" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11548" from="2710" to="2716" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_formie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11569" from="2717" to="2723" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_placka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11598" from="2723" to="2724" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11620" from="2725" to="2735" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rozdeptany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11646" from="2735" to="2736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11668" from="2737" to="2747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wgnieciony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11694" from="2748" to="2749" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11715" from="2750" to="2756" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ziemię-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11734" from="2756" to="2757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11756" from="2758" to="2767" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zabierała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11775" from="2767" to="2768" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11796" from="2769" to="2773" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11815" from="2774" to="2781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śmiecia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11850" from="2781" to="2782" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11871" from="2783" to="2792" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wieczorem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11897" from="2793" to="2801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stawiała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11916" from="2801" to="2802" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11937" from="2803" to="2807" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n11991" from="2808" to="2815" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pudełko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12013" from="2816" to="2817" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12032" from="2818" to="2819" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12065" from="2820" to="2823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12105" from="2824" to="2825" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12126" from="2826" to="2831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kółko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12148" from="2831" to="2832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12170" from="2833" to="2835" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Aż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12196" from="2836" to="2844" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niedawno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12215" from="2845" to="2846" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12236" from="2847" to="2852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_biały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12271" from="2853" to="2858" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dzień-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12315" from="2859" to="2868" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zobaczyła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12334" from="2868" to="2869" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12355" from="2870" to="2872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12374" from="2873" to="2878" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_panią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12395" from="2879" to="2880" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12416" from="2881" to="2888" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trakcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12437" from="2889" to="2896" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działań-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12463" from="2897" to="2913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niszczycielskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12493" from="2914" to="2915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12512" from="2916" to="2921" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12531" from="2921" to="2922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12552" from="2922" to="2923" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12573" from="2924" to="2931" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeszcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12592" from="2932" to="2936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ruch-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12620" from="2937" to="2944" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okrężny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12646" from="2945" to="2950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piętą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12665" from="2951" to="2952" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12698" from="2953" to="2958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pełna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12726" from="2959" to="2970" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_satysfakcja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12745" from="2970" to="2971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12766" from="2972" to="2980" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naczynie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12788" from="2981" to="2984" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12838" from="2985" to="2993" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_istnieje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12857" from="2993" to="2994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12880" from="2995" to="3001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Często-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12899" from="3002" to="3006" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12918" from="3007" to="3009" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12970" from="3010" to="3017" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powodem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n12991" from="3018" to="3028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uwięzienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13024" from="3029" to="3037" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13045" from="3038" to="3039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13066" from="3040" to="3049" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piwnicach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13085" from="3049" to="3050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13106" from="3051" to="3054" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13139" from="3055" to="3066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najczęściej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13158" from="3067" to="3068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13177" from="3069" to="3077" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odcięcia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13199" from="3078" to="3083" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13227" from="3084" to="3091" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wejścia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13260" from="3092" to="3094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13300" from="3095" to="3101" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piwnic-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13319" from="3101" to="3102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13341" from="3103" to="3113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pozbawione-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13375" from="3114" to="3125" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_schronienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13408" from="3126" to="3135" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzęta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13433" from="3136" to="3144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_umierają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13452" from="3145" to="3146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13480" from="3147" to="3152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zimna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13512" from="3152" to="3153" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13533" from="3154" to="3156" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13552" from="3157" to="3166" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zagryzane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13586" from="3167" to="3172" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13605" from="3173" to="3176" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_psy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13637" from="3176" to="3177" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13658" from="3178" to="3182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_giną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13677" from="3183" to="3186" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pod-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13698" from="3187" to="3193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kołami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13738" from="3194" to="3204" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_samochodów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13757" from="3204" to="3205" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13778" from="3206" to="3208" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13797" from="3209" to="3216" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_skazane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13873" from="3217" to="3219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13901" from="3220" to="3230" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cierpienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13934" from="3230" to="3231" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13956" from="3232" to="3237" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jedno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n13994" from="3238" to="3245" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_otwarte-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14050" from="3246" to="3253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okienko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14072" from="3254" to="3257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14098" from="3258" to="3268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niewielkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14132" from="3269" to="3275" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_otwory-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14154" from="3276" to="3279" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14204" from="3280" to="3288" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powodują-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14223" from="3289" to="3300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyziębienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14245" from="3301" to="3307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piwnic-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14264" from="3307" to="3308" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14286" from="3309" to="3315" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wprost-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14312" from="3316" to="3326" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeciwnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14331" from="3326" to="3327" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14352" from="3328" to="3338" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapewniają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14371" from="3339" to="3342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14411" from="3343" to="3352" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrzebną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14432" from="3353" to="3363" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wentylację-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14451" from="3364" to="3368" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14481" from="3369" to="3380" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomieszczeń-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14507" from="3380" to="3381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14528" from="3382" to="3386" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdyż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14547" from="3387" to="3388" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14568" from="3389" to="3393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zbyt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14596" from="3394" to="3402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciepłych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14626" from="3403" to="3411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gnieżdżą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14645" from="3412" to="3415" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14664" from="3416" to="3422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mrówki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14697" from="3423" to="3430" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_faraona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14720" from="3430" to="3431" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14741" from="3432" to="3439" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prusaki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14763" from="3439" to="3440" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14784" from="3441" to="3450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karaczany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14806" from="3451" to="3454" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_itp-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14825" from="3454" to="3455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14848" from="3456" to="3467" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Listopadowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14874" from="3468" to="3471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14926" from="3472" to="3474" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14954" from="3475" to="3483" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_magiczną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14975" from="3484" to="3491" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okładkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n14994" from="3491" to="3492" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15015" from="3493" to="3498" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Artur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15034" from="3498" to="3499" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15055" from="3500" to="3504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15081" from="3505" to="3511" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_grafik-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15110" from="3512" to="3520" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozwolił-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15132" from="3521" to="3522" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15153" from="3523" to="3526" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15221" from="3527" to="3532" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sobie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15251" from="3533" to="3535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15279" from="3536" to="3542" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trochę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15342" from="3543" to="3557" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_halloweenowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15367" from="3558" to="3568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szaleństwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15390" from="3568" to="3569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15412" from="3570" to="3573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15445" from="3574" to="3582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nadzieję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15471" from="3582" to="3583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15492" from="3584" to="3586" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15518" from="3587" to="3590" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15544" from="3591" to="3602" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_listopadowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15570" from="3603" to="3609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czarny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15605" from="3610" to="3613" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15657" from="3614" to="3624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przypadnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15676" from="3625" to="3636" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czytelnikom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15695" from="3637" to="3639" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15735" from="3640" to="3645" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gustu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15754" from="3645" to="3646" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15775" from="3647" to="3648" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15815" from="3649" to="3651" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15855" from="3652" to="3659" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszyscy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15885" from="3659" to="3660" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15906" from="3661" to="3667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15927" from="3668" to="3676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wierzyli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15946" from="3677" to="3678" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n15967" from="3679" to="3681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16019" from="3681" to="3682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16040" from="3683" to="3685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_iż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16059" from="3686" to="3692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czarne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16113" from="3693" to="3697" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16156" from="3698" to="3707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przynoszą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16175" from="3708" to="3713" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pecha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16196" from="3713" to="3714" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16217" from="3715" to="3717" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16239" from="3718" to="3730" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeczytaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16260" from="3731" to="3735" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16292" from="3736" to="3742" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numeru-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16311" from="3743" to="3747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_będą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16330" from="3748" to="3749" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16358" from="3750" to="3758" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nadzieją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16384" from="3759" to="3761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16412" from="3762" to="3771" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczęście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16434" from="3772" to="3781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przecinać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16453" from="3782" to="3787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drogę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16472" from="3788" to="3797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_smolistym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16504" from="3798" to="3803" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16532" from="3803" to="3804" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16553" from="3805" to="3806" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16593" from="3807" to="3811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_może-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16626" from="3812" to="3817" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16645" from="3818" to="3826" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wpuszczą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16664" from="3827" to="3830" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pod-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16685" from="3831" to="3835" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16718" from="3836" to="3840" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16746" from="3841" to="3850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczęście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16768" from="3851" to="3852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16789" from="3853" to="3860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_postaci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16816" from="3861" to="3871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_smolistego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16841" from="3872" to="3878" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gościa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16869" from="3879" to="3880" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16897" from="3881" to="3891" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_magicznych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16927" from="3892" to="3898" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oczach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16946" from="3898" to="3899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16969" from="3900" to="3908" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Fundacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n16988" from="3909" to="3910" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17007" from="3910" to="3917" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Zmieńmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17028" from="3918" to="3923" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Świat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17073" from="3923" to="3924" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17094" from="3925" to="3933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powstała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17122" from="3934" to="3936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17150" from="3937" to="3944" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_terenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17171" from="3945" to="3952" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tarnowa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17210" from="3953" to="3954" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17231" from="3955" to="3962" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_połowie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17261" from="3963" to="3967" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2002-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17280" from="3968" to="3972" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17302" from="3972" to="3973" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17324" from="3974" to="3977" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17354" from="3978" to="3983" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_celem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17373" from="3984" to="3988" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17392" from="3989" to="3998" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17423" from="3999" to="4001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17451" from="4002" to="4007" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzecz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17481" from="4008" to="4021" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_humanitarnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17506" from="4022" to="4033" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_traktowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17539" from="4034" to="4042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17560" from="4042" to="4043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17581" from="4044" to="4053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szerzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17602" from="4054" to="4060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wiedzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17624" from="4061" to="4062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17652" from="4063" to="4072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrzebie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17683" from="4073" to="4079" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmiany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17706" from="4080" to="4087" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17738" from="4088" to="4096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stosunku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17760" from="4097" to="4099" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17800" from="4100" to="4106" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świata-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17819" from="4107" to="4113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_natury-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17842" from="4114" to="4115" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17861" from="4115" to="4118" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- tzw-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17882" from="4118" to="4119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17903" from="4120" to="4121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17922" from="4121" to="4128" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- głęboka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17952" from="4129" to="4137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ekologia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17971" from="4137" to="4138" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n17992" from="4138" to="4139" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18013" from="4140" to="4144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18039" from="4145" to="4157" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_propagowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18060" from="4158" to="4172" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wegetarianizmu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18079" from="4172" to="4173" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18100" from="4174" to="4178" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jako-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18147" from="4179" to="4189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_optymalnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18166" from="4190" to="4197" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdrowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18188" from="4198" to="4199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18221" from="4200" to="4217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pełnowartościowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18243" from="4218" to="4223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_diety-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18266" from="4223" to="4224" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18289" from="4225" to="4227" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18317" from="4228" to="4239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zakończenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18348" from="4240" to="4249" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przytoczę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18367" from="4250" to="4257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeszcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18386" from="4258" to="4263" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słowa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18409" from="4264" to="4270" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18431" from="4271" to="4272" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18459" from="4273" to="4278" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_moich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18527" from="4279" to="4288" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znajomych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18576" from="4288" to="4289" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18597" from="4290" to="4299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeżdżącej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18619" from="4300" to="4310" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_codziennie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18638" from="4311" to="4321" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_samochodem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18657" from="4322" to="4324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18697" from="4325" to="4330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pracy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18719" from="4331" to="4336" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18747" from="4337" to="4348" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzydzieści-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18787" from="4349" to="4359" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilometrów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18806" from="4360" to="4364" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18834" from="4365" to="4373" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Warszawę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18862" from="4373" to="4374" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18884" from="4375" to="4386" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Stwierdziła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18940" from="4387" to="4393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kiedyś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18959" from="4393" to="4394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n18980" from="4395" to="4397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19006" from="4398" to="4403" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19025" from="4404" to="4413" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19059" from="4414" to="4419" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stare-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19126" from="4420" to="4426" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szmaty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19159" from="4427" to="4428" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19192" from="4429" to="4437" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rupiecie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19227" from="4437" to="4438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19248" from="4439" to="4444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jakie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19282" from="4445" to="4452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spotyka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19301" from="4453" to="4455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19329" from="4456" to="4462" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drodze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19350" from="4462" to="4463" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19371" from="4464" to="4466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19400" from="4467" to="4469" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19452" from="4469" to="4470" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19473" from="4471" to="4473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19499" from="4474" to="4478" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19518" from="4479" to="4488" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bliższych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19548" from="4489" to="4500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oględzinach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19567" from="4501" to="4508" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okazują-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19593" from="4509" to="4512" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19612" from="4513" to="4520" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_właśnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19645" from="4521" to="4524" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19700" from="4524" to="4525" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19751" from="4526" to="4530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19779" from="4531" to="4533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19798" from="4533" to="4534" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19819" from="4535" to="4536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19859" from="4537" to="4540" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19909" from="4541" to="4552" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrąconymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19933" from="4553" to="4558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_psami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19954" from="4559" to="4560" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n19987" from="4561" to="4567" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20015" from="4567" to="4568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20036" from="4569" to="4575" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20068" from="4576" to="4579" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20118" from="4580" to="4585" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20146" from="4586" to="4589" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20165" from="4590" to="4591" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20186" from="4592" to="4597" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żaden-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20212" from="4598" to="4604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sposób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20247" from="4605" to="4610" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomóc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20266" from="4610" to="4611" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20289" from="4612" to="4619" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czasami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20308" from="4620" to="4628" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zupełnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20327" from="4629" to="4632" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20377" from="4633" to="4640" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pojmuję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20396" from="4640" to="4641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20417" from="4642" to="4650" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dlaczego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20436" from="4651" to="4654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20464" from="4655" to="4666" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_postrzegany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20490" from="4667" to="4671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bywa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20509" from="4672" to="4676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jako-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20556" from="4677" to="4684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20588" from="4685" to="4686" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20616" from="4687" to="4693" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gruntu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20635" from="4694" to="4704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aspołeczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20669" from="4704" to="4705" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20691" from="4706" to="4712" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Chadza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20710" from="4713" to="4721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_własnymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20741" from="4722" to="4729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drogami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20767" from="4729" to="4730" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20788" from="4731" to="4734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20838" from="4735" to="4746" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przywiązuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20857" from="4747" to="4750" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20876" from="4751" to="4753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20916" from="4754" to="4759" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ludzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20937" from="4759" to="4760" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n20958" from="4761" to="4764" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21008" from="4765" to="4775" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrzebuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21027" from="4776" to="4787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_towarzystwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21050" from="4788" to="4794" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21089" from="4795" to="4810" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_współplemieńców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21110" from="4810" to="4811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21131" from="4812" to="4815" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21181" from="4816" to="4820" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lubi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21218" from="4821" to="4824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21237" from="4825" to="4826" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21265" from="4827" to="4832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_psami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21286" from="4832" to="4833" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21307" from="4834" to="4835" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21347" from="4836" to="4843" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kanarki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21369" from="4843" to="4844" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21390" from="4845" to="4852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chomiki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21422" from="4853" to="4854" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21455" from="4855" to="4857" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_im-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21491" from="4858" to="4865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podobne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21525" from="4866" to="4875" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzaki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21547" from="4876" to="4878" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21573" from="4879" to="4883" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_razu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21592" from="4884" to="4890" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zabija-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21611" from="4891" to="4892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21644" from="4893" to="4898" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zjada-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21663" from="4898" to="4899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21685" from="4900" to="4905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Istny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21711" from="4906" to="4910" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wróg-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21730" from="4911" to="4920" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_publiczny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21756" from="4921" to="4926" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numer-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21777" from="4927" to="4932" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeden-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21854" from="4932" to="4933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21876" from="4934" to="4939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21927" from="4940" to="4945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ludzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21948" from="4946" to="4951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uważa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21967" from="4951" to="4952" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n21988" from="4953" to="4955" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22014" from="4956" to="4961" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22036" from="4962" to="4964" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22058" from="4965" to="4971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prostu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22077" from="4972" to="4975" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22127" from="4976" to="4981" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22155" from="4982" to="4989" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzymać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22174" from="4990" to="4995" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_razem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22200" from="4996" to="4997" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22228" from="4998" to="5003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_psami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22249" from="5003" to="5004" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22270" from="5005" to="5012" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ptakami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22289" from="5013" to="5016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22315" from="5017" to="5027" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gryzoniami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22334" from="5027" to="5028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22356" from="5029" to="5032" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22382" from="5033" to="5037" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22415" from="5038" to="5043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rację-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22434" from="5043" to="5044" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22457" from="5045" to="5048" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22483" from="5049" to="5053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22513" from="5054" to="5056" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22553" from="5057" to="5066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czynienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22586" from="5067" to="5068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22614" from="5069" to="5078" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_epilepsją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22633" from="5079" to="5080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_u-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22652" from="5081" to="5088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_starych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22720" from="5089" to="5094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22742" from="5094" to="5095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22763" from="5096" to="5105" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_konieczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22797" from="5106" to="5110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22816" from="5111" to="5120" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykonanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22847" from="5121" to="5128" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdjęcia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22890" from="5129" to="5132" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_RTG-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22916" from="5133" to="5139" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klatki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22939" from="5140" to="5150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piersiowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22961" from="5150" to="5151" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n22982" from="5152" to="5153" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23003" from="5154" to="5158" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_celu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23025" from="5159" to="5170" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykluczenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23047" from="5171" to="5174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23073" from="5175" to="5188" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potwierdzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23106" from="5189" to="5194" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmian-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23125" from="5195" to="5208" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowotworowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23155" from="5208" to="5209" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23177" from="5210" to="5218" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Leczenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23208" from="5219" to="5225" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ataków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23227" from="5226" to="5238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_padaczkowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23257" from="5239" to="5245" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_polega-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23276" from="5246" to="5248" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23304" from="5249" to="5258" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podawaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23336" from="5259" to="5264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_leków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23357" from="5265" to="5279" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przerywających-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23387" from="5280" to="5287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drgawki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23410" from="5288" to="5299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezależnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23429" from="5300" to="5302" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23455" from="5303" to="5306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23486" from="5307" to="5316" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyczyny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23509" from="5316" to="5317" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23531" from="5318" to="5319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_U-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23550" from="5320" to="5325" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23572" from="5326" to="5332" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lekiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23593" from="5333" to="5334" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23621" from="5335" to="5341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyboru-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23640" from="5342" to="5344" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23659" from="5345" to="5353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pochodne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23703" from="5354" to="5369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_benzodwuazepiny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23729" from="5370" to="5378" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podawane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23778" from="5379" to="5387" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dożylnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23797" from="5388" to="5391" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23823" from="5392" to="5404" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_doodbytniczo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23842" from="5404" to="5405" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23865" from="5406" to="5411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Witam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23884" from="5411" to="5412" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23906" from="5413" to="5421" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wrzesień-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23949" from="5422" to="5425" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23968" from="5426" to="5432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zawsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n23987" from="5433" to="5441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kojarzyć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24006" from="5442" to="5444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24058" from="5445" to="5448" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24077" from="5449" to="5455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_będzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24096" from="5456" to="5457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24124" from="5458" to="5464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_końcem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24143" from="5465" to="5472" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wakacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24162" from="5472" to="5473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24183" from="5474" to="5477" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24216" from="5478" to="5481" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_też-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24254" from="5482" to="5483" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24282" from="5484" to="5494" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_początkiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24301" from="5495" to="5510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najbarwniejszej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24323" from="5511" to="5515" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pory-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24359" from="5516" to="5520" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24381" from="5521" to="5522" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24400" from="5523" to="5530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jesieni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24431" from="5530" to="5531" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24453" from="5532" to="5538" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jesień-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24503" from="5539" to="5544" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lubią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24522" from="5545" to="5548" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_też-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24560" from="5549" to="5556" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapewne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24579" from="5557" to="5562" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24626" from="5563" to="5567" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24669" from="5567" to="5568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24690" from="5569" to="5574" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24709" from="5575" to="5582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wówczas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24728" from="5583" to="5590" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wracamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24747" from="5591" to="5592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24775" from="5593" to="5603" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urlopowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24805" from="5604" to="5610" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wojaży-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24824" from="5611" to="5612" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24857" from="5613" to="5622" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nareszcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24876" from="5623" to="5624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24897" from="5625" to="5631" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_domach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24916" from="5632" to="5640" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapanuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24935" from="5641" to="5647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spokój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24963" from="5648" to="5649" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n24996" from="5650" to="5659" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_codzienna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25017" from="5660" to="5668" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_harmonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25046" from="5668" to="5669" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25068" from="5670" to="5677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mnogość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25089" from="5678" to="5690" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przysyłanych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25119" from="5691" to="5693" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25159" from="5694" to="5702" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_redakcji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25182" from="5703" to="5714" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wakacyjnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25212" from="5715" to="5721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kartek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25231" from="5722" to="5723" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25264" from="5724" to="5734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozdrowień-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25297" from="5735" to="5743" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świadczy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25316" from="5743" to="5744" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25337" from="5745" to="5747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25363" from="5748" to="5758" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czytelnicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25384" from="5759" to="5763" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25424" from="5764" to="5765" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25445" from="5766" to="5772" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_letnią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25466" from="5773" to="5781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kanikułę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25485" from="5782" to="5791" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poznawali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25504" from="5792" to="5801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najdalsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25538" from="5802" to="5809" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zakątki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25560" from="5810" to="5816" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świata-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25579" from="5816" to="5817" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25602" from="5818" to="5819" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25623" from="5820" to="5831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_listopadzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25644" from="5832" to="5837" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25665" from="5838" to="5843" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_staje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25721" from="5844" to="5847" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25740" from="5848" to="5852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nagi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25775" from="5852" to="5853" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25796" from="5854" to="5860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drzewa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25819" from="5861" to="5871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozbawione-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25853" from="5872" to="5877" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_liści-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25879" from="5877" to="5878" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25900" from="5879" to="5880" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25940" from="5881" to="5882" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n25961" from="5883" to="5886" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26016" from="5887" to="5894" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numerze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26037" from="5895" to="5902" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26069" from="5903" to="5911" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_magazynu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26088" from="5912" to="5913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26107" from="5914" to="5918" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nagi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26142" from="5919" to="5922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26170" from="5923" to="5933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozbawiony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26196" from="5934" to="5939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_futra-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26219" from="5939" to="5940" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26241" from="5941" to="5948" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dońskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26275" from="5949" to="5956" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sfinksy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26297" from="5957" to="5959" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26316" from="5960" to="5967" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzadkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26350" from="5967" to="5968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26371" from="5969" to="5973" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_będą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26390" from="5974" to="5980" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uznane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26446" from="5981" to="5986" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26465" from="5987" to="5991" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_FIFe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26491" from="5992" to="5999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dopiero-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26510" from="6000" to="6002" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26536" from="6003" to="6013" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyszłego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26561" from="6014" to="6018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26583" from="6018" to="6019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26605" from="6020" to="6022" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_My-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26634" from="6023" to="6030" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pierwsi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26655" from="6031" to="6043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezentujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26674" from="6044" to="6051" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_portret-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26695" from="6052" to="6055" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26717" from="6056" to="6066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezwykłej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26739" from="6067" to="6071" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rasy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26772" from="6071" to="6072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26794" from="6073" to="6076" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26827" from="6077" to="6085" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nadzieję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26853" from="6085" to="6086" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26874" from="6087" to="6089" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26900" from="6090" to="6102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zainteresuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26919" from="6103" to="6105" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_on-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n26964" from="6106" to="6111" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27006" from="6112" to="6123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27027" from="6123" to="6124" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27048" from="6125" to="6128" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_acz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27067" from="6129" to="6133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27086" from="6133" to="6134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27107" from="6135" to="6137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_iż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27126" from="6138" to="6141" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27176" from="6142" to="6149" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszyscy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27206" from="6150" to="6157" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_polubią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27225" from="6158" to="6160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_te-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27289" from="6161" to="6171" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przedziwne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27323" from="6172" to="6182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stworzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27356" from="6182" to="6183" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27379" from="6184" to="6192" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Humphrey-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27405" from="6193" to="6198" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmarł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27427" from="6199" to="6200" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27448" from="6201" to="6206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wieku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27479" from="6207" to="6209" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_18-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27498" from="6210" to="6213" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27524" from="6213" to="6214" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27545" from="6215" to="6223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziewięć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27576" from="6224" to="6227" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27602" from="6228" to="6230" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27624" from="6231" to="6239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odejściu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27654" from="6240" to="6242" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27682" from="6243" to="6252" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_emeryturę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27701" from="6252" to="6253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27723" from="6254" to="6257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ile-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27787" from="6258" to="6263" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_myszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27828" from="6264" to="6268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mógł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27850" from="6269" to="6276" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeszcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27869" from="6277" to="6283" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_złapać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27888" from="6283" to="6284" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27909" from="6285" to="6290" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdyby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27935" from="6291" to="6300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozwolono-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27954" from="6301" to="6303" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n27984" from="6304" to="6312" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pracować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28003" from="6313" to="6319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dłużej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28029" from="6319" to="6320" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28051" from="6321" to="6322" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_A-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28091" from="6323" to="6331" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponieważ-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28110" from="6332" to="6338" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciągle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28136" from="6339" to="6347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pojawiał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28158" from="6348" to="6351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28177" from="6352" to="6353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28210" from="6354" to="6360" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znikał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28232" from="6360" to="6361" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28253" from="6362" to="6367" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wiele-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28313" from="6368" to="6372" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28332" from="6373" to="6383" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zastanawia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28351" from="6384" to="6387" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28370" from="6387" to="6388" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28391" from="6389" to="6392" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28417" from="6393" to="6396" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28445" from="6396" to="6397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28466" from="6398" to="6403" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28492" from="6404" to="6411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_właśnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28525" from="6412" to="6419" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odszedł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28547" from="6419" to="6420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28568" from="6421" to="6423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28620" from="6424" to="6427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_był-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28642" from="6428" to="6440" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzeczywiście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28661" from="6441" to="6442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28694" from="6443" to="6444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28722" from="6445" to="6449" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_całą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28743" from="6450" to="6459" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pewnością-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28762" from="6460" to="6468" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Humphrey-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28788" from="6468" to="6469" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28811" from="6470" to="6475" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Latem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28830" from="6475" to="6476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28851" from="6477" to="6479" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28879" from="6480" to="6487" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28900" from="6487" to="6488" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28921" from="6489" to="6495" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Amelka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28940" from="6496" to="6500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28966" from="6501" to="6505" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n28994" from="6506" to="6513" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pilnuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29013" from="6514" to="6519" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Julka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29041" from="6519" to="6520" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29063" from="6521" to="6524" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29089" from="6525" to="6530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29115" from="6531" to="6534" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29141" from="6535" to="6539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29176" from="6540" to="6545" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łobuz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29195" from="6546" to="6553" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29214" from="6554" to="6558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29242" from="6559" to="6569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogrodzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29273" from="6569" to="6570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29294" from="6571" to="6574" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29326" from="6575" to="6586" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_natychmiast-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29345" from="6587" to="6596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przybiega-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29364" from="6597" to="6599" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29386" from="6600" to="6603" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29420" from="6604" to="6605" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29453" from="6606" to="6611" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29495" from="6612" to="6623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zachowaniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29521" from="6624" to="6625" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29540" from="6625" to="6630" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- biega-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29561" from="6631" to="6633" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29590" from="6634" to="6638" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29614" from="6639" to="6641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29636" from="6642" to="6648" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokoju-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29658" from="6648" to="6649" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29679" from="6650" to="6657" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miauczy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29698" from="6657" to="6658" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29719" from="6659" to="6667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prowadzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29738" from="6668" to="6670" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29778" from="6671" to="6676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drzwi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29801" from="6676" to="6677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29822" from="6678" to="6685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_próbuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29841" from="6686" to="6689" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29865" from="6690" to="6700" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powiedzieć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29884" from="6700" to="6701" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29905" from="6702" to="6704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29931" from="6705" to="6710" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Julek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29957" from="6711" to="6715" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29976" from="6716" to="6717" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n29997" from="6718" to="6736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niebezpieczeństwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30016" from="6737" to="6738" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30049" from="6739" to="6745" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzeba-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30068" from="6746" to="6748" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_go-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30115" from="6749" to="6762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyprowadzić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30134" from="6763" to="6764" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30162" from="6765" to="6773" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powrotem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30181" from="6774" to="6776" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30221" from="6777" to="6781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_domu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30243" from="6781" to="6782" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30266" from="6783" to="6788" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Matką-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30285" from="6789" to="6795" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociąt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30304" from="6796" to="6800" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30323" from="6801" to="6807" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_SAMIRA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30349" from="6808" to="6816" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ELMRIDGE-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30375" from="6816" to="6817" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30396" from="6818" to="6823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30424" from="6824" to="6834" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_srebrzysta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30445" from="6835" to="6844" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cętkowana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30475" from="6844" to="6845" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30496" from="6846" to="6851" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_która-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30517" from="6852" to="6863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjechała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30536" from="6864" to="6865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30564" from="6866" to="6874" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wielkiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30586" from="6875" to="6883" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Brytanii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30620" from="6884" to="6886" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30660" from="6887" to="6893" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30716" from="6894" to="6895" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30737" from="6896" to="6900" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_maju-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30758" from="6901" to="6905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2006-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30777" from="6906" to="6910" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30799" from="6910" to="6911" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30820" from="6912" to="6913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30860" from="6914" to="6919" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ojcem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30879" from="6920" to="6928" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_MATIKI'S-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30905" from="6929" to="6935" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_AMULET-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30933" from="6936" to="6938" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_OF-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30959" from="6939" to="6950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_SCHOOERTJES-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n30985" from="6950" to="6951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31006" from="6952" to="6957" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31025" from="6958" to="6968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_srebrzysty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31051" from="6969" to="6978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cętkowany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31091" from="6978" to="6979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31112" from="6980" to="6990" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pochodzący-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31140" from="6991" to="6992" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31168" from="6993" to="6999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31190" from="7000" to="7001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31218" from="7002" to="7014" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najstarszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31258" from="7015" to="7016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31291" from="7017" to="7028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najbardziej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31310" from="7029" to="7040" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zasłużonych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31377" from="7041" to="7054" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_amerykańskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31407" from="7055" to="7062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hodowli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31430" from="7062" to="7063" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31451" from="7064" to="7071" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obecnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31470" from="7072" to="7083" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieszkający-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31498" from="7084" to="7085" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31519" from="7086" to="7094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Holandii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31542" from="7094" to="7095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31565" from="7096" to="7105" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Osobiście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31584" from="7106" to="7113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poznała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31603" from="7113" to="7114" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31624" from="7115" to="7122" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swojego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31656" from="7123" to="7133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaciekłego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31681" from="7134" to="7139" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wroga-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31711" from="7139" to="7140" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31733" from="7141" to="7145" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31752" from="7146" to="7149" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31787" from="7150" to="7155" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31813" from="7156" to="7165" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_częściowo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31832" from="7165" to="7166" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31853" from="7167" to="7175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponieważ-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31872" from="7176" to="7180" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gros-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31930" from="7181" to="7188" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_agresji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31953" from="7189" to="7196" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kieruje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31972" from="7197" to="7206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeciwko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n31991" from="7207" to="7212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32019" from="7212" to="7213" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32041" from="7214" to="7218" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wróg-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32060" from="7219" to="7228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_występuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32079" from="7229" to="7230" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32100" from="7231" to="7236" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwóch-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32132" from="7237" to="7244" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osobach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32151" from="7245" to="7246" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32170" from="7246" to="7250" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- plus-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32208" from="7251" to="7255" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pies-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32229" from="7255" to="7256" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32250" from="7257" to="7260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32283" from="7261" to="7265" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32309" from="7266" to="7268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32335" from="7268" to="7269" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32356" from="7270" to="7271" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32377" from="7272" to="7274" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32429" from="7275" to="7278" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32479" from="7279" to="7287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieszała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32498" from="7287" to="7288" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32519" from="7289" to="7297" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przecież-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32538" from="7298" to="7301" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32588" from="7302" to="7308" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponosi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32609" from="7309" to="7326" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odpowiedzialności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32636" from="7327" to="7329" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32665" from="7330" to="7340" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zachowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32696" from="7341" to="7352" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_właścicieli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32717" from="7352" to="7353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32738" from="7353" to="7354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32760" from="7355" to="7359" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wróg-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32779" from="7360" to="7369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_widzialny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32805" from="7370" to="7374" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32824" from="7375" to="7382" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niedużą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32845" from="7382" to="7383" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32866" from="7384" to="7392" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niestarą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32887" from="7393" to="7400" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kobietą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32906" from="7401" to="7402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32925" from="7403" to="7405" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n32977" from="7406" to="7407" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33005" from="7408" to="7411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33030" from="7412" to="7417" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33049" from="7417" to="7418" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33070" from="7419" to="7433" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nieprzyjemność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33091" from="7434" to="7439" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wejść-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33124" from="7440" to="7441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33145" from="7442" to="7449" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kontakt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33166" from="7450" to="7458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzrokowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33192" from="7458" to="7459" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33213" from="7460" to="7466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słowny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33239" from="7466" to="7467" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33260" from="7468" to="7469" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33300" from="7470" to="7475" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33319" from="7476" to="7482" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trochę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33382" from="7483" to="7491" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fizyczny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33408" from="7491" to="7492" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33430" from="7493" to="7503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wrzeszcząc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33449" from="7503" to="7504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33470" from="7505" to="7513" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zabijała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33489" from="7514" to="7518" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33535" from="7519" to="7530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spojrzeniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33561" from="7531" to="7532" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33594" from="7533" to="7542" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_próbowała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33613" from="7543" to="7550" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szarpać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33632" from="7551" to="7553" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33661" from="7554" to="7558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rękę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33680" from="7559" to="7568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dzierżącą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33710" from="7569" to="7581" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karmicielski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33736" from="7582" to="7591" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ekwipunek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33757" from="7591" to="7592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33780" from="7593" to="7601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zachęcam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33799" from="7602" to="7609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Państwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33824" from="7610" to="7612" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33864" from="7613" to="7623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głosowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33897" from="7624" to="7626" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33925" from="7627" to="7635" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kociarza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33946" from="7636" to="7640" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33977" from="7641" to="7645" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2006-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n33996" from="7645" to="7646" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34017" from="7647" to="7650" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34072" from="7651" to="7656" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_razem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34098" from="7657" to="7665" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spłynęło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34117" from="7666" to="7671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34155" from="7672" to="7681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciekawych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34185" from="7681" to="7682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34206" from="7683" to="7684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34246" from="7685" to="7690" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34265" from="7691" to="7707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kontrowersyjnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34295" from="7708" to="7718" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kandydatur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34314" from="7718" to="7719" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34336" from="7720" to="7725" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wybór-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34357" from="7726" to="7736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zostawiamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34376" from="7737" to="7740" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34400" from="7740" to="7741" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34421" from="7742" to="7744" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34473" from="7745" to="7747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34499" from="7748" to="7751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Was-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34533" from="7751" to="7752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34554" from="7753" to="7759" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Drodzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34584" from="7760" to="7770" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czytelnicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34605" from="7770" to="7771" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34626" from="7772" to="7778" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zależy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34645" from="7778" to="7779" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34666" from="7780" to="7784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_komu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34685" from="7785" to="7794" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyznamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34704" from="7795" to="7798" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34730" from="7799" to="7809" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaszczytny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34756" from="7810" to="7815" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tytuł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34777" from="7815" to="7816" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34798" from="7817" to="7821" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34817" from="7822" to="7823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34836" from="7824" to="7826" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34876" from="7827" to="7830" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urn-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34895" from="7830" to="7831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34917" from="7832" to="7838" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Cieszę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34943" from="7839" to="7842" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34962" from="7843" to="7849" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n34981" from="7849" to="7850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35002" from="7851" to="7853" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35028" from="7854" to="7857" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35080" from="7858" to="7864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rośnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35116" from="7865" to="7866" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35137" from="7867" to="7871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_siłę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35156" from="7872" to="7875" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35206" from="7876" to="7881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35232" from="7882" to="7883" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35253" from="7884" to="7891" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Europie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35283" from="7891" to="7892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35304" from="7893" to="7896" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35337" from="7897" to="7902" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35356" from="7903" to="7905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35385" from="7906" to="7914" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oceanami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35404" from="7914" to="7915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35426" from="7916" to="7923" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polecam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35445" from="7924" to="7930" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gorąco-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35474" from="7931" to="7937" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_teksty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35496" from="7938" to="7945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35545" from="7946" to="7960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_korespondentek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35564" from="7961" to="7962" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35592" from="7963" to="7966" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_USA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35618" from="7967" to="7968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35651" from="7969" to="7978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Australii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35674" from="7978" to="7979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35697" from="7980" to="7987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kolejny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35723" from="7988" to="7991" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35742" from="7992" to="7995" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_raz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35763" from="7996" to="8005" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_próbujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35782" from="8006" to="8008" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35810" from="8009" to="8015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łamach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35829" from="8016" to="8023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35861" from="8024" to="8036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miesięcznika-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35880" from="8037" to="8043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obalać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35899" from="8044" to="8047" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mit-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35920" from="8048" to="8061" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_toksoplazmozy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35943" from="8061" to="8062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35965" from="8063" to="8067" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_może-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n35998" from="8068" to="8073" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znowu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36017" from="8074" to="8077" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uda-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36047" from="8078" to="8081" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36066" from="8082" to="8091" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przekazać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36085" from="8092" to="8096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_choć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36111" from="8097" to="8102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36153" from="8103" to="8109" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osobom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36172" from="8109" to="8110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36193" from="8111" to="8114" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36247" from="8115" to="8116" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36268" from="8117" to="8123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prosty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36306" from="8124" to="8130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sposób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36341" from="8131" to="8137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_unikać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36360" from="8138" to="8147" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zarażenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36393" from="8148" to="8151" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36412" from="8152" to="8154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36433" from="8155" to="8162" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chorobą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36452" from="8162" to="8163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36474" from="8164" to="8168" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36504" from="8169" to="8177" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zamięcka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36530" from="8178" to="8184" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36549" from="8185" to="8193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obrazowo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36568" from="8194" to="8200" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opowie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36587" from="8201" to="8208" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Państwu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36609" from="8208" to="8209" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36660" from="8210" to="8214" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36688" from="8215" to="8219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36707" from="8220" to="8230" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tymczasowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36733" from="8231" to="8234" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36754" from="8235" to="8238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36773" from="8239" to="8244" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36795" from="8244" to="8245" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36817" from="8246" to="8250" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Może-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36850" from="8251" to="8253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36872" from="8254" to="8266" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeczytaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36893" from="8267" to="8271" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36925" from="8272" to="8280" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_artykułu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n36944" from="8281" to="8287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więcej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37000" from="8288" to="8293" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37022" from="8294" to="8302" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znajdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37061" from="8303" to="8306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37095" from="8307" to="8311" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_domy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37117" from="8311" to="8312" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37139" from="8313" to="8324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przypominam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37158" from="8324" to="8325" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37179" from="8326" to="8328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37205" from="8329" to="8339" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogłoszenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37238" from="8340" to="8341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37266" from="8342" to="8351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_adopcjach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37285" from="8352" to="8357" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37307" from="8358" to="8366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_domowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37337" from="8367" to="8376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drukujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37356" from="8377" to="8378" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37377" from="8379" to="8384" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOCIE-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37472" from="8385" to="8395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezpłatnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37491" from="8395" to="8396" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37514" from="8397" to="8401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lech-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37555" from="8402" to="8411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kaczyński-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37576" from="8412" to="8413" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37595" from="8414" to="8423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezydent-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37629" from="8424" to="8426" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_RP-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37662" from="8426" to="8427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37683" from="8428" to="8433" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37732" from="8434" to="8442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miłośnik-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37751" from="8443" to="8448" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37773" from="8448" to="8449" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37794" from="8450" to="8454" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jako-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37841" from="8455" to="8464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezydent-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37875" from="8465" to="8473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Warszawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37920" from="8474" to="8484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_realizował-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37942" from="8485" to="8492" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_program-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37963" from="8493" to="8499" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opieki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n37986" from="8500" to="8503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38007" from="8504" to="8514" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomnymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38045" from="8515" to="8526" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzętami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38066" from="8526" to="8527" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38087" from="8528" to="8536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_utworzył-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38109" from="8537" to="8538" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38130" from="8539" to="8546" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stolicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38152" from="8547" to="8557" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stanowisko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38174" from="8558" to="8570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pełnomocnika-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38195" from="8571" to="8573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38235" from="8574" to="8579" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spraw-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38261" from="8580" to="8588" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38282" from="8588" to="8589" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38304" from="8590" to="8600" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Franciszek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38330" from="8601" to="8607" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Klimek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38380" from="8608" to="8609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38399" from="8610" to="8619" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_krakowski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38425" from="8620" to="8625" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poeta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38444" from="8625" to="8626" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38465" from="8627" to="8632" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_autor-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38484" from="8633" to="8644" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wspaniałych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38514" from="8645" to="8652" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wierszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38543" from="8653" to="8654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38571" from="8655" to="8661" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38599" from="8661" to="8662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38620" from="8663" to="8665" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38646" from="8666" to="8669" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38672" from="8670" to="8677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzrusza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38691" from="8678" to="8684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38730" from="8685" to="8696" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38751" from="8697" to="8699" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38791" from="8700" to="8703" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38810" from="8703" to="8704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38831" from="8705" to="8711" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaraża-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38850" from="8712" to="8715" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38881" from="8716" to="8721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38909" from="8722" to="8734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wrażliwością-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38928" from="8735" to="8736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38961" from="8737" to="8747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szacunkiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38980" from="8748" to="8751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n38999" from="8752" to="8757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39021" from="8757" to="8758" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ;-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39042" from="8759" to="8762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39084" from="8763" to="8766" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_też-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39122" from="8767" to="8773" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niesie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39141" from="8774" to="8779" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomoc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39162" from="8780" to="8793" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrzebującym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39231" from="8794" to="8804" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzętom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39252" from="8804" to="8805" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39275" from="8806" to="8809" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Oto-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39301" from="8810" to="8821" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najczęściej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39320" from="8822" to="8834" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_artykułowane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39354" from="8835" to="8840" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dobre-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39421" from="8841" to="8845" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rady-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39454" from="8846" to="8847" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39482" from="8848" to="8853" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_moich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39550" from="8854" to="8861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zbiorów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39569" from="8861" to="8862" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39590" from="8863" to="8864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39609" from="8864" to="8865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39630" from="8866" to="8872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Proszę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39649" from="8873" to="8876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cię-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39678" from="8876" to="8877" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39699" from="8878" to="8881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39749" from="8882" to="8887" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bierz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39768" from="8888" to="8891" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39787" from="8892" to="8898" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więcej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39843" from="8899" to="8906" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żadnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39873" from="8907" to="8912" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39895" from="8912" to="8913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39917" from="8914" to="8915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39936" from="8915" to="8916" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39957" from="8917" to="8919" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n39981" from="8920" to="8922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40009" from="8923" to="8928" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_twoim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40075" from="8929" to="8936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejscu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40096" from="8937" to="8947" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spróbowała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40115" from="8947" to="8949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40136" from="8949" to="8950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40157" from="8951" to="8956" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40195" from="8957" to="8962" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40217" from="8963" to="8968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oddać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40236" from="8968" to="8969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40258" from="8970" to="8971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_3-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40277" from="8971" to="8972" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40298" from="8973" to="8976" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40324" from="8977" to="8980" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40374" from="8981" to="8987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_możesz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40393" from="8988" to="8993" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sobie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40423" from="8994" to="9004" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_postanowić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40442" from="9004" to="9005" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40463" from="9006" to="9008" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40489" from="9009" to="9012" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40543" from="9013" to="9022" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zobaczysz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40562" from="9023" to="9025" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40590" from="9026" to="9031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ulicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40612" from="9032" to="9036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40642" from="9036" to="9037" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40663" from="9038" to="9046" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_będziesz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40682" from="9047" to="9054" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udawała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40701" from="9054" to="9055" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40722" from="9056" to="9058" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40748" from="9059" to="9061" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_go-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40795" from="9062" to="9065" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40845" from="9066" to="9073" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_widzisz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40864" from="9073" to="9074" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40887" from="9075" to="9077" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40913" from="9077" to="9078" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40934" from="9078" to="9079" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 4-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40955" from="9079" to="9080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40976" from="9081" to="9086" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mogła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n40995" from="9086" to="9088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41016" from="9088" to="9089" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41037" from="9089" to="9090" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41058" from="9091" to="9094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41091" from="9095" to="9098" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41117" from="9099" to="9101" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41143" from="9101" to="9102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41164" from="9103" to="9110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chciała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41183" from="9110" to="9111" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41205" from="9112" to="9114" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41231" from="9114" to="9115" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41252" from="9115" to="9116" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 5-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41273" from="9116" to="9117" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41294" from="9118" to="9120" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41313" from="9121" to="9124" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41332" from="9125" to="9130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czuję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41358" from="9131" to="9134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41377" from="9135" to="9143" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obrażona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41416" from="9143" to="9144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41438" from="9145" to="9150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nigdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41457" from="9151" to="9153" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41483" from="9153" to="9154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41504" from="9155" to="9160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41523" from="9161" to="9164" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41573" from="9165" to="9177" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podejrzewała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41592" from="9178" to="9181" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41618" from="9182" to="9187" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41637" from="9188" to="9194" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chwilę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41656" from="9194" to="9195" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41677" from="9196" to="9198" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41733" from="9199" to="9203" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ktoś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41752" from="9204" to="9208" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_może-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41785" from="9209" to="9214" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uznać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41804" from="9215" to="9219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41850" from="9220" to="9222" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41879" from="9223" to="9228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osobę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41898" from="9229" to="9239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaniedbaną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41928" from="9239" to="9240" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41950" from="9241" to="9246" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jeśli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n41969" from="9247" to="9253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dbanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42000" from="9254" to="9255" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42028" from="9256" to="9262" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_siebie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42049" from="9263" to="9265" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42077" from="9266" to="9274" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oznaczać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42096" from="9275" to="9284" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chodzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42127" from="9285" to="9287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42167" from="9288" to="9299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kosmetyczki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42190" from="9300" to="9301" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42209" from="9302" to="9304" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42261" from="9305" to="9313" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziękuję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42280" from="9313" to="9314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42302" from="9315" to="9320" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jeśli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42321" from="9321" to="9328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podróże-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42353" from="9329" to="9330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42386" from="9331" to="9340" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_balowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42417" from="9341" to="9342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42436" from="9343" to="9345" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42488" from="9346" to="9349" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42507" from="9350" to="9354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42526" from="9354" to="9355" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42548" from="9356" to="9361" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jeśli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42567" from="9362" to="9370" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czytanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42598" from="9371" to="9372" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42631" from="9373" to="9382" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spotkania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42664" from="9383" to="9394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_towarzyskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42698" from="9394" to="9395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42719" from="9396" to="9398" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42771" from="9399" to="9402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42821" from="9403" to="9411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koliduje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42840" from="9411" to="9412" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42862" from="9413" to="9414" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_A-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42902" from="9415" to="9419" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42930" from="9420" to="9429" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n42978" from="9430" to="9434" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43021" from="9435" to="9437" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43073" from="9438" to="9441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43123" from="9442" to="9447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43149" from="9448" to="9457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obowiązki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43171" from="9458" to="9459" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43204" from="9460" to="9476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odpowiedzialność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43225" from="9477" to="9481" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lecz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43258" from="9482" to="9489" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_również-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43277" from="9490" to="9496" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_WIELKA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43316" from="9497" to="9508" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_PRZYJEMNOŚĆ-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43337" from="9508" to="9509" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43360" from="9510" to="9517" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czasami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43379" from="9518" to="9529" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zazdroszczę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43398" from="9530" to="9534" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_moim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43464" from="9535" to="9540" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43492" from="9541" to="9553" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_umiejętności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43519" from="9554" to="9564" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stroszenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43541" from="9565" to="9570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_futra-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43564" from="9570" to="9571" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43586" from="9572" to="9581" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Możliwość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43607" from="9582" to="9588" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmiany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43630" from="9589" to="9599" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ustawienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43663" from="9600" to="9608" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwykłych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43693" from="9609" to="9615" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43723" from="9616" to="9622" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_włosów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43742" from="9623" to="9627" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43761" from="9628" to="9634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43787" from="9635" to="9641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niczym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43822" from="9642" to="9643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43843" from="9644" to="9654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_porównaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43873" from="9655" to="9656" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43901" from="9657" to="9669" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ruchliwością-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43920" from="9670" to="9673" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43951" from="9674" to="9682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wibrysów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43970" from="9682" to="9683" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n43992" from="9684" to="9690" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dzięki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44042" from="9691" to="9702" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znajdującym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44094" from="9703" to="9706" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44113" from="9707" to="9708" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_u-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44132" from="9709" to="9717" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podstawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44155" from="9718" to="9725" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_każdego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44180" from="9726" to="9733" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wibrysa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44201" from="9734" to="9742" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_komórkom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44220" from="9743" to="9753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mięśniowym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44252" from="9754" to="9761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44284" from="9762" to="9769" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrafi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44305" from="9770" to="9778" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dowolnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44324" from="9779" to="9787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poruszać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44345" from="9788" to="9794" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wąsami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44366" from="9795" to="9801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niemal-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44385" from="9802" to="9804" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44413" from="9805" to="9814" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44447" from="9815" to="9821" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_strony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44470" from="9821" to="9822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44492" from="9823" to="9834" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ciekawostkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44511" from="9835" to="9842" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stanowi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44546" from="9843" to="9847" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fakt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44567" from="9847" to="9848" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44588" from="9849" to="9851" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44614" from="9852" to="9855" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44642" from="9856" to="9861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_górne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44676" from="9862" to="9867" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzędy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44698" from="9868" to="9876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wibrysów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44717" from="9877" to="9881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44736" from="9882" to="9890" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poruszać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44757" from="9891" to="9894" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44776" from="9895" to="9906" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezależnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44795" from="9907" to="9909" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44821" from="9910" to="9915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwóch-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44853" from="9916" to="9923" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dolnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44883" from="9924" to="9930" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzędów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44902" from="9930" to="9931" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44925" from="9932" to="9941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dodatkową-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44946" from="9942" to="9950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_atrakcją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n44965" from="9951" to="9955" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_była-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45002" from="9956" to="9965" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_możliwość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45023" from="9966" to="9975" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykonania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45056" from="9976" to="9991" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_profesjonalnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45081" from="9992" to="9999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45106" from="10000" to="10008" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_makijażu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45128" from="10008" to="10009" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45149" from="10010" to="10015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45175" from="10016" to="10023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprawił-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45197" from="10024" to="10031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogromną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45218" from="10032" to="10038" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_radość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45239" from="10039" to="10042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45289" from="10043" to="10048" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45315" from="10049" to="10060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najmłodszym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45354" from="10061" to="10072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uczestnikom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45373" from="10073" to="10080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imprezy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45396" from="10080" to="10081" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45418" from="10082" to="10085" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Cat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45444" from="10086" to="10090" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Club-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45472" from="10091" to="10095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Łódź-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45502" from="10096" to="10108" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_współpracuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45521" from="10109" to="10110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45549" from="10111" to="10121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fundacjami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45568" from="10122" to="10123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45601" from="10124" to="10136" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_instytucjami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45620" from="10137" to="10146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niosącymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45644" from="10147" to="10152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomoc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45665" from="10153" to="10158" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45693" from="10159" to="10168" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45742" from="10168" to="10169" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45764" from="10170" to="10172" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45792" from="10173" to="10180" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45811" from="10181" to="10191" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaproszono-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45830" from="10192" to="10207" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przedstawicieli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45851" from="10208" to="10217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łódzkiego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45876" from="10218" to="10226" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oddziału-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45895" from="10227" to="10238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Towarzystwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45918" from="10239" to="10245" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Opieki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45963" from="10246" to="10249" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n45984" from="10250" to="10261" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zwierzętami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46005" from="10261" to="10262" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46026" from="10263" to="10268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46060" from="10269" to="10276" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podczas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46079" from="10277" to="10282" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwóch-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46111" from="10283" to="10286" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46134" from="10287" to="10298" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kwestowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46156" from="10299" to="10306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zebrało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46175" from="10307" to="10309" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46201" from="10310" to="10314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1803-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46220" from="10315" to="10317" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46239" from="10317" to="10318" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46261" from="10319" to="10322" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_TOZ-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46296" from="10323" to="10331" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziękuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46315" from="10332" to="10341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46363" from="10342" to="10351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociarzom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46382" from="10352" to="10354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46411" from="10355" to="10358" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46442" from="10359" to="10368" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjątkową-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46463" from="10369" to="10376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hojność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46484" from="10377" to="10378" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46517" from="10379" to="10389" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_życzliwość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46538" from="10389" to="10390" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46561" from="10391" to="10395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Fakt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46582" from="10395" to="10396" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46603" from="10397" to="10405" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodowody-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46625" from="10406" to="10417" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przysługują-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46644" from="10418" to="10427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46692" from="10428" to="10436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociętom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46711" from="10437" to="10438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46739" from="10439" to="10444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miotu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46758" from="10444" to="10445" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46779" from="10446" to="10451" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46798" from="10452" to="10455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46853" from="10456" to="10457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46881" from="10458" to="10464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wadami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46907" from="10465" to="10466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46926" from="10467" to="10471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46945" from="10472" to="10477" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wtedy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46964" from="10478" to="10490" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uwzględnione-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n46998" from="10491" to="10492" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47019" from="10493" to="10503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodowodzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47040" from="10503" to="10504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47061" from="10505" to="10507" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47087" from="10508" to="10514" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47106" from="10515" to="10518" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47156" from="10519" to="10523" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47175" from="10524" to="10533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hodowlany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47201" from="10533" to="10534" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47223" from="10535" to="10538" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mit-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47251" from="10538" to="10539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47272" from="10540" to="10550" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprzedając-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47291" from="10551" to="10555" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47334" from="10556" to="10559" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47369" from="10560" to="10568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodowodu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47388" from="10568" to="10569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47409" from="10570" to="10576" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47446" from="10577" to="10580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47465" from="10581" to="10584" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47484" from="10585" to="10590" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dobra-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47533" from="10591" to="10595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rasy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47566" from="10595" to="10596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47587" from="10597" to="10599" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47613" from="10600" to="10607" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wysokie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47647" from="10608" to="10612" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ceny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47670" from="10613" to="10614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_u-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47689" from="10615" to="10623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hodowców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47710" from="10624" to="10630" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hamują-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47729" from="10631" to="10634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47759" from="10635" to="10641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozwój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47780" from="10641" to="10642" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47802" from="10643" to="10647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Fakt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47823" from="10647" to="10648" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47844" from="10649" to="10653" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47863" from="10654" to="10663" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dokładnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47896" from="10664" to="10673" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odwrotnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47915" from="10673" to="10674" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47937" from="10675" to="10682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Hodowcy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47961" from="10683" to="10691" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47980" from="10692" to="10695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n47999" from="10696" to="10701" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dobra-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48048" from="10702" to="10706" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rasy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48081" from="10706" to="10707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48102" from="10708" to="10718" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wybierając-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48121" from="10719" to="10721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48161" from="10722" to="10729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozrodu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48180" from="10730" to="10744" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najpiękniejsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48214" from="10744" to="10745" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48235" from="10746" to="10757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najzdrowsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48269" from="10758" to="10759" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48302" from="10760" to="10770" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najbliższe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48336" from="10771" to="10777" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzorca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48355" from="10778" to="10786" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osobniki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48387" from="10786" to="10787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48408" from="10788" to="10789" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48448" from="10790" to="10793" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48479" from="10794" to="10799" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_celem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48498" from="10800" to="10804" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48517" from="10805" to="10814" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uzyskanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48538" from="10815" to="10823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdrowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48568" from="10824" to="10825" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48601" from="10826" to="10834" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pięknych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48640" from="10835" to="10841" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociąt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48659" from="10841" to="10842" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48682" from="10843" to="10852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kociarzem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48701" from="10853" to="10857" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48732" from="10858" to="10859" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48753" from="10860" to="10869" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kategorii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48776" from="10870" to="10871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48795" from="10871" to="10876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Media-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48829" from="10876" to="10877" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48850" from="10878" to="10884" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_został-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48872" from="10885" to="10892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_program-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48893" from="10893" to="10896" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_TVP-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48926" from="10897" to="10905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Warszawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48954" from="10906" to="10907" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n48973" from="10907" to="10910" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Mój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49010" from="10911" to="10915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pies-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49031" from="10916" to="10917" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49064" from="10918" to="10922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_inne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49108" from="10923" to="10932" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzaki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49130" from="10932" to="10933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49151" from="10933" to="10934" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49172" from="10935" to="10937" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49198" from="10938" to="10941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49224" from="10942" to="10953" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wspierający-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49268" from="10954" to="10962" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prokocie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49342" from="10963" to="10968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akcje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49364" from="10968" to="10969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49386" from="10970" to="10977" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nagrodę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49405" from="10978" to="10979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49426" from="10980" to="10983" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49448" from="10984" to="10993" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kategorii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49471" from="10994" to="11002" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wręczyła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49490" from="11003" to="11008" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Irena-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49509" from="11009" to="11016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nalewaj-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49557" from="11016" to="11017" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49578" from="11018" to="11032" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_reprezentująca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49599" from="11033" to="11038" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_forum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49671" from="11039" to="11046" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Miau.pl-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49697" from="11046" to="11047" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49719" from="11048" to="11055" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Martyna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49749" from="11056" to="11059" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rux-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49775" from="11059" to="11060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49796" from="11061" to="11068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_autorka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49824" from="11069" to="11077" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_programu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49843" from="11077" to="11078" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49864" from="11079" to="11087" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obiecała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49883" from="11087" to="11088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49904" from="11089" to="11091" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49930" from="11092" to="11094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49958" from="11095" to="11101" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piękna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n49990" from="11102" to="11108" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzeźba-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50009" from="11109" to="11113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50037" from="11114" to="11120" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_będzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50056" from="11121" to="11122" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50077" from="11123" to="11131" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_redakcji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50100" from="11132" to="11134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50128" from="11135" to="11144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_honorowym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50160" from="11145" to="11152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejscu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50181" from="11152" to="11153" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50204" from="11154" to="11157" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Guz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50255" from="11158" to="11164" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_należy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50276" from="11165" to="11171" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_usunąć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50295" from="11172" to="11173" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50323" from="11174" to="11182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szerokim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50355" from="11183" to="11193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_marginesem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50374" from="11194" to="11200" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tkanek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50393" from="11201" to="11209" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdrowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50423" from="11209" to="11210" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50445" from="11211" to="11219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ponieważ-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50486" from="11220" to="11231" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczepienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50519" from="11232" to="11242" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykonujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50538" from="11243" to="11244" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50559" from="11245" to="11254" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okolicach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50578" from="11255" to="11267" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_grzbietowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50608" from="11268" to="11272" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szyi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50631" from="11272" to="11273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50652" from="11274" to="11280" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klatki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50675" from="11281" to="11291" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piersiowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50697" from="11292" to="11295" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50723" from="11296" to="11306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kręgosłupa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50742" from="11307" to="11318" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lędźwiowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50767" from="11318" to="11319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50788" from="11320" to="11324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_guzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50813" from="11325" to="11326" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50834" from="11327" to="11331" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50864" from="11332" to="11341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejscach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50883" from="11342" to="11344" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50902" from="11345" to="11351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50921" from="11352" to="11358" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trudne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50955" from="11359" to="11361" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n50995" from="11362" to="11371" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_usunięcia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51028" from="11371" to="11372" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51050" from="11373" to="11378" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51078" from="11379" to="11381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51130" from="11382" to="11389" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmienić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51149" from="11389" to="11390" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51170" from="11391" to="11398" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podając-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51189" from="11399" to="11410" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczepionki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51212" from="11411" to="11412" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51233" from="11413" to="11422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejscach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51252" from="11422" to="11423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51273" from="11424" to="11425" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51294" from="11426" to="11433" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_których-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51324" from="11434" to="11441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łatwiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51350" from="11442" to="11448" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykryć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51383" from="11449" to="11452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_guz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51405" from="11453" to="11457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51431" from="11458" to="11471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeprowadzić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51450" from="11472" to="11482" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ewentualną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51471" from="11483" to="11494" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_interwencję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51490" from="11495" to="11507" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chirurgiczną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51511" from="11508" to="11509" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51530" from="11510" to="11512" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51549" from="11513" to="11515" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51601" from="11516" to="11524" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obwodowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51635" from="11525" to="11531" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_części-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51671" from="11532" to="11539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kończyn-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51690" from="11540" to="11552" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miednicznych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51720" from="11553" to="11554" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51739" from="11554" to="11562" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- podudzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51763" from="11562" to="11563" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51784" from="11563" to="11564" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51806" from="11565" to="11573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Iniekcje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51828" from="11574" to="11580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_należy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51849" from="11581" to="11590" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykonywać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51868" from="11591" to="11597" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ściśle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51887" from="11598" to="11608" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podskórnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51916" from="11608" to="11609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51937" from="11610" to="11614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żeby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51963" from="11615" to="11621" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykryć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n51996" from="11622" to="11628" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmiany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52019" from="11629" to="11641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_patologiczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52053" from="11642" to="11644" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_we-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52074" from="11645" to="11653" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wczesnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52096" from="11654" to="11659" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fazie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52117" from="11659" to="11660" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52140" from="11661" to="11662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52159" from="11662" to="11667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Kocie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52256" from="11667" to="11668" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52277" from="11669" to="11679" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odwiedziny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52299" from="11680" to="11683" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52339" from="11684" to="11687" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52358" from="11688" to="11697" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spodobały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52381" from="11698" to="11704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52430" from="11705" to="11716" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najmłodszym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52469" from="11717" to="11728" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czytelnikom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52488" from="11728" to="11729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52509" from="11730" to="11732" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52535" from="11733" to="11738" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52573" from="11739" to="11742" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52596" from="11743" to="11750" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_później-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52615" from="11751" to="11757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dzieci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52638" from="11758" to="11766" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykonały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52661" from="11767" to="11776" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wspaniałe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52695" from="11777" to="11782" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prace-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52727" from="11783" to="11793" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_plastyczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52761" from="11793" to="11794" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52782" from="11795" to="11802" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_których-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52812" from="11803" to="11810" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tematem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52831" from="11811" to="11815" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_była-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52868" from="11816" to="11823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kocilla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52894" from="11824" to="11825" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52927" from="11826" to="11834" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Redaktor-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52968" from="11834" to="11835" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n52990" from="11836" to="11845" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kastracja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53009" from="11846" to="11848" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53061" from="11849" to="11855" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciągle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53087" from="11856" to="11861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_temat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53108" from="11862" to="11876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kontrowersyjny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53134" from="11877" to="11878" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53167" from="11879" to="11890" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzbudzający-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53195" from="11891" to="11897" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_liczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53229" from="11898" to="11904" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_emocje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53251" from="11904" to="11905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53273" from="11906" to="11911" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53324" from="11912" to="11922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miłośników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53345" from="11923" to="11928" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53367" from="11929" to="11932" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53386" from="11932" to="11933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53407" from="11934" to="11936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53433" from="11937" to="11941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53452" from="11942" to="11944" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53504" from="11945" to="11951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_często-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53523" from="11952" to="11958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jedyny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53558" from="11959" to="11965" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sposób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53593" from="11966" to="11968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53621" from="11969" to="11981" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmniejszenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53661" from="11982" to="11988" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_liczby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53684" from="11989" to="11999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53733" from="12000" to="12005" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53755" from="12005" to="12006" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53777" from="12007" to="12018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przeciwnicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53808" from="12019" to="12022" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53827" from="12023" to="12031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obawiają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53846" from="12032" to="12035" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53865" from="12035" to="12036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53886" from="12037" to="12039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_iż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53905" from="12040" to="12052" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykastrowane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53939" from="12053" to="12060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53971" from="12061" to="12066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_traci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n53990" from="12067" to="12072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54018" from="12073" to="12082" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osobowość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54039" from="12082" to="12083" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ;-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54060" from="12084" to="12088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54088" from="12089" to="12092" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54143" from="12093" to="12099" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_często-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54162" from="12100" to="12110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_popełniają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54181" from="12111" to="12115" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_błąd-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54202" from="12116" to="12133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_antropomorfizując-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54221" from="12134" to="12146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prokreacyjne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54255" from="12147" to="12148" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54288" from="12149" to="12158" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_seksualne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54322" from="12159" to="12169" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zachowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54355" from="12170" to="12178" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54376" from="12178" to="12179" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54399" from="12180" to="12184" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Klub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54456" from="12185" to="12190" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Myszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54510" from="12191" to="12199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54540" from="12200" to="12201" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54559" from="12202" to="12206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mice-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54617" from="12207" to="12211" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Club-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54645" from="12212" to="12218" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Poland-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54671" from="12219" to="12223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54690" from="12224" to="12232" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aktywnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54709" from="12233" to="12244" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działającym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54741" from="12245" to="12260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stowarzyszeniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54767" from="12260" to="12261" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54788" from="12262" to="12267" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54822" from="12268" to="12281" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zorganizowało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54841" from="12282" to="12284" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54881" from="12285" to="12288" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54903" from="12289" to="12293" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pory-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54939" from="12294" to="12300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cztery-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n54970" from="12301" to="12315" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_międzynarodowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55004" from="12316" to="12323" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55027" from="12324" to="12328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55053" from="12329" to="12334" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sześć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55084" from="12335" to="12342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokazów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55110" from="12343" to="12347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55129" from="12348" to="12354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okazji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55152" from="12355" to="12370" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55174" from="12371" to="12378" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wystawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55197" from="12379" to="12384" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55259" from="12385" to="12393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55289" from="12393" to="12394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55311" from="12395" to="12402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Podczas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55330" from="12403" to="12409" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokazu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55349" from="12410" to="12421" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwiedzający-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55404" from="12422" to="12426" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55437" from="12427" to="12436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_możliwość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55458" from="12437" to="12447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zobaczenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55491" from="12448" to="12453" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55533" from="12454" to="12457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ras-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55559" from="12458" to="12463" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_myszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55600" from="12463" to="12464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55622" from="12465" to="12469" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55641" from="12470" to="12472" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55693" from="12473" to="12484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczególnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55719" from="12485" to="12495" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_atrakcyjne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55753" from="12496" to="12499" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55772" from="12500" to="12506" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dzieci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55795" from="12506" to="12507" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55816" from="12508" to="12513" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55850" from="12514" to="12518" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_same-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55881" from="12519" to="12525" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_proszą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55900" from="12526" to="12534" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodziców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55930" from="12534" to="12535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55951" from="12536" to="12539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n55977" from="12540" to="12545" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56000" from="12546" to="12551" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wziąć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56019" from="12552" to="12554" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56059" from="12555" to="12561" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rączki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56082" from="12562" to="12564" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_te-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56146" from="12565" to="12571" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piękne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56193" from="12572" to="12582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stworzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56226" from="12582" to="12583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56248" from="12584" to="12589" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Myszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56302" from="12590" to="12592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56321" from="12593" to="12601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oceniane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56355" from="12602" to="12607" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56374" from="12608" to="12609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56393" from="12609" to="12615" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- kocich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56425" from="12616" to="12623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sędziów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56446" from="12623" to="12624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56467" from="12625" to="12626" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56500" from="12627" to="12634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zostaje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56519" from="12635" to="12642" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wybrana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56558" from="12643" to="12657" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najpiękniejsza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56579" from="12658" to="12662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mysz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56600" from="12663" to="12669" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokazu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56619" from="12669" to="12670" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56642" from="12671" to="12673" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56664" from="12674" to="12676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_co-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56710" from="12677" to="12678" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56731" from="12679" to="12684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogóle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56752" from="12685" to="12694" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kastrować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56771" from="12695" to="12700" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wolno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56797" from="12701" to="12707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żyjące-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56873" from="12708" to="12712" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56916" from="12712" to="12713" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56938" from="12714" to="12720" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przede-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n56959" from="12721" to="12730" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57007" from="12731" to="12733" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57029" from="12734" to="12736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57081" from="12736" to="12737" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57102" from="12738" to="12741" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57128" from="12742" to="12752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ograniczyć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57147" from="12753" to="12762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_populację-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57166" from="12763" to="12768" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57188" from="12769" to="12774" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wolno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57214" from="12775" to="12783" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żyjących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57281" from="12783" to="12784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57303" from="12785" to="12792" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Niechęć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57331" from="12793" to="12803" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_większości-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57358" from="12804" to="12813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lokatorów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57379" from="12814" to="12816" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57419" from="12817" to="12822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57441" from="12823" to="12831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żyjących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57508" from="12832" to="12833" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57529" from="12834" to="12843" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piwnicach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57548" from="12844" to="12855" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uzasadniana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57569" from="12856" to="12860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57588" from="12861" to="12870" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zazwyczaj-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57607" from="12871" to="12881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_argumentem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57626" from="12882" to="12883" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57645" from="12883" to="12887" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57666" from="12888" to="12891" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57697" from="12892" to="12894" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57726" from="12895" to="12899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dużo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57782" from="12900" to="12901" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57815" from="12902" to="12910" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śmierdzą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57841" from="12910" to="12911" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57862" from="12911" to="12912" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57884" from="12913" to="12922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kastracja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57903" from="12923" to="12928" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57929" from="12929" to="12931" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n57981" from="12932" to="12938" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sposób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58016" from="12939" to="12941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58044" from="12942" to="12944" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58096" from="12944" to="12945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58117" from="12946" to="12950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żeby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58143" from="12951" to="12956" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58165" from="12957" to="12959" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58194" from="12960" to="12964" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dużo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58250" from="12965" to="12968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58300" from="12969" to="12973" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58319" from="12973" to="12974" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58340" from="12975" to="12984" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kastracja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58359" from="12985" to="12992" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocurów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58378" from="12993" to="12994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58397" from="12995" to="12999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żeby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58423" from="13000" to="13003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58473" from="13004" to="13015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śmierdziało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58492" from="13015" to="13016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58515" from="13017" to="13031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zorganizowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58546" from="13032" to="13034" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58572" from="13035" to="13041" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzech-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58604" from="13042" to="13048" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystaw-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58630" from="13049" to="13050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58651" from="13051" to="13056" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeden-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58728" from="13057" to="13062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_długi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58764" from="13063" to="13070" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_weekend-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58785" from="13071" to="13080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozwoliło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58804" from="13081" to="13086" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58846" from="13087" to="13096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawcom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58865" from="13097" to="13104" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zamknąć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58884" from="13105" to="13107" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58912" from="13108" to="13113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58936" from="13114" to="13120" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58964" from="13121" to="13127" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tytuły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n58986" from="13128" to="13129" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59007" from="13130" to="13138" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyższych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59037" from="13139" to="13146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klasach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59063" from="13147" to="13158" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59093" from="13159" to="13160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59126" from="13161" to="13164" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59161" from="13165" to="13174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wątpienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59194" from="13175" to="13184" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podniosło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59213" from="13185" to="13190" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rangę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59232" from="13191" to="13195" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59262" from="13196" to="13202" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystaw-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59288" from="13202" to="13203" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59310" from="13204" to="13208" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59342" from="13209" to="13213" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_typu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59361" from="13214" to="13215" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59380" from="13215" to="13221" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- border-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59408" from="13222" to="13226" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_show-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59448" from="13226" to="13227" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59469" from="13228" to="13233" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59492" from="13233" to="13235" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59513" from="13236" to="13239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_być-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59546" from="13240" to="13252" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizowane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59580" from="13253" to="13258" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59599" from="13259" to="13260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59627" from="13261" to="13267" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_innymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59658" from="13268" to="13275" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59696" from="13276" to="13289" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zagranicznymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59720" from="13290" to="13299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sąsiadami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59739" from="13299" to="13300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59762" from="13301" to="13309" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Odpukuję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59781" from="13309" to="13310" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59802" from="13311" to="13320" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dudusiowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59828" from="13321" to="13328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdrowie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59850" from="13328" to="13329" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59871" from="13330" to="13341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_umieszczone-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59905" from="13342" to="13343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59926" from="13344" to="13347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n59981" from="13348" to="13359" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezpiecznie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60000" from="13360" to="13365" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dużym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60032" from="13366" to="13371" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciele-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60051" from="13371" to="13372" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60072" from="13373" to="13375" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60100" from="13376" to="13379" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60119" from="13380" to="13388" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ostatnio-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60140" from="13389" to="13395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dobrze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60159" from="13395" to="13396" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60180" from="13397" to="13401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60199" from="13402" to="13404" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60239" from="13405" to="13413" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lecznicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60270" from="13414" to="13422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeździmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60289" from="13423" to="13429" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60308" from="13430" to="13436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzadko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60327" from="13436" to="13437" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60349" from="13438" to="13439" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_I-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60389" from="13440" to="13444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_całe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60423" from="13445" to="13454" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczęście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60445" from="13454" to="13455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60466" from="13456" to="13460" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdyż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60485" from="13461" to="13468" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obawiam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60504" from="13469" to="13472" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60523" from="13472" to="13473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60544" from="13474" to="13476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60570" from="13477" to="13480" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60596" from="13481" to="13489" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podnieść-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60615" from="13490" to="13500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kontenerek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60641" from="13501" to="13510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczelnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60660" from="13511" to="13521" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wypełniony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60686" from="13522" to="13530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dudusiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60719" from="13530" to="13531" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60740" from="13532" to="13539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_musiała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60759" from="13539" to="13541" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60780" from="13541" to="13542" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60801" from="13543" to="13548" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_teraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60820" from="13549" to="13559" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_skorzystać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60839" from="13560" to="13561" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60867" from="13562" to="13568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomocy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60891" from="13569" to="13575" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dźwigu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60913" from="13575" to="13576" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60935" from="13577" to="13579" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60963" from="13580" to="13587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszelki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n60989" from="13588" to="13595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wypadek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61010" from="13596" to="13604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poproszę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61061" from="13605" to="13610" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kogoś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61082" from="13611" to="13612" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61110" from="13613" to="13624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprawdzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61131" from="13625" to="13626" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61152" from="13627" to="13637" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_internecie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61173" from="13637" to="13638" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61194" from="13639" to="13644" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61220" from="13645" to="13650" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponoć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61239" from="13651" to="13656" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61267" from="13657" to="13662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kupić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61288" from="13663" to="13671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61326" from="13671" to="13672" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61347" from="13673" to="13675" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61369" from="13676" to="13679" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ile-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61433" from="13680" to="13681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61452" from="13681" to="13687" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- chodzą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61473" from="13687" to="13688" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61494" from="13689" to="13691" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_te-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61558" from="13692" to="13702" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urządzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61591" from="13702" to="13703" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61614" from="13704" to="13716" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Niewątpliwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61633" from="13717" to="13723" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ważnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61665" from="13724" to="13730" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_newsem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61686" from="13731" to="13735" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61705" from="13736" to="13747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ratyfikacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61724" from="13748" to="13757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_patronatu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61743" from="13758" to="13762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_FIFe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61769" from="13763" to="13766" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61790" from="13767" to="13770" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61820" from="13771" to="13778" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_polskim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61872" from="13779" to="13795" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przedstawicielem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61891" from="13796" to="13797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61910" from="13797" to="13802" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Felis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61953" from="13803" to="13810" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n61979" from="13810" to="13811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62000" from="13812" to="13813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62019" from="13813" to="13822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- gratuluję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62040" from="13822" to="13823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62061" from="13823" to="13824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62082" from="13824" to="13825" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62103" from="13826" to="13827" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62143" from="13828" to="13833" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62162" from="13834" to="13841" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wstępne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62229" from="13842" to="13849" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uznanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62260" from="13850" to="13853" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62302" from="13854" to="13860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62351" from="13861" to="13864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ras-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62377" from="13865" to="13875" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezwłosych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62407" from="13876" to="13881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62429" from="13881" to="13882" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62450" from="13883" to="13893" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_peterbolda-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62476" from="13894" to="13895" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62509" from="13896" to="13905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dońskiego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62534" from="13906" to="13913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sfinksa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62555" from="13913" to="13914" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62577" from="13915" to="13919" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62596" from="13920" to="13927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wilczek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62637" from="13928" to="13935" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opisuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62656" from="13936" to="13937" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62677" from="13938" to="13941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62732" from="13942" to="13949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numerze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62753" from="13950" to="13960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_całoroczną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62774" from="13961" to="13968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wolierę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62793" from="13969" to="13972" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62812" from="13973" to="13978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62834" from="13978" to="13979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62855" from="13980" to="13987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapewne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62874" from="13988" to="13991" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62893" from="13992" to="13997" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62935" from="13998" to="13999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62963" from="14000" to="14003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n62997" from="14004" to="14014" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozostanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63025" from="14015" to="14018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63057" from="14019" to="14026" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jedynie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63076" from="14027" to="14028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63097" from="14029" to="14035" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sferze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63118" from="14036" to="14042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_marzeń-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63151" from="14042" to="14043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63172" from="14044" to="14047" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63205" from="14048" to="14049" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63238" from="14050" to="14053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63278" from="14054" to="14058" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63297" from="14059" to="14067" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poczytać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63316" from="14067" to="14068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63337" from="14069" to="14072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63391" from="14073" to="14080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pięknie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63417" from="14081" to="14085" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63436" from="14086" to="14089" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żyć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63469" from="14090" to="14094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63512" from="14094" to="14095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63535" from="14096" to="14102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Główną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63565" from="14103" to="14111" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_atrakcją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63584" from="14112" to="14121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Festiwalu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63606" from="14122" to="14125" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_był-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63628" from="14126" to="14138" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niewątpliwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63647" from="14139" to="14144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokaz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63668" from="14145" to="14150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63690" from="14150" to="14151" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63712" from="14152" to="14153" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63733" from="14154" to="14164" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_eleganckim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63765" from="14165" to="14172" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_budynku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63787" from="14173" to="14185" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowoczesnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63812" from="14186" to="14193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_centrum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63838" from="14194" to="14204" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_handlowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63863" from="14205" to="14210" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63891" from="14211" to="14215" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63910" from="14216" to="14225" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podziwiać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63929" from="14226" to="14231" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63957" from="14232" to="14235" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_150-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63976" from="14236" to="14241" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n63998" from="14242" to="14249" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_różnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64028" from="14250" to="14253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ras-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64054" from="14253" to="14254" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64075" from="14255" to="14260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64109" from="14261" to="14269" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przybyły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64155" from="14270" to="14272" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64174" from="14272" to="14273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64195" from="14274" to="14278" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64223" from="14279" to="14281" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64251" from="14282" to="14287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64275" from="14288" to="14298" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opiekunami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64294" from="14298" to="14299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64315" from="14300" to="14301" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64343" from="14302" to="14307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_całej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64365" from="14308" to="14314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64421" from="14314" to="14315" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64442" from="14316" to="14317" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64482" from="14318" to="14323" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64501" from="14324" to="14326" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64529" from="14327" to="14335" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Słowacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64552" from="14335" to="14336" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64574" from="14337" to="14341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Hole-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64637" from="14342" to="14343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64656" from="14343" to="14350" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Galerii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64681" from="14351" to="14359" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Łódzkiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64703" from="14359" to="14360" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64724" from="14361" to="14367" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pękały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64747" from="14368" to="14369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64768" from="14370" to="14376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szwach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64794" from="14376" to="14377" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64815" from="14378" to="14386" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chętnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64855" from="14386" to="14387" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64876" from="14388" to="14394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64897" from="14395" to="14402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chcieli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64916" from="14403" to="14404" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64944" from="14405" to="14411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bliska-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64972" from="14412" to="14421" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_popatrzeć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n64991" from="14422" to="14424" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65019" from="14425" to="14431" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piękne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65066" from="14432" to="14441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzęta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65091" from="14441" to="14442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65112" from="14443" to="14447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65131" from="14448" to="14452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65173" from="14452" to="14453" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65194" from="14454" to="14456" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65220" from="14457" to="14464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czasami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65239" from="14465" to="14471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trudno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65258" from="14472" to="14476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65277" from="14477" to="14484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dopchać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65296" from="14485" to="14488" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65315" from="14489" to="14491" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65355" from="14492" to="14503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65385" from="14504" to="14510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klatek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65404" from="14510" to="14511" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65427" from="14512" to="14517" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Targi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65469" from="14518" to="14529" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zoologiczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65503" from="14530" to="14539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_połączone-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65537" from="14540" to="14541" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65565" from="14542" to="14549" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65584" from="14550" to="14555" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65606" from="14556" to="14558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65628" from="14559" to="14562" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_raz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65649" from="14563" to="14570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kolejny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65675" from="14571" to="14576" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65716" from="14577" to="14580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65735" from="14581" to="14587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielką-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65756" from="14588" to="14595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imprezą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65775" from="14596" to="14599" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65794" from="14600" to="14605" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_całej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65816" from="14606" to="14613" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stolicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65838" from="14613" to="14614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65859" from="14615" to="14625" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odwiedzaną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65880" from="14626" to="14633" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tłumnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65899" from="14634" to="14639" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65918" from="14640" to="14647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodziny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65941" from="14648" to="14649" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65969" from="14650" to="14657" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziećmi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n65988" from="14657" to="14658" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66010" from="14659" to="14660" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66031" from="14661" to="14667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dniach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66050" from="14668" to="14669" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_9-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66069" from="14669" to="14670" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66090" from="14670" to="14672" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 11-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66111" from="14673" to="14681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_września-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66137" from="14682" to="14686" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Hala-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66172" from="14687" to="14691" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Iase-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66198" from="14692" to="14694" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_we-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66219" from="14695" to="14704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wrocławiu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66240" from="14705" to="14714" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zamieniła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66259" from="14715" to="14718" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66278" from="14719" to="14720" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66299" from="14721" to="14733" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyrodnicze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66333" from="14734" to="14743" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_królestwo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66357" from="14743" to="14744" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66379" from="14745" to="14753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wszystko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66417" from="14754" to="14756" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66446" from="14757" to="14763" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprawą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66465" from="14764" to="14776" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odbywających-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66495" from="14777" to="14780" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66514" from="14781" to="14784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66547" from="14785" to="14787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_IV-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66566" from="14788" to="14804" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66596" from="14805" to="14811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Targów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66636" from="14812" to="14818" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_MARKET-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66664" from="14819" to="14822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ZOO-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66704" from="14822" to="14823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66725" from="14823" to="14831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- BOTANICA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66753" from="14832" to="14836" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66779" from="14837" to="14852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ogólnopolskiemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66802" from="14853" to="14861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Salonowi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66830" from="14862" to="14874" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ogrodniczemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66853" from="14875" to="14876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66872" from="14876" to="14881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Ogród-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66895" from="14882" to="14888" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Twoich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66963" from="14889" to="14895" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Marzeń-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n66996" from="14895" to="14896" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67017" from="14896" to="14897" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67040" from="14898" to="14901" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67090" from="14902" to="14913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zostawiajmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67109" from="14914" to="14924" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_włączonych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67139" from="14925" to="14931" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lampek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67158" from="14932" to="14943" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_choinkowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67188" from="14944" to="14951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podczas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67207" from="14952" to="14958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67229" from="14959" to="14971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nieobecności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67256" from="14971" to="14972" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67278" from="14973" to="14976" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67297" from="14977" to="14987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swędzących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67345" from="14988" to="14994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ząbków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67366" from="14995" to="15002" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67398" from="15003" to="15010" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociaka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67419" from="15011" to="15016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kabel-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67441" from="15017" to="15028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_elektryczny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67467" from="15029" to="15031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67519" from="15032" to="15038" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okazja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67538" from="15039" to="15040" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67557" from="15040" to="15042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67599" from="15043" to="15053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_upolowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67621" from="15053" to="15054" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67642" from="15055" to="15056" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67675" from="15057" to="15058" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67703" from="15059" to="15069" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poparzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67734" from="15070" to="15076" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prądem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67753" from="15077" to="15082" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wtedy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67772" from="15083" to="15092" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nietrudno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67791" from="15092" to="15093" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67813" from="15094" to="15102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Podobnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67832" from="15103" to="15107" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67851" from="15108" to="15110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67879" from="15111" to="15121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świeczkami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67898" from="15121" to="15122" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67919" from="15123" to="15130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ustawmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67938" from="15131" to="15133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_je-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n67974" from="15134" to="15137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68014" from="15137" to="15138" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68035" from="15139" to="15141" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68061" from="15142" to="15145" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68089" from="15146" to="15149" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68139" from="15150" to="15154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mógł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68161" from="15155" to="15158" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68192" from="15159" to="15166" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_strącić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68211" from="15166" to="15167" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68233" from="15168" to="15171" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68283" from="15172" to="15178" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chcemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68302" from="15179" to="15187" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przecież-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68321" from="15188" to="15196" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przerwać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68340" from="15197" to="15206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śpiewania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68362" from="15207" to="15212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kolęd-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68381" from="15213" to="15214" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68414" from="15215" to="15221" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzywać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68433" from="15222" to="15228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_straży-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68468" from="15229" to="15237" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pożarnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68490" from="15238" to="15240" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68530" from="15241" to="15249" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_palącego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68577" from="15250" to="15253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68596" from="15254" to="15264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieszkania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68629" from="15264" to="15265" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68652" from="15266" to="15273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kocięta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68674" from="15274" to="15276" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68703" from="15277" to="15281" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dnia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68722" from="15282" to="15285" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68772" from="15286" to="15296" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyróżniają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68791" from="15297" to="15300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68810" from="15301" to="15307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niczym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68845" from="15308" to="15319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczególnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68877" from="15319" to="15320" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68899" from="15321" to="15327" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jednak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68925" from="15328" to="15329" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68946" from="15330" to="15342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciemnościach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68965" from="15342" to="15343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n68986" from="15344" to="15347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69012" from="15348" to="15354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_włączy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69031" from="15355" to="15358" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69050" from="15359" to="15366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żarówki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69073" from="15367" to="15376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_emitujące-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69107" from="15377" to="15384" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_światło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69136" from="15385" to="15400" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ultrafiloletowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69162" from="15400" to="15401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69183" from="15402" to="15405" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69214" from="15406" to="15413" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_futerko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69236" from="15414" to="15421" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nabiera-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69255" from="15422" to="15436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomarańczowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69280" from="15437" to="15443" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_blasku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69302" from="15443" to="15444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69324" from="15445" to="15449" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69343" from="15450" to="15452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69395" from="15453" to="15458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wynik-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69416" from="15459" to="15470" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_modyfikacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69439" from="15471" to="15474" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_DNA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69504" from="15475" to="15480" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69526" from="15480" to="15481" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69548" from="15482" to="15484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69570" from="15485" to="15487" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_co-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69616" from="15488" to="15491" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69642" from="15492" to="15503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_eksperyment-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69663" from="15503" to="15504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69685" from="15505" to="15514" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Koreańscy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69706" from="15515" to="15523" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naukowcy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69727" from="15524" to="15532" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_twierdzą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69753" from="15532" to="15533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69774" from="15534" to="15536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69800" from="15537" to="15548" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_umiejętność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69821" from="15549" to="15559" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klonowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69843" from="15560" to="15565" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69865" from="15566" to="15568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69893" from="15569" to="15580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmienionymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69917" from="15581" to="15587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_genami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69936" from="15588" to="15594" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomoże-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69955" from="15595" to="15596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n69976" from="15597" to="15608" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prowadzeniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70006" from="15609" to="15614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_badań-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70032" from="15615" to="15618" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70053" from="15619" to="15628" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chorobami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70072" from="15629" to="15641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_genetycznymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70096" from="15641" to="15642" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70118" from="15643" to="15653" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zapewniają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70137" from="15654" to="15666" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednocześnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70156" from="15666" to="15667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70177" from="15668" to="15670" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70203" from="15671" to="15682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_modyfikacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70222" from="15683" to="15686" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_DNA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70287" from="15687" to="15690" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70337" from="15691" to="15699" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wpłynęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70356" from="15700" to="15707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ujemnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70375" from="15708" to="15710" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70403" from="15711" to="15718" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdrowie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70425" from="15719" to="15724" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70447" from="15725" to="15726" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70480" from="15727" to="15728" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70499" from="15728" to="15736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- świecące-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70557" from="15736" to="15737" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70578" from="15738" to="15744" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_angory-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70605" from="15745" to="15750" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czują-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70631" from="15751" to="15754" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70650" from="15755" to="15763" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świetnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70679" from="15763" to="15764" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70702" from="15765" to="15770" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tytuł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70730" from="15771" to="15774" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_DVM-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70756" from="15775" to="15784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uhonoruje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70775" from="15785" to="15789" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70818" from="15790" to="15801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_popularnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70848" from="15802" to="15805" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ras-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70874" from="15806" to="15807" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70907" from="15808" to="15814" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odmian-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70926" from="15815" to="15823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_barwnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70956" from="15823" to="15824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70978" from="15825" to="15837" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przypominamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n70997" from="15837" to="15838" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71018" from="15839" to="15841" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71044" from="15842" to="15844" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71070" from="15845" to="15848" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_BiV-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71096" from="15849" to="15853" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mógł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71118" from="15854" to="15857" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_być-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71151" from="15858" to="15867" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyznany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71177" from="15867" to="15868" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71198" from="15869" to="15870" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71219" from="15871" to="15876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_danej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71261" from="15877" to="15882" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rasie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71291" from="15882" to="15883" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71312" from="15884" to="15891" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kolorze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71333" from="15892" to="15895" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71359" from="15896" to="15902" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_grupie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71380" from="15903" to="15910" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_barwnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71402" from="15911" to="15916" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_muszą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71444" from="15917" to="15924" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znaleźć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71463" from="15925" to="15928" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71482" from="15929" to="15931" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_co-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71528" from="15932" to="15940" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najmniej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71591" from="15941" to="15942" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_3-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71610" from="15943" to="15947" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71653" from="15947" to="15948" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71675" from="15949" to="15958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71723" from="15959" to="15964" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71751" from="15965" to="15976" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_startującym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71820" from="15977" to="15978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71841" from="15979" to="15989" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_konkursach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71860" from="15990" to="15999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piękności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71887" from="16000" to="16007" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_życzymy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71906" from="16008" to="16018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powodzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71942" from="16018" to="16019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71964" from="16020" to="16021" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n71985" from="16022" to="16029" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Stanach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72056" from="16030" to="16043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zjednoczonych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72086" from="16044" to="16047" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72105" from="16048" to="16050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72131" from="16051" to="16059" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czterech-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72163" from="16060" to="16063" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72189" from="16064" to="16070" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72226" from="16071" to="16075" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Meow-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72252" from="16076" to="16078" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_TV-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72313" from="16079" to="16080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72332" from="16081" to="16085" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72367" from="16086" to="16091" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kanał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72388" from="16092" to="16103" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_telewizyjny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72414" from="16103" to="16104" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72436" from="16105" to="16108" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72462" from="16109" to="16115" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72481" from="16116" to="16117" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72509" from="16118" to="16123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_takim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72541" from="16124" to="16131" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_profilu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72563" from="16132" to="16134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72591" from="16135" to="16141" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szansę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72610" from="16142" to="16151" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przetrwać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72629" from="16152" to="16154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72657" from="16155" to="16160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rynku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72679" from="16160" to="16161" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72701" from="16162" to="16169" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Okazuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72727" from="16170" to="16173" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72746" from="16173" to="16174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72767" from="16175" to="16177" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72793" from="16178" to="16181" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72833" from="16181" to="16182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72856" from="16183" to="16193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zapraszamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72875" from="16194" to="16196" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72915" from="16197" to="16204" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udziału-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72934" from="16205" to="16206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72955" from="16207" to="16215" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kolejnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n72977" from="16216" to="16222" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_edycji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73000" from="16223" to="16232" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeglądu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73019" from="16232" to="16233" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73040" from="16234" to="16244" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_planowanej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73062" from="16245" to="16247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73090" from="16248" to="16252" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2008-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73109" from="16253" to="16256" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rok-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73130" from="16256" to="16257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73152" from="16258" to="16263" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73180" from="16264" to="16267" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73199" from="16268" to="16273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pisać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73218" from="16274" to="16285" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_scenariusze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73240" from="16285" to="16286" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73261" from="16287" to="16298" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73280" from="16299" to="16307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_castingi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73302" from="16308" to="16309" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73335" from="16310" to="16316" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kręcić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73354" from="16317" to="16321" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73408" from="16322" to="16329" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_filmowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73442" from="16330" to="16339" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opowieści-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73469" from="16339" to="16340" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73491" from="16341" to="16344" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73524" from="16345" to="16354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przejrzeć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73543" from="16355" to="16361" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bogate-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73587" from="16362" to="16370" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodzinne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73621" from="16371" to="16377" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zbiory-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73643" from="16378" to="16379" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73662" from="16380" to="16381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73683" from="16382" to="16393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeglądzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73704" from="16394" to="16400" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_panuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73723" from="16401" to="16410" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dowolność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73744" from="16411" to="16418" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_technik-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73770" from="16419" to="16420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73803" from="16421" to="16429" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomysłów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73822" from="16429" to="16430" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73843" from="16431" to="16432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73871" from="16433" to="16442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjątkiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73890" from="16443" to="16448" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czasu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73909" from="16449" to="16457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nagrania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73942" from="16457" to="16458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n73963" from="16459" to="16472" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ograniczonego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74001" from="16473" to="16475" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74041" from="16476" to="16477" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_5-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74060" from="16478" to="16483" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_minut-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74079" from="16483" to="16484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74101" from="16485" to="16494" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wszelkich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74131" from="16495" to="16505" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_informacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74154" from="16506" to="16513" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udziela-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74173" from="16514" to="16517" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Cat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74199" from="16518" to="16522" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Club-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74227" from="16523" to="16528" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Sopot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74270" from="16528" to="16529" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74291" from="16530" to="16532" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_81-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74310" from="16532" to="16533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74331" from="16533" to="16536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 824-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74352" from="16537" to="16542" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Sopot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74395" from="16542" to="16543" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74416" from="16544" to="16546" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ul-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74444" from="16546" to="16547" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74465" from="16548" to="16553" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Armii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74488" from="16554" to="16562" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Krajowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74510" from="16563" to="16565" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_94-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74529" from="16565" to="16566" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74712" from="16567" to="16587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_www.catclub-sopot.pl-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74738" from="16587" to="16588" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74759" from="16589" to="16592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tel-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74778" from="16592" to="16593" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74799" from="16594" to="16597" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_510-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74818" from="16598" to="16601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_256-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74837" from="16602" to="16605" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_732-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74856" from="16605" to="16606" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74879" from="16607" to="16610" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74898" from="16611" to="16613" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74920" from="16614" to="16617" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_raz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74941" from="16618" to="16623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drugi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n74979" from="16624" to="16632" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lubelska-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75000" from="16633" to="16641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Fundacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75019" from="16642" to="16647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Felis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75053" from="16648" to="16657" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyznała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75072" from="16658" to="16665" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dyplomy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75094" from="16666" to="16667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75127" from="16668" to="16677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_statuetki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75150" from="16678" to="16688" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_SuperFelis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75191" from="16689" to="16695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osobom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75210" from="16695" to="16696" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75231" from="16697" to="16702" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75265" from="16703" to="16704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75286" from="16705" to="16711" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sposób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75321" from="16712" to="16720" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znaczący-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75365" from="16721" to="16728" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wsparły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75388" from="16729" to="16740" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działalność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75409" from="16741" to="16749" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fundacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75432" from="16750" to="16751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75453" from="16752" to="16756" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2006-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75472" from="16757" to="16761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75494" from="16761" to="16762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75516" from="16763" to="16770" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Każdego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75541" from="16771" to="16775" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75563" from="16776" to="16788" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_założycielka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75582" from="16789" to="16797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fundacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75605" from="16798" to="16799" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75624" from="16800" to="16805" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75652" from="16806" to="16815" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koleżanka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75671" from="16816" to="16817" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75784" from="16818" to="16831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_forum.miau.pl-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75810" from="16832" to="16833" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75829" from="16834" to="16839" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kasia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75848" from="16840" to="16847" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Drelich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75891" from="16848" to="16856" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziękuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75910" from="16857" to="16860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75965" from="16860" to="16861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n75986" from="16862" to="16868" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76007" from="16869" to="16876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomogli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76026" from="16877" to="16880" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76056" from="16881" to="16886" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76075" from="16887" to="16896" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ostatnich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76124" from="16897" to="16899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_12-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76143" from="16900" to="16908" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miesięcy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76162" from="16908" to="16909" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76185" from="16910" to="16915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Targi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76227" from="16916" to="16923" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_skupiły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76250" from="16924" to="16935" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najbardziej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76269" from="16936" to="16945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_liczących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76299" from="16946" to="16949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76318" from="16950" to="16961" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_producentów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76339" from="16962" to="16963" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76372" from="16964" to="16973" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76393" from="16974" to="16975" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76421" from="16976" to="16981" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kraju-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76443" from="16982" to="16983" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76476" from="16984" to="16993" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zagranicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76498" from="16993" to="16994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76520" from="16995" to="17001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bogata-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76541" from="17002" to="17008" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oferta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76560" from="17009" to="17015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dawała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76579" from="17016" to="17022" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szansę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76598" from="17023" to="17033" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapoznania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76620" from="17034" to="17037" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76639" from="17038" to="17039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76667" from="17040" to="17050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowościami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76686" from="17051" to="17052" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76719" from="17053" to="17062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_możliwość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76740" from="17063" to="17075" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wypróbowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76762" from="17076" to="17086" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niektórych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76802" from="17086" to="17087" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76824" from="17088" to="17098" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Asortyment-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76845" from="17099" to="17102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76864" from="17103" to="17110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76913" from="17111" to="17121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ulubieńców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76934" from="17121" to="17122" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76955" from="17123" to="17133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaczynając-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n76974" from="17134" to="17136" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77000" from="17137" to="17141" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karm-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77035" from="17142" to="17143" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77068" from="17144" to="17151" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żwirków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77087" from="17151" to="17152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77108" from="17153" to="17154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77148" from="17155" to="17162" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kończąc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77167" from="17163" to="17165" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77195" from="17166" to="17174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piórkach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77214" from="17175" to="17176" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77247" from="17177" to="17189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wstążeczkach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77266" from="17189" to="17190" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77287" from="17191" to="17201" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaspokajał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77309" from="17202" to="17207" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77328" from="17208" to="17219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najbardziej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77347" from="17220" to="17229" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyszukane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77403" from="17230" to="17238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrzeby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77426" from="17238" to="17239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77448" from="17240" to="17247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ogromne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77482" from="17248" to="17263" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zainteresowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77513" from="17264" to="17273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzbudzało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77532" from="17274" to="17281" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stoisko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77554" from="17282" to="17287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_forum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77580" from="17288" to="17292" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_MIAU-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77599" from="17292" to="17293" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77620" from="17294" to="17296" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77648" from="17297" to="17303" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77680" from="17304" to="17310" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_goście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77721" from="17311" to="17316" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77747" from="17317" to="17325" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obejrzeć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77766" from="17326" to="17333" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_galerię-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77785" from="17334" to="17339" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdjęć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77818" from="17340" to="17351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uratowanych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77848" from="17352" to="17357" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77867" from="17358" to="17370" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_forumowiczów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77888" from="17371" to="17376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77910" from="17376" to="17377" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77933" from="17378" to="17380" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_10-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77952" from="17381" to="17382" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n77985" from="17383" to="17385" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_11-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78004" from="17386" to="17394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_września-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78030" from="17395" to="17400" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_targi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78062" from="17401" to="17404" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78081" from="17405" to="17407" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78103" from="17408" to="17411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_raz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78124" from="17412" to="17419" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czwarty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78162" from="17420" to="17427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gościły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78185" from="17428" to="17442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodową-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78206" from="17443" to="17450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wystawę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78225" from="17451" to="17456" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78287" from="17457" to="17465" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78317" from="17465" to="17466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78339" from="17467" to="17471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Była-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78376" from="17472" to="17474" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78428" from="17475" to="17487" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednocześnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78447" from="17488" to="17496" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pierwsza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78477" from="17497" to="17504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78496" from="17505" to="17508" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pod-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78517" from="17509" to="17519" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_patronatem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78536" from="17520" to="17525" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Felis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78570" from="17526" to="17533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78589" from="17534" to="17535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78608" from="17535" to="17540" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- nowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78642" from="17541" to="17552" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78665" from="17553" to="17568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_felinologicznej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78691" from="17569" to="17578" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powstałej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78713" from="17579" to="17581" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78741" from="17582" to="17589" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gruncie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78762" from="17590" to="17604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Stowarzyszenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78795" from="17605" to="17613" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Hodowców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78816" from="17614" to="17619" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78878" from="17620" to="17628" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78908" from="17629" to="17630" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78929" from="17631" to="17637" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78950" from="17637" to="17638" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78971" from="17638" to="17639" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n78993" from="17640" to="17645" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Felis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79027" from="17646" to="17653" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79046" from="17654" to="17658" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79065" from="17659" to="17668" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_federacją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79084" from="17669" to="17681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stowarzyszeń-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79110" from="17681" to="17682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79131" from="17683" to="17684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79164" from="17685" to="17692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_właśnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79197" from="17693" to="17698" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jedno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79235" from="17699" to="17700" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79263" from="17701" to="17705" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79314" from="17706" to="17707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79333" from="17708" to="17711" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Cat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79359" from="17712" to="17716" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Club-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79380" from="17717" to="17721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Łódź-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79410" from="17722" to="17726" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79429" from="17727" to="17740" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizatorem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79450" from="17741" to="17748" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79473" from="17748" to="17749" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79496" from="17750" to="17758" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wiosenna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79517" from="17759" to="17765" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pogoda-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79536" from="17766" to="17773" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprawia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79555" from="17773" to="17774" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79576" from="17775" to="17777" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79602" from="17778" to="17784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trudno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79621" from="17785" to="17791" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oprzeć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79640" from="17792" to="17795" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79659" from="17796" to="17803" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pokusie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79689" from="17804" to="17814" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_otworzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79711" from="17815" to="17817" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79769" from="17818" to="17824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oścież-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79797" from="17825" to="17829" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79820" from="17830" to="17833" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79846" from="17834" to="17839" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drzwi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79869" from="17840" to="17847" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_balkonu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79888" from="17847" to="17848" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79910" from="17849" to="17856" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ciesząc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79936" from="17857" to="17860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79955" from="17861" to="17868" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świeżym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n79987" from="17869" to="17879" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powietrzem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80006" from="17880" to="17881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80039" from="17882" to="17893" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wpadającymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80063" from="17894" to="17905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_promieniami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80082" from="17906" to="17912" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słońca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80105" from="17912" to="17913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80126" from="17914" to="17917" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80176" from="17918" to="17929" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapominajmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80195" from="17930" to="17936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80221" from="17937" to="17938" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80249" from="17939" to="17954" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezpieczeństwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80268" from="17955" to="17962" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80317" from="17963" to="17968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80339" from="17968" to="17969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80361" from="17970" to="17976" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Upadek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80382" from="17977" to="17978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80410" from="17979" to="17984" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dużej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80432" from="17985" to="17994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wysokości-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80459" from="17995" to="17999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_może-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80492" from="18000" to="18008" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_skończyć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80511" from="18009" to="18012" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80530" from="18013" to="18019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bowiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80549" from="18020" to="18023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80568" from="18024" to="18031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80600" from="18032" to="18041" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ulubieńca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80621" from="18042" to="18050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śmiercią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80640" from="18051" to="18054" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80666" from="18055" to="18062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trwałym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80705" from="18063" to="18072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kalectwem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80724" from="18072" to="18073" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80746" from="18074" to="18079" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80804" from="18080" to="18081" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80825" from="18082" to="18092" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przysłowiu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80846" from="18093" to="18096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80874" from="18097" to="18103" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zawsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80893" from="18104" to="18109" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spada-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80912" from="18110" to="18112" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80940" from="18113" to="18119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cztery-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80971" from="18120" to="18124" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łapy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n80994" from="18124" to="18125" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81017" from="18126" to="18134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Fundacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81036" from="18135" to="18138" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81055" from="18139" to="18147" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81076" from="18148" to="18149" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81095" from="18149" to="18157" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Animalia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81123" from="18157" to="18158" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81144" from="18159" to="18166" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_została-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81163" from="18167" to="18175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_założona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81184" from="18176" to="18177" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81205" from="18178" to="18182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2005-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81224" from="18183" to="18184" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_r-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81264" from="18184" to="18185" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81285" from="18186" to="18187" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81306" from="18188" to="18196" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Poznaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81347" from="18197" to="18202" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81366" from="18203" to="18210" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilkoro-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81391" from="18211" to="18216" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ludzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81412" from="18216" to="18217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81433" from="18218" to="18225" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_których-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81463" from="18226" to="18235" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_połączyła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81482" from="18236" to="18240" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chęć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81510" from="18241" to="18247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomocy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81534" from="18248" to="18257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81583" from="18258" to="18268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzętom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81604" from="18268" to="18269" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81626" from="18270" to="18280" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Oficjalnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81645" from="18281" to="18291" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozpoczęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81664" from="18292" to="18303" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działalność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81685" from="18304" to="18305" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81706" from="18306" to="18314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_styczniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81727" from="18315" to="18319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2006-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81746" from="18320" to="18324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81768" from="18324" to="18325" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81790" from="18326" to="18328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81819" from="18329" to="18333" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cele-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81851" from="18334" to="18343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_statutowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81885" from="18344" to="18353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_postawiła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81904" from="18354" to="18359" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sobie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81934" from="18360" to="18366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przede-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n81955" from="18367" to="18376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82003" from="18377" to="18388" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działalność-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82024" from="18389" to="18391" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82052" from="18392" to="18397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzecz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82082" from="18398" to="18411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_humanitarnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82107" from="18412" to="18423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_traktowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82140" from="18424" to="18432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82161" from="18433" to="18437" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82187" from="18438" to="18445" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszelką-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82208" from="18446" to="18451" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_formę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82227" from="18452" to="18458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomocy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82251" from="18459" to="18468" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82300" from="18469" to="18474" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82328" from="18475" to="18476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82361" from="18477" to="18481" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_psom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82382" from="18481" to="18482" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82405" from="18483" to="18493" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przewiduję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82424" from="18494" to="18502" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obopólne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82458" from="18503" to="18511" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_korzyści-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82485" from="18511" to="18512" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82507" from="18513" to="18515" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82531" from="18516" to="18525" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przestała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82550" from="18525" to="18527" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82571" from="18527" to="18528" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82592" from="18529" to="18532" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82611" from="18533" to="18541" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spóźniać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82630" from="18541" to="18542" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82651" from="18543" to="18544" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82691" from="18545" to="18554" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_telefonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82710" from="18555" to="18558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nic-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82739" from="18559" to="18561" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82765" from="18562" to="18565" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82815" from="18566" to="18574" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_straciła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82834" from="18574" to="18575" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82856" from="18576" to="18580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mogę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82884" from="18581" to="18594" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zagwarantować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82903" from="18594" to="18595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82924" from="18596" to="18598" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82950" from="18599" to="18600" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82978" from="18601" to="18609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_autobusu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n82997" from="18610" to="18618" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dzwoniła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83016" from="18618" to="18620" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83037" from="18620" to="18621" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83058" from="18622" to="18624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83098" from="18625" to="18633" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sąsiadów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83119" from="18633" to="18634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83140" from="18635" to="18643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mających-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83188" from="18644" to="18656" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nieszczęście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83210" from="18657" to="18667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_posiadania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83246" from="18668" to="18673" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_moich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83314" from="18674" to="18684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83344" from="18685" to="18691" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kluczy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83370" from="18691" to="18692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83391" from="18693" to="18694" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83419" from="18695" to="18701" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prośbą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83438" from="18701" to="18702" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83459" from="18703" to="18706" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83485" from="18707" to="18717" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprawdzili-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83504" from="18717" to="18718" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83525" from="18719" to="18722" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83551" from="18723" to="18731" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zamknęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83570" from="18731" to="18732" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83591" from="18733" to="18737" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83614" from="18737" to="18738" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83635" from="18739" to="18742" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83661" from="18743" to="18751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zamknęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83680" from="18751" to="18752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83701" from="18753" to="18761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szuflady-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83724" from="18761" to="18762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83745" from="18763" to="18766" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83771" from="18767" to="18775" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zamknęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83790" from="18775" to="18776" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83811" from="18777" to="18782" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nówkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83830" from="18782" to="18783" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83851" from="18783" to="18784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83872" from="18784" to="18785" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83894" from="18786" to="18791" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Spoko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n83997" from="18791" to="18792" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84020" from="18793" to="18799" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Thomas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84054" from="18800" to="18806" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Graves-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84073" from="18806" to="18807" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84094" from="18808" to="18819" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_specjalista-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84113" from="18820" to="18822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ds-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84132" from="18822" to="18823" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84153" from="18824" to="18829" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84175" from="18829" to="18830" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84196" from="18831" to="18832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84236" from="18833" to="18840" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zarazem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84255" from="18841" to="18845" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szef-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84274" from="18846" to="18855" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Instytutu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84293" from="18856" to="18864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Medycyny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84316" from="18865" to="18871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Małych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84409" from="18872" to="18880" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84430" from="18881" to="18882" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84458" from="18883" to="18892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_College'u-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84484" from="18893" to="18901" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Medycyny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84507" from="18902" to="18916" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Weterynaryjnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84529" from="18917" to="18927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_University-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84555" from="18928" to="18930" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_of-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84581" from="18931" to="18939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Illinois-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84621" from="18939" to="18940" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84642" from="18941" to="18949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_twierdzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84661" from="18949" to="18950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84682" from="18951" to="18952" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84701" from="18952" to="18955" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84753" from="18956" to="18963" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zebrano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84772" from="18964" to="18969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dotąd-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84791" from="18970" to="18977" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dowodów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84810" from="18978" to="18980" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84838" from="18981" to="18983" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84890" from="18983" to="18984" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84911" from="18985" to="18987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_iż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84930" from="18988" to="18992" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84973" from="18993" to="19001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrafią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n84994" from="19002" to="19010" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyczuwać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85013" from="19011" to="19017" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śmierć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85034" from="19017" to="19018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85056" from="19019" to="19021" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_To-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85108" from="19022" to="19028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85131" from="19029" to="19035" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trudne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85165" from="19036" to="19038" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85205" from="19039" to="19047" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zbadania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85238" from="19047" to="19048" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85259" from="19048" to="19049" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85281" from="19050" to="19056" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Graves-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85300" from="19057" to="19060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85350" from="19061" to="19063" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85378" from="19064" to="19070" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85404" from="19071" to="19072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85425" from="19073" to="19076" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85447" from="19077" to="19084" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kwestii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85470" from="19085" to="19092" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żadnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85500" from="19093" to="19104" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wątpliwości-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85527" from="19104" to="19105" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85549" from="19106" to="19107" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85568" from="19107" to="19112" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Myślę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85596" from="19112" to="19113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85617" from="19114" to="19116" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85643" from="19117" to="19121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85686" from="19122" to="19123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85719" from="19124" to="19127" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_psy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85751" from="19128" to="19137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyczuwają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85770" from="19138" to="19144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzeczy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85797" from="19145" to="19156" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niedostępne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85831" from="19157" to="19163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85880" from="19164" to="19171" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmysłom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85899" from="19171" to="19172" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85920" from="19173" to="19174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85939" from="19175" to="19181" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dodaje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85958" from="19181" to="19182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n85981" from="19183" to="19195" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wykastrowany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86007" from="19196" to="19201" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86026" from="19202" to="19207" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86045" from="19208" to="19214" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pewien-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86079" from="19215" to="19219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86107" from="19220" to="19227" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeszcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86126" from="19228" to="19230" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86154" from="19231" to="19238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hormony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86176" from="19239" to="19241" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_we-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86197" from="19242" to="19246" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_krwi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86221" from="19246" to="19247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86242" from="19248" to="19252" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86261" from="19253" to="19258" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żaden-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86287" from="19259" to="19263" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_inny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86322" from="19264" to="19267" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86350" from="19268" to="19271" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86400" from="19272" to="19279" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zauważa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86419" from="19279" to="19280" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86440" from="19281" to="19283" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86496" from="19284" to="19290" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czegoś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86515" from="19291" to="19293" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86545" from="19294" to="19299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ubyło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86564" from="19299" to="19300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86586" from="19301" to="19306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wśród-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86605" from="19307" to="19319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilkuletnich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86635" from="19320" to="19327" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocurów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86654" from="19327" to="19328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86675" from="19329" to="19333" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mimo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86717" from="19334" to="19343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kastracji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86740" from="19343" to="19344" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86761" from="19345" to="19351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_często-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86780" from="19352" to="19361" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_utrzymuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86799" from="19362" to="19365" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86818" from="19366" to="19371" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawyk-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86839" from="19372" to="19381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znaczenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86872" from="19382" to="19383" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86891" from="19383" to="19387" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- tyle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n86977" from="19388" to="19390" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87003" from="19391" to="19397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87024" from="19398" to="19402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87043" from="19403" to="19407" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dużo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87099" from="19408" to="19420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łagodniejszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87125" from="19420" to="19421" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87146" from="19421" to="19422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87168" from="19423" to="19428" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jeśli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87187" from="19429" to="19434" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_boimy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87206" from="19435" to="19438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87225" from="19439" to="19445" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmiany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87248" from="19446" to="19453" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_statusu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87267" from="19454" to="19460" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocura-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87288" from="19460" to="19461" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87309" from="19462" to="19471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zacznijmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87328" from="19472" to="19481" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kastracje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87350" from="19482" to="19484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87376" from="19485" to="19500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najsilniejszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87406" from="19501" to="19508" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocurów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87425" from="19508" to="19509" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87446" from="19510" to="19512" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87472" from="19513" to="19514" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87491" from="19514" to="19524" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- przywódców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87514" from="19524" to="19525" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87535" from="19525" to="19526" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87556" from="19527" to="19533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87588" from="19534" to="19539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żaden-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87614" from="19540" to="19546" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_młokos-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87633" from="19547" to="19550" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87683" from="19551" to="19558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zagrozi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87702" from="19559" to="19570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezależnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87721" from="19571" to="19573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87747" from="19574" to="19578" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87779" from="19578" to="19579" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87800" from="19580" to="19582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_co-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87846" from="19583" to="19587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87879" from="19588" to="19589" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87898" from="19589" to="19592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87926" from="19593" to="19596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87976" from="19596" to="19597" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n87997" from="19598" to="19601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pod-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88018" from="19602" to="19608" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogonem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88037" from="19608" to="19609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88060" from="19610" to="19619" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88108" from="19620" to="19630" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwycięzcom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88127" from="19631" to="19642" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gratulujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88146" from="19643" to="19652" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wygranych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88203" from="19653" to="19654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88236" from="19655" to="19662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_życzymy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88255" from="19663" to="19671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dalszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88285" from="19672" to="19680" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sukcesów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88304" from="19680" to="19681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88325" from="19682" to="19683" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88365" from="19684" to="19697" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizatorom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88386" from="19698" to="19709" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wytrwałości-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88413" from="19710" to="19711" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88434" from="19712" to="19723" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88457" from="19724" to="19733" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kolejnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88487" from="19734" to="19745" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wspaniałych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88517" from="19746" to="19752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88547" from="19753" to="19759" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imprez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88566" from="19759" to="19760" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88588" from="19761" to="19762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88609" from="19763" to="19769" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dniach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88628" from="19770" to="19771" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_7-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88647" from="19771" to="19772" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88668" from="19772" to="19773" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 9-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88689" from="19774" to="19782" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_września-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88715" from="19783" to="19784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88736" from="19785" to="19796" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_warszawskim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88768" from="19797" to="19803" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pałacu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88799" from="19804" to="19811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kultury-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88822" from="19812" to="19813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88855" from="19814" to="19819" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nauki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88900" from="19820" to="19826" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odbyły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88923" from="19827" to="19830" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88942" from="19831" to="19833" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_VI-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88961" from="19834" to="19848" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n88995" from="19849" to="19854" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Targi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89037" from="19855" to="19866" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zoologiczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89071" from="19867" to="19876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ZOOMARKET-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89097" from="19877" to="19881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2007-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89116" from="19881" to="19882" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89138" from="19883" to="19888" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Targi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89180" from="19889" to="19896" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wpisały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89203" from="19897" to="19900" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89222" from="19901" to="19904" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89241" from="19905" to="19907" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89269" from="19908" to="19913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dobre-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89336" from="19914" to="19915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89357" from="19916" to="19927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_harmonogram-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89378" from="19928" to="19940" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wrześniowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89408" from="19941" to="19947" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imprez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89427" from="19948" to="19949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89448" from="19950" to="19957" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stolicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89470" from="19958" to="19959" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89503" from="19960" to="19963" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89557" from="19964" to="19966" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_co-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89603" from="19967" to="19971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89625" from="19972" to="19984" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyciągnęły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89648" from="19985" to="19991" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzesze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89670" from="19992" to="20002" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miłośników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89691" from="20003" to="20011" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89712" from="20011" to="20012" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89734" from="20013" to="20018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wśród-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89753" from="20019" to="20027" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_patronów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89775" from="20028" to="20038" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_medialnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89805" from="20039" to="20049" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ZooMarketu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89831" from="20050" to="20053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89881" from="20054" to="20062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zabrakło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89900" from="20063" to="20075" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miesięcznika-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89919" from="20076" to="20079" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89971" from="20079" to="20080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n89994" from="20081" to="20087" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Sztuka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90038" from="20088" to="20100" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_posługiwania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90060" from="20101" to="20104" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90079" from="20105" to="20111" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słowem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90098" from="20112" to="20114" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90150" from="20115" to="20121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90185" from="20122" to="20128" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_talent-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90207" from="20128" to="20129" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90229" from="20130" to="20140" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Posługując-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90248" from="20141" to="20144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90267" from="20145" to="20148" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90335" from="20149" to="20150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90363" from="20151" to="20162" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szermierczą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90384" from="20163" to="20171" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_precyzją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90403" from="20172" to="20173" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90436" from="20174" to="20182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_taneczną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90457" from="20183" to="20192" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lekkością-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90476" from="20192" to="20193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90497" from="20194" to="20199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90525" from="20200" to="20204" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_grać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90544" from="20205" to="20207" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90572" from="20208" to="20216" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_barwnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90602" from="20217" to="20225" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_strunach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90621" from="20226" to="20231" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_duszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90643" from="20231" to="20232" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90665" from="20233" to="20234" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_T-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90698" from="20234" to="20235" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90719" from="20236" to="20237" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_S-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90766" from="20237" to="20238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90787" from="20239" to="20244" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Eliot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90806" from="20245" to="20256" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najpiękniej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90825" from="20257" to="20264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spośród-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90844" from="20265" to="20272" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dawnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90874" from="20273" to="20281" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mistrzów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90895" from="20282" to="20287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słowa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90918" from="20288" to="20297" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opowiadał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90940" from="20298" to="20299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90968" from="20300" to="20306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n90996" from="20306" to="20307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91018" from="20308" to="20313" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Każdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91044" from="20313" to="20314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91065" from="20315" to="20318" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kto-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91084" from="20319" to="20324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91103" from="20325" to="20329" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91146" from="20330" to="20331" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91179" from="20332" to="20337" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słowo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91201" from="20337" to="20338" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91222" from="20339" to="20347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powinien-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91244" from="20348" to="20351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91294" from="20352" to="20357" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91320" from="20358" to="20368" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeczytać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91339" from="20369" to="20376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_artykuł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91360" from="20377" to="20383" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Moniki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91393" from="20384" to="20395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ulatowskiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91415" from="20396" to="20397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91443" from="20398" to="20405" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Eliocie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91464" from="20405" to="20406" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91485" from="20407" to="20411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lecz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91518" from="20412" to="20417" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91537" from="20418" to="20425" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zatopić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91556" from="20426" to="20429" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91575" from="20430" to="20431" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91596" from="20432" to="20436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91622" from="20437" to="20443" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poezję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91641" from="20443" to="20444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91664" from="20445" to="20447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_19-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91683" from="20448" to="20452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_maja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91709" from="20453" to="20458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91728" from="20459" to="20466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91750" from="20467" to="20473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aukcja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91769" from="20474" to="20486" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawionych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91799" from="20487" to="20495" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rysunków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91825" from="20495" to="20496" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91846" from="20497" to="20498" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91886" from="20499" to="20503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91912" from="20504" to="20510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dochód-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91933" from="20511" to="20513" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91961" from="20514" to="20523" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprzedaży-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n91985" from="20524" to="20536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeznaczono-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92004" from="20537" to="20539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92032" from="20540" to="20545" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomoc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92053" from="20546" to="20557" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_krzywdzonym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92085" from="20558" to="20559" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92118" from="20560" to="20569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92167" from="20570" to="20580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzakom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92186" from="20580" to="20581" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92208" from="20582" to="20584" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92236" from="20585" to="20596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zakończenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92267" from="20597" to="20605" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zacytuję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92286" from="20606" to="20614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fragment-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92307" from="20615" to="20621" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tekstu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92326" from="20622" to="20623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92354" from="20624" to="20632" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_katalogu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92376" from="20632" to="20633" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92397" from="20634" to="20635" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92416" from="20635" to="20640" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Niech-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92437" from="20641" to="20643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92465" from="20644" to="20654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczególna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92486" from="20655" to="20662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92505" from="20663" to="20673" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przypomina-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92524" from="20674" to="20677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92548" from="20677" to="20678" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92569" from="20679" to="20681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92595" from="20682" to="20688" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_możemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92614" from="20689" to="20692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92633" from="20693" to="20694" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92654" from="20695" to="20700" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pełni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92693" from="20701" to="20709" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozwijać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92712" from="20710" to="20711" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92745" from="20712" to="20715" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_być-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92778" from="20716" to="20726" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczęśliwi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92806" from="20727" to="20734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jedynie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92825" from="20735" to="20736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92846" from="20737" to="20748" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_harmonijnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92878" from="20749" to="20759" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_współżyciu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92908" from="20760" to="20761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92936" from="20762" to="20770" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyrodą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92955" from="20770" to="20771" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n92978" from="20772" to="20776" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Duża-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93015" from="20777" to="20781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hala-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93041" from="20782" to="20783" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93060" from="20783" to="20789" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Slavia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93088" from="20789" to="20790" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93109" from="20791" to="20801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomieściła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93128" from="20802" to="20805" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93163" from="20806" to="20814" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_problemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93182" from="20815" to="20820" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93210" from="20821" to="20824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_300-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93229" from="20825" to="20830" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93251" from="20830" to="20831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93273" from="20832" to="20836" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93292" from="20837" to="20849" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przestronnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93311" from="20849" to="20850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93332" from="20851" to="20859" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_panowała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93351" from="20860" to="20868" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spokojna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93372" from="20868" to="20869" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93393" from="20870" to="20881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sympatyczna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93414" from="20882" to="20891" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_atmosfera-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93433" from="20891" to="20892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93455" from="20893" to="20904" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mankamentem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93474" from="20905" to="20908" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_był-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93496" from="20909" to="20916" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jedynie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93515" from="20917" to="20921" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_brak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93543" from="20922" to="20929" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_krzeseł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93562" from="20929" to="20930" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93584" from="20931" to="20932" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93612" from="20933" to="20939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93668" from="20940" to="20951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjechało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93687" from="20952" to="20954" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_20-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93706" from="20955" to="20960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93728" from="20961" to="20968" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_różnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93758" from="20969" to="20972" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ras-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93784" from="20972" to="20973" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93805" from="20974" to="20975" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93824" from="20976" to="20986" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_egzotyczny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93850" from="20986" to="20987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93871" from="20988" to="20989" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93890" from="20990" to="21000" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_syberyjski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93916" from="21000" to="21001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93937" from="21002" to="21003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93956" from="21004" to="21012" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ragdolle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n93982" from="21012" to="21013" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94003" from="21014" to="21015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94022" from="21016" to="21025" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rosyjskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94066" from="21026" to="21036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niebieskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94100" from="21036" to="21037" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94121" from="21038" to="21039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_3-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94140" from="21040" to="21050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_brytyjskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94174" from="21050" to="21051" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94195" from="21052" to="21053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_3-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94260" from="21054" to="21065" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_maine-coony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94286" from="21065" to="21066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94307" from="21067" to="21068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_3-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94326" from="21069" to="21076" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_perskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94370" from="21077" to="21081" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94396" from="21082" to="21083" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_5-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94415" from="21084" to="21094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_norweskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94454" from="21095" to="21102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_leśnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94503" from="21102" to="21103" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94526" from="21104" to="21114" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Uczestnicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94557" from="21115" to="21124" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spotkania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94590" from="21125" to="21130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94616" from="21131" to="21137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okazję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94635" from="21138" to="21146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapoznać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94654" from="21147" to="21150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94673" from="21151" to="21152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94701" from="21153" to="21160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wieloma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94725" from="21161" to="21175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_interesującymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94761" from="21176" to="21184" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowinami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94780" from="21185" to="21196" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dotyczącymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94804" from="21197" to="21201" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karm-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94839" from="21202" to="21203" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94872" from="21204" to="21211" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdrowia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94895" from="21212" to="21217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94917" from="21217" to="21218" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94938" from="21219" to="21222" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94971" from="21223" to="21229" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przede-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n94992" from="21230" to="21239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95040" from="21240" to="21245" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95066" from="21246" to="21253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spotkać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95085" from="21254" to="21257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95104" from="21258" to="21259" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95125" from="21260" to="21275" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_międzynarodowym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95157" from="21276" to="21282" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gronie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95186" from="21282" to="21283" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95207" from="21284" to="21289" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95233" from="21290" to="21293" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95283" from="21294" to="21299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95316" from="21300" to="21309" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znaczenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95349" from="21310" to="21316" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_układy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95371" from="21317" to="21328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_federacyjno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95390" from="21328" to="21329" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95411" from="21329" to="21339" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- polityczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95447" from="21339" to="21340" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95469" from="21341" to="21343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_To-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95521" from="21344" to="21348" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_było-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95540" from="21349" to="21355" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95559" from="21356" to="21366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pożyteczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95593" from="21367" to="21376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spotkanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95624" from="21377" to="21380" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95643" from="21381" to="21391" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95683" from="21391" to="21392" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95704" from="21393" to="21400" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_których-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95734" from="21401" to="21409" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obchodzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95753" from="21410" to="21413" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_los-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95774" from="21414" to="21419" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95796" from="21419" to="21420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95818" from="21421" to="21427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Cieszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95837" from="21428" to="21432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fakt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95858" from="21432" to="21433" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95879" from="21434" to="21436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95905" from="21437" to="21442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Royal-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95931" from="21443" to="21448" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Canin-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95957" from="21449" to="21452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n95997" from="21453" to="21459" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96016" from="21460" to="21463" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dba-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96035" from="21464" to="21465" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96063" from="21466" to="21470" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96106" from="21471" to="21472" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96139" from="21473" to="21477" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96158" from="21478" to="21485" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dzielić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96177" from="21486" to="21489" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96196" from="21490" to="21493" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96217" from="21494" to="21500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wiedzą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96243" from="21501" to="21502" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96276" from="21503" to="21517" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_doświadczeniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96302" from="21518" to="21519" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96330" from="21520" to="21523" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96361" from="21524" to="21535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miłośnikami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96380" from="21535" to="21536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96403" from="21537" to="21539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96431" from="21540" to="21546" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prośbę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96450" from="21547" to="21558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96471" from="21559" to="21568" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaczynamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96490" from="21569" to="21573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cykl-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96511" from="21574" to="21583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_artykułów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96530" from="21584" to="21585" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96558" from="21586" to="21595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96577" from="21595" to="21596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96599" from="21597" to="21601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Będę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96618" from="21602" to="21608" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_starał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96640" from="21609" to="21612" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96659" from="21613" to="21622" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przekazać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96678" from="21623" to="21624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96699" from="21625" to="21629" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96750" from="21630" to="21637" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zarówno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96776" from="21638" to="21649" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najświeższe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96810" from="21650" to="21660" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_informacje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96832" from="21661" to="21671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_skierowane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96866" from="21672" to="21674" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96906" from="21675" to="21679" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96925" from="21680" to="21695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wtajemniczonych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n96992" from="21696" to="21697" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97013" from="21698" to="21707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97047" from="21708" to="21715" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niuanse-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97069" from="21715" to="21716" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97090" from="21717" to="21720" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97144" from="21721" to="21722" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97177" from="21723" to="21731" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zupełnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97196" from="21732" to="21742" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podstawowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97230" from="21743" to="21753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wiadomości-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97268" from="21754" to="21757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97287" from="21758" to="21769" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97317" from="21770" to="21780" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowicjuszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97338" from="21780" to="21781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97360" from="21782" to="21785" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97393" from="21786" to="21794" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nadzieję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97419" from="21794" to="21795" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97440" from="21796" to="21798" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97466" from="21799" to="21802" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uda-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97496" from="21803" to="21805" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97548" from="21806" to="21809" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97567" from="21810" to="21818" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprostać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97586" from="21819" to="21831" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oczekiwaniom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97612" from="21832" to="21843" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97633" from="21843" to="21844" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97655" from="21845" to="21855" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Serdecznie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97674" from="21856" to="21865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapraszam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97693" from="21866" to="21868" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97721" from="21869" to="21876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obchody-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97743" from="21877" to="21887" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Światowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97777" from="21888" to="21892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dnia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97796" from="21893" to="21897" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97836" from="21898" to="21900" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97876" from="21901" to="21906" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Łodzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97923" from="21907" to="21908" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97956" from="21908" to="21909" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n97977" from="21910" to="21913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98031" from="21914" to="21920" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zawsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98050" from="21920" to="21921" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98071" from="21922" to="21927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_życzę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98090" from="21928" to="21933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miłej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98122" from="21934" to="21941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lektury-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98145" from="21941" to="21942" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98168" from="21943" to="21949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wywiad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98189" from="21950" to="21951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98217" from="21952" to="21960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_księdzem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98236" from="21961" to="21966" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Janem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98255" from="21967" to="21978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Twardowskim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98284" from="21978" to="21979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98305" from="21980" to="21985" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98331" from="21986" to="21992" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ukazał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98353" from="21993" to="21996" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98372" from="21997" to="21998" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98393" from="21999" to="22004" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOCIE-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98488" from="22005" to="22007" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nr-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98516" from="22008" to="22009" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_4-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98535" from="22009" to="22010" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- /-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98556" from="22010" to="22014" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 2005-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98577" from="22015" to="22018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_był-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98599" from="22019" to="22027" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ostatnim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98651" from="22027" to="22028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98672" from="22029" to="22036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jakiego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98697" from="22037" to="22042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poeta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98716" from="22043" to="22051" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udzielił-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98738" from="22051" to="22052" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98760" from="22053" to="22055" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98782" from="22056" to="22060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98808" from="22061" to="22068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śmierci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98835" from="22069" to="22073" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98878" from="22074" to="22081" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zostały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98901" from="22082" to="22085" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98936" from="22086" to="22091" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dachu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98958" from="22092" to="22095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98979" from="22096" to="22101" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głową-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n98998" from="22101" to="22102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99019" from="22103" to="22111" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klasztor-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99040" from="22112" to="22115" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99059" from="22116" to="22119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99090" from="22120" to="22123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99140" from="22124" to="22130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chciał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99162" from="22130" to="22131" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99184" from="22132" to="22137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Akcja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99203" from="22138" to="22147" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_adopcyjna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99224" from="22148" to="22153" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99246" from="22154" to="22161" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_księdza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99267" from="22162" to="22175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Twardowskiego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99288" from="22176" to="22179" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99338" from="22180" to="22189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozostała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99366" from="22190" to="22193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99401" from="22194" to="22198" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_echa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99424" from="22198" to="22199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99446" from="22200" to="22206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Maryla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99465" from="22207" to="22212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Weiss-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99499" from="22213" to="22220" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opisuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99518" from="22221" to="22223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99539" from="22224" to="22225" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99560" from="22226" to="22233" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_relacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99583" from="22234" to="22243" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Skarpetka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99602" from="22244" to="22247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99652" from="22248" to="22251" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śpi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99671" from="22252" to="22255" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99690" from="22256" to="22258" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99718" from="22259" to="22268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klęczniku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99739" from="22268" to="22269" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99762" from="22270" to="22279" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Krzysztof-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99803" from="22280" to="22285" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Skiba-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99831" from="22286" to="22288" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99859" from="22289" to="22294" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swadą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99878" from="22295" to="22296" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99911" from="22297" to="22305" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dowcipem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99930" from="22306" to="22317" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poprowadził-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99952" from="22318" to="22327" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_licytacje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99974" from="22327" to="22328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n99995" from="22329" to="22330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100023" from="22331" to="22338" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_których-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100053" from="22339" to="22345" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dochód-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100074" from="22346" to="22352" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_został-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100096" from="22353" to="22365" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeznaczony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100122" from="22366" to="22368" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100150" from="22369" to="22374" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomoc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100171" from="22375" to="22384" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100220" from="22385" to="22390" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100248" from="22390" to="22391" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100270" from="22392" to="22401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Najwyższą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100291" from="22402" to="22406" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cenę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100310" from="22407" to="22416" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osiągnęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100329" from="22417" to="22424" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_figurka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100348" from="22425" to="22433" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czarnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100382" from="22434" to="22438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100412" from="22439" to="22440" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100440" from="22441" to="22450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_porcelany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100463" from="22451" to="22461" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przekazana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100484" from="22462" to="22464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100512" from="22465" to="22468" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100538" from="22469" to="22472" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cel-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100566" from="22473" to="22478" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100585" from="22479" to="22483" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_parę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100623" from="22484" to="22495" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezydencką-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100644" from="22495" to="22496" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100665" from="22497" to="22502" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Marię-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100684" from="22503" to="22504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100717" from="22505" to="22510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lecha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100745" from="22511" to="22522" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kaczyńskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100776" from="22522" to="22523" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100798" from="22524" to="22530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Oprócz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100817" from="22531" to="22535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100849" from="22536" to="22547" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zlicytowano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100868" from="22548" to="22555" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_figurkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100887" from="22556" to="22557" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100915" from="22558" to="22563" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gliny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100952" from="22564" to="22572" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wykonaną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100973" from="22573" to="22578" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n100992" from="22579" to="22586" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Natalkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101011" from="22587" to="22595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rogalską-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101032" from="22595" to="22596" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101053" from="22597" to="22607" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najmłodszą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101074" from="22608" to="22609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101093" from="22609" to="22611" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 10-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101114" from="22612" to="22615" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101140" from="22615" to="22616" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101161" from="22617" to="22631" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zarejestrowaną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101182" from="22632" to="22643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karmicielkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101201" from="22644" to="22649" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101223" from="22650" to="22656" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101244" from="22656" to="22657" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101265" from="22658" to="22662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101291" from="22663" to="22672" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kalendarz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101312" from="22673" to="22675" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101340" from="22676" to="22685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdjęciami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101373" from="22686" to="22691" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101395" from="22692" to="22694" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101423" from="22695" to="22705" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_schroniska-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101446" from="22706" to="22707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101465" from="22707" to="22709" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101495" from="22710" to="22717" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Paluchu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101529" from="22717" to="22718" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101550" from="22718" to="22719" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101571" from="22720" to="22729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_autorstwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101594" from="22730" to="22740" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Małgorzaty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101617" from="22741" to="22751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Niedziółki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101651" from="22751" to="22752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101674" from="22753" to="22761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Napisane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101708" from="22762" to="22770" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świetnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101740" from="22771" to="22777" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piórem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101759" from="22777" to="22778" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101780" from="22779" to="22784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pełne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101814" from="22785" to="22798" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaangażowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101847" from="22799" to="22801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101866" from="22802" to="22810" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_artykuły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101888" from="22810" to="22811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101909" from="22812" to="22825" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_publikującego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101934" from="22826" to="22828" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101956" from="22829" to="22832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_raz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n101977" from="22833" to="22841" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pierwszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102015" from="22842" to="22843" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102036" from="22844" to="22849" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOCIE-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102131" from="22849" to="22850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102152" from="22851" to="22863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziennikarza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102173" from="22864" to="22865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102192" from="22865" to="22871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Angory-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102221" from="22871" to="22872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102242" from="22873" to="22874" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102261" from="22875" to="22884" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wojciecha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102290" from="22885" to="22900" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Andrzejewskiego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102324" from="22900" to="22901" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102346" from="22902" to="22903" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102365" from="22903" to="22909" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Krwawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102393" from="22910" to="22915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sport-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102415" from="22915" to="22916" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102436" from="22917" to="22921" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mówi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102455" from="22922" to="22925" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102505" from="22926" to="22931" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102531" from="22932" to="22933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102559" from="22934" to="22947" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okrucieństwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102578" from="22947" to="22948" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102599" from="22949" to="22952" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102632" from="22953" to="22958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102651" from="22959" to="22960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102679" from="22961" to="22971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niebywałej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102701" from="22972" to="22979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziurze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102722" from="22980" to="22981" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102743" from="22982" to="22989" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_polskim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102795" from="22990" to="22996" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prawie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102821" from="22996" to="22997" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102843" from="22998" to="23006" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Będziemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102862" from="23007" to="23013" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czynić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102881" from="23014" to="23022" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_starania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102914" from="23022" to="23023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102935" from="23024" to="23026" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102961" from="23027" to="23040" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zainteresować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n102980" from="23041" to="23044" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103035" from="23045" to="23052" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tematem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103054" from="23053" to="23058" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ludzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103075" from="23059" to="23075" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odpowiedzialnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103124" from="23076" to="23078" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103153" from="23079" to="23088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tworzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103184" from="23089" to="23094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103225" from="23095" to="23096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103246" from="23097" to="23103" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103295" from="23104" to="23109" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kraju-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103317" from="23109" to="23110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103339" from="23111" to="23119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jesteśmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103358" from="23120" to="23127" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_otwarci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103388" from="23128" to="23130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103416" from="23131" to="23139" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszelkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103450" from="23140" to="23148" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sugestie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103472" from="23149" to="23150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103505" from="23151" to="23162" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podpowiedzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103532" from="23162" to="23163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103553" from="23164" to="23167" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103607" from="23168" to="23175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zakazać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103626" from="23176" to="23182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_handlu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103648" from="23183" to="23189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bronią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103674" from="23190" to="23191" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103695" from="23192" to="23198" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103716" from="23198" to="23199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103739" from="23200" to="23211" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przystąpiła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103758" from="23211" to="23212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103779" from="23213" to="23217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103798" from="23218" to="23220" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103838" from="23221" to="23228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pisania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103871" from="23229" to="23237" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_programu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103890" from="23238" to="23239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103911" from="23240" to="23247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imieniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103943" from="23248" to="23255" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swojego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n103975" from="23256" to="23260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104005" from="23260" to="23261" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104026" from="23262" to="23267" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104052" from="23268" to="23274" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akurat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104085" from="23275" to="23278" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_był-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104107" from="23279" to="23285" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104126" from="23286" to="23295" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zabiegany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104166" from="23296" to="23297" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104185" from="23297" to="23302" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- leżąc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104206" from="23302" to="23303" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104227" from="23304" to="23306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_co-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104273" from="23307" to="23313" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prawda-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104299" from="23313" to="23314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104320" from="23315" to="23318" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104353" from="23319" to="23322" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104403" from="23323" to="23328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łapmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104422" from="23329" to="23332" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104441" from="23333" to="23335" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104470" from="23336" to="23342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słówka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104493" from="23342" to="23343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104514" from="23343" to="23344" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104535" from="23345" to="23346" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104554" from="23346" to="23347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104575" from="23348" to="23353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Każdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104601" from="23354" to="23357" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104629" from="23358" to="23360" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104657" from="23361" to="23366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prawo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104686" from="23367" to="23369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104726" from="23370" to="23385" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_samostanowienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104759" from="23385" to="23386" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104781" from="23387" to="23393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jeżeli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104800" from="23394" to="23399" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zatem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104819" from="23400" to="23409" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_postanowi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104838" from="23410" to="23420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zamieszkać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104857" from="23421" to="23422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104885" from="23423" to="23430" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którymś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104917" from="23431" to="23432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104945" from="23433" to="23442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obywateli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104966" from="23442" to="23443" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n104987" from="23444" to="23452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obywatel-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105006" from="23453" to="23455" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ma-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105034" from="23456" to="23465" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obowiązek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105055" from="23466" to="23473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjąć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105074" from="23474" to="23476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105093" from="23477" to="23484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_decyzję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105112" from="23485" to="23486" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105140" from="23487" to="23494" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szaloną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105170" from="23495" to="23503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_radością-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105189" from="23504" to="23505" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105222" from="23506" to="23517" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obłąkańczym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105254" from="23518" to="23529" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_entuzjazmem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105273" from="23529" to="23530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105296" from="23531" to="23539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Fundacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105315" from="23540" to="23544" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Viva-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105341" from="23544" to="23545" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105362" from="23546" to="23547" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105381" from="23548" to="23553" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Akcja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105400" from="23554" to="23557" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105419" from="23558" to="23566" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105440" from="23567" to="23569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ul-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105468" from="23569" to="23570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105489" from="23571" to="23580" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kopernika-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105510" from="23581" to="23582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_6-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105529" from="23582" to="23583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- /-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105550" from="23583" to="23584" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 8-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105571" from="23584" to="23585" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105592" from="23586" to="23588" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_00-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105618" from="23588" to="23589" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105639" from="23589" to="23592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 367-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105660" from="23593" to="23601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Warszawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105688" from="23602" to="23604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_49-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105707" from="23605" to="23609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1370-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105726" from="23610" to="23614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1109-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105745" from="23615" to="23619" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_0000-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105771" from="23620" to="23624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1706-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105790" from="23625" to="23629" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_4838-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105809" from="23630" to="23634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_7303-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105828" from="23635" to="23636" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105856" from="23637" to="23646" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dopiskiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105875" from="23646" to="23647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105896" from="23648" to="23652" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105969" from="23653" to="23654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n105997" from="23655" to="23665" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Korabiewic-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106016" from="23665" to="23666" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106038" from="23667" to="23677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wszystkich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106078" from="23677" to="23678" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106099" from="23679" to="23685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106120" from="23686" to="23693" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chcieli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106139" from="23693" to="23695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106160" from="23696" to="23702" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wysłać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106179" from="23703" to="23709" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_paczkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106198" from="23710" to="23713" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106224" from="23714" to="23725" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdecydowali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106243" from="23725" to="23727" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106264" from="23728" to="23731" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106283" from="23732" to="23734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106311" from="23735" to="23742" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_adopcję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106330" from="23743" to="23751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_któregoś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106355" from="23752" to="23753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106383" from="23754" to="23768" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_korabiewickich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106413" from="23769" to="23774" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106435" from="23774" to="23775" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106456" from="23776" to="23783" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prosimy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106475" from="23784" to="23785" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106503" from="23786" to="23793" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kontakt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106524" from="23794" to="23795" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106552" from="23796" to="23804" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_redakcją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106571" from="23804" to="23805" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106594" from="23806" to="23817" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przekazanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106615" from="23818" to="23819" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106634" from="23819" to="23820" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- %-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106655" from="23821" to="23828" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podatku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106677" from="23829" to="23832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106727" from="23833" to="23837" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106746" from="23838" to="23841" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106772" from="23842" to="23851" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_darowizną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106791" from="23851" to="23852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106812" from="23853" to="23856" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106838" from="23857" to="23861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ulgą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106857" from="23862" to="23863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106876" from="23864" to="23866" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106928" from="23867" to="23872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_część-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106949" from="23873" to="23882" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pieniędzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106968" from="23882" to="23883" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n106989" from="23884" to="23889" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107023" from="23890" to="23895" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_winni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107060" from="23896" to="23904" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jesteśmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107079" from="23905" to="23912" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_państwu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107101" from="23912" to="23913" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107123" from="23914" to="23923" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Możliwość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107144" from="23924" to="23937" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_samodzielnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107169" from="23938" to="23951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zadecydowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107191" from="23952" to="23953" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107219" from="23954" to="23957" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107274" from="23957" to="23958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107295" from="23959" to="23961" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107335" from="23962" to="23966" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kogo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107363" from="23967" to="23970" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_one-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107417" from="23971" to="23977" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trafią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107436" from="23978" to="23982" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107455" from="23982" to="23983" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107476" from="23984" to="23986" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107504" from="23987" to="23998" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_społecznego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107529" from="23999" to="24005" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_punktu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107548" from="24006" to="24014" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_widzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107581" from="24014" to="24015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107602" from="24016" to="24025" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przejawem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107621" from="24026" to="24036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_demokracji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107644" from="24037" to="24050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezpośredniej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107673" from="24050" to="24051" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107695" from="24052" to="24055" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107745" from="24056" to="24061" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bójmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107764" from="24062" to="24065" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107783" from="24066" to="24070" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107802" from="24071" to="24080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_korzystać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107821" from="24081" to="24082" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107849" from="24083" to="24098" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przysługujących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107879" from="24099" to="24102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107903" from="24103" to="24107" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_praw-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107936" from="24108" to="24109" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107969" from="24110" to="24117" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_włączmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n107988" from="24118" to="24121" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108007" from="24122" to="24129" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czynnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108026" from="24130" to="24131" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108047" from="24132" to="24144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozdzielanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108068" from="24145" to="24152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_środków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108094" from="24153" to="24164" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_publicznych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108124" from="24164" to="24165" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108146" from="24166" to="24175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wybierzmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108165" from="24176" to="24180" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108195" from="24180" to="24181" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108216" from="24182" to="24188" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108248" from="24189" to="24195" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chcemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108267" from="24196" to="24201" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomóc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108286" from="24201" to="24202" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108308" from="24203" to="24212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wybierzmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108327" from="24213" to="24221" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bliskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108367" from="24222" to="24229" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108397" from="24230" to="24235" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sercu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108418" from="24235" to="24236" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108440" from="24237" to="24247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pamiętajmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108459" from="24247" to="24248" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108480" from="24249" to="24251" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108506" from="24252" to="24255" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108532" from="24256" to="24264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_napełnić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108551" from="24265" to="24273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miseczkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108570" from="24274" to="24282" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głodnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108604" from="24283" to="24287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108634" from="24287" to="24288" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108655" from="24289" to="24298" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystarczy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108674" from="24299" to="24307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_złotówka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108693" from="24307" to="24308" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108716" from="24309" to="24319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kwietniowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108742" from="24320" to="24323" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108794" from="24324" to="24328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108813" from="24329" to="24334" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108832" from="24335" to="24346" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielobarwny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108858" from="24346" to="24347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108879" from="24348" to="24353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108898" from="24354" to="24355" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108919" from="24356" to="24365" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niebiesko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108938" from="24365" to="24366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108959" from="24366" to="24373" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- szarych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n108991" from="24374" to="24382" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koratach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109017" from="24383" to="24391" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_doszukać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109036" from="24392" to="24395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109055" from="24396" to="24401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109083" from="24402" to="24407" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109125" from="24408" to="24415" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odcieni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109144" from="24416" to="24422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_srebra-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109167" from="24422" to="24423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109189" from="24424" to="24437" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przedstawiamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109208" from="24438" to="24442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109248" from="24443" to="24447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rasę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109267" from="24448" to="24457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezwykle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109286" from="24458" to="24464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzadką-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109307" from="24464" to="24465" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109328" from="24466" to="24477" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niehodowaną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109349" from="24478" to="24479" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109370" from="24480" to="24486" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109391" from="24486" to="24487" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109413" from="24488" to="24495" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tajskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109447" from="24496" to="24502" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koraty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109473" from="24503" to="24510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_skradły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109496" from="24511" to="24516" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_serce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109518" from="24517" to="24522" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mojej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109550" from="24523" to="24535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjaciółce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109571" from="24536" to="24545" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Donatelli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109597" from="24546" to="24557" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mastrangelo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109623" from="24558" to="24559" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109651" from="24560" to="24565" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Włoch-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109692" from="24565" to="24566" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109713" from="24567" to="24572" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_która-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109734" from="24573" to="24583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_specjalnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109753" from="24584" to="24587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109772" from="24588" to="24599" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109793" from="24600" to="24604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109833" from="24605" to="24613" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_napisała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109852" from="24614" to="24620" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109871" from="24621" to="24628" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ciekawą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109892" from="24629" to="24630" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109925" from="24631" to="24640" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjątkową-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109946" from="24641" to="24651" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_monografię-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109965" from="24652" to="24655" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n109987" from="24656" to="24660" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rasy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110020" from="24660" to="24661" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110042" from="24662" to="24667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Muszę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110075" from="24668" to="24673" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dodać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110094" from="24673" to="24674" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110115" from="24675" to="24677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110141" from="24678" to="24682" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110160" from="24683" to="24685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110212" from="24686" to="24692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jedyna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110242" from="24693" to="24696" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110282" from="24697" to="24705" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obszerna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110303" from="24706" to="24716" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_publikacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110322" from="24717" to="24726" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dotycząca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110343" from="24727" to="24734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koratów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110369" from="24734" to="24735" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110390" from="24736" to="24740" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jaka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110427" from="24741" to="24748" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ukazała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110446" from="24749" to="24752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110465" from="24753" to="24755" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110493" from="24756" to="24763" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świecie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110514" from="24763" to="24764" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110536" from="24765" to="24768" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110569" from="24769" to="24777" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nadzieję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110595" from="24777" to="24778" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110616" from="24779" to="24781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110642" from="24782" to="24785" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Was-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110676" from="24786" to="24798" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zainteresuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110695" from="24798" to="24799" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110718" from="24800" to="24807" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Podczas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110737" from="24808" to="24814" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_targów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110763" from="24815" to="24821" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odbyła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110782" from="24822" to="24825" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110801" from="24826" to="24833" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_również-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110820" from="24834" to="24841" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110839" from="24842" to="24847" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdjęć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110872" from="24848" to="24860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nagrodzonych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110902" from="24861" to="24862" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110923" from="24863" to="24872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_konkursie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110944" from="24873" to="24887" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fotograficznym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110976" from="24888" to="24889" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n110995" from="24889" to="24892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Mój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111032" from="24893" to="24898" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pupil-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111051" from="24898" to="24899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111072" from="24899" to="24900" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111094" from="24901" to="24902" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111115" from="24903" to="24912" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kategorii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111138" from="24913" to="24914" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111157" from="24914" to="24917" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111211" from="24917" to="24918" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111232" from="24919" to="24927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pierwsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111302" from="24928" to="24935" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111324" from="24936" to="24942" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zajęła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111343" from="24943" to="24948" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kinga-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111371" from="24949" to="24958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Laskowska-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111401" from="24959" to="24960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111429" from="24961" to="24969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Boguszyc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111448" from="24969" to="24970" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111469" from="24971" to="24977" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_drugie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111539" from="24978" to="24979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111558" from="24980" to="24989" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Magdalena-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111577" from="24990" to="24995" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111614" from="24996" to="24997" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111642" from="24998" to="25004" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kunowa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111690" from="25004" to="25005" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111711" from="25006" to="25007" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111751" from="25008" to="25015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzecie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111815" from="25016" to="25017" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111834" from="25018" to="25025" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jolanta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111853" from="25026" to="25032" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bromer-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111887" from="25033" to="25034" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111915" from="25035" to="25046" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pietraszowa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111934" from="25046" to="25047" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111956" from="25048" to="25057" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wystawcom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n111975" from="25058" to="25059" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112008" from="25060" to="25072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwiedzającym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112077" from="25073" to="25079" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112096" from="25080" to="25088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podobała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112115" from="25089" to="25092" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112134" from="25093" to="25102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_atmosfera-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112153" from="25103" to="25111" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_panująca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112192" from="25112" to="25114" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112220" from="25115" to="25122" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_targach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112246" from="25123" to="25127" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112272" from="25128" to="25132" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fakt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112293" from="25132" to="25133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112314" from="25134" to="25136" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_iż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112333" from="25137" to="25147" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tegoroczna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112354" from="25148" to="25155" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_impreza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112373" from="25156" to="25166" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odwiedzona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112394" from="25167" to="25174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_została-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112413" from="25175" to="25180" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112432" from="25181" to="25187" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_blisko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112458" from="25188" to="25189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112477" from="25190" to="25193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tys-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112496" from="25193" to="25194" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112517" from="25195" to="25199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_osób-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112536" from="25200" to="25206" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_więcej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112592" from="25207" to="25210" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112648" from="25211" to="25221" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poprzednia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112669" from="25221" to="25222" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112692" from="25223" to="25229" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Słynny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112718" from="25230" to="25233" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112746" from="25234" to="25242" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Humphrey-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112772" from="25243" to="25246" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112822" from="25247" to="25251" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żyje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112841" from="25252" to="25253" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112860" from="25254" to="25256" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112879" from="25257" to="25266" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wiadomość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112900" from="25267" to="25277" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oficjalnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112919" from="25278" to="25289" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potwierdził-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112941" from="25290" to="25298" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzecznik-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n112975" from="25299" to="25306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Downing-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113001" from="25307" to="25313" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Street-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113027" from="25313" to="25314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113049" from="25315" to="25316" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113070" from="25317" to="25321" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1989-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113089" from="25322" to="25326" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113111" from="25327" to="25335" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Humphrey-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113137" from="25336" to="25342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaczął-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113159" from="25343" to="25351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pracować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113178" from="25352" to="25353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113199" from="25354" to="25364" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rezydencji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113222" from="25365" to="25374" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_premierów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113243" from="25375" to="25383" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wielkiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113265" from="25384" to="25392" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Brytanii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113299" from="25393" to="25394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113320" from="25395" to="25406" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_charakterze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113341" from="25407" to="25418" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezłomnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113366" from="25419" to="25427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pogromcy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113390" from="25428" to="25433" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_myszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113431" from="25434" to="25435" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113464" from="25436" to="25444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczurów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113483" from="25444" to="25445" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113505" from="25446" to="25451" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ponoć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113524" from="25452" to="25459" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znalazł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113546" from="25460" to="25462" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_go-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113593" from="25463" to="25464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113626" from="25465" to="25474" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyniósł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113648" from="25475" to="25480" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeden-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113725" from="25481" to="25482" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113753" from="25483" to="25493" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urzędników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113774" from="25493" to="25494" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113796" from="25495" to="25498" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113822" from="25499" to="25504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_biało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113841" from="25504" to="25505" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113862" from="25505" to="25511" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- czarny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113890" from="25512" to="25517" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113909" from="25518" to="25524" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdobył-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113931" from="25525" to="25533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szturmem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113950" from="25534" to="25539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_serca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113973" from="25540" to="25551" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pracowników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n113994" from="25552" to="25559" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Downing-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114020" from="25560" to="25566" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Street-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114046" from="25566" to="25567" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114067" from="25568" to="25569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114107" from="25570" to="25571" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114135" from="25572" to="25578" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czasem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114154" from="25579" to="25583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114180" from="25584" to="25589" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sława-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114199" from="25590" to="25606" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozprzestrzeniła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114218" from="25607" to="25610" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114237" from="25611" to="25613" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114265" from="25614" to="25618" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114291" from="25619" to="25623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kraj-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114319" from="25623" to="25624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114342" from="25625" to="25631" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114361" from="25632" to="25640" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziękuję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114380" from="25641" to="25643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114409" from="25644" to="25651" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogromne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114443" from="25652" to="25667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zainteresowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114474" from="25668" to="25675" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114512" from="25676" to="25686" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_konkursami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114531" from="25686" to="25687" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114553" from="25688" to="25698" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przychodzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114572" from="25699" to="25701" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114612" from="25702" to="25710" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_redakcji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114635" from="25711" to="25715" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_masa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114654" from="25716" to="25721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_maili-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114682" from="25721" to="25722" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114703" from="25723" to="25729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kartek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114722" from="25730" to="25731" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114755" from="25732" to="25738" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_listów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114774" from="25739" to="25740" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114802" from="25741" to="25754" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odpowiedziami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114821" from="25755" to="25757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114849" from="25758" to="25765" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zagadki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114872" from="25766" to="25767" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114905" from="25768" to="25776" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_konkursy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114927" from="25776" to="25777" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114948" from="25778" to="25783" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głosy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114970" from="25784" to="25785" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n114991" from="25786" to="25797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_plebiscycie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115012" from="25798" to="25800" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115040" from="25801" to="25802" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115059" from="25802" to="25810" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Kociarza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115082" from="25811" to="25815" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115113" from="25815" to="25816" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115134" from="25817" to="25820" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115160" from="25821" to="25824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_też-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115198" from="25825" to="25835" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_plastyczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115232" from="25836" to="25841" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prace-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115264" from="25842" to="25854" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najmłodszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115304" from="25855" to="25866" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czytelników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115325" from="25867" to="25871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115365" from="25871" to="25872" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115387" from="25873" to="25881" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dziękuję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115406" from="25882" to="25887" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115425" from="25888" to="25889" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115446" from="25890" to="25897" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imieniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115478" from="25898" to="25905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_własnym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115520" from="25906" to="25907" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115553" from="25908" to="25916" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_redakcji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115576" from="25917" to="25919" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115605" from="25920" to="25929" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115639" from="25930" to="25940" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świąteczno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115658" from="25940" to="25941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115679" from="25941" to="25951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- noworoczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115715" from="25952" to="25960" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_życzenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115748" from="25960" to="25961" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115771" from="25962" to="25963" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115792" from="25964" to="25972" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Fundacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115815" from="25973" to="25978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115843" from="25979" to="25982" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_też-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115881" from="25983" to="25990" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uzyskać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115900" from="25991" to="26003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyczerpujące-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115956" from="26004" to="26014" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_informacje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n115978" from="26015" to="26017" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116006" from="26018" to="26023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_temat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116027" from="26024" to="26032" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fachowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116049" from="26033" to="26039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opieki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116072" from="26040" to="26043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116093" from="26044" to="26050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116121" from="26051" to="26059" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_domowymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116145" from="26059" to="26060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116167" from="26061" to="26062" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116186" from="26062" to="26066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Koci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116237" from="26067" to="26072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pazur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116287" from="26072" to="26073" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116308" from="26074" to="26078" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116327" from="26079" to="26090" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizacją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116346" from="26091" to="26103" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_charytatywną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116367" from="26103" to="26104" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116388" from="26105" to="26115" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działającą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116409" from="26116" to="26119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pod-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116430" from="26120" to="26128" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nadzorem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116449" from="26129" to="26137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ministra-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116470" from="26138" to="26145" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ochrony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116493" from="26146" to="26156" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_środowiska-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116516" from="26156" to="26157" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116537" from="26158" to="26159" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116558" from="26160" to="26167" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oparciu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116588" from="26168" to="26169" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116616" from="26170" to="26175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pracę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116635" from="26176" to="26185" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_społeczną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116656" from="26186" to="26196" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fundatorów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116677" from="26197" to="26198" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116710" from="26199" to="26212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wolontariuszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116731" from="26212" to="26213" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116753" from="26214" to="26223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Darowizny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116776" from="26224" to="26234" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przekazane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116810" from="26235" to="26237" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116838" from="26238" to="26241" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116868" from="26242" to="26247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzecz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116898" from="26248" to="26257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podlegają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116917" from="26258" to="26266" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odpisowi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116936" from="26267" to="26278" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podatkowemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116959" from="26278" to="26279" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n116982" from="26280" to="26285" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Forum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117008" from="26286" to="26294" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednoczy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117027" from="26295" to="26300" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ludzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117048" from="26300" to="26301" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117069" from="26302" to="26311" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_umożliwia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117088" from="26312" to="26321" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117119" from="26322" to="26328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_realne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117153" from="26328" to="26329" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117175" from="26330" to="26334" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Może-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117208" from="26335" to="26342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_właśnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117241" from="26343" to="26350" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dlatego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117260" from="26351" to="26357" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117297" from="26357" to="26358" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117318" from="26359" to="26361" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_iż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117337" from="26362" to="26366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żywe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117371" from="26367" to="26377" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stworzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117402" from="26377" to="26378" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117423" from="26379" to="26385" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117455" from="26386" to="26393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zajmuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117474" from="26394" to="26397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117493" from="26398" to="26406" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_człowiek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117512" from="26406" to="26407" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117533" from="26408" to="26415" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zmienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117552" from="26416" to="26418" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_go-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117599" from="26419" to="26420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117632" from="26421" to="26428" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pozwala-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117653" from="26429" to="26441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_funkcjonować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117672" from="26442" to="26447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117700" from="26448" to="26458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podziałami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117719" from="26458" to="26459" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ?-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117741" from="26460" to="26470" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zapraszamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117760" from="26471" to="26473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117788" from="26474" to="26479" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_forum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117814" from="26479" to="26480" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117835" from="26481" to="26486" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117861" from="26487" to="26488" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117880" from="26488" to="26496" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- człowiek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117901" from="26496" to="26497" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117922" from="26498" to="26503" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_brzmi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117941" from="26504" to="26510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dumnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117960" from="26510" to="26511" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n117982" from="26512" to="26517" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118008" from="26518" to="26526" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_człowiek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118027" from="26527" to="26528" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118046" from="26529" to="26539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_silniejszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118072" from="26540" to="26541" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118105" from="26542" to="26552" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mądrzejszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118131" from="26553" to="26554" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118150" from="26555" to="26562" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zajmuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118169" from="26563" to="26566" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118188" from="26567" to="26573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bracią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118214" from="26574" to="26582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mniejszą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118242" from="26582" to="26583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118264" from="26584" to="26591" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Miejsce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118296" from="26591" to="26592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118317" from="26593" to="26598" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118343" from="26599" to="26607" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_internet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118364" from="26608" to="26614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dotyka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118383" from="26615" to="26624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_realności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118410" from="26625" to="26626" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118450" from="26626" to="26627" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118471" from="26627" to="26628" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118492" from="26628" to="26629" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118513" from="26630" to="26634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_daje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118532" from="26635" to="26643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjaźń-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118560" from="26643" to="26644" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118583" from="26645" to="26654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Grudniowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118617" from="26655" to="26658" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118640" from="26659" to="26661" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118659" from="26662" to="26669" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_krótkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118693" from="26670" to="26671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118726" from="26672" to="26677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szare-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118760" from="26677" to="26678" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118782" from="26679" to="26688" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pogańskie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118816" from="26689" to="26697" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwyczaje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118838" from="26698" to="26707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapalania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118860" from="26708" to="26717" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_światełek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118879" from="26718" to="26729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przerodziły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118902" from="26730" to="26733" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118921" from="26734" to="26736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_we-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118942" from="26737" to="26746" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wspaniałe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118976" from="26747" to="26754" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_festyny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n118998" from="26755" to="26762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_światła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119040" from="26763" to="26764" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119061" from="26765" to="26774" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szaleńcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119102" from="26775" to="26790" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przedświąteczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119136" from="26791" to="26794" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119159" from="26794" to="26795" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119181" from="26796" to="26797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119202" from="26798" to="26804" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pogoni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119233" from="26805" to="26807" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119262" from="26808" to="26818" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezentami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119288" from="26819" to="26829" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przystańmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119314" from="26830" to="26837" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czasami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119333" from="26838" to="26842" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_choć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119359" from="26843" to="26845" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119387" from="26846" to="26851" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chwil-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119406" from="26852" to="26857" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119444" from="26857" to="26858" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119465" from="26859" to="26867" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zobaczmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119484" from="26868" to="26875" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lśniące-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119540" from="26876" to="26880" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oczy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119569" from="26881" to="26893" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zziębniętego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119594" from="26894" to="26898" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119624" from="26898" to="26899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119646" from="26900" to="26908" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Otwórzmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119665" from="26909" to="26918" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piwniczne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119699" from="26919" to="26926" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_okienko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119721" from="26926" to="26927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119742" from="26928" to="26936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119761" from="26937" to="26942" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miskę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119780" from="26943" to="26949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_strawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119803" from="26949" to="26950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119824" from="26951" to="26953" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119850" from="26954" to="26957" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119876" from="26958" to="26966" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaświeci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119902" from="26967" to="26976" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wigilijna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119923" from="26977" to="26985" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gwiazdka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119942" from="26985" to="26986" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119963" from="26987" to="26991" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n119989" from="26992" to="27000" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120024" from="27001" to="27009" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mruczący-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120052" from="27010" to="27016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sąsiad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120071" from="27017" to="27021" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mógł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120093" from="27022" to="27028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głośno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120112" from="27029" to="27030" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120145" from="27031" to="27039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyraźnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120164" from="27040" to="27050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powiedzieć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120183" from="27051" to="27052" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120211" from="27053" to="27056" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120245" from="27056" to="27057" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120266" from="27058" to="27066" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ludziach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120285" from="27066" to="27067" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120306" from="27068" to="27074" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_choćby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120332" from="27075" to="27080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120370" from="27081" to="27089" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pięknych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120409" from="27090" to="27094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_słów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120435" from="27094" to="27095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120458" from="27096" to="27100" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dziś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120498" from="27100" to="27101" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120519" from="27102" to="27108" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Drodzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120549" from="27109" to="27119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Czytelnicy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120570" from="27119" to="27120" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120591" from="27121" to="27130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzymacie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120610" from="27131" to="27132" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120631" from="27133" to="27137" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ręku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120652" from="27138" to="27142" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120687" from="27142" to="27143" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120708" from="27144" to="27152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zupełnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120727" from="27153" to="27163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odmieniony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120753" from="27164" to="27169" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numer-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120774" from="27170" to="27174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120814" from="27174" to="27175" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120836" from="27176" to="27180" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120866" from="27181" to="27189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nadzieję-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120892" from="27189" to="27190" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120913" from="27191" to="27193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120939" from="27194" to="27199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n120986" from="27200" to="27204" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121040" from="27205" to="27209" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_logo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121073" from="27210" to="27211" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121106" from="27212" to="27222" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odświeżona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121127" from="27223" to="27228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szata-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121146" from="27229" to="27238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_graficzna-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121167" from="27239" to="27248" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przypadną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121186" from="27249" to="27252" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121210" from="27253" to="27255" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121250" from="27256" to="27261" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gustu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121269" from="27261" to="27262" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121291" from="27263" to="27273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zapraszamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121310" from="27274" to="27277" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Was-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121344" from="27278" to="27288" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121384" from="27289" to="27299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_serdecznie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121403" from="27300" to="27302" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121431" from="27303" to="27307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121457" from="27308" to="27318" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urodzinowy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121483" from="27319" to="27323" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tort-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121505" from="27323" to="27324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121526" from="27325" to="27330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121552" from="27331" to="27339" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zostanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121580" from="27340" to="27346" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121606" from="27347" to="27349" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_13-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121625" from="27350" to="27354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_maja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121651" from="27354" to="27355" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121672" from="27356" to="27363" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podczas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121691" from="27364" to="27379" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121713" from="27380" to="27387" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wystawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121736" from="27388" to="27393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121798" from="27394" to="27402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121828" from="27403" to="27404" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121849" from="27405" to="27410" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Łodzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121896" from="27410" to="27411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121918" from="27412" to="27422" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przyjdźcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121937" from="27422" to="27423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121958" from="27424" to="27427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n121984" from="27428" to="27437" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świętować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122003" from="27438" to="27443" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_razem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122029" from="27444" to="27445" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122057" from="27446" to="27450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122081" from="27450" to="27451" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122102" from="27452" to="27453" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122135" from="27454" to="27457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_350-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122154" from="27458" to="27466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obecnymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122192" from="27467" to="27469" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122220" from="27470" to="27478" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122241" from="27479" to="27485" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122269" from="27485" to="27486" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122292" from="27487" to="27490" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122318" from="27491" to="27500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_usłyszały-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122341" from="27501" to="27512" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niesamowitą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122362" from="27513" to="27521" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_historię-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122381" from="27522" to="27531" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Redaktora-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122409" from="27531" to="27532" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122430" from="27533" to="27538" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122456" from="27539" to="27546" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeszcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122475" from="27547" to="27550" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122525" from="27551" to="27554" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122565" from="27555" to="27560" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dawno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122584" from="27561" to="27564" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_był-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122606" from="27565" to="27573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122641" from="27574" to="27575" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122660" from="27575" to="27581" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- pisali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122681" from="27581" to="27584" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- śmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122702" from="27585" to="27586" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122730" from="27587" to="27590" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122785" from="27591" to="27592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122806" from="27593" to="27595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nr-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122841" from="27596" to="27597" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_3-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122860" from="27598" to="27602" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122900" from="27602" to="27603" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122921" from="27603" to="27604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122942" from="27605" to="27609" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_były-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n122988" from="27610" to="27616" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123007" from="27617" to="27626" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzruszone-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123063" from="27626" to="27627" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123085" from="27628" to="27636" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Redaktor-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123126" from="27636" to="27637" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123147" from="27638" to="27643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123173" from="27644" to="27648" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123192" from="27649" to="27654" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123213" from="27655" to="27663" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zupełnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123232" from="27664" to="27676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezstresowym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123264" from="27676" to="27677" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123285" from="27678" to="27684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głośno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123304" from="27685" to="27692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mruczał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123326" from="27692" to="27693" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123347" from="27694" to="27705" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przechadzał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123369" from="27706" to="27709" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123388" from="27710" to="27719" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wytwornie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123407" from="27720" to="27722" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123429" from="27723" to="27729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klasie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123450" from="27729" to="27730" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123471" from="27731" to="27736" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123509" from="27737" to="27741" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_razy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123532" from="27742" to="27747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123551" from="27748" to="27753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123570" from="27754" to="27756" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123600" from="27757" to="27760" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123619" from="27761" to="27767" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zabrać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123638" from="27768" to="27774" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głośno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123657" from="27775" to="27779" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_głos-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123678" from="27780" to="27781" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123699" from="27782" to="27790" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dyskusji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123722" from="27790" to="27791" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123744" from="27792" to="27801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Natomiast-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123763" from="27802" to="27809" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kocilla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123789" from="27810" to="27813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123839" from="27814" to="27824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczędziła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123858" from="27825" to="27835" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dzieciakom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123879" from="27836" to="27844" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uścisków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123898" from="27844" to="27845" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123920" from="27846" to="27848" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123948" from="27849" to="27860" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zakończenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n123979" from="27861" to="27865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_były-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124025" from="27866" to="27873" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wspólne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124059" from="27874" to="27884" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pamiątkowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124093" from="27885" to="27892" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdjęcia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124136" from="27893" to="27894" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124169" from="27895" to="27904" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oglądanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124190" from="27905" to="27915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ostatniego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124231" from="27916" to="27922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numeru-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124250" from="27923" to="27927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124290" from="27927" to="27928" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124313" from="27929" to="27939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Specjalnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124332" from="27940" to="27942" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124360" from="27943" to="27950" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Państwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124385" from="27951" to="27959" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_życzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124416" from="27960" to="27967" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_artykuł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124437" from="27968" to="27969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124465" from="27970" to="27976" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124487" from="27977" to="27986" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_białaczce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124508" from="27987" to="27994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_napisał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124530" from="27995" to="28001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_doktor-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124564" from="28002" to="28010" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jarosław-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124600" from="28011" to="28019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Balcerak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124634" from="28019" to="28020" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124656" from="28021" to="28031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dziękujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124675" from="28032" to="28034" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124704" from="28035" to="28044" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124738" from="28045" to="28052" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Państwa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124763" from="28053" to="28058" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_listy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124796" from="28059" to="28060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124829" from="28061" to="28072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wspomnienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124862" from="28073" to="28074" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124890" from="28075" to="28082" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wakacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124909" from="28082" to="28083" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124930" from="28084" to="28094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziękujemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124949" from="28095" to="28097" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n124978" from="28098" to="28104" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kartki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125001" from="28105" to="28113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pocztowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125045" from="28114" to="28115" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125073" from="28116" to="28123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_różnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125103" from="28124" to="28131" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rejonów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125122" from="28132" to="28138" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_świata-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125141" from="28138" to="28139" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125163" from="28140" to="28146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Cieszę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125189" from="28147" to="28150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125208" from="28150" to="28151" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125229" from="28152" to="28154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125255" from="28155" to="28160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_coraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125274" from="28161" to="28169" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_częściej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125293" from="28170" to="28171" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125314" from="28172" to="28183" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wakacyjnych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125344" from="28184" to="28193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podróżach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125370" from="28194" to="28204" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_towarzyszy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125398" from="28205" to="28212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Państwu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125420" from="28213" to="28217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wasz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125446" from="28218" to="28221" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125498" from="28222" to="28223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125531" from="28224" to="28227" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125583" from="28227" to="28228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125604" from="28229" to="28240" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miesięcznik-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125625" from="28240" to="28241" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125646" from="28242" to="28247" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125672" from="28248" to="28251" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_już-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125691" from="28252" to="28256" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125716" from="28257" to="28260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125735" from="28261" to="28264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125754" from="28265" to="28270" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125796" from="28271" to="28272" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125824" from="28273" to="28276" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Was-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125858" from="28277" to="28282" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_takim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125890" from="28283" to="28295" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjacielem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125909" from="28295" to="28296" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125930" from="28297" to="28302" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jakim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125962" from="28303" to="28310" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jedynie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n125981" from="28311" to="28314" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126033" from="28315" to="28318" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_być-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126066" from="28319" to="28326" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrafi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126087" from="28326" to="28327" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126109" from="28328" to="28333" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Miłej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126151" from="28334" to="28341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lektury-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126174" from="28341" to="28342" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126197" from="28343" to="28349" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jeżeli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126216" from="28350" to="28358" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kochacie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126235" from="28359" to="28364" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wasze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126296" from="28365" to="28369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126339" from="28369" to="28370" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126360" from="28371" to="28379" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zadajcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126379" from="28380" to="28385" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sobie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126409" from="28386" to="28392" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trochę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126472" from="28393" to="28398" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trudu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126491" from="28399" to="28400" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126524" from="28401" to="28410" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zadbajcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126543" from="28411" to="28412" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126571" from="28413" to="28416" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126602" from="28417" to="28431" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezpieczeństwo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126624" from="28431" to="28432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126645" from="28433" to="28440" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zamiast-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126671" from="28441" to="28443" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126693" from="28444" to="28450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fakcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126714" from="28451" to="28457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_płakać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126733" from="28457" to="28458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126754" from="28459" to="28466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_patrząc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126780" from="28467" to="28469" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126808" from="28470" to="28480" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_cierpienie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126839" from="28480" to="28481" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126860" from="28482" to="28485" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126886" from="28486" to="28495" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozpaczać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126905" from="28496" to="28498" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126927" from="28499" to="28506" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stracie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126948" from="28506" to="28507" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126970" from="28508" to="28510" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n126996" from="28511" to="28516" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127015" from="28517" to="28520" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127065" from="28521" to="28527" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_śmiała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127091" from="28527" to="28529" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127112" from="28529" to="28530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127133" from="28531" to="28539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomyśleć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127152" from="28539" to="28540" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127173" from="28541" to="28543" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127199" from="28544" to="28549" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wśród-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127218" from="28550" to="28560" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miłośników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127239" from="28561" to="28566" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127261" from="28567" to="28569" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127280" from="28570" to="28571" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127313" from="28572" to="28576" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tacy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127344" from="28576" to="28577" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127365" from="28578" to="28584" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127397" from="28585" to="28588" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_los-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127418" from="28589" to="28592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127449" from="28593" to="28602" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzaka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127470" from="28603" to="28607" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127489" from="28608" to="28616" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obojętny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127515" from="28616" to="28617" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127537" from="28618" to="28624" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dopóki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127556" from="28625" to="28633" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_istnieją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127575" from="28634" to="28639" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ptaki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127597" from="28640" to="28641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127630" from="28642" to="28647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_muchy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127653" from="28647" to="28648" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127674" from="28649" to="28659" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_plastikowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127708" from="28660" to="28661" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127741" from="28662" to="28670" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_blaszane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127775" from="28671" to="28679" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_parapety-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127797" from="28680" to="28684" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127823" from="28685" to="28692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wysokie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127857" from="28693" to="28699" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piętra-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127880" from="28699" to="28700" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127901" from="28701" to="28706" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_żaden-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127927" from="28707" to="28710" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127955" from="28711" to="28715" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n127974" from="28716" to="28724" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_otwartym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128026" from="28725" to="28730" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oknie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128045" from="28731" to="28734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128095" from="28735" to="28739" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128114" from="28740" to="28750" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezpieczny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128140" from="28750" to="28751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128163" from="28752" to="28755" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128205" from="28756" to="28765" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wątpienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128238" from="28766" to="28779" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najważniejszą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128259" from="28780" to="28783" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128278" from="28784" to="28787" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128312" from="28788" to="28798" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_informacją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128331" from="28799" to="28803" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128350" from="28804" to="28813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjęcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128381" from="28814" to="28822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polskiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128413" from="28823" to="28832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Federacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128436" from="28833" to="28848" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Felinologicznej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128462" from="28849" to="28850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128481" from="28850" to="28855" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Felis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128524" from="28856" to="28863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128543" from="28863" to="28864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128564" from="28865" to="28866" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128583" from="28866" to="28869" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- FPL-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128611" from="28869" to="28870" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128632" from="28871" to="28873" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128660" from="28874" to="28887" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pełnoprawnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128685" from="28888" to="28895" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_członka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128709" from="28896" to="28900" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_FIFe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128735" from="28900" to="28901" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128757" from="28902" to="28904" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128779" from="28905" to="28915" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwuletniej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128801" from="28916" to="28924" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przerwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128829" from="28925" to="28937" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spowodowanej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128851" from="28938" to="28949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyrzuceniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128870" from="28950" to="28955" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_SHKRP-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128896" from="28956" to="28958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128924" from="28959" to="28967" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_struktur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128943" from="28968" to="28971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128965" from="28972" to="28981" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_federacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n128988" from="28981" to="28982" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129009" from="28983" to="28989" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polska-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129046" from="28990" to="28992" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129074" from="28993" to="28999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powrót-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129095" from="29000" to="29004" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129114" from="29005" to="29008" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129144" from="29009" to="29018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_członkiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129166" from="29018" to="29019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129187" from="29020" to="29032" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_powiększając-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129206" from="29033" to="29036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129261" from="29037" to="29042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_samym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129293" from="29043" to="29050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodzinę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129312" from="29051" to="29057" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_krajów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129331" from="29058" to="29068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_należących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129398" from="29069" to="29071" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129438" from="29072" to="29076" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_FIFe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129464" from="29077" to="29079" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129504" from="29080" to="29092" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czterdziestu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129546" from="29093" to="29096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129588" from="29096" to="29097" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129611" from="29098" to="29105" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zabawne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129645" from="29106" to="29113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wydawać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129664" from="29114" to="29117" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129683" from="29118" to="29123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129702" from="29124" to="29126" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129754" from="29126" to="29127" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129775" from="29128" to="29130" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129801" from="29131" to="29135" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_obok-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129827" from="29136" to="29148" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hebrajskiego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129859" from="29148" to="29149" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129880" from="29150" to="29159" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129914" from="29160" to="29170" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapowiedzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129952" from="29171" to="29172" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n129985" from="29173" to="29183" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_komunikaty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130007" from="29184" to="29193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ogłaszano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130026" from="29194" to="29199" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130045" from="29200" to="29201" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130066" from="29202" to="29208" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_języku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130087" from="29209" to="29218" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rosyjskim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130129" from="29218" to="29219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130150" from="29220" to="29223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ale-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130183" from="29224" to="29226" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130205" from="29227" to="29236" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ostatniej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130227" from="29237" to="29241" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130250" from="29242" to="29251" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_emigracji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130273" from="29252" to="29257" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130301" from="29258" to="29265" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miliona-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130320" from="29266" to="29271" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Żydów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130374" from="29272" to="29273" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130402" from="29274" to="29279" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rosji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130425" from="29280" to="29282" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130465" from="29283" to="29290" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Izraela-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130487" from="29290" to="29291" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130508" from="29292" to="29297" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130536" from="29298" to="29302" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130567" from="29303" to="29310" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czwarte-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130624" from="29311" to="29319" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_członków-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130647" from="29320" to="29325" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klubu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130666" from="29326" to="29330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_AMIL-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130692" from="29331" to="29335" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mówi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130711" from="29336" to="29338" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130733" from="29339" to="29347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rosyjsku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130752" from="29347" to="29348" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130774" from="29349" to="29353" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mimo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130816" from="29354" to="29366" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dochodzących-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130864" from="29367" to="29369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130904" from="29370" to="29372" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_40-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130923" from="29373" to="29379" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stopni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130942" from="29380" to="29386" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_upałów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n130961" from="29387" to="29391" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_koty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131004" from="29392" to="29396" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_były-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131050" from="29397" to="29398" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131071" from="29399" to="29403" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dość-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131104" from="29404" to="29410" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dobrej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131126" from="29411" to="29419" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kondycji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131149" from="29419" to="29420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131170" from="29421" to="29426" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131196" from="29427" to="29430" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131246" from="29431" to="29436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131274" from="29437" to="29440" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131293" from="29441" to="29451" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_specjalnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131312" from="29452" to="29458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dziwić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131331" from="29458" to="29459" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131352" from="29460" to="29464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdyż-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131371" from="29465" to="29466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131392" from="29467" to="29473" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prawie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131418" from="29474" to="29480" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_każdym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131450" from="29481" to="29494" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomieszczeniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131480" from="29495" to="29496" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131501" from="29497" to="29504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Izraelu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131524" from="29505" to="29511" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_działa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131561" from="29512" to="29524" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klimatyzacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131580" from="29524" to="29525" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131603" from="29526" to="29531" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Duduś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131651" from="29532" to="29536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131670" from="29537" to="29547" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ulubieńcem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131689" from="29548" to="29556" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mężczyzn-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131710" from="29556" to="29557" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131732" from="29558" to="29565" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ochoczo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131751" from="29566" to="29576" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_prezentuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131770" from="29577" to="29582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swoje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131817" from="29583" to="29587" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_psie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131862" from="29588" to="29598" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zachowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131895" from="29598" to="29599" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131946" from="29600" to="29604" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131974" from="29605" to="29613" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zjednuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n131993" from="29614" to="29617" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132024" from="29618" to="29623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sobie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132054" from="29624" to="29627" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132089" from="29628" to="29634" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_reszty-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132112" from="29634" to="29635" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132134" from="29636" to="29641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kocha-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132163" from="29642" to="29651" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aportować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132182" from="29652" to="29659" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zabawkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132201" from="29660" to="29663" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132227" from="29664" to="29670" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwykłą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132248" from="29671" to="29676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kulkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132267" from="29677" to="29678" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132295" from="29679" to="29686" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_papieru-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132314" from="29687" to="29688" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132347" from="29689" to="29693" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132366" from="29694" to="29695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132387" from="29696" to="29699" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132442" from="29700" to="29707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sporcie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132465" from="29708" to="29721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezmordowany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132505" from="29721" to="29722" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132527" from="29723" to="29725" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132555" from="29726" to="29729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nic-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132584" from="29730" to="29735" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132603" from="29736" to="29739" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132622" from="29740" to="29745" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_próby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132645" from="29746" to="29756" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odwrócenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132678" from="29757" to="29761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132704" from="29762" to="29767" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uwagi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132727" from="29767" to="29768" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132748" from="29769" to="29771" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132774" from="29772" to="29780" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przecież-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132793" from="29781" to="29788" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_chciało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132812" from="29788" to="29790" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132833" from="29791" to="29794" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132852" from="29795" to="29797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132880" from="29798" to="29806" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przykład-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132901" from="29807" to="29812" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wypić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132934" from="29813" to="29814" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132962" from="29815" to="29822" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gościem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n132981" from="29823" to="29827" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kawę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133000" from="29827" to="29828" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133022" from="29829" to="29832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nic-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133058" from="29833" to="29834" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133086" from="29835" to="29839" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133118" from="29839" to="29840" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133140" from="29841" to="29846" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Duduś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133188" from="29847" to="29854" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wymusza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133207" from="29855" to="29863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rzucanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133228" from="29863" to="29864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133249" from="29865" to="29876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dopominając-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133268" from="29877" to="29880" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133287" from="29881" to="29882" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133315" from="29883" to="29886" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133365" from="29887" to="29899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeraźliwym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133397" from="29900" to="29911" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miauczeniem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133423" from="29911" to="29912" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133446" from="29913" to="29916" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133496" from="29917" to="29924" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdążyła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133515" from="29924" to="29925" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- m-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133536" from="29926" to="29933" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeszcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133555" from="29934" to="29945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_doprowadzić-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133574" from="29946" to="29956" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieszkania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133607" from="29957" to="29959" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133647" from="29960" to="29964" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ładu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133666" from="29965" to="29967" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133688" from="29968" to="29975" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rządach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133707" from="29976" to="29980" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Mini-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133838" from="29980" to="29981" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133859" from="29982" to="29987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_która-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133880" from="29988" to="29995" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zrobiła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133899" from="29996" to="29997" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133920" from="29998" to="30001" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n133988" from="30002" to="30007" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_maksi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134077" from="30008" to="30015" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bałagan-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134098" from="30015" to="30016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134119" from="30017" to="30022" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kiedy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134145" from="30023" to="30025" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134173" from="30026" to="30036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_horyzoncie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134194" from="30037" to="30039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134223" from="30040" to="30046" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sprawą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134242" from="30047" to="30051" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134266" from="30052" to="30057" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Joasi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134298" from="30058" to="30065" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pojawił-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134320" from="30066" to="30069" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134339" from="30070" to="30076" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czarny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134374" from="30077" to="30080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134428" from="30081" to="30086" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_smoła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134447" from="30087" to="30095" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dratewka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134473" from="30095" to="30096" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134495" from="30097" to="30105" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dratewkę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134521" from="30106" to="30110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pani-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134545" from="30111" to="30117" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Joasia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134564" from="30118" to="30125" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyrwała-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134583" from="30126" to="30127" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134611" from="30128" to="30140" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bestialskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134641" from="30141" to="30144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łap-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134667" from="30145" to="30152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pewnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134712" from="30153" to="30159" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szewca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134733" from="30159" to="30160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134754" from="30161" to="30168" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134779" from="30169" to="30174" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niech-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134798" from="30175" to="30181" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piekło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134827" from="30182" to="30191" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pochłonie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134846" from="30191" to="30192" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134869" from="30193" to="30200" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Spośród-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134888" from="30201" to="30209" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_licznych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134918" from="30210" to="30216" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134948" from="30217" to="30232" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_indywidualności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134975" from="30232" to="30233" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n134996" from="30234" to="30239" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135030" from="30240" to="30250" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przewinęły-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135053" from="30251" to="30254" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135072" from="30255" to="30260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135091" from="30261" to="30264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135126" from="30265" to="30268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135147" from="30268" to="30269" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135168" from="30270" to="30271" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135196" from="30272" to="30276" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_całą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135217" from="30277" to="30286" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pewnością-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135236" from="30287" to="30292" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135264" from="30293" to="30295" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135290" from="30296" to="30304" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyłuskać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135309" from="30305" to="30309" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_paru-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135358" from="30310" to="30321" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rozbójników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135379" from="30321" to="30322" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135400" from="30323" to="30328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kilku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135442" from="30329" to="30341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wichrzycieli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135463" from="30342" to="30343" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135496" from="30344" to="30346" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135524" from="30347" to="30351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dwie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135546" from="30352" to="30363" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_terrorystki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135569" from="30363" to="30364" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135591" from="30365" to="30369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lecz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135624" from="30370" to="30373" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135655" from="30374" to="30381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyczyny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135677" from="30381" to="30382" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135698" from="30383" to="30384" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135719" from="30385" to="30395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_porównaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135749" from="30396" to="30397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135777" from="30398" to="30409" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_repertuarem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135796" from="30410" to="30413" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_don-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135815" from="30414" to="30425" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Giovanniego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135841" from="30425" to="30426" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135862" from="30427" to="30432" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jawią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135883" from="30433" to="30435" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135935" from="30436" to="30439" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135954" from="30440" to="30445" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_teraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n135973" from="30446" to="30458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdecydowanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136011" from="30459" to="30467" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mizernie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136030" from="30467" to="30468" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136052" from="30469" to="30472" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136078" from="30473" to="30478" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_facet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136097" from="30479" to="30483" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136116" from="30484" to="30489" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136148" from="30490" to="30500" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przykładem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136167" from="30501" to="30508" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zespołu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136186" from="30509" to="30524" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Nadpobudliwości-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136213" from="30525" to="30533" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Ruchowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136235" from="30534" to="30535" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136263" from="30536" to="30548" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezpośrednim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136295" from="30549" to="30555" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_łączem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136314" from="30556" to="30558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136354" from="30559" to="30572" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ekspansywnego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136379" from="30573" to="30581" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_myślenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136422" from="30581" to="30582" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136444" from="30583" to="30590" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Owocuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136463" from="30591" to="30593" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136515" from="30594" to="30603" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_eksplozją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136534" from="30604" to="30612" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomysłów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136553" from="30613" to="30614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136586" from="30615" to="30625" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niespożytą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136616" from="30626" to="30633" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_energią-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136635" from="30634" to="30643" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezbędną-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136656" from="30644" to="30646" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136696" from="30647" to="30650" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136727" from="30651" to="30661" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_realizacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136750" from="30661" to="30662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136773" from="30663" to="30664" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136792" from="30664" to="30665" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136813" from="30666" to="30673" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kociarz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136832" from="30674" to="30678" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136863" from="30679" to="30683" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2007-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136882" from="30684" to="30685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136901" from="30686" to="30695" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kategoria-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136920" from="30695" to="30696" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136941" from="30697" to="30702" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_OSOBA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136969" from="30703" to="30704" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n136988" from="30704" to="30709" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- która-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137011" from="30710" to="30719" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zasłużyła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137030" from="30720" to="30723" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137049" from="30724" to="30725" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137070" from="30726" to="30732" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomocy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137094" from="30733" to="30734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137127" from="30735" to="30743" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_promocji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137150" from="30744" to="30749" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137172" from="30749" to="30750" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137193" from="30750" to="30751" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137215" from="30752" to="30753" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137234" from="30753" to="30754" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137255" from="30755" to="30762" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kociarz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137274" from="30763" to="30767" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137305" from="30768" to="30772" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2007-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137324" from="30773" to="30774" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137343" from="30775" to="30784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kategoria-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137362" from="30784" to="30785" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137383" from="30786" to="30791" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_FIRMA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137402" from="30792" to="30795" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137428" from="30796" to="30806" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_INSTYTUCJA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137447" from="30807" to="30808" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137466" from="30808" to="30810" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- np-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137487" from="30810" to="30811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137508" from="30812" to="30820" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_lecznice-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137530" from="30820" to="30821" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137551" from="30822" to="30832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_producenci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137572" from="30833" to="30837" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karm-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137607" from="30838" to="30839" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137640" from="30840" to="30850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akcesoriów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137666" from="30851" to="30854" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137685" from="30855" to="30863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137706" from="30863" to="30864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137727" from="30865" to="30871" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sklepy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137749" from="30872" to="30873" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137782" from="30874" to="30883" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hurtownie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137811" from="30884" to="30888" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_oraz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137837" from="30889" to="30893" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_inne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137881" from="30894" to="30899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_firmy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137904" from="30899" to="30900" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137925" from="30901" to="30906" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137959" from="30907" to="30917" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poświęcają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n137978" from="30918" to="30922" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swój-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138011" from="30923" to="30927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138039" from="30928" to="30929" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138072" from="30930" to="30936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_środki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138104" from="30937" to="30939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138132" from="30940" to="30945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomoc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138153" from="30946" to="30951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138181" from="30951" to="30952" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138202" from="30952" to="30953" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138225" from="30954" to="30956" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138253" from="30957" to="30969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_amerykańskim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138285" from="30970" to="30975" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rynku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138307" from="30976" to="30986" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akcesoriów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138333" from="30987" to="30990" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dla-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138352" from="30991" to="30999" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138373" from="31000" to="31007" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czekają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138392" from="31008" to="31016" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klientów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138414" from="31017" to="31024" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jeszcze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138433" from="31025" to="31029" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_inne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138477" from="31030" to="31043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niespodzianki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138500" from="31043" to="31044" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138522" from="31045" to="31051" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Możemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138541" from="31052" to="31057" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nabyć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138574" from="31058" to="31060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138602" from="31061" to="31069" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przykład-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138623" from="31070" to="31080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urządzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138654" from="31081" to="31083" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138694" from="31084" to="31091" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdalnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138716" from="31092" to="31098" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_opieki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138739" from="31099" to="31102" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138760" from="31103" to="31110" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszymi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138798" from="31111" to="31122" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ulubieńcami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138817" from="31122" to="31123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138839" from="31124" to="31129" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jeśli-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138858" from="31130" to="31134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138888" from="31135" to="31143" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_komputer-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138909" from="31144" to="31145" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138937" from="31146" to="31157" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odpowiednim-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138969" from="31158" to="31167" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_programem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n138988" from="31167" to="31168" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139009" from="31169" to="31170" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139037" from="31171" to="31178" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_każdego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139062" from="31179" to="31186" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejsca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139085" from="31187" to="31189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139113" from="31190" to="31195" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ziemi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139135" from="31196" to="31202" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_możemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139154" from="31203" to="31212" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wydzielać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139173" from="31213" to="31217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139192" from="31218" to="31223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karmę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139211" from="31223" to="31224" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139232" from="31225" to="31235" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spowodować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139251" from="31236" to="31252" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_samooczyszczenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139282" from="31253" to="31256" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139301" from="31257" to="31262" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kuwet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139320" from="31263" to="31264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139353" from="31265" to="31274" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podglądać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139372" from="31275" to="31277" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139400" from="31278" to="31285" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ekranie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139421" from="31285" to="31286" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139442" from="31287" to="31289" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_co-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139488" from="31290" to="31296" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_akurat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139521" from="31297" to="31301" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_robi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139540" from="31302" to="31306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139566" from="31307" to="31310" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139594" from="31310" to="31311" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139616" from="31312" to="31318" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Jednak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139642" from="31319" to="31324" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nawet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139661" from="31325" to="31341" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najwymyślniejsze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139695" from="31342" to="31352" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urządzenie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139726" from="31353" to="31356" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139776" from="31357" to="31364" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zastąpi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139795" from="31365" to="31368" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139819" from="31369" to="31381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przyjemności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139846" from="31382" to="31393" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przebywania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139868" from="31394" to="31395" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139896" from="31396" to="31401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139917" from="31402" to="31403" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139950" from="31404" to="31410" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dotyku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139972" from="31411" to="31415" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n139998" from="31416" to="31425" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miękkiego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140023" from="31426" to="31433" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_futerka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140046" from="31433" to="31434" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140068" from="31435" to="31436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_I-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140108" from="31437" to="31441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_całe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140142" from="31442" to="31451" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczęście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140164" from="31451" to="31452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140187" from="31453" to="31454" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140208" from="31455" to="31465" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodowodach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140227" from="31466" to="31471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140249" from="31472" to="31484" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawianych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140279" from="31485" to="31490" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140298" from="31491" to="31494" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_FPL-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140324" from="31495" to="31504" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wpisywane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140358" from="31505" to="31507" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_są-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140377" from="31508" to="31514" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numery-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140399" from="31515" to="31521" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czipów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140418" from="31522" to="31530" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodziców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140448" from="31531" to="31538" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kociaka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140469" from="31538" to="31539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140490" from="31540" to="31541" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_a-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140530" from="31542" to="31546" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140556" from="31547" to="31552" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numer-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140577" from="31553" to="31558" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_można-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140605" from="31559" to="31561" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140627" from="31562" to="31574" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaczipowaniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140648" from="31575" to="31583" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przesłać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140667" from="31584" to="31586" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140707" from="31587" to="31597" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_centralnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140729" from="31598" to="31602" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bazy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140752" from="31603" to="31614" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodowodowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140774" from="31614" to="31615" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140795" from="31616" to="31621" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140821" from="31622" to="31629" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wpisany-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140847" from="31630" to="31638" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zostanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140875" from="31639" to="31641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140915" from="31642" to="31649" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_systemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140934" from="31649" to="31650" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140956" from="31651" to="31655" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bank-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n140999" from="31656" to="31662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_danych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141065" from="31663" to="31664" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141086" from="31665" to="31671" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_biurze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141105" from="31672" to="31683" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodowodowym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141137" from="31684" to="31687" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_FPL-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141163" from="31688" to="31697" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_umożliwia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141182" from="31698" to="31710" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odnalezienie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141203" from="31711" to="31723" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dokumentacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141226" from="31724" to="31728" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141256" from="31729" to="31731" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141278" from="31732" to="31739" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numerze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141299" from="31740" to="31744" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141325" from="31745" to="31750" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czipu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141351" from="31751" to="31752" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141478" from="31752" to="31771" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- www.felispolonia.pl-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141506" from="31771" to="31772" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141527" from="31773" to="31782" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Federacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141546" from="31783" to="31784" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141565" from="31784" to="31789" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Felis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141601" from="31790" to="31797" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141620" from="31797" to="31798" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141641" from="31799" to="31811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_współpracuje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141660" from="31812" to="31813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141688" from="31814" to="31826" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Towarzystwem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141707" from="31827" to="31838" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rejestracji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141730" from="31839" to="31840" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141763" from="31841" to="31854" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Identyfikacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141786" from="31855" to="31863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141807" from="31864" to="31865" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141934" from="31865" to="31885" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- www.identyfikacja.pl-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141962" from="31885" to="31886" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n141983" from="31886" to="31887" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142004" from="31888" to="31893" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_które-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142038" from="31894" to="31898" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142057" from="31899" to="31908" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_członkiem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142079" from="31909" to="31924" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_międzynarodowej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142101" from="31925" to="31936" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizacji-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142124" from="31937" to="31941" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Euro-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142164" from="31942" to="31945" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pet-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142200" from="31946" to="31949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Net-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142235" from="31950" to="31951" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142388" from="31951" to="31969" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- www.europetnet.com-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142416" from="31969" to="31970" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142439" from="31971" to="31974" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gdy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142465" from="31975" to="31978" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142517" from="31979" to="31985" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_usiadł-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142539" from="31986" to="31988" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142567" from="31989" to="31997" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ławeczce-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142588" from="31998" to="32005" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Juliana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142616" from="32006" to="32012" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tuwima-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142637" from="32012" to="32013" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142658" from="32014" to="32019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poeta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142677" from="32020" to="32023" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142727" from="32024" to="32028" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_krył-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142749" from="32029" to="32039" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zdziwienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142782" from="32040" to="32041" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142810" from="32042" to="32046" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142842" from="32047" to="32061" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niecodziennego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142867" from="32062" to="32071" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spotkania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142900" from="32071" to="32072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142922" from="32073" to="32076" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142974" from="32077" to="32086" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odwiedził-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n142996" from="32087" to="32092" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143015" from="32093" to="32107" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaprzyjaźnione-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143071" from="32108" to="32113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_biuro-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143093" from="32114" to="32119" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_LOT-u-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143112" from="32119" to="32120" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143133" from="32121" to="32123" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143159" from="32124" to="32131" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uzyskać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143178" from="32132" to="32143" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najświeższe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143212" from="32144" to="32154" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_informacje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143234" from="32155" to="32157" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143262" from="32158" to="32163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_temat-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143283" from="32164" to="32176" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podróżowania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143308" from="32177" to="32182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143330" from="32183" to="32193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_samolotami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143349" from="32193" to="32194" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143371" from="32195" to="32200" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przed-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143392" from="32201" to="32215" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodową-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143413" from="32216" to="32223" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wystawą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143432" from="32224" to="32229" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143494" from="32230" to="32238" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143524" from="32239" to="32240" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143545" from="32241" to="32251" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pruszkowie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143591" from="32252" to="32256" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143617" from="32257" to="32260" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143669" from="32260" to="32261" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143690" from="32262" to="32264" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143716" from="32265" to="32268" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143766" from="32269" to="32277" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odstawać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143785" from="32278" to="32283" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_urodą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143804" from="32284" to="32286" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_od-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143830" from="32287" to="32292" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_swych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143860" from="32293" to="32301" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143890" from="32302" to="32307" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_braci-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143941" from="32307" to="32308" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143962" from="32309" to="32313" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n143984" from="32314" to="32317" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144003" from="32318" to="32320" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144043" from="32321" to="32328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144084" from="32329" to="32330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144112" from="32331" to="32347" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_najsłynniejszych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144142" from="32348" to="32355" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_salonów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144161" from="32356" to="32362" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_fryzur-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144180" from="32363" to="32364" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144199" from="32364" to="32370" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Studia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144244" from="32371" to="32376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Urody-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144289" from="32377" to="32380" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_101-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144308" from="32380" to="32381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144329" from="32381" to="32382" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144350" from="32383" to="32388" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gdzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144376" from="32389" to="32397" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uczesano-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144395" from="32398" to="32400" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_go-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144442" from="32401" to="32402" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144461" from="32402" to="32404" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144491" from="32405" to="32414" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_championa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144514" from="32414" to="32415" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144535" from="32415" to="32416" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144558" from="32417" to="32429" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przypominamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144577" from="32430" to="32442" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nominowanych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144618" from="32443" to="32445" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144658" from="32446" to="32450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144690" from="32451" to="32457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tytułu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144709" from="32457" to="32458" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144730" from="32459" to="32464" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Forum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144756" from="32465" to="32469" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_MIAU-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144775" from="32470" to="32471" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144808" from="32472" to="32477" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rafał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144849" from="32478" to="32489" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lewandowski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144870" from="32490" to="32491" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144889" from="32492" to="32497" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rafał-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144930" from="32498" to="32509" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lewandowski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144951" from="32510" to="32514" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144970" from="32515" to="32527" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_założycielem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n144989" from="32528" to="32529" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145022" from="32530" to="32545" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_administratorem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145041" from="32546" to="32559" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_internetowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145066" from="32560" to="32565" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_forum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145092" from="32566" to="32570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_MIAU-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145111" from="32570" to="32571" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145132" from="32572" to="32574" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145160" from="32575" to="32581" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145192" from="32582" to="32591" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_spotykają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145211" from="32592" to="32595" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145230" from="32596" to="32601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_setki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145253" from="32602" to="32612" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miłośników-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145274" from="32613" to="32618" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145296" from="32618" to="32619" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145317" from="32620" to="32623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_aby-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145343" from="32624" to="32633" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wymieniać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145362" from="32634" to="32637" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145381" from="32638" to="32644" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wiedzą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145407" from="32645" to="32646" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145440" from="32647" to="32662" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_doświadczeniami-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145466" from="32662" to="32663" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145488" from="32664" to="32670" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dzięki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145538" from="32671" to="32675" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_MIAU-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145557" from="32676" to="32681" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_udało-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145576" from="32682" to="32685" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145595" from="32686" to="32694" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uratować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145614" from="32695" to="32700" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_życie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145652" from="32701" to="32706" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wielu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145694" from="32707" to="32712" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotom-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145722" from="32712" to="32713" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145743" from="32714" to="32719" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145769" from="32720" to="32721" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145790" from="32722" to="32726" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2005-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145809" from="32727" to="32731" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145831" from="32732" to="32737" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ponad-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145859" from="32738" to="32741" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_900-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145878" from="32742" to="32747" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145900" from="32748" to="32756" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_znalazło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145919" from="32757" to="32761" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145973" from="32762" to="32766" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_domy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n145995" from="32767" to="32769" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_za-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146024" from="32770" to="32783" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pośrednictwem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146043" from="32784" to="32789" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_forum-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146069" from="32789" to="32790" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146092" from="32791" to="32799" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Niestety-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146111" from="32800" to="32803" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146161" from="32804" to="32813" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wszystkie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146195" from="32814" to="32824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niechciane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146229" from="32825" to="32832" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kocięta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146251" from="32833" to="32836" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uda-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146281" from="32837" to="32840" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146300" from="32841" to="32849" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uratować-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146319" from="32849" to="32850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146341" from="32851" to="32852" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146362" from="32853" to="32856" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146417" from="32857" to="32861" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_roku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146439" from="32862" to="32863" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146460" from="32864" to="32870" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naszym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146509" from="32871" to="32878" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146535" from="32878" to="32879" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146556" from="32880" to="32885" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Łodzi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146603" from="32886" to="32897" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wprowadzono-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146622" from="32898" to="32905" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_program-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146643" from="32906" to="32918" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zapobiegania-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146676" from="32919" to="32930" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bezdomności-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146703" from="32931" to="32939" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierząt-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146724" from="32939" to="32940" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146745" from="32941" to="32942" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_o-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146773" from="32943" to="32949" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_którym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146805" from="32950" to="32957" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szerzej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146824" from="32958" to="32965" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_piszemy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146843" from="32966" to="32967" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146864" from="32968" to="32971" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146919" from="32972" to="32979" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_numerze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146940" from="32980" to="32984" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOTA-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n146980" from="32984" to="32985" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147002" from="32986" to="32987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147023" from="32988" to="32994" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_innych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147063" from="32995" to="33003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miastach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147082" from="33004" to="33010" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147138" from="33011" to="33018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_również-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147157" from="33019" to="33027" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_istnieją-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147176" from="33028" to="33033" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_takie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147210" from="33034" to="33042" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_programy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147232" from="33042" to="33043" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147253" from="33044" to="33050" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147279" from="33051" to="33053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_by-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147305" from="33054" to="33057" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147336" from="33058" to="33068" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_realizacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147355" from="33069" to="33074" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mogła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147374" from="33075" to="33084" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zakończyć-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147393" from="33085" to="33088" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147412" from="33089" to="33097" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sukcesem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147431" from="33097" to="33098" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147452" from="33099" to="33108" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_potrzebne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147496" from="33109" to="33113" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147515" from="33114" to="33125" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zrozumienie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147546" from="33126" to="33134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_problemu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147565" from="33134" to="33135" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147586" from="33136" to="33144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_edukacja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147605" from="33145" to="33146" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147638" from="33147" to="33152" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pomoc-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147659" from="33153" to="33160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zarówno-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147685" from="33161" to="33163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ze-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147713" from="33164" to="33170" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_strony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147736" from="33171" to="33182" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_karmicielek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147755" from="33182" to="33183" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147776" from="33184" to="33187" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147830" from="33188" to="33189" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147863" from="33190" to="33193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nas-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147897" from="33194" to="33195" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147916" from="33196" to="33207" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieszkańców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147937" from="33208" to="33213" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miast-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n147970" from="33214" to="33215" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148003" from="33216" to="33219" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wsi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148030" from="33219" to="33220" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148053" from="33221" to="33230" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pozostałe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148087" from="33231" to="33236" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kraje-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148116" from="33237" to="33241" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Unii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148150" from="33242" to="33254" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Europejskiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148172" from="33255" to="33263" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wymagają-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148191" from="33264" to="33265" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148212" from="33266" to="33275" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przypadku-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148234" from="33276" to="33287" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wścieklizny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148257" from="33288" to="33293" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tylko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148283" from="33294" to="33305" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_szczepienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148316" from="33306" to="33315" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeciwko-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148335" from="33316" to="33328" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wściekliźnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148356" from="33329" to="33330" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148375" from="33330" to="33340" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- omówionego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148402" from="33341" to="33350" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wcześniej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148428" from="33350" to="33351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148449" from="33351" to="33352" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148471" from="33353" to="33356" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148523" from="33357" to="33369" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjeżdżający-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148551" from="33370" to="33372" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148591" from="33373" to="33382" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Finlandii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148614" from="33383" to="33387" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_musi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148649" from="33388" to="33391" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_być-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148682" from="33392" to="33401" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dodatkowo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148701" from="33402" to="33413" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odrobaczony-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148727" from="33414" to="33416" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148755" from="33417" to="33419" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_30-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148774" from="33420" to="33423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148797" from="33424" to="33429" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przed-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148818" from="33430" to="33438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjazdem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148837" from="33438" to="33439" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148859" from="33440" to="33444" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Przy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148878" from="33445" to="33454" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjeździe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148899" from="33455" to="33457" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148939" from="33458" to="33466" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wielkiej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148961" from="33467" to="33475" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Brytanii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n148995" from="33475" to="33476" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149016" from="33477" to="33485" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Irlandii-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149039" from="33486" to="33489" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_czy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149065" from="33490" to="33492" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149093" from="33493" to="33498" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Maltę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149112" from="33499" to="33506" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwierzę-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149144" from="33507" to="33511" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_musi-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149179" from="33512" to="33515" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_być-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149212" from="33516" to="33527" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odrobaczone-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149246" from="33528" to="33529" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149279" from="33530" to="33536" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trzeba-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149298" from="33537" to="33539" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149328" from="33540" to="33545" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_podać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149347" from="33546" to="33552" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_środki-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149379" from="33553" to="33570" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przeciwkleszczowe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149413" from="33571" to="33573" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149441" from="33574" to="33576" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_24-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149460" from="33576" to="33577" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- - -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149481" from="33577" to="33579" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- 48-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149502" from="33580" to="33586" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_godzin-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149521" from="33587" to="33592" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przed-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149542" from="33593" to="33601" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjazdem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149561" from="33601" to="33602" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149583" from="33603" to="33610" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Szwecja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149602" from="33611" to="33617" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wymaga-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149621" from="33618" to="33623" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_także-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149640" from="33624" to="33636" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odrobaczenia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149662" from="33637" to="33641" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149692" from="33642" to="33644" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149720" from="33645" to="33647" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_10-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149739" from="33648" to="33651" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dni-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149762" from="33652" to="33657" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przed-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149783" from="33658" to="33666" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wyjazdem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149802" from="33666" to="33667" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149825" from="33668" to="33669" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_W-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149846" from="33670" to="33676" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_dniach-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149865" from="33677" to="33679" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_30-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149884" from="33680" to="33688" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_września-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149910" from="33689" to="33690" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149943" from="33691" to="33692" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149962" from="33693" to="33705" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_października-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n149981" from="33706" to="33707" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150002" from="33708" to="33716" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lublinie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150039" from="33717" to="33723" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_odbyła-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150058" from="33724" to="33727" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_się-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150077" from="33728" to="33729" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_I-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150117" from="33730" to="33731" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150150" from="33732" to="33734" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_II-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150176" from="33735" to="33749" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodowa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150197" from="33750" to="33757" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wystawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150216" from="33758" to="33763" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kotów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150278" from="33764" to="33772" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150308" from="33773" to="33786" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zorganizowana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150329" from="33787" to="33792" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150348" from="33793" to="33801" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lubelski-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150383" from="33802" to="33806" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Klub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150440" from="33807" to="33811" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kota-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150480" from="33812" to="33820" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Rasowego-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150505" from="33821" to="33824" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pod-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150526" from="33825" to="33835" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_patronatem-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150545" from="33836" to="33837" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_"-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150564" from="33837" to="33842" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- Felis-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150607" from="33843" to="33850" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Polonia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150633" from="33850" to="33851" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- "-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150654" from="33852" to="33853" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_(-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150673" from="33853" to="33857" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- FIFe-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150701" from="33857" to="33858" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- )-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150722" from="33858" to="33859" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150744" from="33860" to="33864" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Była-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150781" from="33865" to="33867" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150833" from="33868" to="33876" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_pierwsza-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150863" from="33877" to="33884" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawa-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150882" from="33885" to="33897" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_organizowana-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150903" from="33898" to="33899" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150924" from="33900" to="33903" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_tym-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n150979" from="33904" to="33911" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mieście-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151005" from="33912" to="33917" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przez-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151024" from="33918" to="33921" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ten-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151050" from="33922" to="33926" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klub-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151078" from="33926" to="33927" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151100" from="33928" to="33938" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Szczególne-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151134" from="33939" to="33946" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_uznanie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151165" from="33947" to="33956" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawców-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151186" from="33957" to="33958" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151219" from="33959" to="33972" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zwiedzających-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151286" from="33973" to="33981" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wzbudził-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151308" from="33982" to="33987" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wybór-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151329" from="33988" to="33995" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_miejsca-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151352" from="33996" to="34003" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_wystawy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151375" from="34004" to="34005" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_- -->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151394" from="34006" to="34018" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przestronnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151416" from="34018" to="34019" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151437" from="34020" to="34031" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nowoczesnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151459" from="34032" to="34036" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_hali-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151482" from="34037" to="34053" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Międzynarodowych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151512" from="34054" to="34060" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Targów-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151552" from="34061" to="34071" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Lubelskich-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151610" from="34071" to="34072" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151633" from="34073" to="34079" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Anaida-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151659" from="34079" to="34080" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151680" from="34081" to="34084" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Don-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151715" from="34085" to="34093" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Flemming-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151756" from="34093" to="34094" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151777" from="34095" to="34100" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Bibiś-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151803" from="34100" to="34101" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151824" from="34102" to="34107" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Waśka-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151861" from="34107" to="34108" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151882" from="34109" to="34117" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Tolerant-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151908" from="34117" to="34118" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151929" from="34119" to="34125" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dyziek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151955" from="34125" to="34126" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n151976" from="34127" to="34133" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Pankot-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152011" from="34133" to="34134" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152032" from="34135" to="34143" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Redakcja-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152058" from="34143" to="34144" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152079" from="34145" to="34150" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Gacek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152141" from="34150" to="34151" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152162" from="34152" to="34160" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Miauelek-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152188" from="34160" to="34161" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152209" from="34161" to="34162" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152230" from="34162" to="34163" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152251" from="34164" to="34165" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152284" from="34166" to="34171" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_sporo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152347" from="34172" to="34178" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_innych-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152387" from="34178" to="34179" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152409" from="34180" to="34185" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Wybór-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152430" from="34186" to="34193" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imienia-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152462" from="34194" to="34198" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jest-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152481" from="34199" to="34208" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_niezwykle-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152500" from="34209" to="34214" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_ważny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152526" from="34215" to="34216" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152559" from="34216" to="34217" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152580" from="34218" to="34221" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jak-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152634" from="34222" to="34227" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_widać-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152660" from="34227" to="34228" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152681" from="34229" to="34235" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bardzo-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152700" from="34236" to="34242" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_trudny-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152726" from="34242" to="34243" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152748" from="34244" to="34255" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Najbardziej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152767" from="34256" to="34265" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przypadło-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152786" from="34266" to="34269" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nam-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152810" from="34270" to="34272" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_do-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152850" from="34273" to="34278" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_gustu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152869" from="34279" to="34283" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_imię-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152894" from="34284" to="34297" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_zaproponowane-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152928" from="34298" to="34299" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_w-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152949" from="34300" to="34305" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_mailu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152973" from="34305" to="34306" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n152994" from="34307" to="34312" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_który-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153020" from="34313" to="34320" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_poniżej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153046" from="34321" to="34332" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_przytaczamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153065" from="34332" to="34333" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153086" from="34334" to="34340" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Witamy-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153105" from="34341" to="34351" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_serdecznie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153154" from="34352" to="34354" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_:)-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153174" from="34355" to="34357" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Po-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153196" from="34358" to="34367" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_rodzinnej-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153218" from="34368" to="34376" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_naradzie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153269" from="34377" to="34379" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_:)-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153288" from="34380" to="34381" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_i-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153321" from="34382" to="34394" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_stwierdzeniu-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153351" from="34395" to="34407" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_jednogłośnie-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153370" from="34407" to="34408" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- ,-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153391" from="34409" to="34411" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_że-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153417" from="34412" to="34416" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_nasz-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153443" from="34417" to="34420" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_KOT-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153495" from="34421" to="34423" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_to-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153547" from="34423" to="34424" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153568" from="34425" to="34426" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_1-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153587" from="34426" to="34427" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153608" from="34428" to="34435" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Kobieta-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153627" from="34435" to="34436" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153649" from="34437" to="34438" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_2-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153668" from="34438" to="34439" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153689" from="34440" to="34441" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Z-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153717" from="34442" to="34447" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_klasą-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153736" from="34447" to="34448" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153757" from="34448" to="34449" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153778" from="34449" to="34450" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153800" from="34451" to="34452" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_3-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153819" from="34452" to="34453" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- .-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153840" from="34454" to="34456" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Na-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153868" from="34457" to="34461" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_bank-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153889" from="34461" to="34462" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- :-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153910" from="34463" to="34467" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!--_Dama-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+      <span id="n153938" from="34467" to="34468" l="5">
+         <fs xmlns="http://www.tei-c.org/ns/1.0">
+            <f name="ne"><!-- !-->
+               <fs>
+                  <f name="ent">placeholder</f>
+               </fs>
+            </f>
+         </fs>
+      </span>
+   </spanList>
+</layer>