diff --git a/jupyter/eScriptorium/ModeleXML.ipynb b/jupyter/eScriptorium/ModeleXML.ipynb index 4e598650ce55f3246996fb64439df987f5a412e5..c681121465febb6a809d9425080535374df5f3a0 100644 --- a/jupyter/eScriptorium/ModeleXML.ipynb +++ b/jupyter/eScriptorium/ModeleXML.ipynb @@ -19,6 +19,71 @@ { "cell_type": "code", "execution_count": 2, + "id": "ca8f31f9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "--2023-06-07 14:17:56-- https://escriptorium.inria.fr/media/users/300/export_doc2601_test_prealable_pagexml_202306071737.zip\n", + "Résolution de escriptorium.inria.fr (escriptorium.inria.fr)… 128.93.101.11\n", + "Connexion à escriptorium.inria.fr (escriptorium.inria.fr)|128.93.101.11|:443… connecté.\n", + "requête HTTP transmise, en attente de la réponse… 304 Not Modified\n", + "Le fichier «export_doc2601_test_prealable_pagexml_202306071737.zip» n’a pas été modifié sur le serveur. Téléchargement sauté.\n", + "\n", + "Archive: export_doc2601_test_prealable_pagexml_202306071737.zip\n", + " extracting: cpgraec23_0119.pdf_page_1.xml \n", + " extracting: METS.xml \n" + ] + } + ], + "source": [ + "!wget -N https://escriptorium.inria.fr/media/users/300/export_doc2601_test_prealable_pagexml_202306071737.zip\n", + "!unzip -o export_doc2601_test_prealable_pagexml_202306071737.zip" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "b522fbe3", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "CP23annotations.tsv\r\n", + "cpgraec23_0119.pdf_page_1segm.xml\r\n", + "cpgraec23_0119.pdf_page_1.xml\r\n", + "cpgraec23A1.pdf\r\n", + "cpgraec23a.pdf\r\n", + "cpgraec23A.pdf\r\n", + "cpgraec23b.pdf\r\n", + "cpgraec23B.pdf\r\n", + "cpgraec23c.pdf\r\n", + "cpgraec23d.pdf\r\n", + "cpgraec23e.pdf\r\n", + "cpgraec23f.pdf\r\n", + "cpgraec23g.pdf\r\n", + "cpgraec23h.pdf\r\n", + "cpgraec23__z3-1.pdf\r\n", + "export_doc2601_test_prealable_pagexml_202306071737.zip\r\n", + "export_doc2601_test_prealable_pagexml_202306071737.zip.1\r\n", + "METS.xml\r\n", + "ModeleXML.ipynb\r\n", + "nom_de_votre_fichier_0119.xml\r\n", + "nom_de_votre_fichier.xml\r\n" + ] + } + ], + "source": [ + "ls" + ] + }, + { + "cell_type": "code", + "execution_count": 4, "id": "24a20ed4", "metadata": {}, "outputs": [], @@ -77,7 +142,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 8, "id": "6268f435", "metadata": {}, "outputs": [], @@ -89,7 +154,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 9, "id": "dcb0ece5", "metadata": {}, "outputs": [], @@ -100,6 +165,16 @@ "df['xwp'] = df['x_et_w'] * prop" ] }, + { + "cell_type": "code", + "execution_count": 10, + "id": "f27fbf1b", + "metadata": {}, + "outputs": [], + "source": [ + "df['idno'] = [i for i in range(len(df['xp']))]" + ] + }, { "cell_type": "code", "execution_count": 11, @@ -120,6 +195,26 @@ "df['page'] = df['img_man'].str.extract(page_regex)" ] }, + { + "cell_type": "code", + "execution_count": 13, + "id": "6ae2fe64", + "metadata": {}, + "outputs": [], + "source": [ + "df.dropna(subset=['xp'], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "id": "1f9b37ef", + "metadata": {}, + "outputs": [], + "source": [ + "df['texts'] = df['texts'].astype('string') " + ] + }, { "cell_type": "markdown", "id": "c37c5379", @@ -130,7 +225,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 96, "id": "08737d31", "metadata": {}, "outputs": [], @@ -142,7 +237,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 97, "id": "4a75ac3e", "metadata": {}, "outputs": [], @@ -153,7 +248,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 98, "id": "e1502aeb", "metadata": {}, "outputs": [], @@ -163,7 +258,374 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 86, + "id": "318aa762", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_210139/3011465290.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " page0119['texts'] = page0119['texts'].astype('string')\n" + ] + } + ], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 99, + "id": "e6ca4275", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "<div>\n", + "<style scoped>\n", + " .dataframe tbody tr th:only-of-type {\n", + " vertical-align: middle;\n", + " }\n", + "\n", + " .dataframe tbody tr th {\n", + " vertical-align: top;\n", + " }\n", + "\n", + " .dataframe thead th {\n", + " text-align: right;\n", + " }\n", + "</style>\n", + "<table border=\"1\" class=\"dataframe\">\n", + " <thead>\n", + " <tr style=\"text-align: right;\">\n", + " <th></th>\n", + " <th>coordinates</th>\n", + " <th>cut_img</th>\n", + " <th>img_man</th>\n", + " <th>link_app</th>\n", + " <th>texts</th>\n", + " <th>title</th>\n", + " <th>type</th>\n", + " <th>x_value</th>\n", + " <th>y_value</th>\n", + " <th>width_value</th>\n", + " <th>height_value</th>\n", + " <th>x_et_w</th>\n", + " <th>y_et_h</th>\n", + " <th>xp</th>\n", + " <th>yp</th>\n", + " <th>yhp</th>\n", + " <th>xwp</th>\n", + " <th>idno</th>\n", + " <th>page</th>\n", + " </tr>\n", + " </thead>\n", + " <tbody>\n", + " <tr>\n", + " <th>321</th>\n", + " <td><?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ...</td>\n", + " <td>[' http://digi.ub.uni-heidelberg.de/iiif/2/cpg...</td>\n", + " <td>https://digi.ub.uni-heidelberg.de/diglit/cpgra...</td>\n", + " <td>https://anthologiagraeca.org/api/scholia/urn:c...</td>\n", + " <td>['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...</td>\n", + " <td>Scholion 5.0.2</td>\n", + " <td>scholium</td>\n", + " <td>147.986276</td>\n", + " <td>136.479867</td>\n", + " <td>1204.464875</td>\n", + " <td>135.020084</td>\n", + " <td>1352.451152</td>\n", + " <td>271.499951</td>\n", + " <td>227.898866</td>\n", + " <td>210.178996</td>\n", + " <td>418.109925</td>\n", + " <td>2082.774774</td>\n", + " <td>321</td>\n", + " <td>0119</td>\n", + " </tr>\n", + " <tr>\n", + " <th>322</th>\n", + " <td><?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ...</td>\n", + " <td>[' http://digi.ub.uni-heidelberg.de/iiif/2/cpg...</td>\n", + " <td>https://digi.ub.uni-heidelberg.de/diglit/cpgra...</td>\n", + " <td>https://anthologiagraeca.org/api/scholia/urn:c...</td>\n", + " <td>['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...</td>\n", + " <td>Scholion 5.0.2</td>\n", + " <td>scholium</td>\n", + " <td>147.986276</td>\n", + " <td>136.479867</td>\n", + " <td>1204.464875</td>\n", + " <td>135.020084</td>\n", + " <td>1352.451152</td>\n", + " <td>271.499951</td>\n", + " <td>227.898866</td>\n", + " <td>210.178996</td>\n", + " <td>418.109925</td>\n", + " <td>2082.774774</td>\n", + " <td>322</td>\n", + " <td>0119</td>\n", + " </tr>\n", + " <tr>\n", + " <th>323</th>\n", + " <td><?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ...</td>\n", + " <td>['http://digi.ub.uni-heidelberg.de/iiif/2/cpgr...</td>\n", + " <td>https://digi.ub.uni-heidelberg.de/diglit/cpgra...</td>\n", + " <td>http://anthologiagraeca.org/api/passages/urn:c...</td>\n", + " <td>[' τὴν καταφλεξίπολιν ΣθενελαÎδα, τὴν βαÏÏμισθ...</td>\n", + " <td>Epigram 5.2</td>\n", + " <td>epigram</td>\n", + " <td>181.953913</td>\n", + " <td>258.550997</td>\n", + " <td>944.233314</td>\n", + " <td>308.861364</td>\n", + " <td>1126.187226</td>\n", + " <td>567.412361</td>\n", + " <td>280.209025</td>\n", + " <td>398.168535</td>\n", + " <td>873.815036</td>\n", + " <td>1734.328329</td>\n", + " <td>323</td>\n", + " <td>0119</td>\n", + " </tr>\n", + " <tr>\n", + " <th>324</th>\n", + " <td><?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ...</td>\n", + " <td>['http://digi.ub.uni-heidelberg.de/iiif/2/cpgr...</td>\n", + " <td>https://digi.ub.uni-heidelberg.de/diglit/cpgra...</td>\n", + " <td>http://anthologiagraeca.org/api/scholia/urn:ct...</td>\n", + " <td>['á¼Î¹Ï‚ ΣθενελαÎδα τὴν á¼Ï„αίÏαν']</td>\n", + " <td>Scholion 5.2.1</td>\n", + " <td>scholium</td>\n", + " <td>1121.689392</td>\n", + " <td>274.274253</td>\n", + " <td>286.529834</td>\n", + " <td>129.013433</td>\n", + " <td>1408.219227</td>\n", + " <td>403.287686</td>\n", + " <td>1727.401664</td>\n", + " <td>422.382350</td>\n", + " <td>621.063037</td>\n", + " <td>2168.657609</td>\n", + " <td>324</td>\n", + " <td>0119</td>\n", + " </tr>\n", + " <tr>\n", + " <th>325</th>\n", + " <td><?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ...</td>\n", + " <td>[' http://digi.ub.uni-heidelberg.de/iiif/2/cpg...</td>\n", + " <td>https://digi.ub.uni-heidelberg.de/diglit/cpgra...</td>\n", + " <td>http://anthologiagraeca.org/api/passages/urn:c...</td>\n", + " <td>[' ὄÏθÏος ἔβη, ΧÏÏσιλλα, πάλαι δ᾽ ἠῷος ἀλÎκτωÏ...</td>\n", + " <td>Epigram 5.3</td>\n", + " <td>epigram</td>\n", + " <td>127.607158</td>\n", + " <td>558.886306</td>\n", + " <td>954.822846</td>\n", + " <td>287.682299</td>\n", + " <td>1082.430004</td>\n", + " <td>846.568605</td>\n", + " <td>196.515023</td>\n", + " <td>860.684911</td>\n", + " <td>1303.715652</td>\n", + " <td>1666.942206</td>\n", + " <td>325</td>\n", + " <td>0119</td>\n", + " </tr>\n", + " </tbody>\n", + "</table>\n", + "</div>" + ], + "text/plain": [ + " coordinates \\\n", + "321 <?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ... \n", + "322 <?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ... \n", + "323 <?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ... \n", + "324 <?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ... \n", + "325 <?xml version=\"1.0\" encoding=\"UTF-8\" ?>\\n<svg ... \n", + "\n", + " cut_img \\\n", + "321 [' http://digi.ub.uni-heidelberg.de/iiif/2/cpg... \n", + "322 [' http://digi.ub.uni-heidelberg.de/iiif/2/cpg... \n", + "323 ['http://digi.ub.uni-heidelberg.de/iiif/2/cpgr... \n", + "324 ['http://digi.ub.uni-heidelberg.de/iiif/2/cpgr... \n", + "325 [' http://digi.ub.uni-heidelberg.de/iiif/2/cpg... \n", + "\n", + " img_man \\\n", + "321 https://digi.ub.uni-heidelberg.de/diglit/cpgra... \n", + "322 https://digi.ub.uni-heidelberg.de/diglit/cpgra... \n", + "323 https://digi.ub.uni-heidelberg.de/diglit/cpgra... \n", + "324 https://digi.ub.uni-heidelberg.de/diglit/cpgra... \n", + "325 https://digi.ub.uni-heidelberg.de/diglit/cpgra... \n", + "\n", + " link_app \\\n", + "321 https://anthologiagraeca.org/api/scholia/urn:c... \n", + "322 https://anthologiagraeca.org/api/scholia/urn:c... \n", + "323 http://anthologiagraeca.org/api/passages/urn:c... \n", + "324 http://anthologiagraeca.org/api/scholia/urn:ct... \n", + "325 http://anthologiagraeca.org/api/passages/urn:c... \n", + "\n", + " texts title \\\n", + "321 ['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο... Scholion 5.0.2 \n", + "322 ['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο... Scholion 5.0.2 \n", + "323 [' τὴν καταφλεξίπολιν ΣθενελαÎδα, τὴν βαÏÏμισθ... Epigram 5.2 \n", + "324 ['á¼Î¹Ï‚ ΣθενελαÎδα τὴν á¼Ï„αίÏαν'] Scholion 5.2.1 \n", + "325 [' ὄÏθÏος ἔβη, ΧÏÏσιλλα, πάλαι δ᾽ ἠῷος ἀλÎκτωÏ... Epigram 5.3 \n", + "\n", + " type x_value y_value width_value height_value \\\n", + "321 scholium 147.986276 136.479867 1204.464875 135.020084 \n", + "322 scholium 147.986276 136.479867 1204.464875 135.020084 \n", + "323 epigram 181.953913 258.550997 944.233314 308.861364 \n", + "324 scholium 1121.689392 274.274253 286.529834 129.013433 \n", + "325 epigram 127.607158 558.886306 954.822846 287.682299 \n", + "\n", + " x_et_w y_et_h xp yp yhp \\\n", + "321 1352.451152 271.499951 227.898866 210.178996 418.109925 \n", + "322 1352.451152 271.499951 227.898866 210.178996 418.109925 \n", + "323 1126.187226 567.412361 280.209025 398.168535 873.815036 \n", + "324 1408.219227 403.287686 1727.401664 422.382350 621.063037 \n", + "325 1082.430004 846.568605 196.515023 860.684911 1303.715652 \n", + "\n", + " xwp idno page \n", + "321 2082.774774 321 0119 \n", + "322 2082.774774 322 0119 \n", + "323 1734.328329 323 0119 \n", + "324 2168.657609 324 0119 \n", + "325 1666.942206 325 0119 " + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "page0119.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "80fe6095", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "<div>\n", + "<style scoped>\n", + " .dataframe tbody tr th:only-of-type {\n", + " vertical-align: middle;\n", + " }\n", + "\n", + " .dataframe tbody tr th {\n", + " vertical-align: top;\n", + " }\n", + "\n", + " .dataframe thead th {\n", + " text-align: right;\n", + " }\n", + "</style>\n", + "<table border=\"1\" class=\"dataframe\">\n", + " <thead>\n", + " <tr style=\"text-align: right;\">\n", + " <th></th>\n", + " <th>coordinates</th>\n", + " <th>cut_img</th>\n", + " <th>img_man</th>\n", + " <th>link_app</th>\n", + " <th>texts</th>\n", + " <th>title</th>\n", + " <th>type</th>\n", + " <th>x_value</th>\n", + " <th>y_value</th>\n", + " <th>width_value</th>\n", + " <th>height_value</th>\n", + " <th>x_et_w</th>\n", + " <th>y_et_h</th>\n", + " <th>xp</th>\n", + " <th>yp</th>\n", + " <th>yhp</th>\n", + " <th>xwp</th>\n", + " <th>idno</th>\n", + " <th>page</th>\n", + " </tr>\n", + " </thead>\n", + " <tbody>\n", + " </tbody>\n", + "</table>\n", + "</div>" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [coordinates, cut_img, img_man, link_app, texts, title, type, x_value, y_value, width_value, height_value, x_et_w, y_et_h, xp, yp, yhp, xwp, idno, page]\n", + "Index: []" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[df[\"title\"] == \"Scholion 5.5.1\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "id": "50bc8b78", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "321 ['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...\n", + "322 ['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...\n", + "323 [' τὴν καταφλεξίπολιν ΣθενελαÎδα, τὴν βαÏÏμισθ...\n", + "324 ['á¼Î¹Ï‚ ΣθενελαÎδα τὴν á¼Ï„αίÏαν']\n", + "325 [' ὄÏθÏος ἔβη, ΧÏÏσιλλα, πάλαι δ᾽ ἠῷος ἀλÎκτωÏ...\n", + "326 ['ΆντιπάτÏου Θε\\nσαλονιχέως\\nεἰς ΧÏύσιλλαν \\n...\n", + "327 ['ΆντιπάτÏου Θε\\nσαλονιχέως\\nεἰς ΧÏύσιλλαν \\n...\n", + "328 ['τὸν σιγῶντα, Φιλαινί, συνίστοÏα τῶν ἀλαλήτων...\n", + "329 ['Φιλοδήμου\\nεἰς Φιλαινίδα\\nτὴν νεωτέÏαν']\n", + "330 []\n", + "331 ['á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\n...\n", + "332 ['á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\n...\n", + "333 ['á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\n...\n", + "336 ['ὤμοσε Καλλίγνωτος Ἰωνίδι, μήποτε κείνης\\nἕξε...\n", + "337 ['Καλλιμάχου']\n", + "338 ['εἰς Ἰωνίδα ἑταίÏαν Καλλιγνώστου']\n", + "339 [' λÏχνε, σὲ Î³á½°Ï Ï€Î±Ïεοῦσα Ï„Ïá½¶Ï‚ ὤμοσεν ἩÏάκλεια...\n", + "340 ['Ἀσκληπιάδου']\n", + "341 ['εἰς ἑταίÏαν ἩÏάκλειαν']\n", + "Name: texts, dtype: string" + ] + }, + "execution_count": 106, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "page0119['texts'].str.strip()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "7bc2c732", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 19, "id": "589b667a", "metadata": {}, "outputs": [], @@ -173,23 +635,351 @@ "\n", "# récupérer la balise <Page>\n", "page = tree.xpath('//pc:PcGts/pc:Page', namespaces={'pc': 'http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15'})[0]\n", - "i=0\n", "for index, row in page0119.iterrows():\n", - " i=i+1\n", " mescc = str(row['xp'])+','+str(row['yp'])+' '+str(row['xp'])+','+str(row['yhp'])+' '+str(row['xwp'])+','+str(row['yhp'])+' '+str(row['xwp'])+','+str(row['yp'])\n", - " text_region = etree.Element(\"TextRegion\", id=f\"eSc_textblock_{i}\")\n", + " text_region = etree.Element(\"TextRegion\", id=f\"eSc_textblock_{row['idno']}\")\n", " coords = etree.Element(\"Coords\", points=mescc)\n", " text_region.append(coords)\n", " page.append(text_region)\n", "\n", "# enregistrer les modifications dans le fichier XML\n", - "tree.write('nom_de_votre_fichier.xml', encoding='UTF-8', xml_declaration=True)" + "tree.write('nom_de_votre_fichier_0119.xml', encoding='UTF-8', xml_declaration=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "fd50ab8b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων ποιητῶν\n", + "1\n", + "['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων ποιητῶν']\n", + "321\n", + "á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων ποιητῶν\n", + "1\n", + "['á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων ποιητῶν']\n", + "322\n", + " τὴν καταφλεξίπολιν ΣθενελαÎδα, τὴν βαÏÏμισθον,\\nτὴν τοῖς βουλομÎνοις χÏυσὸν á¼ÏευγομÎνην\\nγυμνήν μοι διὰ νυκτὸς ὅλης παÏÎκλινεν ὄνειÏος\\nἄχÏι φίλης ἠοῦς Ï€Ïοῖκα χαÏιζομÎνην.\\n\\n οá½ÎºÎτι γουνάσομαι τὴν βάÏβαÏον, οá½Î´á¾½ á¼Ï€á¾½ á¼Î¼Î±Ï…τῷ\\nκλαÏσομαι, ὕπνον ἔχων κεῖνα χαÏιζόμενον.\n", + "6\n", + "['τὴν καταφλεξίπολιν ΣθενελαÎδα, τὴν βαÏÏμισθον,', 'τὴν τοῖς βουλομÎνοις χÏυσὸν á¼ÏευγομÎνην', 'γυμνήν μοι διὰ νυκτὸς ὅλης παÏÎκλινεν ὄνειÏος', 'ἄχÏι φίλης ἠοῦς Ï€Ïοῖκα χαÏιζομÎνην.', 'οá½ÎºÎτι γουνάσομαι τὴν βάÏβαÏον, οá½Î´á¾½ á¼Ï€á¾½ á¼Î¼Î±Ï…τῷ', 'κλαÏσομαι, ὕπνον ἔχων κεῖνα χαÏιζόμενον.']\n", + "323\n", + "á¼Î¹Ï‚ ΣθενελαÎδα τὴν á¼Ï„αίÏαν\n", + "1\n", + "['á¼Î¹Ï‚ ΣθενελαÎδα τὴν á¼Ï„αίÏαν']\n", + "324\n", + " ὄÏθÏος ἔβη, ΧÏÏσιλλα, πάλαι δ᾽ ἠῷος ἀλÎκτωÏ\\nκηÏÏσσων φθονεÏὴν ἨÏιγÎνειαν ἄγει.\\ná½€Ïνίθων á¼”ÏÏοις φθονεÏώτατος, á½…Ï‚ με διώκεις\\nοἴκοθεν εἰς πολλοὺς ἠιθÎων ὀάÏους.\\n\\n γηÏάσκεις, ΤιθωνÎ: τί Î³á½°Ï Ïƒá½´Î½ εá½Î½Îτιν Ἠῶ\\nοὕτως á½€ÏθÏιδίην ἤλασας á¼Îº λεχÎων;\n", + "6\n", + "['ὄÏθÏος ἔβη, ΧÏÏσιλλα, πάλαι δ᾽ ἠῷος ἀλÎκτωÏ', 'κηÏÏσσων φθονεÏὴν ἨÏιγÎνειαν ἄγει.', 'á½€Ïνίθων á¼”ÏÏοις φθονεÏώτατος, á½…Ï‚ με διώκεις', 'οἴκοθεν εἰς πολλοὺς ἠιθÎων ὀάÏους.', 'γηÏάσκεις, ΤιθωνÎ: τί Î³á½°Ï Ïƒá½´Î½ εá½Î½Îτιν Ἠῶ', 'οὕτως á½€ÏθÏιδίην ἤλασας á¼Îº λεχÎων;']\n", + "325\n", + "ΆντιπάτÏου Θε\\nσαλονιχέως\\nεἰς ΧÏύσιλλαν \\nτὴν ἑταῖÏαν\n", + "4\n", + "['ΆντιπάτÏου Θε', 'σαλονιχέως', 'εἰς ΧÏύσιλλαν', 'τὴν ἑταῖÏαν']\n", + "326\n", + "ΆντιπάτÏου Θε\\nσαλονιχέως\\nεἰς ΧÏύσιλλαν \\nτὴν ἑταῖÏαν\n", + "4\n", + "['ΆντιπάτÏου Θε', 'σαλονιχέως', 'εἰς ΧÏύσιλλαν', 'τὴν ἑταῖÏαν']\n", + "327\n", + "τὸν σιγῶντα, Φιλαινί, συνίστοÏα τῶν ἀλαλήτων\\nλÏχνον á¼Î»Î±Î¹Î·Ïῆς á¼ÎºÎ¼ÎµÎ¸Ïσασα δÏόσου,\\nἔξιθι: μαÏτυÏίην Î³á½°Ï á¼œÏως μόνος οá½Îº á¼Ï†Î¯Î»Î·ÏƒÎµÎ½\\nἔμπνουν καὶ πηκτὴν κλεῖε, Φιλαινί, θÏÏην.\\n\\n καὶ σÏ, φίλη Ξανθώ, με: σὺ δ᾽, ὦ φιλεÏάστÏια κοίτη,\\nἤδη τῆς Παφίης ἴσθι τὰ λειπόμενα.\n", + "6\n", + "['τὸν σιγῶντα, Φιλαινί, συνίστοÏα τῶν ἀλαλήτων', 'λÏχνον á¼Î»Î±Î¹Î·Ïῆς á¼ÎºÎ¼ÎµÎ¸Ïσασα δÏόσου,', 'ἔξιθι: μαÏτυÏίην Î³á½°Ï á¼œÏως μόνος οá½Îº á¼Ï†Î¯Î»Î·ÏƒÎµÎ½', 'ἔμπνουν καὶ πηκτὴν κλεῖε, Φιλαινί, θÏÏην.', 'καὶ σÏ, φίλη Ξανθώ, με: σὺ δ᾽, ὦ φιλεÏάστÏια κοίτη,', 'ἤδη τῆς Παφίης ἴσθι τὰ λειπόμενα.']\n", + "328\n", + "Φιλοδήμου\\nεἰς Φιλαινίδα\\nτὴν νεωτέÏαν\n", + "3\n", + "['Φιλοδήμου', 'εἰς Φιλαινίδα', 'τὴν νεωτέÏαν']\n", + "329\n", + "[]\n", + "1\n", + "['[]']\n", + "330\n", + "á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\nοὠπιστῇ λÏχνον Φλάκκος ἔδωκε Îάπῃ,\\ná¼§Ï‚ παÏá½° νῦν λεχÎεσσι μαÏαίνομαι, εἰς á¼Ï€Î¹ÏŒÏκου\\nπαντοπαθῆ κοÏÏης αἴσχεα δεÏκόμενος.\\n\\n Φλάκκε, σὲ δ᾽ ἄγÏυπνον χαλεπαὶ τείÏουσι μÎÏιμναι:\\nἄμφω δ᾽ ἀλλήλων ἄνδιχα καιόμεθα.\n", + "6\n", + "['á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων', 'οὠπιστῇ λÏχνον Φλάκκος ἔδωκε Îάπῃ,', 'á¼§Ï‚ παÏá½° νῦν λεχÎεσσι μαÏαίνομαι, εἰς á¼Ï€Î¹ÏŒÏκου', 'παντοπαθῆ κοÏÏης αἴσχεα δεÏκόμενος.', 'Φλάκκε, σὲ δ᾽ ἄγÏυπνον χαλεπαὶ τείÏουσι μÎÏιμναι:', 'ἄμφω δ᾽ ἀλλήλων ἄνδιχα καιόμεθα.']\n", + "331\n", + "á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\nοὠπιστῇ λÏχνον Φλάκκος ἔδωκε Îάπῃ,\\ná¼§Ï‚ παÏá½° νῦν λεχÎεσσι μαÏαίνομαι, εἰς á¼Ï€Î¹ÏŒÏκου\\nπαντοπαθῆ κοÏÏης αἴσχεα δεÏκόμενος.\\n\\n Φλάκκε, σὲ δ᾽ ἄγÏυπνον χαλεπαὶ τείÏουσι μÎÏιμναι:\\nἄμφω δ᾽ ἀλλήλων ἄνδιχα καιόμεθα.\n", + "6\n", + "['á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων', 'οὠπιστῇ λÏχνον Φλάκκος ἔδωκε Îάπῃ,', 'á¼§Ï‚ παÏá½° νῦν λεχÎεσσι μαÏαίνομαι, εἰς á¼Ï€Î¹ÏŒÏκου', 'παντοπαθῆ κοÏÏης αἴσχεα δεÏκόμενος.', 'Φλάκκε, σὲ δ᾽ ἄγÏυπνον χαλεπαὶ τείÏουσι μÎÏιμναι:', 'ἄμφω δ᾽ ἀλλήλων ἄνδιχα καιόμεθα.']\n", + "332\n", + "á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\nοὠπιστῇ λÏχνον Φλάκκος ἔδωκε Îάπῃ,\\ná¼§Ï‚ παÏá½° νῦν λεχÎεσσι μαÏαίνομαι, εἰς á¼Ï€Î¹ÏŒÏκου\\nπαντοπαθῆ κοÏÏης αἴσχεα δεÏκόμενος.\\n\\n Φλάκκε, σὲ δ᾽ ἄγÏυπνον χαλεπαὶ τείÏουσι μÎÏιμναι:\\nἄμφω δ᾽ ἀλλήλων ἄνδιχα καιόμεθα.\n", + "6\n", + "['á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων', 'οὠπιστῇ λÏχνον Φλάκκος ἔδωκε Îάπῃ,', 'á¼§Ï‚ παÏá½° νῦν λεχÎεσσι μαÏαίνομαι, εἰς á¼Ï€Î¹ÏŒÏκου', 'παντοπαθῆ κοÏÏης αἴσχεα δεÏκόμενος.', 'Φλάκκε, σὲ δ᾽ ἄγÏυπνον χαλεπαὶ τείÏουσι μÎÏιμναι:', 'ἄμφω δ᾽ ἀλλήλων ἄνδιχα καιόμεθα.']\n", + "333\n", + "ὤμοσε Καλλίγνωτος Ἰωνίδι, μήποτε κείνης\\nἕξειν μήτε φίλον κÏÎσσονα μήτε φίλην.\\nὤμοσεν: ἀλλὰ λÎγουσιν ἀληθÎα, τοὺς á¼Î½ á¼”Ïωτι\\ná½…Ïκους.μὴ δÏνειν οὔατ᾽ á¼Ï‚ ἀθανάτων.\\n\\n νῦν δ᾽ ὠμὲν á¼€Ïσενικῷ θÎÏεται πυÏί: τῆς δὲ ταλαίνης\\nνÏμφης, ὡς ΜεγαÏÎων, οὠλόγος οá½Î´á¾½ á¼€Ïιθμός. .\n", + "6\n", + "['ὤμοσε Καλλίγνωτος Ἰωνίδι, μήποτε κείνης', 'ἕξειν μήτε φίλον κÏÎσσονα μήτε φίλην.', 'ὤμοσεν: ἀλλὰ λÎγουσιν ἀληθÎα, τοὺς á¼Î½ á¼”Ïωτι', 'á½…Ïκους.μὴ δÏνειν οὔατ᾽ á¼Ï‚ ἀθανάτων.', 'νῦν δ᾽ ὠμὲν á¼€Ïσενικῷ θÎÏεται πυÏί: τῆς δὲ ταλαίνης', 'νÏμφης, ὡς ΜεγαÏÎων, οὠλόγος οá½Î´á¾½ á¼€Ïιθμός. .']\n", + "336\n", + "Καλλιμάχου\n", + "1\n", + "['Καλλιμάχου']\n", + "337\n", + "εἰς Ἰωνίδα ἑταίÏαν Καλλιγνώστου\n", + "1\n", + "['εἰς Ἰωνίδα ἑταίÏαν Καλλιγνώστου']\n", + "338\n", + " λÏχνε, σὲ Î³á½°Ï Ï€Î±Ïεοῦσα Ï„Ïá½¶Ï‚ ὤμοσεν ἩÏάκλεια\\nἥξειν, κοá½Ï‡ ἥκει: λÏχνε, σὺ δ᾽, εἰ θεὸς εἶ,\\n\\n τὴν δολίην ἀπάμυνον ὅταν φίλον ἔνδον ἔχουσα\\nπαίζῃ, ἀποσβεσθεὶς μηκÎτι φῶς πάÏεχε.', 'λÏχνε, σὲ Î³á½°Ï Ï€Î±Ïεοῦσα Ï„Ïá½¶Ï‚ ὤμοσεν ἩÏάκλεια\\nἥξειν, κοá½Ï‡ ἥκει• λÏχνε, σὺ δ᾽, εἰ θεὸς εἶ,\\nτὴν δολίην ἀπάμυνον• ὅταν φίλον ἔνδον ἔχουσα\\nπαίζῃ, ἀποσβεσθεὶς μηκÎτι φῶς πάÏεχε.\n", + "7\n", + "['λÏχνε, σὲ Î³á½°Ï Ï€Î±Ïεοῦσα Ï„Ïá½¶Ï‚ ὤμοσεν ἩÏάκλεια', 'ἥξειν, κοá½Ï‡ ἥκει: λÏχνε, σὺ δ᾽, εἰ θεὸς εἶ,', 'τὴν δολίην ἀπάμυνον ὅταν φίλον ἔνδον ἔχουσα', \"παίζῃ, ἀποσβεσθεὶς μηκÎτι φῶς πάÏεχε.', 'λÏχνε, σὲ Î³á½°Ï Ï€Î±Ïεοῦσα Ï„Ïá½¶Ï‚ ὤμοσεν ἩÏάκλεια\", 'ἥξειν, κοá½Ï‡ ἥκει• λÏχνε, σὺ δ᾽, εἰ θεὸς εἶ,', 'τὴν δολίην ἀπάμυνον• ὅταν φίλον ἔνδον ἔχουσα', 'παίζῃ, ἀποσβεσθεὶς μηκÎτι φῶς πάÏεχε.']\n", + "339\n", + "Ἀσκληπιάδου\n", + "1\n", + "['Ἀσκληπιάδου']\n", + "340\n", + "εἰς ἑταίÏαν ἩÏάκλειαν\n", + "1\n", + "['εἰς ἑταίÏαν ἩÏάκλειαν']\n", + "341\n" + ] + } + ], + "source": [ + "# prendre le txt et le split sur le n puis inject dans xml\n", + "\n", + "for index, row in page0119.iterrows():\n", + " text = row['texts'].replace(\"['\",\"\").replace(\"']\",\"\")\n", + " print(text)\n", + " lines = text.split(\"\\\\n\")\n", + " lines = [l.strip() for l in lines if len(l) > 0] #enleve blanks\n", + " print(len(lines))\n", + " print(lines)\n", + " print(row['idno'])\n", + "#page0119['texts']\n", + " \n", + " \n", + "\n", + "#pour chaque ligne : texte, nombre de ligne de textes, id \n", + "#Alix dit : xml, pour chaque région, quel id, cb de txt lines, cb de txts attendus dans le df ; combien sont ambigus" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "aca1bb45", + "metadata": {}, + "outputs": [], + "source": [ + "file_name = \"cpgraec23_\"+ thepage + \".pdf_page_1.xml\"\n", + "\n", + "with open(file_name, 'rb') as file:\n", + " xml = file.read()" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "3898fa59", + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "('Lengths must match to compare', (19,), (1,))", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mValueError\u001b[0m Traceback (most recent call last)", + "Input \u001b[0;32mIn [53]\u001b[0m, in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0m page0119[\u001b[43mpage0119\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43midno\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m==\u001b[39;49m\u001b[43m \u001b[49m\u001b[43mid_\u001b[49m]\n", + "File \u001b[0;32m~/.local/lib/python3.8/site-packages/pandas/core/ops/common.py:70\u001b[0m, in \u001b[0;36m_unpack_zerodim_and_defer.<locals>.new_method\u001b[0;34m(self, other)\u001b[0m\n\u001b[1;32m 66\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mNotImplemented\u001b[39m\n\u001b[1;32m 68\u001b[0m other \u001b[38;5;241m=\u001b[39m item_from_zerodim(other)\n\u001b[0;32m---> 70\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mmethod\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mother\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/.local/lib/python3.8/site-packages/pandas/core/arraylike.py:40\u001b[0m, in \u001b[0;36mOpsMixin.__eq__\u001b[0;34m(self, other)\u001b[0m\n\u001b[1;32m 38\u001b[0m \u001b[38;5;129m@unpack_zerodim_and_defer\u001b[39m(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m__eq__\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[1;32m 39\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21m__eq__\u001b[39m(\u001b[38;5;28mself\u001b[39m, other):\n\u001b[0;32m---> 40\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_cmp_method\u001b[49m\u001b[43m(\u001b[49m\u001b[43mother\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43moperator\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43meq\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/.local/lib/python3.8/site-packages/pandas/core/series.py:5623\u001b[0m, in \u001b[0;36mSeries._cmp_method\u001b[0;34m(self, other, op)\u001b[0m\n\u001b[1;32m 5620\u001b[0m rvalues \u001b[38;5;241m=\u001b[39m extract_array(other, extract_numpy\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m, extract_range\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m)\n\u001b[1;32m 5622\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m np\u001b[38;5;241m.\u001b[39merrstate(\u001b[38;5;28mall\u001b[39m\u001b[38;5;241m=\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mignore\u001b[39m\u001b[38;5;124m\"\u001b[39m):\n\u001b[0;32m-> 5623\u001b[0m res_values \u001b[38;5;241m=\u001b[39m \u001b[43mops\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcomparison_op\u001b[49m\u001b[43m(\u001b[49m\u001b[43mlvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mrvalues\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mop\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 5625\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_construct_result(res_values, name\u001b[38;5;241m=\u001b[39mres_name)\n", + "File \u001b[0;32m~/.local/lib/python3.8/site-packages/pandas/core/ops/array_ops.py:260\u001b[0m, in \u001b[0;36mcomparison_op\u001b[0;34m(left, right, op)\u001b[0m\n\u001b[1;32m 255\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(rvalues, (np\u001b[38;5;241m.\u001b[39mndarray, ABCExtensionArray)):\n\u001b[1;32m 256\u001b[0m \u001b[38;5;66;03m# TODO: make this treatment consistent across ops and classes.\u001b[39;00m\n\u001b[1;32m 257\u001b[0m \u001b[38;5;66;03m# We are not catching all listlikes here (e.g. frozenset, tuple)\u001b[39;00m\n\u001b[1;32m 258\u001b[0m \u001b[38;5;66;03m# The ambiguous case is object-dtype. See GH#27803\u001b[39;00m\n\u001b[1;32m 259\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mlen\u001b[39m(lvalues) \u001b[38;5;241m!=\u001b[39m \u001b[38;5;28mlen\u001b[39m(rvalues):\n\u001b[0;32m--> 260\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mValueError\u001b[39;00m(\n\u001b[1;32m 261\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mLengths must match to compare\u001b[39m\u001b[38;5;124m\"\u001b[39m, lvalues\u001b[38;5;241m.\u001b[39mshape, rvalues\u001b[38;5;241m.\u001b[39mshape\n\u001b[1;32m 262\u001b[0m )\n\u001b[1;32m 264\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m should_extension_dispatch(lvalues, rvalues) \u001b[38;5;129;01mor\u001b[39;00m (\n\u001b[1;32m 265\u001b[0m (\u001b[38;5;28misinstance\u001b[39m(rvalues, (Timedelta, BaseOffset, Timestamp)) \u001b[38;5;129;01mor\u001b[39;00m right \u001b[38;5;129;01mis\u001b[39;00m NaT)\n\u001b[1;32m 266\u001b[0m \u001b[38;5;129;01mand\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m is_object_dtype(lvalues\u001b[38;5;241m.\u001b[39mdtype)\n\u001b[1;32m 267\u001b[0m ):\n\u001b[1;32m 268\u001b[0m \u001b[38;5;66;03m# Call the method on lvalues\u001b[39;00m\n\u001b[1;32m 269\u001b[0m res_values \u001b[38;5;241m=\u001b[39m op(lvalues, rvalues)\n", + "\u001b[0;31mValueError\u001b[0m: ('Lengths must match to compare', (19,), (1,))" + ] + } + ], + "source": [ + "page0119[page0119['idno'] == id_]" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "id": "f78883cd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "5\n", + "321 á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...\n", + "1\n", + "['321 á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...']\n", + "321 321\n", + "Name: idno, dtype: int64\n", + "9\n", + "323 τὴν καταφλεξίπολιν ΣθενελαÎδα, τὴν βαÏÏμισθ...\n", + "1\n", + "['323 τὴν καταφλεξίπολιν ΣθενελαÎδα, τὴν βαÏÏμισθ...']\n", + "323 323\n", + "Name: idno, dtype: int64\n", + "6\n", + "325 ὄÏθÏος ἔβη, ΧÏÏσιλλα, πάλαι δ᾽ ἠῷος ἀλÎκτωÏ...\n", + "1\n", + "['325 ὄÏθÏος ἔβη, ΧÏÏσιλλα, πάλαι δ᾽ ἠῷος ἀλÎκτωÏ...']\n", + "325 325\n", + "Name: idno, dtype: int64\n", + "7\n", + "328 τὸν σιγῶντα, Φιλαινί, συνίστοÏα τῶν ἀλαλήτων...\n", + "1\n", + "['328 τὸν σιγῶντα, Φιλαινί, συνίστοÏα τῶν ἀλαλήτων...']\n", + "328 328\n", + "Name: idno, dtype: int64\n", + "3\n", + "331 á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\n...\n", + "2\n", + "['331 á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων', '...']\n", + "331 331\n", + "Name: idno, dtype: int64\n", + "2\n", + "324 á¼Î¹Ï‚ ΣθενελαÎδα τὴν á¼Ï„αίÏαν\n", + "1\n", + "['324 á¼Î¹Ï‚ ΣθενελαÎδα τὴν á¼Ï„αίÏαν']\n", + "324 324\n", + "Name: idno, dtype: int64\n", + "4\n", + "332 á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\n...\n", + "2\n", + "['332 á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων', '...']\n", + "332 332\n", + "Name: idno, dtype: int64\n", + "3\n", + "326 ΆντιπάτÏου Θε\\nσαλονιχέως\\nεἰς ΧÏύσιλλαν \\n...\n", + "4\n", + "['326 ΆντιπάτÏου Θε', 'σαλονιχέως', 'εἰς ΧÏύσιλλαν', '...']\n", + "326 326\n", + "Name: idno, dtype: int64\n", + "1\n", + "327 ΆντιπάτÏου Θε\\nσαλονιχέως\\nεἰς ΧÏύσιλλαν \\n...\n", + "4\n", + "['327 ΆντιπάτÏου Θε', 'σαλονιχέως', 'εἰς ΧÏύσιλλαν', '...']\n", + "327 327\n", + "Name: idno, dtype: int64\n", + "4\n", + "333 á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων\\n...\n", + "2\n", + "['333 á¼€ÏγÏÏεον νυχίων με συνίστοÏα πιστὸν á¼Ïώτων', '...']\n", + "333 333\n", + "Name: idno, dtype: int64\n", + "1\n", + "329 Φιλοδήμου\\nεἰς Φιλαινίδα\\nτὴν νεωτέÏαν\n", + "3\n", + "['329 Φιλοδήμου', 'εἰς Φιλαινίδα', 'τὴν νεωτέÏαν']\n", + "329 329\n", + "Name: idno, dtype: int64\n", + "1\n", + "330 []\n", + "1\n", + "['330 []']\n", + "330 330\n", + "Name: idno, dtype: int64\n", + "5\n", + "336 ὤμοσε Καλλίγνωτος Ἰωνίδι, μήποτε κείνης\\nἕξε...\n", + "2\n", + "['336 ὤμοσε Καλλίγνωτος Ἰωνίδι, μήποτε κείνης', 'ἕξε...']\n", + "336 336\n", + "Name: idno, dtype: int64\n", + "1\n", + "337 Καλλιμάχου\n", + "1\n", + "['337 Καλλιμάχου']\n", + "337 337\n", + "Name: idno, dtype: int64\n", + "0\n", + "339 λÏχνε, σὲ Î³á½°Ï Ï€Î±Ïεοῦσα Ï„Ïá½¶Ï‚ ὤμοσεν ἩÏάκλεια...\n", + "1\n", + "['339 λÏχνε, σὲ Î³á½°Ï Ï€Î±Ïεοῦσα Ï„Ïá½¶Ï‚ ὤμοσεν ἩÏάκλεια...']\n", + "339 339\n", + "Name: idno, dtype: int64\n", + "0\n", + "340 Ἀσκληπιάδου\n", + "1\n", + "['340 Ἀσκληπιάδου']\n", + "340 340\n", + "Name: idno, dtype: int64\n", + "0\n", + "341 εἰς ἑταίÏαν ἩÏάκλειαν\n", + "1\n", + "['341 εἰς ἑταίÏαν ἩÏάκλειαν']\n", + "341 341\n", + "Name: idno, dtype: int64\n", + "0\n", + "338 εἰς Ἰωνίδα ἑταίÏαν Καλλιγνώστου\n", + "1\n", + "['338 εἰς Ἰωνίδα ἑταίÏαν Καλλιγνώστου']\n", + "338 338\n", + "Name: idno, dtype: int64\n", + "0\n", + "322 á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...\n", + "1\n", + "['322 á¼€Ïχή τῶν á¼Ïωτικῶν ÎπιγÏαμμάτων - διαφόÏων πο...']\n", + "322 322\n", + "Name: idno, dtype: int64\n" + ] + } + ], + "source": [ + "# charger le fichier XML\n", + "tree = etree.parse(file_name)\n", + "\n", + "# récupérer la balise <Page>\n", + "page = tree.xpath('//pc:PcGts/pc:Page', namespaces={'pc': 'http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15'})[0]\n", + "\n", + "#for TextRegion in page.iter():\n", + "# print(TextRegion.tag, TextRegion.xpath(\"@id\"))\n", + "\n", + "text_regions = page.xpath(\"pc:TextRegion\", namespaces={'pc': 'http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15'})\n", + "\n", + "for text_r in text_regions:\n", + " id_ = text_r.xpath('@id')[0].split(\"_\")[-1] # prends le _ dans la str, fais un liste à chaque _, id, 329, et -1 pcq dernier élément de la liste\n", + " print(len(text_r.xpath(\"pc:TextLine\", namespaces={'pc': 'http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15'})))\n", + " row = page0119[page0119['idno'] == int(id_)] #select la ligne de page 0119 qui a comme idno la valeur de id_\n", + "# print(row)\n", + " text = row['texts'].to_string().replace(\"['\",\"\").replace(\"']\",\"\")\n", + " print(text)\n", + " lines = text.split(\"\\\\n\")\n", + " lines = [l.strip() for l in lines if len(l) > 0] #enleve blanks\n", + " print(len(lines))\n", + " print(lines)\n", + " print(row['idno'])\n", + "\n", + "#for index, row in page0119.iterrows():\n", + "# mescc = str(row['xp'])+','+str(row['yp'])+' '+str(row['xp'])+','+str(row['yhp'])+' '+str(row['xwp'])+','+str(row['yhp'])+' '+str(row['xwp'])+','+str(row['yp'])\n", + "# text_region = etree.Element(\"TextRegion\", id=f\"eSc_textblock_{row['idno']}\")\n", + "## coords = etree.Element(\"Coords\", points=mescc)\n", + "# text_region.append(coords)\n", + "# page.append(text_region)\n", + "\n", + "# enregistrer les modifications dans le fichier XML\n", + "#tree.write('nom_de_votre_fichier_0119.xml', encoding='UTF-8', xml_declaration=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "id": "2b61e3d9", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<class 'pandas.core.series.Series'>\n" + ] + } + ], + "source": [ + "test = page0119[page0119['idno'] == 322]\n", + "text = test['texts']\n", + "print(type(text))" ] }, { "cell_type": "code", "execution_count": null, - "id": "49ed3ad2", + "id": "5867915a", "metadata": {}, "outputs": [], "source": [] @@ -197,7 +987,37 @@ { "cell_type": "code", "execution_count": null, - "id": "fd50ab8b", + "id": "9dff2c0b", + "metadata": {}, + "outputs": [], + "source": [ + "df['id'] = df['id'].astype(\"string\")\n", + "\n", + "df['id'] = pandas.Series(df['id'], dtype=\"string\")\n", + "\n", + "df['id'] = pandas.Series(df['id'], dtype=pandas.StringDtype)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3758070f", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "3ea47364", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "021ccba4", "metadata": {}, "outputs": [], "source": [] @@ -217,7 +1037,8 @@ "- [ ] Réimporter les pages \n", "- [ ] Segmentation automatique de toutes les pages \n", "- [ ] XML, on réutilise le df pour faire, pour chaque région de texte, associer le texte pour chaque ligne \n", - "- [ ] On réimporte le tout sur eScriptorium \n" + "- [ ] On réimporte le tout sur eScriptorium \n", + "- [ ] Data: gérer les polygones " ] }, { diff --git a/jupyter/eScriptorium/cpgraec23_0119.pdf_page_1.xml b/jupyter/eScriptorium/cpgraec23_0119.pdf_page_1.xml index a2c850b6bf8cac351ddfe77140d42d9c843db715..39e2a5132bf3be32e304e85d7c207d654b19ac1c 100644 --- a/jupyter/eScriptorium/cpgraec23_0119.pdf_page_1.xml +++ b/jupyter/eScriptorium/cpgraec23_0119.pdf_page_1.xml @@ -2,14 +2,627 @@ <PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15/pagecontent.xsd"> <Metadata externalRef="pdf//cpgraec23_0119.pdf"> <Creator>escriptorium</Creator> - <Created>2023-05-05T15:43:58.851308+00:00</Created> - <LastChange>2023-05-05T15:43:58.851330+00:00</LastChange> + <Created>2023-06-07T18:21:58.458956+00:00</Created> + <LastChange>2023-06-07T18:21:58.458977+00:00</LastChange> </Metadata> <Page imageFilename="cpgraec23_0119.pdf_page_1.png" imageWidth="2479" imageHeight="3508"> - + <TextRegion id="eSc_textblock_321" > + <Coords points="227,210 227,418 2082,418 2082,210"/> + + + <TextLine id="eSc_line_88f3813d" custom="structure {type:default;}"> + <Coords points="1993,261 1974,259 1954,257 1935,255 1915,253 1896,251 1876,249 1824,249 1822,247 1808,239 1800,239 1781,239 1761,239 1742,239 1722,239 1703,239 1683,239 1664,239 1662,239 1633,247 1605,237 1605,237 1586,237 1566,237 1547,237 1527,237 1508,237 1488,237 1469,237 1449,235 1430,235 1411,235 1391,235 1372,235 1352,235 1338,235 1334,237 1315,235 1313,235 1294,235 1274,233 1255,233 1235,233 1216,233 1196,233 1194,233 1177,239 1142,233 1138,233 1118,233 1099,231 1081,231 1050,247 1032,247 1007,247 1003,247 929,229 923,229 904,229 884,229 865,229 845,229 826,229 806,229 787,229 767,228 763,228 750,237 648,233 647,233 528,247 514,247 506,247 434,233 432,233 364,245 360,247 360,292 360,329 444,321 465,331 467,331 469,331 471,331 473,331 475,331 520,313 627,319 629,319 631,319 660,309 707,331 717,335 719,335 721,335 723,335 736,331 826,302 1126,302 1151,317 1153,317 1155,317 1157,317 1210,305 1258,321 1260,321 1262,321 1264,321 1311,302 1492,302 1582,333 1590,335 1592,335 1594,335 2069,333 2071,311 2013,265 1993,261"/> + <Baseline points="360,292 890,270 1494,272 1779,302 2071,311"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_da32e46c" custom="structure {type:default;}"> + <Coords points="949,341 947,360 1015,356 1017,348 1017,286 953,286 949,341"/> + <Baseline points="949,341 1017,348"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_df1540b2" custom="structure {type:default;}"> + <Coords points="1038,358 1030,403 1058,401 1067,364 1075,288 1050,290 1038,358"/> + <Baseline points="1038,358 1067,364"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_8e56e06e" custom="structure {type:default;}"> + <Coords points="397,374 397,393 452,393 452,370 448,331 391,321 397,374"/> + <Baseline points="397,374 452,370"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_f1ab3455" custom="structure {type:default;}"> + <Coords points="1676,380 1679,409 1715,395 1715,376 1707,323 1670,329 1676,380"/> + <Baseline points="1676,380 1715,376"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_323" > + <Coords points="280,398 280,873 1734,873 1734,398"/> + + + <TextLine id="eSc_line_370910c8" custom="structure {type:default;}"> + <Coords points="309,473 450,463 668,477 769,483 771,483 810,477 869,469 941,477 956,479 958,479 999,477 1114,473 1134,479 1169,489 1171,489 1173,489 1220,479 1229,477 1231,479 1245,489 1247,489 1249,489 1251,489 1253,489 1288,479 1315,491 1317,491 1319,491 1444,479 1451,479 1453,479 1469,493 1471,493 1473,493 1475,493 1477,493 1504,483 1580,495 1582,495 1703,479 1705,456 1701,407 1469,411 1448,401 1430,391 1428,391 1383,391 1381,391 1379,391 1377,391 1366,399 1356,405 1336,397 1323,393 1321,393 1319,393 1317,393 1305,397 1280,407 1266,397 1257,389 1255,389 1253,389 1251,389 1153,391 1151,391 1149,391 1145,393 1128,405 906,405 875,403 861,387 857,385 857,383 855,383 853,383 730,381 654,381 652,381 650,381 645,383 590,399 510,399 491,385 489,385 487,385 485,385 420,395 393,378 391,378 389,378 387,378 385,378 383,378 337,391 315,376 311,436 309,473"/> + <Baseline points="311,436 1705,456"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_c3f09f8d" custom="structure {type:default;}"> + <Coords points="422,508 420,530 452,543 454,543 456,543 543,530 547,530 549,530 602,545 604,545 606,545 608,545 652,532 705,532 721,543 721,545 723,545 724,545 726,545 789,537 799,545 799,547 800,547 802,547 804,547 806,547 808,547 824,535 949,535 1009,551 1011,551 1013,551 1140,537 1153,549 1155,549 1157,549 1159,549 1161,549 1184,539 1196,551 1196,553 1198,553 1200,553 1202,555 1233,555 1233,553 1235,553 1237,553 1255,539 1305,555 1307,555 1309,557 1385,557 1385,555 1387,555 1412,543 1506,557 1508,557 1510,557 1539,543 1600,543 1601,524 1600,493 1510,493 1508,491 1494,479 1494,477 1492,477 1490,477 1488,477 1487,477 1485,477 1465,491 1461,491 1373,491 1370,489 1309,473 1307,473 1140,471 1138,471 1029,485 1015,485 672,481 672,479 658,467 658,465 656,465 654,465 584,465 582,465 580,465 578,465 565,477 551,465 549,465 547,465 483,463 481,463 422,475 422,508"/> + <Baseline points="422,508 1601,524"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_041d3e34" custom="structure {type:default;}"> + <Coords points="1644,588 1644,602 1664,602 1664,522 1664,485 1646,481 1644,522 1644,588"/> + <Baseline points="1644,522 1664,522"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_26595fb8" custom="structure {type:default;}"> + <Coords points="395,582 393,602 617,611 619,611 621,611 645,604 658,600 670,604 689,613 691,613 693,613 695,613 713,606 721,602 728,606 752,613 754,613 756,613 758,613 781,606 793,602 953,602 956,606 964,613 964,615 966,615 968,615 970,615 972,615 974,615 986,606 990,606 1030,617 1032,617 1034,619 1095,619 1095,617 1097,617 1099,617 1114,608 1116,606 1122,608 1161,619 1163,619 1165,619 1241,608 1251,608 1270,608 1487,623 1488,623 1644,610 1646,592 1644,557 1545,557 1541,555 1525,541 1524,541 1522,541 1520,541 1518,541 1488,555 1481,557 1471,553 1424,539 1422,539 1420,539 1340,553 1323,555 1317,551 1299,537 1297,537 1296,537 1239,537 1237,537 1235,537 1233,537 1218,551 1214,553 1075,553 1069,549 1042,537 1040,537 1038,537 974,547 962,549 960,547 941,533 939,533 937,533 824,532 822,532 820,532 785,545 779,547 779,545 767,535 767,533 765,533 763,533 762,533 760,533 732,545 726,547 723,545 703,532 701,532 699,532 697,532 647,543 637,545 633,543 606,530 604,530 602,530 395,539 395,582"/> + <Baseline points="395,582 687,578 1646,592"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_fb911aff" custom="structure {type:default;}"> + <Coords points="430,643 428,664 446,680 446,682 448,682 450,682 452,682 549,670 594,684 596,684 598,684 600,684 602,684 629,666 658,666 682,666 689,666 797,676 799,676 888,670 917,670 929,672 968,682 970,682 972,682 974,682 976,682 976,680 984,674 988,670 1027,670 1032,674 1050,689 1052,689 1054,689 1056,689 1432,684 1434,656 1434,625 1383,608 1381,608 1379,608 1329,615 1292,606 1290,606 1288,606 1286,606 1247,621 1071,621 1067,619 1005,602 1003,602 1001,602 999,602 997,602 978,617 978,619 880,619 877,615 851,600 849,600 847,600 779,600 777,600 775,600 773,600 773,602 758,613 758,615 756,613 719,598 717,598 715,598 537,611 524,611 522,611 510,600 510,598 508,598 506,598 457,596 456,596 454,596 430,608 430,643"/> + <Baseline points="430,643 1434,656"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_67b252ec" custom="structure {type:default;}"> + <Coords points="1477,656 1477,680 1490,684 1492,656 1492,635 1477,631 1477,656"/> + <Baseline points="1477,656 1492,656"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_774ab489" custom="structure {type:default;}"> + <Coords points="395,715 393,738 403,746 405,746 407,746 409,746 411,746 448,736 461,748 463,748 465,748 467,748 530,736 594,746 596,746 598,746 613,738 621,746 621,748 623,748 625,748 627,748 752,738 783,752 785,752 787,752 882,742 904,752 906,752 908,752 910,752 939,740 941,740 984,754 986,754 988,754 1034,744 1095,754 1097,754 1099,754 1124,742 1126,742 1128,742 1155,756 1157,756 1159,756 1522,748 1524,726 1524,676 1487,676 1485,676 1483,676 1481,676 1461,693 1372,693 1340,676 1336,674 1334,674 1245,674 1243,674 1241,674 1239,674 1237,676 1214,689 960,689 919,676 912,674 910,674 908,674 906,674 904,674 902,676 882,687 789,687 760,676 734,668 732,668 686,668 684,668 682,668 680,668 668,676 658,684 631,676 608,670 606,670 604,670 602,670 588,676 584,680 578,676 559,666 557,666 555,666 395,676 395,715"/> + <Baseline points="395,715 1524,726"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_1475eaf0" custom="structure {type:default;}"> + <Coords points="424,783 422,802 799,816 800,816 802,816 820,808 869,826 871,826 873,826 982,812 1003,828 1005,828 1007,828 1009,830 1235,830 1235,828 1237,828 1239,828 1239,826 1247,820 1258,828 1260,828 1262,828 1264,830 1403,830 1403,828 1405,828 1430,816 1461,828 1463,828 1465,828 1467,828 1524,810 1525,791 1525,762 1348,762 1325,756 1251,742 1249,742 1247,742 1218,754 1210,756 1190,754 1157,748 1155,748 1128,752 1089,758 1079,750 1069,742 1067,742 1066,742 1027,742 1025,742 1023,742 999,748 974,756 964,748 956,742 956,740 954,740 953,740 896,740 894,740 892,740 890,740 890,742 884,746 877,756 765,756 709,742 701,740 699,740 697,740 695,740 693,740 693,742 680,754 629,754 604,740 602,740 600,740 518,754 496,738 495,738 493,738 424,736 424,783"/> + <Baseline points="424,783 1525,791"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_a48b78de" custom="structure {type:default;}"> + <Coords points="391,847 389,878 615,875 623,882 625,882 625,884 627,884 629,884 631,884 633,884 639,882 664,875 691,882 707,888 709,888 711,890 826,890 826,888 853,884 884,878 919,884 964,892 966,892 1050,884 1085,882 1091,884 1108,894 1110,894 1112,894 1257,886 1297,884 1299,886 1309,894 1309,896 1311,896 1313,896 1315,896 1440,886 1459,886 1463,886 1492,900 1494,900 1496,902 1611,902 1611,900 1613,900 1615,900 1631,888 1633,865 1633,830 1525,830 1522,828 1500,812 1498,812 1496,812 1494,812 1372,826 1358,826 1346,824 1262,810 1260,810 1258,810 1214,822 1110,812 1108,812 1106,812 1105,812 1091,822 1075,808 1075,806 1073,806 1071,806 1069,806 1067,806 1015,820 1011,820 1009,820 954,808 953,808 888,818 886,818 882,818 806,802 760,802 758,802 756,802 754,802 736,816 717,802 715,802 713,802 711,802 582,814 574,814 572,814 563,804 563,802 561,802 559,802 557,802 555,802 532,814 530,814 502,799 500,799 498,799 496,799 495,799 495,800 481,812 391,812 391,847"/> + <Baseline points="391,847 1633,865"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_325" > + <Coords points="196,860 196,1303 1666,1303 1666,860"/> + + + <TextLine id="eSc_line_9fcf23f3" custom="structure {type:default;}"> + <Coords points="420,919 419,937 493,939 516,954 518,954 520,954 522,954 524,954 526,954 543,941 572,953 574,953 576,953 578,953 580,953 598,943 613,943 643,943 654,953 654,954 656,954 658,954 660,954 662,954 687,945 699,954 699,956 701,956 703,956 705,956 707,956 709,956 709,954 723,945 724,943 734,945 816,958 818,958 820,958 859,947 869,945 882,947 951,960 953,960 1054,951 1062,951 1067,951 1126,962 1128,962 1299,954 1301,929 1299,880 1202,878 1200,878 1198,878 1194,880 1173,890 1108,880 1075,875 1073,875 1071,875 1069,875 1069,877 1066,880 1056,890 1021,890 990,880 972,875 970,875 968,875 966,875 964,875 958,880 949,888 919,880 900,875 898,875 896,875 894,875 892,875 892,877 888,880 880,888 812,888 736,886 728,880 719,871 717,871 715,871 713,871 652,880 623,884 613,880 590,869 588,869 491,869 489,869 487,869 485,869 471,880 469,882 467,880 450,869 448,869 446,869 444,869 442,869 420,878 420,919"/> + <Baseline points="420,919 1301,929"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_5e584d68" custom="structure {type:default;}"> + <Coords points="385,984 383,1005 420,1023 422,1023 424,1023 426,1023 457,1007 555,1007 572,1019 574,1019 576,1019 578,1019 580,1019 606,1007 639,1023 641,1023 643,1023 695,1011 728,1025 730,1025 732,1027 808,1027 808,1025 877,1009 902,1021 904,1021 906,1021 1056,1011 1145,1027 1147,1027 1231,1015 1253,1029 1255,1029 1257,1029 1258,1029 1344,1017 1490,1029 1492,1029 1494,1029 1545,1011 1547,991 1547,962 1467,931 1465,931 1338,931 1336,931 1334,931 1297,951 1270,939 1268,939 1266,939 1264,939 1214,960 1052,960 1027,941 1025,941 1023,941 1021,941 1019,941 980,956 919,939 917,939 915,939 914,939 884,953 857,941 855,941 853,941 851,941 849,941 836,953 812,943 810,943 808,943 680,956 643,925 641,925 639,925 637,925 528,945 502,929 500,929 498,929 496,929 385,954 385,984"/> + <Baseline points="385,984 1547,991"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_ba01fc83" custom="structure {type:default;}"> + <Coords points="419,1048 417,1067 457,1081 459,1081 461,1081 611,1071 623,1081 625,1081 627,1081 754,1083 756,1083 1064,1075 1075,1085 1077,1085 1079,1085 1081,1087 1255,1087 1255,1085 1342,1073 1344,1054 1342,1023 1258,1023 1257,1021 1245,1011 1243,1011 1241,1011 1239,1011 1237,1011 1212,1019 1208,1021 1208,1019 1194,1009 1194,1007 1192,1007 1190,1007 1188,1007 1186,1007 1184,1007 1167,1019 1163,1021 1155,1019 1120,1005 1118,1005 1116,1005 1114,1005 1085,1017 1079,1019 1073,1017 1036,1003 1034,1003 1032,1003 1030,1003 990,1013 933,1007 931,1007 929,1007 927,1007 919,1013 912,1021 748,1021 732,1011 719,1001 717,1001 715,1001 713,1001 674,1009 650,1013 604,1007 576,1005 574,1005 572,1005 569,1007 547,1017 522,1007 510,1001 508,1001 506,1001 419,1003 419,1048"/> + <Baseline points="419,1048 1344,1054"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_424d43df" custom="structure {type:default;}"> + <Coords points="395,1118 393,1142 613,1132 742,1145 781,1149 783,1149 882,1147 884,1147 888,1145 908,1136 966,1147 995,1151 1171,1153 1173,1153 1175,1153 1177,1153 1186,1147 1196,1142 1218,1147 1231,1151 1233,1151 1235,1151 1307,1147 1325,1147 1327,1147 1336,1157 1338,1157 1340,1157 1342,1157 1483,1147 1485,1128 1483,1077 1350,1091 1319,1077 1315,1075 1313,1075 1311,1075 1303,1077 1249,1089 1208,1089 1196,1077 1194,1075 1194,1073 1192,1073 1190,1073 1116,1073 1114,1073 1112,1073 1110,1073 1110,1075 1108,1077 1097,1089 1056,1089 1046,1077 1042,1073 1042,1071 1040,1071 1038,1071 1036,1071 1034,1071 1017,1077 986,1085 822,1085 797,1077 773,1069 771,1069 769,1069 738,1077 715,1081 686,1077 621,1066 619,1066 561,1077 543,1079 532,1077 498,1066 496,1066 495,1066 395,1075 395,1118"/> + <Baseline points="395,1118 678,1114 1485,1128"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_60e35bc2" custom="structure {type:default;}"> + <Coords points="422,1175 420,1192 516,1210 518,1210 520,1210 522,1210 522,1208 537,1196 563,1196 596,1196 610,1210 610,1212 611,1212 613,1212 615,1212 676,1202 691,1214 693,1214 695,1214 697,1214 927,1204 933,1204 949,1216 949,1218 951,1218 953,1218 954,1218 1007,1206 1015,1204 1032,1206 1110,1216 1112,1216 1188,1210 1223,1221 1225,1221 1227,1221 1481,1214 1483,1190 1481,1159 1385,1159 1381,1157 1340,1142 1338,1142 1336,1142 1214,1153 1200,1142 1200,1140 1198,1140 1196,1140 1194,1140 1192,1140 1142,1153 1138,1153 1136,1153 1099,1143 1097,1143 1095,1143 984,1151 970,1151 968,1151 953,1138 953,1136 951,1136 949,1136 947,1136 945,1136 915,1149 888,1136 886,1136 820,1134 818,1134 668,1142 625,1132 623,1132 621,1132 563,1145 555,1145 547,1145 473,1132 471,1132 422,1142 422,1175"/> + <Baseline points="422,1175 1483,1190"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_ce920ed6" custom="structure {type:default;}"> + <Coords points="372,1241 370,1268 481,1264 528,1274 530,1274 532,1274 533,1274 571,1264 678,1278 713,1282 715,1282 717,1282 726,1280 763,1268 799,1280 806,1284 808,1284 810,1284 836,1282 923,1272 935,1284 937,1284 937,1286 939,1286 941,1286 943,1286 956,1284 1027,1274 1067,1288 1071,1288 1073,1288 1075,1288 1077,1288 1079,1288 1095,1276 1145,1276 1208,1290 1218,1292 1220,1292 1235,1292 1315,1282 1333,1294 1334,1294 1336,1294 1338,1294 1352,1294 1455,1286 1570,1297 1574,1264 1572,1227 1473,1229 1434,1223 1362,1212 1360,1212 1358,1212 1356,1212 1356,1214 1346,1221 1342,1225 1329,1221 1294,1212 1292,1212 1290,1212 1288,1212 1260,1220 1249,1223 1243,1220 1227,1206 1227,1204 1225,1204 1223,1204 1171,1202 1015,1200 1013,1200 1011,1200 1009,1200 988,1214 982,1218 882,1218 802,1218 795,1210 775,1194 773,1194 771,1194 732,1194 730,1194 728,1194 726,1194 709,1208 699,1214 635,1214 623,1206 608,1198 606,1198 604,1198 602,1198 576,1206 563,1210 559,1206 547,1196 547,1194 545,1194 543,1194 541,1194 539,1194 512,1204 496,1210 491,1204 475,1190 475,1188 473,1188 471,1188 469,1188 372,1200 372,1241"/> + <Baseline points="372,1241 1574,1264"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_328" > + <Coords points="191,1267 191,1723 1653,1723 1653,1267"/> + + + <TextLine id="eSc_line_ef70e05c" custom="structure {type:default;}"> + <Coords points="407,1313 405,1329 444,1344 446,1344 448,1344 524,1336 563,1346 565,1346 567,1346 569,1346 617,1333 660,1348 662,1348 664,1348 666,1348 721,1334 779,1350 781,1350 783,1350 785,1350 820,1336 908,1336 908,1338 923,1350 925,1350 927,1350 929,1350 1044,1340 1054,1340 1064,1340 1179,1358 1181,1358 1372,1346 1373,1329 1373,1296 1299,1296 1296,1292 1278,1280 1276,1280 1274,1280 1272,1280 1270,1280 1243,1290 1241,1292 1239,1290 1223,1278 1221,1278 1220,1278 1218,1278 1216,1278 1175,1288 1161,1292 1058,1292 1042,1284 1013,1274 1011,1274 843,1274 841,1274 839,1274 828,1278 814,1284 795,1278 777,1270 775,1270 773,1270 728,1276 670,1282 648,1272 635,1266 633,1266 631,1266 629,1266 615,1272 594,1282 530,1282 407,1266 407,1313"/> + <Baseline points="407,1313 802,1313 1373,1329"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_263dbf03" custom="structure {type:default;}"> + <Coords points="380,1407 504,1397 643,1410 645,1410 647,1410 672,1401 691,1412 697,1416 699,1416 701,1416 703,1416 705,1416 715,1412 738,1403 763,1412 769,1414 771,1414 773,1414 785,1412 826,1405 843,1412 859,1420 861,1420 863,1420 865,1420 880,1414 898,1405 917,1414 937,1422 939,1422 941,1422 943,1422 945,1422 945,1420 953,1414 960,1407 984,1407 1013,1414 1048,1424 1050,1424 1052,1424 1159,1416 1206,1412 1233,1416 1331,1432 1333,1432 1407,1418 1416,1416 1428,1418 1512,1436 1514,1436 1590,1418 1592,1401 1592,1366 1483,1364 1481,1362 1467,1348 1467,1346 1465,1346 1463,1346 1424,1344 1422,1344 1229,1354 1167,1356 1149,1350 1114,1340 1112,1340 1110,1340 1108,1340 1106,1340 1097,1350 1091,1354 1021,1354 1001,1346 962,1334 960,1334 861,1333 859,1333 857,1333 836,1342 824,1346 777,1340 701,1329 699,1329 697,1329 695,1329 684,1336 670,1344 401,1340 385,1327 381,1373 380,1407"/> + <Baseline points="381,1373 1592,1401"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_95221714" custom="structure {type:default;}"> + <Coords points="413,1436 411,1467 584,1463 703,1475 746,1479 748,1479 763,1477 797,1469 810,1477 816,1481 818,1481 820,1481 822,1483 1083,1483 1237,1483 1241,1485 1262,1494 1264,1494 1266,1494 1317,1487 1327,1485 1338,1487 1399,1498 1401,1498 1529,1488 1531,1463 1531,1432 1334,1432 1329,1426 1317,1416 1317,1414 1315,1414 1313,1414 1264,1412 1262,1412 1200,1422 1190,1424 1188,1422 1175,1412 1175,1410 1173,1410 1171,1410 1169,1410 1130,1418 999,1405 997,1405 995,1405 993,1405 976,1418 974,1418 871,1418 869,1414 863,1407 861,1407 861,1405 859,1405 857,1405 855,1405 793,1410 732,1397 730,1397 676,1409 600,1393 598,1393 596,1393 565,1407 413,1405 413,1436"/> + <Baseline points="413,1436 1247,1463 1531,1463"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_85e24d42" custom="structure {type:default;}"> + <Coords points="374,1516 372,1545 440,1535 498,1535 520,1551 522,1553 524,1553 526,1553 528,1553 541,1551 596,1539 652,1553 672,1557 754,1559 756,1559 758,1559 769,1555 793,1545 808,1555 814,1561 816,1561 818,1561 820,1561 822,1561 834,1557 847,1549 861,1557 871,1561 873,1561 875,1561 898,1557 939,1549 956,1559 970,1564 972,1564 974,1564 1017,1559 1060,1553 1069,1561 1075,1564 1075,1566 1077,1566 1079,1566 1081,1566 1122,1561 1149,1557 1179,1563 1223,1570 1225,1570 1319,1564 1375,1561 1385,1564 1405,1576 1407,1576 1409,1576 1411,1576 1434,1566 1444,1563 1451,1566 1481,1578 1483,1578 1485,1578 1487,1578 1522,1568 1533,1564 1623,1568 1627,1537 1625,1504 1537,1483 1535,1483 1448,1498 1440,1498 1432,1496 1383,1485 1381,1485 1379,1485 1377,1485 1356,1494 1352,1496 1299,1492 1169,1483 1167,1483 1138,1487 1118,1490 1101,1487 1040,1469 1038,1469 1036,1469 1034,1469 1032,1469 1015,1483 1013,1487 970,1487 958,1481 927,1467 925,1467 855,1465 853,1465 851,1465 814,1477 802,1481 785,1477 769,1471 767,1471 765,1471 763,1471 762,1471 756,1475 746,1481 724,1475 676,1459 674,1459 608,1459 606,1459 604,1459 602,1459 588,1469 586,1471 584,1469 572,1459 572,1457 571,1457 569,1457 465,1455 463,1455 461,1455 459,1455 448,1465 444,1469 434,1465 409,1453 407,1453 405,1453 403,1453 374,1461 374,1516"/> + <Baseline points="374,1516 532,1510 1292,1535 1627,1537"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_dec3f963" custom="structure {type:default;}"> + <Coords points="391,1576 389,1596 413,1609 415,1609 417,1609 463,1600 487,1615 489,1615 491,1615 493,1615 596,1613 598,1613 615,1605 619,1603 623,1605 662,1623 664,1623 769,1627 771,1627 773,1627 802,1613 814,1609 890,1609 900,1619 906,1623 906,1625 908,1625 910,1625 972,1633 974,1633 976,1633 978,1633 978,1631 988,1623 995,1615 1021,1625 1032,1629 1034,1629 1036,1629 1089,1627 1196,1625 1220,1635 1235,1640 1237,1640 1239,1640 1241,1640 1243,1640 1243,1639 1247,1635 1258,1625 1282,1637 1294,1642 1296,1642 1297,1642 1321,1639 1358,1633 1387,1642 1401,1646 1403,1646 1405,1646 1407,1646 1416,1644 1463,1629 1524,1648 1529,1611 1529,1582 1364,1563 1362,1563 1321,1570 1280,1557 1278,1557 1276,1557 1274,1557 1251,1568 1247,1572 1165,1572 1144,1563 1124,1557 1122,1557 1120,1557 1118,1557 1106,1561 1089,1568 1060,1559 1027,1549 1025,1549 1023,1549 1021,1549 997,1557 972,1564 863,1563 802,1547 771,1541 769,1541 738,1545 656,1555 559,1537 557,1537 555,1537 553,1537 533,1551 491,1533 489,1533 391,1529 391,1576"/> + <Baseline points="391,1576 1529,1611"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_af1f4aff" custom="structure {type:default;}"> + <Coords points="1617,1611 1629,1718 1644,1718 1633,1609 1623,1549 1607,1549 1617,1611"/> + <Baseline points="1617,1611 1633,1609"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_8fe4fca6" custom="structure {type:default;}"> + <Coords points="305,1639 304,1674 364,1666 387,1677 395,1681 397,1681 539,1685 541,1685 543,1685 557,1681 584,1674 608,1681 625,1689 627,1689 629,1689 682,1683 738,1677 746,1685 754,1691 754,1693 756,1693 758,1693 760,1693 820,1687 867,1681 923,1689 1015,1701 1017,1701 1085,1691 1106,1689 1128,1693 1184,1703 1186,1703 1247,1695 1249,1695 1251,1695 1264,1707 1264,1709 1266,1709 1268,1709 1270,1709 1272,1709 1315,1697 1334,1711 1336,1711 1338,1711 1405,1713 1407,1713 1494,1699 1496,1676 1496,1644 1393,1642 1391,1640 1354,1623 1352,1623 1350,1623 1348,1623 1313,1639 1296,1639 1255,1639 1253,1637 1231,1619 1229,1619 1227,1619 1225,1619 1103,1629 1040,1613 1038,1613 1036,1613 1034,1613 995,1629 993,1629 990,1629 906,1613 904,1613 902,1613 875,1625 838,1607 836,1607 834,1607 763,1621 633,1619 604,1600 602,1600 600,1600 516,1598 514,1598 512,1598 510,1598 496,1609 483,1598 481,1598 479,1598 477,1598 415,1611 413,1611 348,1598 346,1598 344,1598 305,1607 305,1639"/> + <Baseline points="305,1639 1496,1676"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_331" > + <Coords points="214,1698 214,1861 1535,1861 1535,1698"/> + + + <TextLine id="eSc_line_a734b725" custom="structure {type:default;}"> + <Coords points="424,1713 422,1740 571,1738 619,1748 648,1754 650,1754 693,1750 758,1744 781,1752 797,1757 799,1757 800,1757 802,1757 820,1754 849,1746 884,1755 902,1759 904,1759 1056,1763 1058,1763 1060,1763 1067,1759 1085,1752 1157,1752 1171,1761 1177,1767 1179,1767 1181,1767 1182,1767 1206,1763 1243,1755 1255,1765 1258,1767 1258,1769 1260,1769 1262,1769 1264,1769 1266,1769 1278,1765 1297,1757 1311,1765 1319,1771 1321,1771 1323,1771 1325,1771 1373,1767 1449,1761 1469,1769 1477,1773 1479,1773 1481,1773 1483,1773 1485,1773 1487,1771 1496,1763 1545,1771 1549,1742 1543,1693 1498,1707 1457,1693 1455,1693 1453,1693 1268,1701 1243,1687 1241,1685 1239,1685 1237,1685 1235,1685 1220,1687 1147,1697 1114,1685 1105,1681 1103,1681 1101,1681 1081,1685 1027,1695 1003,1683 995,1679 993,1679 991,1679 958,1681 877,1691 843,1679 828,1676 826,1676 824,1676 793,1679 734,1687 666,1677 615,1670 613,1670 582,1676 551,1681 467,1679 463,1674 456,1668 456,1666 454,1666 452,1666 450,1666 448,1666 424,1672 424,1713"/> + <Baseline points="424,1713 1549,1742"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_194efa1f" custom="structure {type:default;}"> + <Coords points="393,1769 391,1792 678,1798 682,1804 691,1812 693,1812 695,1812 697,1812 791,1806 814,1806 818,1808 830,1818 832,1818 834,1818 836,1818 900,1810 910,1810 923,1812 1003,1824 1005,1824 1165,1820 1182,1820 1196,1820 1336,1837 1338,1837 1436,1828 1438,1806 1434,1763 1389,1775 1368,1761 1366,1761 1364,1761 1362,1761 1325,1767 1297,1759 1288,1755 1286,1755 1134,1750 1132,1750 1130,1750 1120,1754 1093,1763 1083,1752 1079,1750 1079,1748 1077,1748 1075,1748 1073,1748 1071,1748 1062,1752 1034,1761 978,1750 960,1746 958,1746 956,1746 951,1748 933,1757 890,1757 882,1746 880,1746 880,1744 878,1744 877,1744 875,1744 873,1744 867,1746 849,1754 834,1744 824,1740 822,1740 820,1740 789,1744 732,1750 637,1748 629,1738 621,1732 621,1730 619,1730 617,1730 615,1730 576,1736 547,1742 537,1736 524,1726 522,1726 520,1726 518,1726 516,1726 487,1734 469,1738 393,1732 393,1769"/> + <Baseline points="393,1769 691,1775 1438,1806"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_eacd4188" custom="structure {type:default;}"> + <Coords points="401,1828 399,1839 456,1857 457,1857 459,1857 461,1857 493,1845 496,1843 510,1845 569,1855 571,1855 598,1849 608,1847 615,1849 635,1859 637,1859 639,1859 695,1853 724,1851 730,1855 744,1867 746,1867 748,1867 750,1867 752,1867 771,1857 777,1855 791,1859 847,1870 849,1870 931,1865 982,1861 1005,1868 1034,1876 1036,1876 1095,1878 1097,1878 1099,1878 1101,1878 1108,1872 1120,1865 1132,1872 1142,1880 1144,1880 1145,1880 1147,1882 1305,1882 1307,1853 1307,1822 1132,1804 1130,1804 1032,1812 1023,1812 1011,1812 902,1796 900,1796 898,1796 869,1806 867,1806 783,1792 781,1792 699,1798 672,1789 670,1789 668,1789 666,1789 635,1798 602,1789 600,1789 598,1789 401,1791 401,1828"/> + <Baseline points="401,1828 674,1828 1307,1853"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_324" > + <Coords points="1727,422 1727,621 2168,621 2168,422"/> + + + <TextLine id="eSc_line_71e29217" custom="structure {type:default;}"> + <Coords points="1763,459 1761,485 2114,510 2120,483 2120,444 2091,420 2089,420 2087,420 2028,415 1978,413 1976,413 1974,413 1972,413 1945,432 1872,405 1870,405 1868,405 1867,405 1865,405 1831,424 1765,422 1763,459"/> + <Baseline points="1763,459 2120,483"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_d5840de0" custom="structure {type:default;}"> + <Coords points="1767,524 1765,561 1810,555 1837,567 1855,574 1857,574 2030,582 2032,582 2034,582 2059,576 2089,569 2122,578 2128,539 2128,506 2071,491 2069,491 2067,491 2032,498 2028,498 2024,498 1995,487 1993,487 1991,487 1989,487 1968,493 1948,498 1915,498 1907,489 1902,485 1902,483 1900,483 1898,483 1896,483 1868,487 1830,491 1767,479 1767,524"/> + <Baseline points="1767,524 2128,539"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_332" > + <Coords points="256,1822 256,2076 1464,2076 1464,1822"/> + + + <TextLine id="eSc_line_60843a79" custom="structure {type:default;}"> + <Coords points="405,1876 403,1892 483,1888 532,1900 533,1900 535,1900 537,1900 539,1900 563,1888 652,1890 676,1906 678,1906 680,1906 682,1906 687,1906 750,1896 839,1898 859,1911 861,1913 863,1913 865,1913 867,1913 875,1913 914,1904 931,1915 935,1917 937,1917 939,1917 941,1917 960,1915 1029,1907 1067,1919 1079,1923 1081,1923 1083,1923 1105,1921 1165,1913 1202,1925 1218,1929 1220,1929 1449,1933 1453,1913 1453,1880 1375,1876 1370,1867 1368,1867 1368,1865 1366,1865 1364,1865 1362,1865 1311,1874 1301,1874 1144,1870 1142,1867 1134,1857 1132,1857 1132,1855 1130,1855 1128,1855 1126,1855 1052,1863 1038,1865 1030,1863 990,1849 988,1849 986,1849 834,1855 820,1855 802,1853 613,1833 611,1833 405,1837 405,1876"/> + <Baseline points="405,1876 793,1876 1453,1913"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_e57581d9" custom="structure {type:default;}"> + <Coords points="563,1878 561,1878 559,1878 557,1878 543,1888 491,1878 489,1878 415,1886 415,1919 413,1939 450,1950 452,1950 454,1950 547,1944 594,1943 625,1948 680,1958 682,1958 684,1958 711,1952 732,1946 785,1946 793,1954 800,1960 800,1962 802,1962 804,1962 806,1962 902,1958 993,1956 1017,1964 1034,1970 1036,1970 1038,1970 1040,1970 1050,1966 1066,1958 1099,1966 1126,1974 1128,1974 1130,1976 1294,1976 1297,1944 1297,1917 1157,1900 1155,1900 1087,1909 1083,1909 1081,1909 1058,1896 1056,1896 1054,1896 978,1906 974,1906 966,1906 880,1892 878,1892 806,1900 793,1888 793,1886 791,1886 789,1886 732,1884 730,1884 728,1884 691,1896 674,1882 672,1882 670,1882 668,1882 604,1892 565,1878 563,1878"/> + <Baseline points="415,1919 693,1919 1297,1944"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_7bbfbb48" custom="structure {type:default;}"> + <Coords points="364,1983 362,2015 428,2017 430,2017 432,2017 457,2005 487,2019 493,2020 495,2020 496,2020 514,2019 567,2009 582,2019 586,2022 588,2022 590,2022 592,2022 621,2020 678,2015 699,2022 715,2026 717,2026 719,2026 744,2022 785,2015 804,2022 820,2030 822,2030 919,2034 921,2034 995,2026 1040,2022 1093,2028 1186,2040 1188,2040 1270,2032 1288,2030 1296,2032 1348,2048 1350,2048 1352,2048 1473,2034 1475,2015 1471,1966 1414,1978 1327,1976 1311,1962 1311,1960 1309,1960 1307,1960 1305,1960 1303,1960 1229,1972 1017,1952 1015,1952 1013,1952 986,1964 970,1952 968,1952 966,1952 964,1952 906,1960 839,1944 838,1944 836,1944 834,1944 777,1956 736,1941 734,1941 732,1941 730,1941 701,1952 680,1939 678,1939 676,1939 674,1939 670,1939 569,1950 555,1937 555,1935 553,1935 551,1935 549,1935 547,1935 489,1948 364,1929 364,1983"/> + <Baseline points="364,1983 744,1987 1475,2015"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_c7c0df15" custom="structure {type:default;}"> + <Coords points="399,2050 397,2071 518,2095 586,2097 588,2097 590,2097 639,2081 799,2087 820,2104 822,2104 824,2104 826,2104 828,2104 859,2093 880,2106 882,2106 884,2106 886,2106 888,2106 927,2091 999,2110 1001,2110 1003,2110 1067,2097 1243,2118 1245,2118 1247,2118 1278,2102 1313,2120 1315,2120 1317,2120 1422,2104 1424,2083 1424,2048 1258,2048 1249,2042 1237,2032 1235,2032 1233,2032 1231,2032 1190,2040 1175,2042 1155,2038 1118,2030 1116,2030 1089,2036 1069,2040 1064,2036 1052,2026 1050,2026 1048,2026 1046,2026 1044,2026 1019,2034 1003,2038 982,2032 943,2022 941,2022 939,2022 937,2022 910,2030 908,2030 902,2030 822,2019 820,2019 763,2026 738,2028 724,2024 699,2015 697,2015 695,2015 623,2020 580,2024 399,2015 399,2050"/> + <Baseline points="399,2050 1424,2083"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_326" > + <Coords points="1663,859 1663,1009 2113,1009 2113,859"/> + + + <TextLine id="eSc_line_6989f962" custom="structure {type:default;}"> + <Coords points="2056,826 1720,820 1720,865 1718,888 1890,888 1909,902 1917,910 1919,910 1921,910 1923,910 1925,910 1937,904 1952,896 1972,906 1983,912 1985,912 1987,914 2069,914 2071,873 2069,838 2056,826"/> + <Baseline points="1720,865 2071,873"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_104a00dd" custom="structure {type:default;}"> + <Coords points="1722,921 1720,951 2048,956 2052,931 2050,900 1958,884 1956,884 1954,884 1939,890 1927,896 1921,890 1913,884 1913,882 1911,882 1909,882 1907,882 1868,886 1812,892 1722,877 1722,921"/> + <Baseline points="1722,921 1888,933 2052,931"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_3320c5bd" custom="structure {type:default;}"> + <Coords points="1724,976 1722,1003 1792,1017 1794,1019 1831,1019 1831,1017 1833,1017 1835,1017 1843,1011 1855,1001 1880,1013 1890,1017 1892,1017 1894,1017 1915,1015 1976,1005 1989,1019 1991,1019 1991,1021 1993,1021 1995,1021 1997,1023 2056,1023 2058,986 2056,953 1925,939 1923,939 1724,941 1724,976"/> + <Baseline points="1724,976 2058,986"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_327" > + <Coords points="1664,993 1664,1142 2124,1142 2124,993"/> + + + <TextLine id="eSc_line_4bf4c791" custom="structure {type:default;}"> + <Coords points="1736,1029 1734,1046 1779,1058 1781,1058 1783,1058 1806,1050 1816,1062 1818,1062 1818,1064 1820,1064 1822,1064 1886,1073 1888,1073 2034,1054 2036,1036 2036,1009 1960,991 1958,991 1900,1003 1884,991 1884,990 1882,990 1880,990 1878,990 1876,990 1874,990 1859,1003 1857,1003 1736,999 1736,1029"/> + <Baseline points="1736,1029 2036,1036"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_333" > + <Coords points="212,2053 212,2368 1540,2368 1540,2053"/> + + + <TextLine id="eSc_line_6b6933bc" custom="structure {type:default;}"> + <Coords points="1555,2132 1490,2120 1488,2120 1446,2128 1434,2130 1416,2128 1340,2114 1338,2114 1336,2114 1313,2124 1303,2126 1272,2122 1220,2114 1218,2114 1175,2118 1144,2120 1136,2116 1118,2106 1116,2106 1114,2106 1081,2114 1060,2118 972,2110 914,2104 912,2104 867,2106 775,2108 762,2100 748,2095 746,2095 744,2095 703,2098 652,2104 594,2095 559,2089 557,2089 555,2089 543,2093 524,2098 506,2091 496,2087 495,2087 493,2087 475,2091 438,2097 378,2087 378,2128 376,2167 411,2169 413,2169 415,2169 417,2169 440,2151 520,2165 522,2165 610,2157 623,2171 623,2173 625,2173 627,2173 629,2173 631,2173 682,2159 705,2171 707,2171 709,2171 711,2171 738,2163 754,2176 754,2178 756,2178 758,2178 760,2178 828,2167 847,2182 849,2182 851,2182 853,2182 855,2182 857,2182 906,2167 953,2184 956,2186 958,2186 1009,2188 1011,2188 1013,2188 1015,2188 1017,2186 1036,2174 1060,2188 1064,2190 1066,2190 1067,2190 1069,2190 1075,2188 1120,2173 1136,2186 1136,2188 1138,2188 1140,2188 1142,2188 1233,2180 1249,2192 1251,2192 1253,2192 1255,2192 1257,2192 1294,2180 1354,2196 1368,2200 1370,2200 1555,2202 1559,2165 1557,2134 1555,2132"/> + <Baseline points="378,2128 1559,2165"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_1cd126e1" custom="structure {type:default;}"> + <Coords points="411,2186 409,2227 635,2217 682,2233 687,2235 689,2235 691,2235 693,2235 697,2233 726,2221 756,2235 771,2241 773,2241 775,2241 802,2235 820,2231 824,2235 830,2243 832,2243 832,2245 834,2245 836,2245 884,2247 886,2247 888,2247 890,2247 902,2237 908,2233 927,2237 984,2250 986,2250 1038,2239 1060,2235 1077,2241 1103,2249 1105,2249 1106,2249 1108,2249 1110,2249 1122,2241 1130,2237 1136,2241 1153,2250 1155,2250 1157,2250 1255,2245 1286,2258 1288,2258 1290,2258 1292,2258 1294,2258 1309,2245 1311,2245 1375,2245 1379,2223 1377,2192 1266,2188 1262,2186 1235,2173 1233,2173 1231,2173 1128,2180 1112,2180 1101,2178 1034,2165 1032,2165 1030,2165 997,2174 986,2176 890,2174 884,2169 871,2159 869,2159 867,2159 865,2159 863,2159 845,2167 838,2171 822,2167 781,2155 779,2155 777,2155 775,2155 758,2163 717,2153 715,2153 713,2153 711,2153 709,2153 697,2161 689,2165 656,2159 590,2147 588,2147 411,2147 411,2186"/> + <Baseline points="411,2186 935,2213 1379,2223"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_6022433c" custom="structure {type:default;}"> + <Coords points="354,2262 352,2286 652,2286 670,2295 676,2299 678,2299 680,2299 682,2299 779,2297 882,2295 888,2299 894,2305 894,2307 896,2307 898,2307 900,2307 935,2301 945,2299 953,2301 974,2309 976,2309 978,2309 1019,2303 1038,2299 1046,2303 1064,2313 1066,2313 1067,2313 1128,2305 1144,2303 1151,2305 1181,2317 1182,2317 1184,2317 1272,2309 1297,2321 1299,2321 1301,2321 1473,2311 1475,2293 1475,2258 1395,2256 1395,2254 1360,2239 1358,2239 1356,2239 1354,2239 1305,2252 1301,2252 1296,2252 1243,2235 1241,2235 1239,2235 1237,2235 1188,2249 1182,2249 1177,2249 1103,2231 1101,2231 964,2241 951,2241 949,2241 925,2227 923,2227 921,2227 919,2227 898,2239 896,2239 775,2237 769,2235 703,2219 701,2219 699,2219 697,2219 680,2231 678,2231 606,2217 604,2217 543,2223 528,2211 526,2211 524,2211 522,2211 520,2211 487,2223 405,2223 401,2223 391,2213 391,2211 389,2211 387,2211 385,2211 383,2211 354,2217 354,2262"/> + <Baseline points="354,2262 524,2260 1475,2293"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_887cd557" custom="structure {type:default;}"> + <Coords points="405,2342 457,2362 459,2362 461,2362 619,2354 703,2369 705,2369 707,2369 709,2369 709,2367 723,2356 724,2356 763,2358 824,2362 838,2375 839,2375 841,2375 843,2375 929,2365 947,2364 954,2365 980,2375 982,2375 984,2375 1025,2369 1036,2367 1040,2369 1052,2379 1052,2381 1054,2381 1056,2381 1058,2381 1099,2371 1112,2369 1138,2373 1221,2389 1223,2389 1225,2389 1253,2379 1276,2391 1278,2391 1280,2391 1383,2383 1385,2358 1381,2309 1333,2323 1264,2305 1262,2305 1260,2305 1169,2317 1118,2317 1110,2305 1108,2305 1108,2303 1106,2303 1105,2303 1103,2303 1101,2303 1062,2313 1011,2295 1007,2295 1005,2295 1003,2295 995,2295 923,2307 853,2291 843,2289 841,2289 839,2289 838,2289 810,2303 705,2286 697,2286 695,2286 693,2286 691,2286 691,2287 678,2299 633,2284 627,2282 625,2282 623,2282 608,2284 539,2291 522,2280 520,2278 518,2278 516,2278 514,2278 500,2280 430,2289 411,2276 407,2323 405,2342"/> + <Baseline points="407,2323 1385,2358"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_329" > + <Coords points="1635,1284 1635,1367 2081,1367 2081,1284"/> + + + <TextLine id="eSc_line_802f74e7" custom="structure {type:default;}"> + <Coords points="1720,1327 1718,1358 1771,1350 2028,1372 2032,1338 2030,1303 1985,1305 1978,1301 1958,1292 1956,1292 1954,1292 1952,1292 1950,1292 1939,1299 1931,1303 1886,1303 1863,1297 1773,1284 1771,1284 1720,1294 1720,1327"/> + <Baseline points="1720,1327 2032,1338"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_330" > + <Coords points="1667,1357 1667,1510 2085,1510 2085,1357"/> + + + <TextLine id="eSc_line_2ef776eb" custom="structure {type:default;}"> + <Coords points="1724,1387 1722,1420 1769,1430 1771,1430 1837,1420 1867,1416 1872,1420 1900,1438 1902,1438 1904,1438 1976,1440 1978,1440 1980,1440 1982,1440 1982,1438 2001,1420 2040,1418 2042,1393 2040,1354 1724,1348 1724,1387"/> + <Baseline points="1724,1387 2042,1393"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_336" > + <Coords points="171,2336 171,2795 1631,2795 1631,2336"/> + + + <TextLine id="eSc_line_c451a36b" custom="structure {type:default;}"> + <Coords points="343,2387 341,2406 393,2426 395,2426 397,2426 399,2426 426,2412 522,2418 539,2432 541,2432 543,2432 545,2432 643,2420 744,2440 746,2440 839,2428 859,2443 861,2443 863,2443 910,2445 912,2445 914,2445 947,2432 1093,2440 1106,2453 1108,2453 1110,2453 1112,2453 1182,2441 1247,2459 1249,2459 1309,2461 1311,2461 1313,2461 1340,2447 1354,2461 1354,2463 1356,2463 1358,2463 1360,2463 1362,2463 1399,2447 1401,2428 1401,2395 1379,2381 1377,2381 1375,2381 1373,2381 1372,2381 1370,2381 1352,2393 1315,2391 1292,2373 1290,2373 1288,2373 1286,2373 1204,2385 1190,2387 1099,2385 1095,2379 1083,2367 1083,2365 1081,2365 1079,2365 1077,2365 1075,2365 1040,2377 1032,2379 1030,2375 1021,2367 1019,2367 1017,2367 1015,2367 986,2373 970,2377 945,2371 910,2362 908,2362 906,2362 875,2367 843,2373 830,2365 822,2360 820,2360 818,2360 816,2360 767,2362 668,2365 648,2354 639,2348 637,2348 635,2348 633,2348 576,2350 440,2358 426,2342 424,2342 424,2340 422,2340 420,2340 343,2338 343,2387"/> + <Baseline points="343,2387 1401,2428"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_c3de1b5d" custom="structure {type:default;}"> + <Coords points="395,2455 393,2486 457,2477 512,2477 530,2490 530,2492 532,2492 533,2492 535,2492 537,2492 539,2492 539,2490 557,2480 580,2492 582,2492 584,2492 586,2492 594,2492 647,2482 660,2492 666,2498 668,2498 670,2498 672,2498 701,2492 736,2486 771,2494 800,2500 802,2500 804,2500 822,2494 843,2488 867,2496 912,2508 914,2508 915,2508 917,2508 956,2496 974,2492 1023,2494 1025,2498 1036,2510 1036,2512 1038,2512 1040,2512 1188,2516 1190,2516 1192,2516 1218,2506 1229,2517 1231,2517 1233,2517 1235,2517 1237,2517 1294,2500 1296,2482 1294,2449 1206,2449 1196,2445 1171,2430 1169,2430 1167,2430 1165,2430 1163,2430 1136,2443 1132,2445 988,2445 976,2440 954,2430 953,2430 951,2430 892,2436 855,2420 853,2420 851,2420 746,2434 719,2436 711,2432 676,2414 674,2414 672,2414 518,2418 457,2406 415,2406 413,2406 411,2406 409,2406 395,2416 395,2455"/> + <Baseline points="395,2455 1296,2482"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_5209bdc1" custom="structure {type:default;}"> + <Coords points="1611,2537 1451,2531 1383,2514 1381,2514 1290,2521 1270,2508 1268,2508 1266,2508 1190,2502 1188,2502 1079,2512 1064,2498 1064,2496 1062,2496 1060,2496 1015,2494 1013,2494 1011,2494 978,2508 929,2490 927,2490 925,2490 859,2502 838,2492 836,2492 834,2492 752,2496 723,2480 721,2480 719,2480 664,2492 625,2477 623,2477 621,2477 619,2477 576,2488 506,2475 504,2475 426,2482 411,2469 411,2467 409,2467 407,2467 405,2467 341,2478 341,2517 339,2547 378,2541 385,2551 387,2551 387,2553 389,2553 391,2553 393,2553 403,2553 446,2545 463,2554 469,2556 471,2556 473,2556 514,2556 598,2553 623,2558 641,2564 643,2564 645,2564 647,2564 658,2560 682,2553 695,2562 701,2566 703,2566 705,2566 707,2566 744,2564 810,2558 845,2566 871,2574 873,2574 875,2574 949,2570 1007,2568 1013,2572 1023,2580 1023,2582 1025,2582 1027,2582 1029,2582 1110,2576 1151,2574 1188,2580 1282,2593 1284,2593 1348,2584 1358,2584 1366,2586 1409,2599 1411,2599 1412,2599 1414,2599 1446,2588 1448,2588 1461,2599 1461,2601 1463,2601 1465,2601 1549,2605 1551,2605 1623,2593 1625,2572 1623,2564 1611,2537"/> + <Baseline points="341,2517 641,2525 1625,2572"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_581b4485" custom="structure {type:default;}"> + <Coords points="1512,2592 1418,2580 1416,2580 1414,2580 1401,2586 1391,2590 1387,2584 1379,2578 1379,2576 1377,2576 1375,2576 1373,2576 1333,2582 1319,2584 1315,2582 1307,2574 1305,2574 1303,2574 1301,2574 1299,2574 1297,2574 1292,2580 1284,2586 1204,2584 1198,2576 1194,2570 1192,2570 1192,2568 1190,2568 1188,2568 1186,2568 1184,2568 1167,2574 1145,2580 1067,2568 1044,2566 1042,2566 1040,2566 1034,2568 1009,2574 999,2566 993,2560 991,2560 990,2560 988,2560 986,2560 976,2564 962,2572 956,2564 954,2560 953,2560 953,2558 951,2558 949,2558 947,2558 915,2560 884,2564 877,2560 871,2554 869,2554 867,2554 865,2554 863,2554 853,2558 834,2566 828,2556 826,2554 824,2554 824,2553 822,2553 820,2553 818,2553 797,2554 754,2562 734,2553 726,2549 724,2549 723,2549 699,2551 637,2558 610,2547 606,2545 604,2545 602,2545 600,2545 598,2545 576,2554 500,2554 493,2543 491,2543 491,2541 489,2541 487,2541 485,2541 483,2541 454,2551 446,2541 444,2541 444,2539 442,2539 440,2539 438,2539 436,2539 409,2549 372,2535 370,2584 368,2619 537,2615 608,2627 641,2631 643,2631 660,2627 707,2617 730,2629 740,2634 742,2634 744,2634 746,2634 748,2634 752,2631 762,2621 814,2621 828,2631 830,2631 832,2631 834,2631 906,2625 917,2634 923,2638 923,2640 925,2640 927,2640 929,2640 956,2634 988,2629 1081,2638 1163,2646 1165,2646 1167,2646 1179,2640 1184,2638 1186,2640 1198,2652 1198,2654 1200,2654 1202,2654 1204,2654 1325,2650 1338,2660 1340,2660 1342,2660 1344,2660 1346,2660 1348,2660 1360,2650 1368,2656 1368,2658 1370,2658 1372,2658 1373,2658 1411,2652 1416,2662 1418,2662 1418,2664 1420,2664 1422,2664 1424,2664 1512,2648 1514,2623 1512,2592"/> + <Baseline points="370,2584 600,2588 1243,2621 1514,2623"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_de820b80" custom="structure {type:default;}"> + <Coords points="313,2601 302,2601 274,2611 274,2646 272,2669 380,2693 381,2693 457,2681 471,2679 479,2683 522,2701 524,2701 526,2701 528,2701 530,2701 541,2693 658,2705 660,2705 662,2705 664,2705 664,2703 674,2693 676,2693 678,2693 736,2708 738,2708 740,2708 783,2699 804,2695 820,2701 832,2707 834,2707 836,2707 838,2707 851,2703 867,2699 873,2705 880,2710 880,2712 882,2712 884,2712 886,2712 888,2712 890,2712 890,2710 896,2707 906,2697 1023,2699 1091,2716 1124,2724 1126,2724 1161,2720 1239,2712 1266,2726 1272,2730 1274,2730 1372,2732 1377,2689 1377,2658 1340,2642 1338,2642 1336,2642 1249,2650 1227,2632 1225,2632 1223,2632 1221,2632 1220,2632 1173,2648 1073,2627 1071,2627 878,2636 875,2636 871,2636 719,2617 717,2617 715,2617 674,2629 672,2629 623,2611 621,2611 619,2611 617,2611 615,2611 598,2625 440,2605 438,2605 383,2617 366,2601 366,2599 364,2599 362,2599 321,2597 319,2597 317,2597 313,2597 313,2601"/> + <Baseline points="274,2646 1377,2689"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_337" > + <Coords points="1653,2377 1653,2472 2026,2472 2026,2377"/> + + + <TextLine id="eSc_line_25ba4e4f" custom="structure {type:default;}"> + <Coords points="1699,2422 1699,2461 1730,2447 1814,2461 1886,2471 1888,2471 1890,2471 1919,2459 1921,2459 2024,2459 2026,2436 2024,2404 1699,2379 1699,2422"/> + <Baseline points="1699,2422 2026,2436"/> + <TextEquiv> + <Unicode></Unicode> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_339" > + <Coords points="154,2748 154,2867 1456,2867 1456,2748"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_340" > + <Coords points="1663,2816 1663,2886 2023,2886 2023,2816"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_341" > + <Coords points="1655,2871 1655,2989 2034,2989 2034,2871"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_338" > + <Coords points="1646,2464 1646,2611 2128,2611 2128,2464"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_322" > + <Coords points="227,210 227,418 2082,418 2082,210"/> + + </TextRegion> diff --git a/jupyter/eScriptorium/nom_de_votre_fichier.xml b/jupyter/eScriptorium/nom_de_votre_fichier.xml index baa973152a8ee0413e9d9c48218df45f7544b218..1f3b300efdf76b3accc74136e51d9a38cda8d11b 100644 --- a/jupyter/eScriptorium/nom_de_votre_fichier.xml +++ b/jupyter/eScriptorium/nom_de_votre_fichier.xml @@ -2,16 +2,629 @@ <PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15/pagecontent.xsd"> <Metadata externalRef="pdf//cpgraec23_0119.pdf"> <Creator>escriptorium</Creator> - <Created>2023-05-05T15:43:58.851308+00:00</Created> - <LastChange>2023-05-05T15:43:58.851330+00:00</LastChange> + <Created>2023-06-07T18:04:09.547338+00:00</Created> + <LastChange>2023-06-07T18:04:09.547360+00:00</LastChange> </Metadata> <Page imageFilename="cpgraec23_0119.pdf_page_1.png" imageWidth="2479" imageHeight="3508"> - + <TextRegion id="eSc_textblock_2"> + <Coords points="227,210 227,418 2082,418 2082,210"/> + + + <TextLine id="eSc_line_9fa4070e" custom="structure {type:default;}"> + <Coords points="1993,261 1974,259 1954,257 1935,255 1915,253 1896,251 1876,249 1824,249 1822,247 1808,239 1800,239 1781,239 1761,239 1742,239 1722,239 1703,239 1683,239 1664,239 1662,239 1633,247 1605,237 1605,237 1586,237 1566,237 1547,237 1527,237 1508,237 1488,237 1469,237 1449,235 1430,235 1411,235 1391,235 1372,235 1352,235 1338,235 1334,237 1315,235 1313,235 1294,235 1274,233 1255,233 1235,233 1216,233 1196,233 1194,233 1177,239 1142,233 1138,233 1118,233 1099,231 1081,231 1050,247 1032,247 1007,247 1003,247 929,229 923,229 904,229 884,229 865,229 845,229 826,229 806,229 787,229 767,228 763,228 750,237 648,233 647,233 528,247 514,247 506,247 434,233 432,233 364,245 360,247 360,292 360,329 444,321 465,331 467,331 469,331 471,331 473,331 475,331 520,313 627,319 629,319 631,319 660,309 707,331 717,335 719,335 721,335 723,335 736,331 826,302 1126,302 1151,317 1153,317 1155,317 1157,317 1210,305 1258,321 1260,321 1262,321 1264,321 1311,302 1492,302 1582,333 1590,335 1592,335 1594,335 2069,333 2071,311 2013,265 1993,261"/> + <Baseline points="360,292 890,270 1494,272 1779,302 2071,311"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_714e66c1" custom="structure {type:default;}"> + <Coords points="949,341 947,360 1015,356 1017,348 1017,286 953,286 949,341"/> + <Baseline points="949,341 1017,348"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_2315b781" custom="structure {type:default;}"> + <Coords points="1038,358 1030,403 1058,401 1067,364 1075,288 1050,290 1038,358"/> + <Baseline points="1038,358 1067,364"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_57f18bef" custom="structure {type:default;}"> + <Coords points="397,374 397,393 452,393 452,370 448,331 391,321 397,374"/> + <Baseline points="397,374 452,370"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_6d05852c" custom="structure {type:default;}"> + <Coords points="1676,380 1679,409 1715,395 1715,376 1707,323 1670,329 1676,380"/> + <Baseline points="1676,380 1715,376"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_3"> + <Coords points="280,398 280,873 1734,873 1734,398"/> + + + <TextLine id="eSc_line_fa773f18" custom="structure {type:default;}"> + <Coords points="309,473 450,463 668,477 769,483 771,483 810,477 869,469 941,477 956,479 958,479 999,477 1114,473 1134,479 1169,489 1171,489 1173,489 1220,479 1229,477 1231,479 1245,489 1247,489 1249,489 1251,489 1253,489 1288,479 1315,491 1317,491 1319,491 1444,479 1451,479 1453,479 1469,493 1471,493 1473,493 1475,493 1477,493 1504,483 1580,495 1582,495 1703,479 1705,456 1701,407 1469,411 1448,401 1430,391 1428,391 1383,391 1381,391 1379,391 1377,391 1366,399 1356,405 1336,397 1323,393 1321,393 1319,393 1317,393 1305,397 1280,407 1266,397 1257,389 1255,389 1253,389 1251,389 1153,391 1151,391 1149,391 1145,393 1128,405 906,405 875,403 861,387 857,385 857,383 855,383 853,383 730,381 654,381 652,381 650,381 645,383 590,399 510,399 491,385 489,385 487,385 485,385 420,395 393,378 391,378 389,378 387,378 385,378 383,378 337,391 315,376 311,436 309,473"/> + <Baseline points="311,436 1705,456"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_a359826e" custom="structure {type:default;}"> + <Coords points="422,508 420,530 452,543 454,543 456,543 543,530 547,530 549,530 602,545 604,545 606,545 608,545 652,532 705,532 721,543 721,545 723,545 724,545 726,545 789,537 799,545 799,547 800,547 802,547 804,547 806,547 808,547 824,535 949,535 1009,551 1011,551 1013,551 1140,537 1153,549 1155,549 1157,549 1159,549 1161,549 1184,539 1196,551 1196,553 1198,553 1200,553 1202,555 1233,555 1233,553 1235,553 1237,553 1255,539 1305,555 1307,555 1309,557 1385,557 1385,555 1387,555 1412,543 1506,557 1508,557 1510,557 1539,543 1600,543 1601,524 1600,493 1510,493 1508,491 1494,479 1494,477 1492,477 1490,477 1488,477 1487,477 1485,477 1465,491 1461,491 1373,491 1370,489 1309,473 1307,473 1140,471 1138,471 1029,485 1015,485 672,481 672,479 658,467 658,465 656,465 654,465 584,465 582,465 580,465 578,465 565,477 551,465 549,465 547,465 483,463 481,463 422,475 422,508"/> + <Baseline points="422,508 1601,524"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_e61438a5" custom="structure {type:default;}"> + <Coords points="1644,588 1644,602 1664,602 1664,522 1664,485 1646,481 1644,522 1644,588"/> + <Baseline points="1644,522 1664,522"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_dcf8df84" custom="structure {type:default;}"> + <Coords points="395,582 393,602 617,611 619,611 621,611 645,604 658,600 670,604 689,613 691,613 693,613 695,613 713,606 721,602 728,606 752,613 754,613 756,613 758,613 781,606 793,602 953,602 956,606 964,613 964,615 966,615 968,615 970,615 972,615 974,615 986,606 990,606 1030,617 1032,617 1034,619 1095,619 1095,617 1097,617 1099,617 1114,608 1116,606 1122,608 1161,619 1163,619 1165,619 1241,608 1251,608 1270,608 1487,623 1488,623 1644,610 1646,592 1644,557 1545,557 1541,555 1525,541 1524,541 1522,541 1520,541 1518,541 1488,555 1481,557 1471,553 1424,539 1422,539 1420,539 1340,553 1323,555 1317,551 1299,537 1297,537 1296,537 1239,537 1237,537 1235,537 1233,537 1218,551 1214,553 1075,553 1069,549 1042,537 1040,537 1038,537 974,547 962,549 960,547 941,533 939,533 937,533 824,532 822,532 820,532 785,545 779,547 779,545 767,535 767,533 765,533 763,533 762,533 760,533 732,545 726,547 723,545 703,532 701,532 699,532 697,532 647,543 637,545 633,543 606,530 604,530 602,530 395,539 395,582"/> + <Baseline points="395,582 687,578 1646,592"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_c5b3f38b" custom="structure {type:default;}"> + <Coords points="430,643 428,664 446,680 446,682 448,682 450,682 452,682 549,670 594,684 596,684 598,684 600,684 602,684 629,666 658,666 682,666 689,666 797,676 799,676 888,670 917,670 929,672 968,682 970,682 972,682 974,682 976,682 976,680 984,674 988,670 1027,670 1032,674 1050,689 1052,689 1054,689 1056,689 1432,684 1434,656 1434,625 1383,608 1381,608 1379,608 1329,615 1292,606 1290,606 1288,606 1286,606 1247,621 1071,621 1067,619 1005,602 1003,602 1001,602 999,602 997,602 978,617 978,619 880,619 877,615 851,600 849,600 847,600 779,600 777,600 775,600 773,600 773,602 758,613 758,615 756,613 719,598 717,598 715,598 537,611 524,611 522,611 510,600 510,598 508,598 506,598 457,596 456,596 454,596 430,608 430,643"/> + <Baseline points="430,643 1434,656"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_41d7145e" custom="structure {type:default;}"> + <Coords points="1477,656 1477,680 1490,684 1492,656 1492,635 1477,631 1477,656"/> + <Baseline points="1477,656 1492,656"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_753d27c8" custom="structure {type:default;}"> + <Coords points="395,715 393,738 403,746 405,746 407,746 409,746 411,746 448,736 461,748 463,748 465,748 467,748 530,736 594,746 596,746 598,746 613,738 621,746 621,748 623,748 625,748 627,748 752,738 783,752 785,752 787,752 882,742 904,752 906,752 908,752 910,752 939,740 941,740 984,754 986,754 988,754 1034,744 1095,754 1097,754 1099,754 1124,742 1126,742 1128,742 1155,756 1157,756 1159,756 1522,748 1524,726 1524,676 1487,676 1485,676 1483,676 1481,676 1461,693 1372,693 1340,676 1336,674 1334,674 1245,674 1243,674 1241,674 1239,674 1237,676 1214,689 960,689 919,676 912,674 910,674 908,674 906,674 904,674 902,676 882,687 789,687 760,676 734,668 732,668 686,668 684,668 682,668 680,668 668,676 658,684 631,676 608,670 606,670 604,670 602,670 588,676 584,680 578,676 559,666 557,666 555,666 395,676 395,715"/> + <Baseline points="395,715 1524,726"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_4401cd94" custom="structure {type:default;}"> + <Coords points="424,783 422,802 799,816 800,816 802,816 820,808 869,826 871,826 873,826 982,812 1003,828 1005,828 1007,828 1009,830 1235,830 1235,828 1237,828 1239,828 1239,826 1247,820 1258,828 1260,828 1262,828 1264,830 1403,830 1403,828 1405,828 1430,816 1461,828 1463,828 1465,828 1467,828 1524,810 1525,791 1525,762 1348,762 1325,756 1251,742 1249,742 1247,742 1218,754 1210,756 1190,754 1157,748 1155,748 1128,752 1089,758 1079,750 1069,742 1067,742 1066,742 1027,742 1025,742 1023,742 999,748 974,756 964,748 956,742 956,740 954,740 953,740 896,740 894,740 892,740 890,740 890,742 884,746 877,756 765,756 709,742 701,740 699,740 697,740 695,740 693,740 693,742 680,754 629,754 604,740 602,740 600,740 518,754 496,738 495,738 493,738 424,736 424,783"/> + <Baseline points="424,783 1525,791"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_edb043e8" custom="structure {type:default;}"> + <Coords points="391,847 389,878 615,875 623,882 625,882 625,884 627,884 629,884 631,884 633,884 639,882 664,875 691,882 707,888 709,888 711,890 826,890 826,888 853,884 884,878 919,884 964,892 966,892 1050,884 1085,882 1091,884 1108,894 1110,894 1112,894 1257,886 1297,884 1299,886 1309,894 1309,896 1311,896 1313,896 1315,896 1440,886 1459,886 1463,886 1492,900 1494,900 1496,902 1611,902 1611,900 1613,900 1615,900 1631,888 1633,865 1633,830 1525,830 1522,828 1500,812 1498,812 1496,812 1494,812 1372,826 1358,826 1346,824 1262,810 1260,810 1258,810 1214,822 1110,812 1108,812 1106,812 1105,812 1091,822 1075,808 1075,806 1073,806 1071,806 1069,806 1067,806 1015,820 1011,820 1009,820 954,808 953,808 888,818 886,818 882,818 806,802 760,802 758,802 756,802 754,802 736,816 717,802 715,802 713,802 711,802 582,814 574,814 572,814 563,804 563,802 561,802 559,802 557,802 555,802 532,814 530,814 502,799 500,799 498,799 496,799 495,799 495,800 481,812 391,812 391,847"/> + <Baseline points="391,847 1633,865"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_5"> + <Coords points="196,860 196,1303 1666,1303 1666,860"/> + + + <TextLine id="eSc_line_9bc7a8dc" custom="structure {type:default;}"> + <Coords points="420,919 419,937 493,939 516,954 518,954 520,954 522,954 524,954 526,954 543,941 572,953 574,953 576,953 578,953 580,953 598,943 613,943 643,943 654,953 654,954 656,954 658,954 660,954 662,954 687,945 699,954 699,956 701,956 703,956 705,956 707,956 709,956 709,954 723,945 724,943 734,945 816,958 818,958 820,958 859,947 869,945 882,947 951,960 953,960 1054,951 1062,951 1067,951 1126,962 1128,962 1299,954 1301,929 1299,880 1202,878 1200,878 1198,878 1194,880 1173,890 1108,880 1075,875 1073,875 1071,875 1069,875 1069,877 1066,880 1056,890 1021,890 990,880 972,875 970,875 968,875 966,875 964,875 958,880 949,888 919,880 900,875 898,875 896,875 894,875 892,875 892,877 888,880 880,888 812,888 736,886 728,880 719,871 717,871 715,871 713,871 652,880 623,884 613,880 590,869 588,869 491,869 489,869 487,869 485,869 471,880 469,882 467,880 450,869 448,869 446,869 444,869 442,869 420,878 420,919"/> + <Baseline points="420,919 1301,929"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_21bfce6a" custom="structure {type:default;}"> + <Coords points="385,984 383,1005 420,1023 422,1023 424,1023 426,1023 457,1007 555,1007 572,1019 574,1019 576,1019 578,1019 580,1019 606,1007 639,1023 641,1023 643,1023 695,1011 728,1025 730,1025 732,1027 808,1027 808,1025 877,1009 902,1021 904,1021 906,1021 1056,1011 1145,1027 1147,1027 1231,1015 1253,1029 1255,1029 1257,1029 1258,1029 1344,1017 1490,1029 1492,1029 1494,1029 1545,1011 1547,991 1547,962 1467,931 1465,931 1338,931 1336,931 1334,931 1297,951 1270,939 1268,939 1266,939 1264,939 1214,960 1052,960 1027,941 1025,941 1023,941 1021,941 1019,941 980,956 919,939 917,939 915,939 914,939 884,953 857,941 855,941 853,941 851,941 849,941 836,953 812,943 810,943 808,943 680,956 643,925 641,925 639,925 637,925 528,945 502,929 500,929 498,929 496,929 385,954 385,984"/> + <Baseline points="385,984 1547,991"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_ecc1e671" custom="structure {type:default;}"> + <Coords points="419,1048 417,1067 457,1081 459,1081 461,1081 611,1071 623,1081 625,1081 627,1081 754,1083 756,1083 1064,1075 1075,1085 1077,1085 1079,1085 1081,1087 1255,1087 1255,1085 1342,1073 1344,1054 1342,1023 1258,1023 1257,1021 1245,1011 1243,1011 1241,1011 1239,1011 1237,1011 1212,1019 1208,1021 1208,1019 1194,1009 1194,1007 1192,1007 1190,1007 1188,1007 1186,1007 1184,1007 1167,1019 1163,1021 1155,1019 1120,1005 1118,1005 1116,1005 1114,1005 1085,1017 1079,1019 1073,1017 1036,1003 1034,1003 1032,1003 1030,1003 990,1013 933,1007 931,1007 929,1007 927,1007 919,1013 912,1021 748,1021 732,1011 719,1001 717,1001 715,1001 713,1001 674,1009 650,1013 604,1007 576,1005 574,1005 572,1005 569,1007 547,1017 522,1007 510,1001 508,1001 506,1001 419,1003 419,1048"/> + <Baseline points="419,1048 1344,1054"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_c5ed9d72" custom="structure {type:default;}"> + <Coords points="395,1118 393,1142 613,1132 742,1145 781,1149 783,1149 882,1147 884,1147 888,1145 908,1136 966,1147 995,1151 1171,1153 1173,1153 1175,1153 1177,1153 1186,1147 1196,1142 1218,1147 1231,1151 1233,1151 1235,1151 1307,1147 1325,1147 1327,1147 1336,1157 1338,1157 1340,1157 1342,1157 1483,1147 1485,1128 1483,1077 1350,1091 1319,1077 1315,1075 1313,1075 1311,1075 1303,1077 1249,1089 1208,1089 1196,1077 1194,1075 1194,1073 1192,1073 1190,1073 1116,1073 1114,1073 1112,1073 1110,1073 1110,1075 1108,1077 1097,1089 1056,1089 1046,1077 1042,1073 1042,1071 1040,1071 1038,1071 1036,1071 1034,1071 1017,1077 986,1085 822,1085 797,1077 773,1069 771,1069 769,1069 738,1077 715,1081 686,1077 621,1066 619,1066 561,1077 543,1079 532,1077 498,1066 496,1066 495,1066 395,1075 395,1118"/> + <Baseline points="395,1118 678,1114 1485,1128"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_c264c4fa" custom="structure {type:default;}"> + <Coords points="422,1175 420,1192 516,1210 518,1210 520,1210 522,1210 522,1208 537,1196 563,1196 596,1196 610,1210 610,1212 611,1212 613,1212 615,1212 676,1202 691,1214 693,1214 695,1214 697,1214 927,1204 933,1204 949,1216 949,1218 951,1218 953,1218 954,1218 1007,1206 1015,1204 1032,1206 1110,1216 1112,1216 1188,1210 1223,1221 1225,1221 1227,1221 1481,1214 1483,1190 1481,1159 1385,1159 1381,1157 1340,1142 1338,1142 1336,1142 1214,1153 1200,1142 1200,1140 1198,1140 1196,1140 1194,1140 1192,1140 1142,1153 1138,1153 1136,1153 1099,1143 1097,1143 1095,1143 984,1151 970,1151 968,1151 953,1138 953,1136 951,1136 949,1136 947,1136 945,1136 915,1149 888,1136 886,1136 820,1134 818,1134 668,1142 625,1132 623,1132 621,1132 563,1145 555,1145 547,1145 473,1132 471,1132 422,1142 422,1175"/> + <Baseline points="422,1175 1483,1190"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_64c57c33" custom="structure {type:default;}"> + <Coords points="372,1241 370,1268 481,1264 528,1274 530,1274 532,1274 533,1274 571,1264 678,1278 713,1282 715,1282 717,1282 726,1280 763,1268 799,1280 806,1284 808,1284 810,1284 836,1282 923,1272 935,1284 937,1284 937,1286 939,1286 941,1286 943,1286 956,1284 1027,1274 1067,1288 1071,1288 1073,1288 1075,1288 1077,1288 1079,1288 1095,1276 1145,1276 1208,1290 1218,1292 1220,1292 1235,1292 1315,1282 1333,1294 1334,1294 1336,1294 1338,1294 1352,1294 1455,1286 1570,1297 1574,1264 1572,1227 1473,1229 1434,1223 1362,1212 1360,1212 1358,1212 1356,1212 1356,1214 1346,1221 1342,1225 1329,1221 1294,1212 1292,1212 1290,1212 1288,1212 1260,1220 1249,1223 1243,1220 1227,1206 1227,1204 1225,1204 1223,1204 1171,1202 1015,1200 1013,1200 1011,1200 1009,1200 988,1214 982,1218 882,1218 802,1218 795,1210 775,1194 773,1194 771,1194 732,1194 730,1194 728,1194 726,1194 709,1208 699,1214 635,1214 623,1206 608,1198 606,1198 604,1198 602,1198 576,1206 563,1210 559,1206 547,1196 547,1194 545,1194 543,1194 541,1194 539,1194 512,1204 496,1210 491,1204 475,1190 475,1188 473,1188 471,1188 469,1188 372,1200 372,1241"/> + <Baseline points="372,1241 1574,1264"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_8"> + <Coords points="191,1267 191,1723 1653,1723 1653,1267"/> + + + <TextLine id="eSc_line_d99f551d" custom="structure {type:default;}"> + <Coords points="407,1313 405,1329 444,1344 446,1344 448,1344 524,1336 563,1346 565,1346 567,1346 569,1346 617,1333 660,1348 662,1348 664,1348 666,1348 721,1334 779,1350 781,1350 783,1350 785,1350 820,1336 908,1336 908,1338 923,1350 925,1350 927,1350 929,1350 1044,1340 1054,1340 1064,1340 1179,1358 1181,1358 1372,1346 1373,1329 1373,1296 1299,1296 1296,1292 1278,1280 1276,1280 1274,1280 1272,1280 1270,1280 1243,1290 1241,1292 1239,1290 1223,1278 1221,1278 1220,1278 1218,1278 1216,1278 1175,1288 1161,1292 1058,1292 1042,1284 1013,1274 1011,1274 843,1274 841,1274 839,1274 828,1278 814,1284 795,1278 777,1270 775,1270 773,1270 728,1276 670,1282 648,1272 635,1266 633,1266 631,1266 629,1266 615,1272 594,1282 530,1282 407,1266 407,1313"/> + <Baseline points="407,1313 802,1313 1373,1329"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_1107da23" custom="structure {type:default;}"> + <Coords points="380,1407 504,1397 643,1410 645,1410 647,1410 672,1401 691,1412 697,1416 699,1416 701,1416 703,1416 705,1416 715,1412 738,1403 763,1412 769,1414 771,1414 773,1414 785,1412 826,1405 843,1412 859,1420 861,1420 863,1420 865,1420 880,1414 898,1405 917,1414 937,1422 939,1422 941,1422 943,1422 945,1422 945,1420 953,1414 960,1407 984,1407 1013,1414 1048,1424 1050,1424 1052,1424 1159,1416 1206,1412 1233,1416 1331,1432 1333,1432 1407,1418 1416,1416 1428,1418 1512,1436 1514,1436 1590,1418 1592,1401 1592,1366 1483,1364 1481,1362 1467,1348 1467,1346 1465,1346 1463,1346 1424,1344 1422,1344 1229,1354 1167,1356 1149,1350 1114,1340 1112,1340 1110,1340 1108,1340 1106,1340 1097,1350 1091,1354 1021,1354 1001,1346 962,1334 960,1334 861,1333 859,1333 857,1333 836,1342 824,1346 777,1340 701,1329 699,1329 697,1329 695,1329 684,1336 670,1344 401,1340 385,1327 381,1373 380,1407"/> + <Baseline points="381,1373 1592,1401"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_73240cd9" custom="structure {type:default;}"> + <Coords points="413,1436 411,1467 584,1463 703,1475 746,1479 748,1479 763,1477 797,1469 810,1477 816,1481 818,1481 820,1481 822,1483 1083,1483 1237,1483 1241,1485 1262,1494 1264,1494 1266,1494 1317,1487 1327,1485 1338,1487 1399,1498 1401,1498 1529,1488 1531,1463 1531,1432 1334,1432 1329,1426 1317,1416 1317,1414 1315,1414 1313,1414 1264,1412 1262,1412 1200,1422 1190,1424 1188,1422 1175,1412 1175,1410 1173,1410 1171,1410 1169,1410 1130,1418 999,1405 997,1405 995,1405 993,1405 976,1418 974,1418 871,1418 869,1414 863,1407 861,1407 861,1405 859,1405 857,1405 855,1405 793,1410 732,1397 730,1397 676,1409 600,1393 598,1393 596,1393 565,1407 413,1405 413,1436"/> + <Baseline points="413,1436 1247,1463 1531,1463"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_d5f8c3f2" custom="structure {type:default;}"> + <Coords points="374,1516 372,1545 440,1535 498,1535 520,1551 522,1553 524,1553 526,1553 528,1553 541,1551 596,1539 652,1553 672,1557 754,1559 756,1559 758,1559 769,1555 793,1545 808,1555 814,1561 816,1561 818,1561 820,1561 822,1561 834,1557 847,1549 861,1557 871,1561 873,1561 875,1561 898,1557 939,1549 956,1559 970,1564 972,1564 974,1564 1017,1559 1060,1553 1069,1561 1075,1564 1075,1566 1077,1566 1079,1566 1081,1566 1122,1561 1149,1557 1179,1563 1223,1570 1225,1570 1319,1564 1375,1561 1385,1564 1405,1576 1407,1576 1409,1576 1411,1576 1434,1566 1444,1563 1451,1566 1481,1578 1483,1578 1485,1578 1487,1578 1522,1568 1533,1564 1623,1568 1627,1537 1625,1504 1537,1483 1535,1483 1448,1498 1440,1498 1432,1496 1383,1485 1381,1485 1379,1485 1377,1485 1356,1494 1352,1496 1299,1492 1169,1483 1167,1483 1138,1487 1118,1490 1101,1487 1040,1469 1038,1469 1036,1469 1034,1469 1032,1469 1015,1483 1013,1487 970,1487 958,1481 927,1467 925,1467 855,1465 853,1465 851,1465 814,1477 802,1481 785,1477 769,1471 767,1471 765,1471 763,1471 762,1471 756,1475 746,1481 724,1475 676,1459 674,1459 608,1459 606,1459 604,1459 602,1459 588,1469 586,1471 584,1469 572,1459 572,1457 571,1457 569,1457 465,1455 463,1455 461,1455 459,1455 448,1465 444,1469 434,1465 409,1453 407,1453 405,1453 403,1453 374,1461 374,1516"/> + <Baseline points="374,1516 532,1510 1292,1535 1627,1537"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_4468fbc8" custom="structure {type:default;}"> + <Coords points="391,1576 389,1596 413,1609 415,1609 417,1609 463,1600 487,1615 489,1615 491,1615 493,1615 596,1613 598,1613 615,1605 619,1603 623,1605 662,1623 664,1623 769,1627 771,1627 773,1627 802,1613 814,1609 890,1609 900,1619 906,1623 906,1625 908,1625 910,1625 972,1633 974,1633 976,1633 978,1633 978,1631 988,1623 995,1615 1021,1625 1032,1629 1034,1629 1036,1629 1089,1627 1196,1625 1220,1635 1235,1640 1237,1640 1239,1640 1241,1640 1243,1640 1243,1639 1247,1635 1258,1625 1282,1637 1294,1642 1296,1642 1297,1642 1321,1639 1358,1633 1387,1642 1401,1646 1403,1646 1405,1646 1407,1646 1416,1644 1463,1629 1524,1648 1529,1611 1529,1582 1364,1563 1362,1563 1321,1570 1280,1557 1278,1557 1276,1557 1274,1557 1251,1568 1247,1572 1165,1572 1144,1563 1124,1557 1122,1557 1120,1557 1118,1557 1106,1561 1089,1568 1060,1559 1027,1549 1025,1549 1023,1549 1021,1549 997,1557 972,1564 863,1563 802,1547 771,1541 769,1541 738,1545 656,1555 559,1537 557,1537 555,1537 553,1537 533,1551 491,1533 489,1533 391,1529 391,1576"/> + <Baseline points="391,1576 1529,1611"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_1e6373ad" custom="structure {type:default;}"> + <Coords points="1617,1611 1629,1718 1644,1718 1633,1609 1623,1549 1607,1549 1617,1611"/> + <Baseline points="1617,1611 1633,1609"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_840935fb" custom="structure {type:default;}"> + <Coords points="305,1639 304,1674 364,1666 387,1677 395,1681 397,1681 539,1685 541,1685 543,1685 557,1681 584,1674 608,1681 625,1689 627,1689 629,1689 682,1683 738,1677 746,1685 754,1691 754,1693 756,1693 758,1693 760,1693 820,1687 867,1681 923,1689 1015,1701 1017,1701 1085,1691 1106,1689 1128,1693 1184,1703 1186,1703 1247,1695 1249,1695 1251,1695 1264,1707 1264,1709 1266,1709 1268,1709 1270,1709 1272,1709 1315,1697 1334,1711 1336,1711 1338,1711 1405,1713 1407,1713 1494,1699 1496,1676 1496,1644 1393,1642 1391,1640 1354,1623 1352,1623 1350,1623 1348,1623 1313,1639 1296,1639 1255,1639 1253,1637 1231,1619 1229,1619 1227,1619 1225,1619 1103,1629 1040,1613 1038,1613 1036,1613 1034,1613 995,1629 993,1629 990,1629 906,1613 904,1613 902,1613 875,1625 838,1607 836,1607 834,1607 763,1621 633,1619 604,1600 602,1600 600,1600 516,1598 514,1598 512,1598 510,1598 496,1609 483,1598 481,1598 479,1598 477,1598 415,1611 413,1611 348,1598 346,1598 344,1598 305,1607 305,1639"/> + <Baseline points="305,1639 1496,1676"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_11"> + <Coords points="214,1698 214,1861 1535,1861 1535,1698"/> + + + <TextLine id="eSc_line_142b65e2" custom="structure {type:default;}"> + <Coords points="424,1713 422,1740 571,1738 619,1748 648,1754 650,1754 693,1750 758,1744 781,1752 797,1757 799,1757 800,1757 802,1757 820,1754 849,1746 884,1755 902,1759 904,1759 1056,1763 1058,1763 1060,1763 1067,1759 1085,1752 1157,1752 1171,1761 1177,1767 1179,1767 1181,1767 1182,1767 1206,1763 1243,1755 1255,1765 1258,1767 1258,1769 1260,1769 1262,1769 1264,1769 1266,1769 1278,1765 1297,1757 1311,1765 1319,1771 1321,1771 1323,1771 1325,1771 1373,1767 1449,1761 1469,1769 1477,1773 1479,1773 1481,1773 1483,1773 1485,1773 1487,1771 1496,1763 1545,1771 1549,1742 1543,1693 1498,1707 1457,1693 1455,1693 1453,1693 1268,1701 1243,1687 1241,1685 1239,1685 1237,1685 1235,1685 1220,1687 1147,1697 1114,1685 1105,1681 1103,1681 1101,1681 1081,1685 1027,1695 1003,1683 995,1679 993,1679 991,1679 958,1681 877,1691 843,1679 828,1676 826,1676 824,1676 793,1679 734,1687 666,1677 615,1670 613,1670 582,1676 551,1681 467,1679 463,1674 456,1668 456,1666 454,1666 452,1666 450,1666 448,1666 424,1672 424,1713"/> + <Baseline points="424,1713 1549,1742"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_fc168591" custom="structure {type:default;}"> + <Coords points="393,1769 391,1792 678,1798 682,1804 691,1812 693,1812 695,1812 697,1812 791,1806 814,1806 818,1808 830,1818 832,1818 834,1818 836,1818 900,1810 910,1810 923,1812 1003,1824 1005,1824 1165,1820 1182,1820 1196,1820 1336,1837 1338,1837 1436,1828 1438,1806 1434,1763 1389,1775 1368,1761 1366,1761 1364,1761 1362,1761 1325,1767 1297,1759 1288,1755 1286,1755 1134,1750 1132,1750 1130,1750 1120,1754 1093,1763 1083,1752 1079,1750 1079,1748 1077,1748 1075,1748 1073,1748 1071,1748 1062,1752 1034,1761 978,1750 960,1746 958,1746 956,1746 951,1748 933,1757 890,1757 882,1746 880,1746 880,1744 878,1744 877,1744 875,1744 873,1744 867,1746 849,1754 834,1744 824,1740 822,1740 820,1740 789,1744 732,1750 637,1748 629,1738 621,1732 621,1730 619,1730 617,1730 615,1730 576,1736 547,1742 537,1736 524,1726 522,1726 520,1726 518,1726 516,1726 487,1734 469,1738 393,1732 393,1769"/> + <Baseline points="393,1769 691,1775 1438,1806"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_4"> + <Coords points="1727,422 1727,621 2168,621 2168,422"/> + + + <TextLine id="eSc_line_1ceba141" custom="structure {type:default;}"> + <Coords points="1763,459 1761,485 2114,510 2120,483 2120,444 2091,420 2089,420 2087,420 2028,415 1978,413 1976,413 1974,413 1972,413 1945,432 1872,405 1870,405 1868,405 1867,405 1865,405 1831,424 1765,422 1763,459"/> + <Baseline points="1763,459 2120,483"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_569b3be5" custom="structure {type:default;}"> + <Coords points="1767,524 1765,561 1810,555 1837,567 1855,574 1857,574 2030,582 2032,582 2034,582 2059,576 2089,569 2122,578 2128,539 2128,506 2071,491 2069,491 2067,491 2032,498 2028,498 2024,498 1995,487 1993,487 1991,487 1989,487 1968,493 1948,498 1915,498 1907,489 1902,485 1902,483 1900,483 1898,483 1896,483 1868,487 1830,491 1767,479 1767,524"/> + <Baseline points="1767,524 2128,539"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_12"> + <Coords points="256,1822 256,2076 1464,2076 1464,1822"/> + + + <TextLine id="eSc_line_c299ed31" custom="structure {type:default;}"> + <Coords points="401,1828 399,1839 456,1857 457,1857 459,1857 461,1857 493,1845 496,1843 510,1845 569,1855 571,1855 598,1849 608,1847 615,1849 635,1859 637,1859 639,1859 695,1853 724,1851 730,1855 744,1867 746,1867 748,1867 750,1867 752,1867 771,1857 777,1855 791,1859 847,1870 849,1870 931,1865 982,1861 1005,1868 1034,1876 1036,1876 1095,1878 1097,1878 1099,1878 1101,1878 1108,1872 1120,1865 1132,1872 1142,1880 1144,1880 1145,1880 1147,1882 1305,1882 1307,1853 1307,1822 1132,1804 1130,1804 1032,1812 1023,1812 1011,1812 902,1796 900,1796 898,1796 869,1806 867,1806 783,1792 781,1792 699,1798 672,1789 670,1789 668,1789 666,1789 635,1798 602,1789 600,1789 598,1789 401,1791 401,1828"/> + <Baseline points="401,1828 674,1828 1307,1853"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_1d1a0fa8" custom="structure {type:default;}"> + <Coords points="405,1876 403,1892 483,1888 532,1900 533,1900 535,1900 537,1900 539,1900 563,1888 652,1890 676,1906 678,1906 680,1906 682,1906 687,1906 750,1896 839,1898 859,1911 861,1913 863,1913 865,1913 867,1913 875,1913 914,1904 931,1915 935,1917 937,1917 939,1917 941,1917 960,1915 1029,1907 1067,1919 1079,1923 1081,1923 1083,1923 1105,1921 1165,1913 1202,1925 1218,1929 1220,1929 1449,1933 1453,1913 1453,1880 1375,1876 1370,1867 1368,1867 1368,1865 1366,1865 1364,1865 1362,1865 1311,1874 1301,1874 1144,1870 1142,1867 1134,1857 1132,1857 1132,1855 1130,1855 1128,1855 1126,1855 1052,1863 1038,1865 1030,1863 990,1849 988,1849 986,1849 834,1855 820,1855 802,1853 613,1833 611,1833 405,1837 405,1876"/> + <Baseline points="405,1876 793,1876 1453,1913"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_8591cedb" custom="structure {type:default;}"> + <Coords points="563,1878 561,1878 559,1878 557,1878 543,1888 491,1878 489,1878 415,1886 415,1919 413,1939 450,1950 452,1950 454,1950 547,1944 594,1943 625,1948 680,1958 682,1958 684,1958 711,1952 732,1946 785,1946 793,1954 800,1960 800,1962 802,1962 804,1962 806,1962 902,1958 993,1956 1017,1964 1034,1970 1036,1970 1038,1970 1040,1970 1050,1966 1066,1958 1099,1966 1126,1974 1128,1974 1130,1976 1294,1976 1297,1944 1297,1917 1157,1900 1155,1900 1087,1909 1083,1909 1081,1909 1058,1896 1056,1896 1054,1896 978,1906 974,1906 966,1906 880,1892 878,1892 806,1900 793,1888 793,1886 791,1886 789,1886 732,1884 730,1884 728,1884 691,1896 674,1882 672,1882 670,1882 668,1882 604,1892 565,1878 563,1878"/> + <Baseline points="415,1919 693,1919 1297,1944"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_48d1b21b" custom="structure {type:default;}"> + <Coords points="364,1983 362,2015 428,2017 430,2017 432,2017 457,2005 487,2019 493,2020 495,2020 496,2020 514,2019 567,2009 582,2019 586,2022 588,2022 590,2022 592,2022 621,2020 678,2015 699,2022 715,2026 717,2026 719,2026 744,2022 785,2015 804,2022 820,2030 822,2030 919,2034 921,2034 995,2026 1040,2022 1093,2028 1186,2040 1188,2040 1270,2032 1288,2030 1296,2032 1348,2048 1350,2048 1352,2048 1473,2034 1475,2015 1471,1966 1414,1978 1327,1976 1311,1962 1311,1960 1309,1960 1307,1960 1305,1960 1303,1960 1229,1972 1017,1952 1015,1952 1013,1952 986,1964 970,1952 968,1952 966,1952 964,1952 906,1960 839,1944 838,1944 836,1944 834,1944 777,1956 736,1941 734,1941 732,1941 730,1941 701,1952 680,1939 678,1939 676,1939 674,1939 670,1939 569,1950 555,1937 555,1935 553,1935 551,1935 549,1935 547,1935 489,1948 364,1929 364,1983"/> + <Baseline points="364,1983 744,1987 1475,2015"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_6"> + <Coords points="1663,859 1663,1009 2113,1009 2113,859"/> + + + <TextLine id="eSc_line_4798fd05" custom="structure {type:default;}"> + <Coords points="2056,826 1720,820 1720,865 1718,888 1890,888 1909,902 1917,910 1919,910 1921,910 1923,910 1925,910 1937,904 1952,896 1972,906 1983,912 1985,912 1987,914 2069,914 2071,873 2069,838 2056,826"/> + <Baseline points="1720,865 2071,873"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_28d9aa48" custom="structure {type:default;}"> + <Coords points="1722,921 1720,951 2048,956 2052,931 2050,900 1958,884 1956,884 1954,884 1939,890 1927,896 1921,890 1913,884 1913,882 1911,882 1909,882 1907,882 1868,886 1812,892 1722,877 1722,921"/> + <Baseline points="1722,921 1888,933 2052,931"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_d402afd9" custom="structure {type:default;}"> + <Coords points="1724,976 1722,1003 1792,1017 1794,1019 1831,1019 1831,1017 1833,1017 1835,1017 1843,1011 1855,1001 1880,1013 1890,1017 1892,1017 1894,1017 1915,1015 1976,1005 1989,1019 1991,1019 1991,1021 1993,1021 1995,1021 1997,1023 2056,1023 2058,986 2056,953 1925,939 1923,939 1724,941 1724,976"/> + <Baseline points="1724,976 2058,986"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_7"> + <Coords points="1664,993 1664,1142 2124,1142 2124,993"/> + + + <TextLine id="eSc_line_65e89461" custom="structure {type:default;}"> + <Coords points="1736,1029 1734,1046 1779,1058 1781,1058 1783,1058 1806,1050 1816,1062 1818,1062 1818,1064 1820,1064 1822,1064 1886,1073 1888,1073 2034,1054 2036,1036 2036,1009 1960,991 1958,991 1900,1003 1884,991 1884,990 1882,990 1880,990 1878,990 1876,990 1874,990 1859,1003 1857,1003 1736,999 1736,1029"/> + <Baseline points="1736,1029 2036,1036"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_13"> + <Coords points="212,2053 212,2368 1540,2368 1540,2053"/> + + + <TextLine id="eSc_line_ccef585a" custom="structure {type:default;}"> + <Coords points="399,2050 397,2071 518,2095 586,2097 588,2097 590,2097 639,2081 799,2087 820,2104 822,2104 824,2104 826,2104 828,2104 859,2093 880,2106 882,2106 884,2106 886,2106 888,2106 927,2091 999,2110 1001,2110 1003,2110 1067,2097 1243,2118 1245,2118 1247,2118 1278,2102 1313,2120 1315,2120 1317,2120 1422,2104 1424,2083 1424,2048 1258,2048 1249,2042 1237,2032 1235,2032 1233,2032 1231,2032 1190,2040 1175,2042 1155,2038 1118,2030 1116,2030 1089,2036 1069,2040 1064,2036 1052,2026 1050,2026 1048,2026 1046,2026 1044,2026 1019,2034 1003,2038 982,2032 943,2022 941,2022 939,2022 937,2022 910,2030 908,2030 902,2030 822,2019 820,2019 763,2026 738,2028 724,2024 699,2015 697,2015 695,2015 623,2020 580,2024 399,2015 399,2050"/> + <Baseline points="399,2050 1424,2083"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_9ef7d723" custom="structure {type:default;}"> + <Coords points="1555,2132 1490,2120 1488,2120 1446,2128 1434,2130 1416,2128 1340,2114 1338,2114 1336,2114 1313,2124 1303,2126 1272,2122 1220,2114 1218,2114 1175,2118 1144,2120 1136,2116 1118,2106 1116,2106 1114,2106 1081,2114 1060,2118 972,2110 914,2104 912,2104 867,2106 775,2108 762,2100 748,2095 746,2095 744,2095 703,2098 652,2104 594,2095 559,2089 557,2089 555,2089 543,2093 524,2098 506,2091 496,2087 495,2087 493,2087 475,2091 438,2097 378,2087 378,2128 376,2167 411,2169 413,2169 415,2169 417,2169 440,2151 520,2165 522,2165 610,2157 623,2171 623,2173 625,2173 627,2173 629,2173 631,2173 682,2159 705,2171 707,2171 709,2171 711,2171 738,2163 754,2176 754,2178 756,2178 758,2178 760,2178 828,2167 847,2182 849,2182 851,2182 853,2182 855,2182 857,2182 906,2167 953,2184 956,2186 958,2186 1009,2188 1011,2188 1013,2188 1015,2188 1017,2186 1036,2174 1060,2188 1064,2190 1066,2190 1067,2190 1069,2190 1075,2188 1120,2173 1136,2186 1136,2188 1138,2188 1140,2188 1142,2188 1233,2180 1249,2192 1251,2192 1253,2192 1255,2192 1257,2192 1294,2180 1354,2196 1368,2200 1370,2200 1555,2202 1559,2165 1557,2134 1555,2132"/> + <Baseline points="378,2128 1559,2165"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_7a5b72b8" custom="structure {type:default;}"> + <Coords points="411,2186 409,2227 635,2217 682,2233 687,2235 689,2235 691,2235 693,2235 697,2233 726,2221 756,2235 771,2241 773,2241 775,2241 802,2235 820,2231 824,2235 830,2243 832,2243 832,2245 834,2245 836,2245 884,2247 886,2247 888,2247 890,2247 902,2237 908,2233 927,2237 984,2250 986,2250 1038,2239 1060,2235 1077,2241 1103,2249 1105,2249 1106,2249 1108,2249 1110,2249 1122,2241 1130,2237 1136,2241 1153,2250 1155,2250 1157,2250 1255,2245 1286,2258 1288,2258 1290,2258 1292,2258 1294,2258 1309,2245 1311,2245 1375,2245 1379,2223 1377,2192 1266,2188 1262,2186 1235,2173 1233,2173 1231,2173 1128,2180 1112,2180 1101,2178 1034,2165 1032,2165 1030,2165 997,2174 986,2176 890,2174 884,2169 871,2159 869,2159 867,2159 865,2159 863,2159 845,2167 838,2171 822,2167 781,2155 779,2155 777,2155 775,2155 758,2163 717,2153 715,2153 713,2153 711,2153 709,2153 697,2161 689,2165 656,2159 590,2147 588,2147 411,2147 411,2186"/> + <Baseline points="411,2186 935,2213 1379,2223"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_64dc8d84" custom="structure {type:default;}"> + <Coords points="354,2262 352,2286 652,2286 670,2295 676,2299 678,2299 680,2299 682,2299 779,2297 882,2295 888,2299 894,2305 894,2307 896,2307 898,2307 900,2307 935,2301 945,2299 953,2301 974,2309 976,2309 978,2309 1019,2303 1038,2299 1046,2303 1064,2313 1066,2313 1067,2313 1128,2305 1144,2303 1151,2305 1181,2317 1182,2317 1184,2317 1272,2309 1297,2321 1299,2321 1301,2321 1473,2311 1475,2293 1475,2258 1395,2256 1395,2254 1360,2239 1358,2239 1356,2239 1354,2239 1305,2252 1301,2252 1296,2252 1243,2235 1241,2235 1239,2235 1237,2235 1188,2249 1182,2249 1177,2249 1103,2231 1101,2231 964,2241 951,2241 949,2241 925,2227 923,2227 921,2227 919,2227 898,2239 896,2239 775,2237 769,2235 703,2219 701,2219 699,2219 697,2219 680,2231 678,2231 606,2217 604,2217 543,2223 528,2211 526,2211 524,2211 522,2211 520,2211 487,2223 405,2223 401,2223 391,2213 391,2211 389,2211 387,2211 385,2211 383,2211 354,2217 354,2262"/> + <Baseline points="354,2262 524,2260 1475,2293"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_9"> + <Coords points="1635,1284 1635,1367 2081,1367 2081,1284"/> + + + <TextLine id="eSc_line_dee2484e" custom="structure {type:default;}"> + <Coords points="1720,1327 1718,1358 1771,1350 2028,1372 2032,1338 2030,1303 1985,1305 1978,1301 1958,1292 1956,1292 1954,1292 1952,1292 1950,1292 1939,1299 1931,1303 1886,1303 1863,1297 1773,1284 1771,1284 1720,1294 1720,1327"/> + <Baseline points="1720,1327 2032,1338"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_10"> + <Coords points="1667,1357 1667,1510 2085,1510 2085,1357"/> + + + <TextLine id="eSc_line_040ffbd5" custom="structure {type:default;}"> + <Coords points="1724,1387 1722,1420 1769,1430 1771,1430 1837,1420 1867,1416 1872,1420 1900,1438 1902,1438 1904,1438 1976,1440 1978,1440 1980,1440 1982,1440 1982,1438 2001,1420 2040,1418 2042,1393 2040,1354 1724,1348 1724,1387"/> + <Baseline points="1724,1387 2042,1393"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_14"> + <Coords points="171,2336 171,2795 1631,2795 1631,2336"/> + + + <TextLine id="eSc_line_2a897e96" custom="structure {type:default;}"> + <Coords points="405,2342 457,2362 459,2362 461,2362 619,2354 703,2369 705,2369 707,2369 709,2369 709,2367 723,2356 724,2356 763,2358 824,2362 838,2375 839,2375 841,2375 843,2375 929,2365 947,2364 954,2365 980,2375 982,2375 984,2375 1025,2369 1036,2367 1040,2369 1052,2379 1052,2381 1054,2381 1056,2381 1058,2381 1099,2371 1112,2369 1138,2373 1221,2389 1223,2389 1225,2389 1253,2379 1276,2391 1278,2391 1280,2391 1383,2383 1385,2358 1381,2309 1333,2323 1264,2305 1262,2305 1260,2305 1169,2317 1118,2317 1110,2305 1108,2305 1108,2303 1106,2303 1105,2303 1103,2303 1101,2303 1062,2313 1011,2295 1007,2295 1005,2295 1003,2295 995,2295 923,2307 853,2291 843,2289 841,2289 839,2289 838,2289 810,2303 705,2286 697,2286 695,2286 693,2286 691,2286 691,2287 678,2299 633,2284 627,2282 625,2282 623,2282 608,2284 539,2291 522,2280 520,2278 518,2278 516,2278 514,2278 500,2280 430,2289 411,2276 407,2323 405,2342"/> + <Baseline points="407,2323 1385,2358"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_35123aa2" custom="structure {type:default;}"> + <Coords points="343,2387 341,2406 393,2426 395,2426 397,2426 399,2426 426,2412 522,2418 539,2432 541,2432 543,2432 545,2432 643,2420 744,2440 746,2440 839,2428 859,2443 861,2443 863,2443 910,2445 912,2445 914,2445 947,2432 1093,2440 1106,2453 1108,2453 1110,2453 1112,2453 1182,2441 1247,2459 1249,2459 1309,2461 1311,2461 1313,2461 1340,2447 1354,2461 1354,2463 1356,2463 1358,2463 1360,2463 1362,2463 1399,2447 1401,2428 1401,2395 1379,2381 1377,2381 1375,2381 1373,2381 1372,2381 1370,2381 1352,2393 1315,2391 1292,2373 1290,2373 1288,2373 1286,2373 1204,2385 1190,2387 1099,2385 1095,2379 1083,2367 1083,2365 1081,2365 1079,2365 1077,2365 1075,2365 1040,2377 1032,2379 1030,2375 1021,2367 1019,2367 1017,2367 1015,2367 986,2373 970,2377 945,2371 910,2362 908,2362 906,2362 875,2367 843,2373 830,2365 822,2360 820,2360 818,2360 816,2360 767,2362 668,2365 648,2354 639,2348 637,2348 635,2348 633,2348 576,2350 440,2358 426,2342 424,2342 424,2340 422,2340 420,2340 343,2338 343,2387"/> + <Baseline points="343,2387 1401,2428"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_61d48c1f" custom="structure {type:default;}"> + <Coords points="395,2455 393,2486 457,2477 512,2477 530,2490 530,2492 532,2492 533,2492 535,2492 537,2492 539,2492 539,2490 557,2480 580,2492 582,2492 584,2492 586,2492 594,2492 647,2482 660,2492 666,2498 668,2498 670,2498 672,2498 701,2492 736,2486 771,2494 800,2500 802,2500 804,2500 822,2494 843,2488 867,2496 912,2508 914,2508 915,2508 917,2508 956,2496 974,2492 1023,2494 1025,2498 1036,2510 1036,2512 1038,2512 1040,2512 1188,2516 1190,2516 1192,2516 1218,2506 1229,2517 1231,2517 1233,2517 1235,2517 1237,2517 1294,2500 1296,2482 1294,2449 1206,2449 1196,2445 1171,2430 1169,2430 1167,2430 1165,2430 1163,2430 1136,2443 1132,2445 988,2445 976,2440 954,2430 953,2430 951,2430 892,2436 855,2420 853,2420 851,2420 746,2434 719,2436 711,2432 676,2414 674,2414 672,2414 518,2418 457,2406 415,2406 413,2406 411,2406 409,2406 395,2416 395,2455"/> + <Baseline points="395,2455 1296,2482"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_38daac4a" custom="structure {type:default;}"> + <Coords points="1611,2537 1451,2531 1383,2514 1381,2514 1290,2521 1270,2508 1268,2508 1266,2508 1190,2502 1188,2502 1079,2512 1064,2498 1064,2496 1062,2496 1060,2496 1015,2494 1013,2494 1011,2494 978,2508 929,2490 927,2490 925,2490 859,2502 838,2492 836,2492 834,2492 752,2496 723,2480 721,2480 719,2480 664,2492 625,2477 623,2477 621,2477 619,2477 576,2488 506,2475 504,2475 426,2482 411,2469 411,2467 409,2467 407,2467 405,2467 341,2478 341,2517 339,2547 378,2541 385,2551 387,2551 387,2553 389,2553 391,2553 393,2553 403,2553 446,2545 463,2554 469,2556 471,2556 473,2556 514,2556 598,2553 623,2558 641,2564 643,2564 645,2564 647,2564 658,2560 682,2553 695,2562 701,2566 703,2566 705,2566 707,2566 744,2564 810,2558 845,2566 871,2574 873,2574 875,2574 949,2570 1007,2568 1013,2572 1023,2580 1023,2582 1025,2582 1027,2582 1029,2582 1110,2576 1151,2574 1188,2580 1282,2593 1284,2593 1348,2584 1358,2584 1366,2586 1409,2599 1411,2599 1412,2599 1414,2599 1446,2588 1448,2588 1461,2599 1461,2601 1463,2601 1465,2601 1549,2605 1551,2605 1623,2593 1625,2572 1623,2564 1611,2537"/> + <Baseline points="341,2517 641,2525 1625,2572"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_62815ada" custom="structure {type:default;}"> + <Coords points="1512,2592 1418,2580 1416,2580 1414,2580 1401,2586 1391,2590 1387,2584 1379,2578 1379,2576 1377,2576 1375,2576 1373,2576 1333,2582 1319,2584 1315,2582 1307,2574 1305,2574 1303,2574 1301,2574 1299,2574 1297,2574 1292,2580 1284,2586 1204,2584 1198,2576 1194,2570 1192,2570 1192,2568 1190,2568 1188,2568 1186,2568 1184,2568 1167,2574 1145,2580 1067,2568 1044,2566 1042,2566 1040,2566 1034,2568 1009,2574 999,2566 993,2560 991,2560 990,2560 988,2560 986,2560 976,2564 962,2572 956,2564 954,2560 953,2560 953,2558 951,2558 949,2558 947,2558 915,2560 884,2564 877,2560 871,2554 869,2554 867,2554 865,2554 863,2554 853,2558 834,2566 828,2556 826,2554 824,2554 824,2553 822,2553 820,2553 818,2553 797,2554 754,2562 734,2553 726,2549 724,2549 723,2549 699,2551 637,2558 610,2547 606,2545 604,2545 602,2545 600,2545 598,2545 576,2554 500,2554 493,2543 491,2543 491,2541 489,2541 487,2541 485,2541 483,2541 454,2551 446,2541 444,2541 444,2539 442,2539 440,2539 438,2539 436,2539 409,2549 372,2535 370,2584 368,2619 537,2615 608,2627 641,2631 643,2631 660,2627 707,2617 730,2629 740,2634 742,2634 744,2634 746,2634 748,2634 752,2631 762,2621 814,2621 828,2631 830,2631 832,2631 834,2631 906,2625 917,2634 923,2638 923,2640 925,2640 927,2640 929,2640 956,2634 988,2629 1081,2638 1163,2646 1165,2646 1167,2646 1179,2640 1184,2638 1186,2640 1198,2652 1198,2654 1200,2654 1202,2654 1204,2654 1325,2650 1338,2660 1340,2660 1342,2660 1344,2660 1346,2660 1348,2660 1360,2650 1368,2656 1368,2658 1370,2658 1372,2658 1373,2658 1411,2652 1416,2662 1418,2662 1418,2664 1420,2664 1422,2664 1424,2664 1512,2648 1514,2623 1512,2592"/> + <Baseline points="370,2584 600,2588 1243,2621 1514,2623"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + + <TextLine id="eSc_line_22c660c1" custom="structure {type:default;}"> + <Coords points="313,2601 302,2601 274,2611 274,2646 272,2669 380,2693 381,2693 457,2681 471,2679 479,2683 522,2701 524,2701 526,2701 528,2701 530,2701 541,2693 658,2705 660,2705 662,2705 664,2705 664,2703 674,2693 676,2693 678,2693 736,2708 738,2708 740,2708 783,2699 804,2695 820,2701 832,2707 834,2707 836,2707 838,2707 851,2703 867,2699 873,2705 880,2710 880,2712 882,2712 884,2712 886,2712 888,2712 890,2712 890,2710 896,2707 906,2697 1023,2699 1091,2716 1124,2724 1126,2724 1161,2720 1239,2712 1266,2726 1272,2730 1274,2730 1372,2732 1377,2689 1377,2658 1340,2642 1338,2642 1336,2642 1249,2650 1227,2632 1225,2632 1223,2632 1221,2632 1220,2632 1173,2648 1073,2627 1071,2627 878,2636 875,2636 871,2636 719,2617 717,2617 715,2617 674,2629 672,2629 623,2611 621,2611 619,2611 617,2611 615,2611 598,2625 440,2605 438,2605 383,2617 366,2601 366,2599 364,2599 362,2599 321,2597 319,2597 317,2597 313,2597 313,2601"/> + <Baseline points="274,2646 1377,2689"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_15"> + <Coords points="1653,2377 1653,2472 2026,2472 2026,2377"/> + + + <TextLine id="eSc_line_b9e4e54d" custom="structure {type:default;}"> + <Coords points="1699,2422 1699,2461 1730,2447 1814,2461 1886,2471 1888,2471 1890,2471 1919,2459 1921,2459 2024,2459 2026,2436 2024,2404 1699,2379 1699,2422"/> + <Baseline points="1699,2422 2026,2436"/> + <TextEquiv> + <Unicode/> + </TextEquiv> + </TextLine> + + + </TextRegion> + + <TextRegion id="eSc_textblock_19"> + <Coords points="1655,2871 1655,2989 2034,2989 2034,2871"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_16"> + <Coords points="1646,2464 1646,2611 2128,2611 2128,2464"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_17"> + <Coords points="154,2748 154,2867 1456,2867 1456,2748"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_18"> + <Coords points="1663,2816 1663,2886 2023,2886 2023,2816"/> + + </TextRegion> + + <TextRegion id="eSc_textblock_1"> + <Coords points="227,210 227,418 2082,418 2082,210"/> + + </TextRegion> - <TextRegion id="eSc_textblock_1"><Coords points="227.8988657719756,210.17899577490198 227.8988657719756,418.1099249902908 2082.77477401084,418.1099249902908 2082.77477401084,210.17899577490198"/></TextRegion><TextRegion id="eSc_textblock_2"><Coords points="227.8988657719756,210.17899577490198 227.8988657719756,418.1099249902908 2082.77477401084,418.1099249902908 2082.77477401084,210.17899577490198"/></TextRegion><TextRegion id="eSc_textblock_3"><Coords points="280.20902542312297,398.1685350507713 280.20902542312297,873.8150360798803 1734.3283285692564,873.8150360798803 1734.3283285692564,398.1685350507713"/></TextRegion><TextRegion id="eSc_textblock_4"><Coords points="1727.4016640316524,422.3823496744123 1727.4016640316524,621.0630369596356 2168.6576090488343,621.0630369596356 2168.6576090488343,422.3823496744123"/></TextRegion><TextRegion id="eSc_textblock_5"><Coords points="196.51502325348406,860.6849113687314 196.51502325348406,1303.715652327273 1666.9422064349012,1303.715652327273 1666.9422064349012,860.6849113687314"/></TextRegion><TextRegion id="eSc_textblock_6"><Coords points="1663.4081417525772,859.3466433210656 1663.4081417525772,1009.5122790598973 2113.905048969072,1009.5122790598973 2113.905048969072,859.3466433210656"/></TextRegion><TextRegion id="eSc_textblock_7"><Coords points="1664.5211707817975,993.9755346551061 1664.5211707817975,1142.6324726101207 2124.55412742637,1142.6324726101207 2124.55412742637,993.9755346551061"/></TextRegion><TextRegion id="eSc_textblock_8"><Coords points="191.64698230548777,1267.1413521316204 191.64698230548777,1723.7619931195652 1653.9202254692632,1723.7619931195652 1653.9202254692632,1267.1413521316204"/></TextRegion><TextRegion id="eSc_textblock_9"><Coords points="1635.774776975945,1284.4684458983852 1635.774776975945,1367.6371056921996 2081.6512030927834,1367.6371056921996 2081.6512030927834,1284.4684458983852"/></TextRegion><TextRegion id="eSc_textblock_10"><Coords points="1667.983971516178,1357.4139825905536 1667.983971516178,1510.2416079089562 2085.5943430257657,1510.2416079089562 2085.5943430257657,1357.4139825905536"/></TextRegion><TextRegion id="eSc_textblock_11"><Coords points="214.18167441926937,1698.8119646044966 214.18167441926937,1861.8908064304173 1535.1199572772523,1861.8908064304173 1535.1199572772523,1698.8119646044966"/></TextRegion><TextRegion id="eSc_textblock_12"><Coords points="256.29837886597926,1822.8006988193476 256.29837886597926,2076.9271593004473 1464.5541864261165,2076.9271593004473 1464.5541864261165,1822.8006988193476"/></TextRegion><TextRegion id="eSc_textblock_13"><Coords points="212.25364278350526,2053.9373780289693 212.25364278350526,2368.1300928056016 1540.6419589347079,2368.1300928056016 1540.6419589347079,2053.9373780289693"/></TextRegion><TextRegion id="eSc_textblock_14"><Coords points="nan,nan nan,nan nan,nan nan,nan"/></TextRegion><TextRegion id="eSc_textblock_15"><Coords points="nan,nan nan,nan nan,nan nan,nan"/></TextRegion><TextRegion id="eSc_textblock_16"><Coords points="171.9615022263008,2336.3147620395603 171.9615022263008,2795.6534245064695 1631.5167653841957,2795.6534245064695 1631.5167653841957,2336.3147620395603"/></TextRegion><TextRegion id="eSc_textblock_17"><Coords points="1653.9407805645399,2377.3280742395546 1653.9407805645399,2472.457374445376 2026.3040413701851,2472.457374445376 2026.3040413701851,2377.3280742395546"/></TextRegion><TextRegion id="eSc_textblock_18"><Coords points="1646.4323944444443,2464.1352050621877 1646.4323944444443,2611.2907606177428 2128.965727777778,2611.2907606177428 2128.965727777778,2464.1352050621877"/></TextRegion><TextRegion id="eSc_textblock_19"><Coords points="154.66495760070555,2748.2805623721897 154.66495760070555,2867.871724104021 1456.5773804175242,2867.871724104021 1456.5773804175242,2748.2805623721897"/></TextRegion><TextRegion id="eSc_textblock_20"><Coords points="1663.4139173539515,2816.9150937736813 1663.4139173539515,2886.2223102685266 2023.8114431271474,2886.2223102685266 2023.8114431271474,2816.9150937736813"/></TextRegion><TextRegion id="eSc_textblock_21"><Coords points="1655.0264500000003,2871.3218995066327 1655.0264500000003,2989.3885661732993 2034.8931166666666,2989.3885661732993 2034.8931166666666,2871.3218995066327"/></TextRegion></Page> + <TextRegion id="eSc_textblock_319"><Coords points="227.8988657719756,210.17899577490198 227.8988657719756,418.1099249902908 2082.77477401084,418.1099249902908 2082.77477401084,210.17899577490198"/></TextRegion><TextRegion id="eSc_textblock_320"><Coords points="227.8988657719756,210.17899577490198 227.8988657719756,418.1099249902908 2082.77477401084,418.1099249902908 2082.77477401084,210.17899577490198"/></TextRegion><TextRegion id="eSc_textblock_321"><Coords points="280.20902542312297,398.1685350507713 280.20902542312297,873.8150360798803 1734.3283285692564,873.8150360798803 1734.3283285692564,398.1685350507713"/></TextRegion><TextRegion id="eSc_textblock_322"><Coords points="1727.4016640316524,422.3823496744123 1727.4016640316524,621.0630369596356 2168.6576090488343,621.0630369596356 2168.6576090488343,422.3823496744123"/></TextRegion><TextRegion id="eSc_textblock_323"><Coords points="196.51502325348406,860.6849113687314 196.51502325348406,1303.715652327273 1666.9422064349012,1303.715652327273 1666.9422064349012,860.6849113687314"/></TextRegion><TextRegion id="eSc_textblock_324"><Coords points="1663.4081417525772,859.3466433210656 1663.4081417525772,1009.5122790598973 2113.905048969072,1009.5122790598973 2113.905048969072,859.3466433210656"/></TextRegion><TextRegion id="eSc_textblock_325"><Coords points="1664.5211707817975,993.9755346551061 1664.5211707817975,1142.6324726101207 2124.55412742637,1142.6324726101207 2124.55412742637,993.9755346551061"/></TextRegion><TextRegion id="eSc_textblock_326"><Coords points="191.64698230548777,1267.1413521316204 191.64698230548777,1723.7619931195652 1653.9202254692632,1723.7619931195652 1653.9202254692632,1267.1413521316204"/></TextRegion><TextRegion id="eSc_textblock_327"><Coords points="1635.774776975945,1284.4684458983852 1635.774776975945,1367.6371056921996 2081.6512030927834,1367.6371056921996 2081.6512030927834,1284.4684458983852"/></TextRegion><TextRegion id="eSc_textblock_328"><Coords points="1667.983971516178,1357.4139825905536 1667.983971516178,1510.2416079089562 2085.5943430257657,1510.2416079089562 2085.5943430257657,1357.4139825905536"/></TextRegion><TextRegion id="eSc_textblock_329"><Coords points="214.18167441926937,1698.8119646044966 214.18167441926937,1861.8908064304173 1535.1199572772523,1861.8908064304173 1535.1199572772523,1698.8119646044966"/></TextRegion><TextRegion id="eSc_textblock_330"><Coords points="256.29837886597926,1822.8006988193476 256.29837886597926,2076.9271593004473 1464.5541864261165,2076.9271593004473 1464.5541864261165,1822.8006988193476"/></TextRegion><TextRegion id="eSc_textblock_331"><Coords points="212.25364278350526,2053.9373780289693 212.25364278350526,2368.1300928056016 1540.6419589347079,2368.1300928056016 1540.6419589347079,2053.9373780289693"/></TextRegion><TextRegion id="eSc_textblock_332"><Coords points="171.9615022263008,2336.3147620395603 171.9615022263008,2795.6534245064695 1631.5167653841957,2795.6534245064695 1631.5167653841957,2336.3147620395603"/></TextRegion><TextRegion id="eSc_textblock_333"><Coords points="1653.9407805645399,2377.3280742395546 1653.9407805645399,2472.457374445376 2026.3040413701851,2472.457374445376 2026.3040413701851,2377.3280742395546"/></TextRegion><TextRegion id="eSc_textblock_334"><Coords points="1646.4323944444443,2464.1352050621877 1646.4323944444443,2611.2907606177428 2128.965727777778,2611.2907606177428 2128.965727777778,2464.1352050621877"/></TextRegion><TextRegion id="eSc_textblock_335"><Coords points="154.66495760070555,2748.2805623721897 154.66495760070555,2867.871724104021 1456.5773804175242,2867.871724104021 1456.5773804175242,2748.2805623721897"/></TextRegion><TextRegion id="eSc_textblock_336"><Coords points="1663.4139173539515,2816.9150937736813 1663.4139173539515,2886.2223102685266 2023.8114431271474,2886.2223102685266 2023.8114431271474,2816.9150937736813"/></TextRegion><TextRegion id="eSc_textblock_337"><Coords points="1655.0264500000003,2871.3218995066327 1655.0264500000003,2989.3885661732993 2034.8931166666666,2989.3885661732993 2034.8931166666666,2871.3218995066327"/></TextRegion></Page> </PcGts> \ No newline at end of file diff --git a/jupyter/eScriptorium/nom_de_votre_fichier_0119.xml b/jupyter/eScriptorium/nom_de_votre_fichier_0119.xml new file mode 100644 index 0000000000000000000000000000000000000000..ebb33fcbcf901a9ac54096a595d5184a8bf3e2b3 --- /dev/null +++ b/jupyter/eScriptorium/nom_de_votre_fichier_0119.xml @@ -0,0 +1,15 @@ +<?xml version='1.0' encoding='UTF-8'?> +<PcGts xmlns="http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15 http://schema.primaresearch.org/PAGE/gts/pagecontent/2019-07-15/pagecontent.xsd"> + <Metadata externalRef="pdf//cpgraec23_0119.pdf"> + <Creator>escriptorium</Creator> + <Created>2023-06-07T17:37:22.145684+00:00</Created> + <LastChange>2023-06-07T17:37:22.145775+00:00</LastChange> + + </Metadata> + <Page imageFilename="cpgraec23_0119.pdf_page_1.png" imageWidth="2479" imageHeight="3508"> + + + + + <TextRegion id="eSc_textblock_321"><Coords points="227.8988657719756,210.17899577490198 227.8988657719756,418.1099249902908 2082.77477401084,418.1099249902908 2082.77477401084,210.17899577490198"/></TextRegion><TextRegion id="eSc_textblock_322"><Coords points="227.8988657719756,210.17899577490198 227.8988657719756,418.1099249902908 2082.77477401084,418.1099249902908 2082.77477401084,210.17899577490198"/></TextRegion><TextRegion id="eSc_textblock_323"><Coords points="280.20902542312297,398.1685350507713 280.20902542312297,873.8150360798803 1734.3283285692564,873.8150360798803 1734.3283285692564,398.1685350507713"/></TextRegion><TextRegion id="eSc_textblock_324"><Coords points="1727.4016640316524,422.3823496744123 1727.4016640316524,621.0630369596356 2168.6576090488343,621.0630369596356 2168.6576090488343,422.3823496744123"/></TextRegion><TextRegion id="eSc_textblock_325"><Coords points="196.51502325348406,860.6849113687314 196.51502325348406,1303.715652327273 1666.9422064349012,1303.715652327273 1666.9422064349012,860.6849113687314"/></TextRegion><TextRegion id="eSc_textblock_326"><Coords points="1663.4081417525772,859.3466433210656 1663.4081417525772,1009.5122790598973 2113.905048969072,1009.5122790598973 2113.905048969072,859.3466433210656"/></TextRegion><TextRegion id="eSc_textblock_327"><Coords points="1664.5211707817975,993.9755346551061 1664.5211707817975,1142.6324726101207 2124.55412742637,1142.6324726101207 2124.55412742637,993.9755346551061"/></TextRegion><TextRegion id="eSc_textblock_328"><Coords points="191.64698230548777,1267.1413521316204 191.64698230548777,1723.7619931195652 1653.9202254692632,1723.7619931195652 1653.9202254692632,1267.1413521316204"/></TextRegion><TextRegion id="eSc_textblock_329"><Coords points="1635.774776975945,1284.4684458983852 1635.774776975945,1367.6371056921996 2081.6512030927834,1367.6371056921996 2081.6512030927834,1284.4684458983852"/></TextRegion><TextRegion id="eSc_textblock_330"><Coords points="1667.983971516178,1357.4139825905536 1667.983971516178,1510.2416079089562 2085.5943430257657,1510.2416079089562 2085.5943430257657,1357.4139825905536"/></TextRegion><TextRegion id="eSc_textblock_331"><Coords points="214.18167441926937,1698.8119646044966 214.18167441926937,1861.8908064304173 1535.1199572772523,1861.8908064304173 1535.1199572772523,1698.8119646044966"/></TextRegion><TextRegion id="eSc_textblock_332"><Coords points="256.29837886597926,1822.8006988193476 256.29837886597926,2076.9271593004473 1464.5541864261165,2076.9271593004473 1464.5541864261165,1822.8006988193476"/></TextRegion><TextRegion id="eSc_textblock_333"><Coords points="212.25364278350526,2053.9373780289693 212.25364278350526,2368.1300928056016 1540.6419589347079,2368.1300928056016 1540.6419589347079,2053.9373780289693"/></TextRegion><TextRegion id="eSc_textblock_336"><Coords points="171.9615022263008,2336.3147620395603 171.9615022263008,2795.6534245064695 1631.5167653841957,2795.6534245064695 1631.5167653841957,2336.3147620395603"/></TextRegion><TextRegion id="eSc_textblock_337"><Coords points="1653.9407805645399,2377.3280742395546 1653.9407805645399,2472.457374445376 2026.3040413701851,2472.457374445376 2026.3040413701851,2377.3280742395546"/></TextRegion><TextRegion id="eSc_textblock_338"><Coords points="1646.4323944444443,2464.1352050621877 1646.4323944444443,2611.2907606177428 2128.965727777778,2611.2907606177428 2128.965727777778,2464.1352050621877"/></TextRegion><TextRegion id="eSc_textblock_339"><Coords points="154.66495760070555,2748.2805623721897 154.66495760070555,2867.871724104021 1456.5773804175242,2867.871724104021 1456.5773804175242,2748.2805623721897"/></TextRegion><TextRegion id="eSc_textblock_340"><Coords points="1663.4139173539515,2816.9150937736813 1663.4139173539515,2886.2223102685266 2023.8114431271474,2886.2223102685266 2023.8114431271474,2816.9150937736813"/></TextRegion><TextRegion id="eSc_textblock_341"><Coords points="1655.0264500000003,2871.3218995066327 1655.0264500000003,2989.3885661732993 2034.8931166666666,2989.3885661732993 2034.8931166666666,2871.3218995066327"/></TextRegion></Page> +</PcGts> \ No newline at end of file